diff --git a/README.md b/README.md index 9200ebac..47795089 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,11 @@ be starved indefinitely. A clean stop saves each topology under `results\search\topology_N`; pressing the same button later resumes only those checkpoints. `results\search\leaderboard.tsv` is the current ranking. +The GUI search-mode selector keeps this quality-first allocation as the default. Select +`Проработка худших` to reverse only the quality prior: depth work then favors topologies +with the worst current C/I result. Improvement reward, UCB exploration, staleness, and the +full refresh remain active, so the mode is a priority rather than an exclusive lock. + The CUDA hot path uses standard FP32 math. Persistent chains retain their RNG, cooling, stagnation, and restart state between batches. Twenty-five percent of chains remain the unchanged simulated-annealing control; disjoint cohorts add replica exchange, adaptive @@ -51,6 +56,11 @@ the CPU in `double`; candidates with at most 12 total defects are reclassified w custom `WideReal` double-double type (about 31 decimal digits). Every claimed `0/0` is serialized and checked again at multiple tolerances down to `1e-13`. +The degeneracy guard is deliberately mild. Its default weight is `0.01`, and only the +worst of the determinant, edge-ratio, turn-angle, and extent barriers is counted fully; +the other three contribute five percent. This still rejects catastrophic collapse without +letting several correlated moderate warnings overpower an otherwise useful candidate. + The MAP-Elites archive separates geometry into determinant, edge-ratio, turn-angle, and extent bins. All valid historical checkpoint generations are deduplicated and re-evaluated on startup, so accumulated searches seed the archive instead of merely supplying one best diff --git a/projects/PolyhedronGui/launcher_gui.cpp b/projects/PolyhedronGui/launcher_gui.cpp index 397d17ba..949d4102 100644 --- a/projects/PolyhedronGui/launcher_gui.cpp +++ b/projects/PolyhedronGui/launcher_gui.cpp @@ -39,6 +39,7 @@ constexpr int ID_MINUTES = 1003; constexpr int ID_TOPOLOGY_FROM = 1004; constexpr int ID_TOPOLOGY_TO = 1005; constexpr int ID_CHECKPOINT_SECONDS = 1006; +constexpr int ID_SEARCH_MODE = 1007; constexpr int ID_START = 2001; constexpr int ID_STOP = 2002; @@ -59,6 +60,7 @@ HWND g_minutes = nullptr; HWND g_topology_from = nullptr; HWND g_topology_to = nullptr; HWND g_checkpoint_seconds = nullptr; +HWND g_search_mode = nullptr; std::vector g_setting_controls; HFONT g_ui_font = nullptr; @@ -569,6 +571,28 @@ HWND make_button( return control; } +HWND make_search_mode_combo(HWND parent, int x, int y, int width, int height) { + HWND control = CreateWindowExW( + 0, + L"COMBOBOX", + L"", + WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL | CBS_DROPDOWNLIST, + x, + y, + width, + height, + parent, + reinterpret_cast(static_cast(ID_SEARCH_MODE)), + nullptr, + nullptr); + SendMessageW(control, WM_SETFONT, reinterpret_cast(g_ui_font), TRUE); + SendMessageW(control, CB_ADDSTRING, 0, reinterpret_cast(L"Обычный")); + SendMessageW(control, CB_ADDSTRING, 0, reinterpret_cast(L"Проработка худших")); + SendMessageW(control, CB_SETCURSEL, 0, 0); + g_setting_controls.push_back(control); + return control; +} + void create_controls(HWND window) { g_title_font = CreateFontW( 24, 0, 0, 0, FW_BOLD, FALSE, FALSE, FALSE, DEFAULT_CHARSET, @@ -606,6 +630,9 @@ void create_controls(HWND window) { g_checkpoint_seconds = make_number_edit(window, ID_CHECKPOINT_SECONDS, L"30", 592, 110, 125, 27); + make_label(window, L"Режим поиска", 735, 86, 245, 22); + g_search_mode = make_search_mode_combo(window, 735, 110, 245, 180); + make_label( window, L"CUDA-устройство выбирается автоматически. Поиск: FP32; финальная проверка кандидатов: DD.", @@ -688,26 +715,37 @@ void start_search() { const int seed = make_automatic_seed(); append_log_direct(L"Seed запуска: " + std::to_wstring(seed)); + const bool prioritize_worst = + SendMessageW(g_search_mode, CB_GETCURSEL, 0, 0) == 1; + append_log_direct( + prioritize_worst + ? L"Режим поиска: проработка худших вариантов." + : L"Режим поиска: обычный."); + const fs::path stop_path = make_stop_path(); const std::wstring title = L"CUDA-поиск, топологии " + std::to_wstring(topology_from) + L"–" + std::to_wstring(topology_to); + std::vector args{ + L"--global-search", + L"--cuda", + L"--seed", std::to_wstring(seed), + L"--cuda-chains", std::to_wstring(cuda_chains), + L"--cuda-iters", std::to_wstring(cuda_iters), + L"--minutes", std::to_wstring(minutes), + L"--topology-from", std::to_wstring(topology_from), + L"--topology-to", std::to_wstring(topology_to), + L"--checkpoint-seconds", std::to_wstring(checkpoint_seconds), + L"--stop-file", stop_path.wstring(), + L"--global-dir", L"results\\search" + }; + if (prioritize_worst) { + args.push_back(L"--prioritize-worst"); + } start_process( title, main_exe(), - { - L"--global-search", - L"--cuda", - L"--seed", std::to_wstring(seed), - L"--cuda-chains", std::to_wstring(cuda_chains), - L"--cuda-iters", std::to_wstring(cuda_iters), - L"--minutes", std::to_wstring(minutes), - L"--topology-from", std::to_wstring(topology_from), - L"--topology-to", std::to_wstring(topology_to), - L"--checkpoint-seconds", std::to_wstring(checkpoint_seconds), - L"--stop-file", stop_path.wstring(), - L"--global-dir", L"results\\search" - }, + args, stop_path); } diff --git a/projects/Szilassi/main.cpp b/projects/Szilassi/main.cpp index b0d7f98f..ddd6c3bd 100644 --- a/projects/Szilassi/main.cpp +++ b/projects/Szilassi/main.cpp @@ -42,7 +42,8 @@ #define NUM_TOPOLOGIES 59 #define DUAL_PROBLEM 0 constexpr int GLOBAL_PLANE_VALUE_COUNT = 36; -constexpr std::uint32_t GLOBAL_OBJECTIVE_VERSION = 3; +constexpr std::uint32_t GLOBAL_OBJECTIVE_VERSION = 4; +constexpr std::uint32_t MIN_COMPATIBLE_ARCHIVE_OBJECTIVE_VERSION = 3; constexpr int CUDA_SESSION_CACHE_LIMIT = NUM_TOPOLOGIES; struct StudyOptions { @@ -86,7 +87,8 @@ struct LocalRepairOptions { int cuda_chains = 0; int cuda_iterations = 64; int checkpoint_seconds = 30; - double degeneracy_weight = 0.02; + double degeneracy_weight = 0.01; + bool prioritize_worst = false; bool use_cuda = false; }; @@ -152,7 +154,8 @@ void print_usage(const char* exe_name) { << " --cuda-chains Parallel GPU chains. 0 = automatic (default).\n" << " --cuda-iters Iterations per short GPU batch. Default: 64\n" << " --checkpoint-seconds Durable checkpoint period. Default: 30\n" - << " --degeneracy-weight Degenerate-geometry penalty. Default: 0.02\n" + << " --degeneracy-weight Worst-barrier degeneracy penalty. Default: 0.01\n" + << " --prioritize-worst Give depth priority to the worst current topologies.\n" << " --start-planes

Continue batch-hunt from a saved .planes sidecar.\n" << " --restarts hunt-local restarts. Default: 256\n" << " --stagnation Iterations before hunt-local reheat. Default: 2000\n" @@ -2213,7 +2216,7 @@ struct GlobalMetrics { bool precise = false; }; -double g_global_degeneracy_weight = 0.02; +double g_global_degeneracy_weight = 0.01; std::string g_search_device_id = "CPU"; std::uint64_t topology_fingerprint() { @@ -2446,18 +2449,54 @@ bool add_global_archive_elite( return retained; } +double topology_scheduler_severity(const GlobalMetrics& metrics) { + return static_cast(global_defects(metrics)) + + 0.10 * static_cast(std::max(metrics.crossings, metrics.intersections)) + + 0.01 * static_cast(metrics.crossings); +} + +double topology_scheduler_worstness( + const GlobalTopologyState& state, + double best_severity, + double worst_severity +) { + if (!state.has_state) { + return 1.0; + } + const double span = worst_severity - best_severity; + if (span <= 1.0e-9) { + return 0.0; + } + return std::clamp( + (topology_scheduler_severity(state.best) - best_severity) / span, + 0.0, + 1.0); +} + double topology_bandit_score( const GlobalTopologyState& state, std::uint64_t total_pulls, std::uint64_t current_round, - int best_defects + double best_severity, + double worst_severity, + int best_defects, + bool prioritize_worst ) { const double exploration = 0.60 * std::sqrt( std::log(static_cast(total_pulls) + 2.0) / (static_cast(state.scheduler_pulls) + 1.0)); - const double quality_prior = state.has_state - ? 0.30 / (1.0 + std::max(0, global_defects(state.best) - best_defects)) - : 0.35; + double quality_prior = prioritize_worst ? 0.70 : 0.35; + if (state.has_state) { + if (prioritize_worst) { + quality_prior = 0.65 * topology_scheduler_worstness( + state, + best_severity, + worst_severity); + } else { + quality_prior = 0.30 / + (1.0 + std::max(0, global_defects(state.best) - best_defects)); + } + } const double rounds_since_pull = state.scheduler_last_pull == 0 ? static_cast(current_round + 1) : static_cast(current_round - state.scheduler_last_pull); @@ -2695,12 +2734,20 @@ GlobalMetrics evaluate_global_state( const double turn_barrier = std::log1p(0.002 / std::max(1e-10, min_turn_sine)); const double extent_barrier = 0.10 * std::log1p(max_vertex_norm / 100.0); + const double worst_degeneracy_barrier = std::max({ + determinant_barrier, + edge_barrier, + turn_barrier, + extent_barrier}); + const double secondary_degeneracy_barriers = + determinant_barrier + edge_barrier + turn_barrier + extent_barrier - + worst_degeneracy_barrier; metrics.min_plane_determinant = min_plane_determinant; metrics.relative_min_edge = relative_min_edge; metrics.min_turn_sine = min_turn_sine; metrics.max_vertex_norm = max_vertex_norm; metrics.degeneracy_penalty = g_global_degeneracy_weight * - (determinant_barrier + edge_barrier + turn_barrier + extent_barrier); + (worst_degeneracy_barrier + 0.05 * secondary_degeneracy_barriers); metrics.geometry_penalty = 0.0010 * std::min(20.0, std::log1p(condition)) + 0.0002 * std::min(20.0, std::log1p(max_vertex_norm)) + @@ -3306,7 +3353,9 @@ void load_mergeable_checkpoints( if (record.delta.topology != topology) { continue; } - if (record.delta.objective_version != GLOBAL_OBJECTIVE_VERSION || + if (record.delta.objective_version < + MIN_COMPATIBLE_ARCHIVE_OBJECTIVE_VERSION || + record.delta.objective_version > GLOBAL_OBJECTIVE_VERSION || record.delta.topology_fingerprint != expected_fingerprint) { incompatible_archive_deltas += 1; continue; @@ -3641,13 +3690,14 @@ bool write_run_manifest( std::cerr << "Cannot write run manifest: " << manifest_path << std::endl; return false; } - out << "format\tszilassi-global-search-v3\n" + out << "format\tszilassi-global-search-v4\n" << "run_id\t" << identity.run_id << "\n" << "node_id\t" << identity.node_id << "\n" << "seed\t" << options.seed << "\n" << "topology_from\t" << options.topology_from << "\n" << "topology_to\t" << options.topology_to << "\n" << "backend\t" << (options.use_cuda ? "cuda-fp32" : "cpu-double") << "\n" + << "objective_version\t" << GLOBAL_OBJECTIVE_VERSION << "\n" << "cuda_math\tstandard-fp32\n" << "cuda_chains_requested\t" << options.cuda_chains << "\n" << "cuda_chains_effective\t" << effective_cuda_chains << "\n" @@ -3666,8 +3716,12 @@ bool write_run_manifest( << "map_elites_max_cells_per_topology\t4096\n" << "cem\tdiagonal-weighted,covariance-adaptation:0.18,new-injected-only\n" << "spsa\tadam:6,cpu-double,fp32-roundtrip,final-canonical-dd-gate\n" - << "topology_scheduler\tucb-plus-quality,full-refresh-every-5\n" + << "topology_scheduler\tucb-plus-reward-plus-staleness,full-refresh-every-5\n" + << "topology_scheduler_mode\t" + << (options.prioritize_worst ? "worst-first" : "quality-first") << "\n" + << "worst_priority_coefficient\t0.65\n" << "cpu_iterations_per_trial\t" << options.iterations << "\n" + << "degeneracy_formula\tworst-plus-0.05-rest\n" << "degeneracy_weight\t" << std::setprecision(17) << options.degeneracy_weight << "\n"; out.flush(); @@ -4208,6 +4262,8 @@ int global_search_all(const LocalRepairOptions& options) { << ", run " << run_identity.run_id << ", node " << run_identity.node_id << ", threads " << worker_count + << ", scheduler " + << (options.prioritize_worst ? "worst-first" : "quality-first") << ", minutes " << (options.time_limit_seconds / 60.0) << " ===\n"; std::ofstream metrics_log( @@ -4222,7 +4278,7 @@ int global_search_all(const LocalRepairOptions& options) { return 2; } metrics_log - << "round\tunix_ns\tphase\ttopology\tdepth\tbandit_score" + << "round\tunix_ns\tphase\ttopology\tdepth\tbandit_score\tworstness" << "\tbefore_C\tbefore_I\tafter_C\tafter_I\timproved\tbackend_error" << "\tarchive_cells\tarchive_improvements\tverified\taccounted_fp32_steps" << "\tnew_trials\tkernel_ms\ttransfer_ms\twall_ms" @@ -4243,6 +4299,13 @@ int global_search_all(const LocalRepairOptions& options) { << std::endl; std::cout << "Topologies: " << options.topology_from << ".." << options.topology_to << " (" << active_topologies.size() << ")" << std::endl; + std::cout << "Scheduler : " + << (options.prioritize_worst + ? "priority to the worst current topologies" + : "priority to the most promising topologies") + << std::endl; + std::cout << "Degenerate: worst barrier + 5% of the rest, weight " + << options.degeneracy_weight << std::endl; std::cout << "Start : saved MAP-Elites/CEM seeds plus independent random starts" << std::endl; std::cout << "Coordinates: " @@ -4387,22 +4450,36 @@ int global_search_all(const LocalRepairOptions& options) { [&](std::uint64_t sum, int item) { return sum + states[item].scheduler_pulls; }); + double current_best_severity = std::numeric_limits::infinity(); + double current_worst_severity = -std::numeric_limits::infinity(); int current_best_defects = std::numeric_limits::max() / 4; for (int item : active_topologies) { if (states[item].has_state) { + const double severity = topology_scheduler_severity(states[item].best); + current_best_severity = std::min(current_best_severity, severity); + current_worst_severity = std::max(current_worst_severity, severity); current_best_defects = std::min( current_best_defects, global_defects(states[item].best)); } } - if (current_best_defects >= std::numeric_limits::max() / 8) { + if (!std::isfinite(current_best_severity)) { + current_best_severity = 0.0; + current_worst_severity = 0.0; current_best_defects = 0; } const double selection_score = topology_bandit_score( state, total_scheduler_pulls, static_cast(completed_rounds + 1), - current_best_defects); + current_best_severity, + current_worst_severity, + current_best_defects, + options.prioritize_worst); + const double selection_worstness = topology_scheduler_worstness( + state, + current_best_severity, + current_worst_severity); const int round_seed = static_cast( 1 + (static_cast(static_cast(options.seed)) + static_cast(state.visits + 1) * 15485863ULL + @@ -4476,6 +4553,7 @@ int global_search_all(const LocalRepairOptions& options) { << szilassi::checkpoint::unix_time_ns_now() << "\t" << phase << "\t" << topology << "\t" << (depth ? 1 : 0) << "\t" << std::setprecision(17) << selection_score << "\t" + << selection_worstness << "\t" << (had_before ? before.crossings : -1) << "\t" << (had_before ? before.intersections : -1) << "\t" << (state.has_state ? state.best.crossings : -1) << "\t" @@ -4551,13 +4629,22 @@ int global_search_all(const LocalRepairOptions& options) { [&](std::uint64_t sum, int topology) { return sum + states[topology].scheduler_pulls; }); + double best_severity = std::numeric_limits::infinity(); + double worst_severity = -std::numeric_limits::infinity(); int best_defects = std::numeric_limits::max() / 4; for (int topology : active_topologies) { if (states[topology].has_state) { - best_defects = std::min(best_defects, global_defects(states[topology].best)); + const double severity = topology_scheduler_severity(states[topology].best); + best_severity = std::min(best_severity, severity); + worst_severity = std::max(worst_severity, severity); + best_defects = std::min( + best_defects, + global_defects(states[topology].best)); } } - if (best_defects >= std::numeric_limits::max() / 8) { + if (!std::isfinite(best_severity)) { + best_severity = 0.0; + worst_severity = 0.0; best_defects = 0; } std::unordered_map bandit_scores; @@ -4566,7 +4653,10 @@ int global_search_all(const LocalRepairOptions& options) { states[topology], total_scheduler_pulls, static_cast(completed_rounds + 1), - best_defects); + best_severity, + worst_severity, + best_defects, + options.prioritize_worst); } std::sort(ranked.begin(), ranked.end(), [&](int a, int b) { if (bandit_scores[a] != bandit_scores[b]) { @@ -4575,9 +4665,16 @@ int global_search_all(const LocalRepairOptions& options) { if (states[a].has_state != states[b].has_state) { return states[a].has_state; } - return states[a].has_state - ? better_global_metrics(states[a].best, states[b].best) - : a < b; + if (!states[a].has_state) { + return a < b; + } + if (better_global_metrics(states[a].best, states[b].best)) { + return true; + } + if (better_global_metrics(states[b].best, states[a].best)) { + return false; + } + return a < b; }); const bool exploration_cycle = cycle % 5 == 4; @@ -4885,6 +4982,8 @@ int main(int argc, char* argv[]) { } else if (arg == "--degeneracy-weight" && i + 1 < argc) { repair_options.degeneracy_weight = std::clamp( std::atof(argv[++i]), 0.0, 1.0); + } else if (arg == "--prioritize-worst") { + repair_options.prioritize_worst = true; } else if (arg == "--restarts" && i + 1 < argc) { repair_options.restarts = std::atoi(argv[++i]); } else if (arg == "--stagnation" && i + 1 < argc) { diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/metrics.tsv b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/metrics.tsv new file mode 100644 index 00000000..9874bf61 --- /dev/null +++ b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/metrics.tsv @@ -0,0 +1,539 @@ +round unix_ns phase topology depth bandit_score worstness before_C before_I after_C after_I improved backend_error archive_cells archive_improvements verified accounted_fp32_steps new_trials kernel_ms transfer_ms wall_ms rex_attempts rex_accepts spsa_attempted spsa_accepted steps_baseline steps_replica steps_adaptive steps_pbt steps_injected verified_baseline verified_replica verified_adaptive verified_pbt verified_injected archive_baseline archive_replica archive_adaptive archive_pbt archive_injected global_baseline global_replica global_adaptive global_pbt global_injected +1 1783756724044318900 DEPTH 46 1 0.62348542587702926 0 2 15 2 15 0 0 125 38 2554 23664913 143040 1102.4158477783203 5.9087000000000005 1346.6914999999999 120960 61951 1 0 5898240 4423680 4423680 4426510 4492800 175 164 175 165 1875 2 1 6 3 26 0 0 0 0 0 +2 1783756725063884300 DEPTH 46 1 0.61380985317164116 0 2 15 2 14 1 0 125 35 2564 23664872 81600 837.24571228027344 5.8720999999999997 1018.3047 120960 51659 1 0 5898240 4423680 4423680 4426470 4492800 190 162 180 203 1829 0 0 0 2 33 0 0 0 0 2 +3 1783756726084967700 DEPTH 46 1 0.71417401289287463 0 2 14 2 14 0 0 125 26 2552 23664824 81600 834.62451171875 5.8940000000000001 1019.9488 120960 43293 1 0 5898240 4423680 4423680 4426424 4492800 201 168 186 218 1779 0 0 0 0 26 0 0 0 0 0 +4 1783756727113647700 DEPTH 46 1 0.70449589168523408 0 2 14 2 14 0 0 125 24 2569 23664871 81600 831.61405944824219 5.9744000000000002 1027.4241 120960 32296 1 0 5898240 4423680 4423680 4426469 4492800 210 164 188 229 1778 0 0 0 0 24 0 0 0 0 0 +5 1783756727294789200 REFRESH 46 0 0.69572606416707639 0 2 14 2 14 0 0 125 6 407 3943940 55200 149.85626220703125 0.98499999999999999 179.89750000000001 20160 12267 0 0 983040 737280 737280 737540 748800 42 26 32 45 262 0 0 0 0 6 0 0 0 0 0 +6 1783756728333560100 DEPTH 46 1 0.68373653692798531 0 2 14 2 14 0 0 127 33 2551 23664986 81600 856.59417724609375 5.9062000000000001 1037.5746999999999 120960 61640 1 0 5898240 4423680 4423680 4426586 4492800 160 156 157 183 1895 0 0 0 0 33 0 0 0 0 0 +7 1783756729376904900 DEPTH 46 1 0.67682351150575637 0 2 14 2 14 0 0 129 34 2543 23664832 81600 847.98384094238281 5.8975000000000009 1042.1202000000001 120960 50314 1 0 5898240 4423680 4423680 4426430 4492800 180 156 162 233 1812 3 0 0 0 31 0 0 0 0 0 +8 1783756730410101500 DEPTH 46 1 0.67046158708349135 0 2 14 2 14 0 0 131 52 2565 23664872 81600 845.29313659667969 5.9184000000000001 1031.8661999999999 120960 40376 1 0 5898240 4423680 4423680 4426466 4492800 187 156 158 229 1835 0 0 0 0 52 0 0 0 0 0 +9 1783756731446812200 DEPTH 46 1 0.66458362741369992 0 2 14 2 14 1 0 132 75 2579 23664896 81600 842.37075805664062 5.9184000000000001 1035.4571000000001 120960 28504 1 0 5898240 4423680 4423680 4426495 4492800 178 154 156 200 1891 0 0 0 0 75 0 0 0 0 1 +10 1783756731639262500 REFRESH 46 0 0.65918931090152688 0 2 14 2 14 0 0 133 5 417 3943887 55200 150.5587158203125 0.98429999999999995 191.17660000000001 20160 12143 0 0 983040 737280 737280 737486 748800 93 26 31 63 204 0 0 0 0 5 0 0 0 0 0 +11 1783756732680497300 DEPTH 46 1 0.64911346749056054 0 2 14 2 14 0 0 134 66 2578 23664794 81600 855.79627990722656 5.9641999999999991 1039.8866 120960 57265 1 0 5898240 4423680 4423680 4426393 4492800 177 153 155 166 1927 0 0 0 0 66 0 0 0 0 0 +12 1783756733717782600 DEPTH 46 1 0.64487755397533886 0 2 14 2 14 0 0 134 52 2567 23664811 81600 849.44659423828125 5.9127999999999998 1036.0195000000001 120960 46736 1 0 5898240 4423680 4423680 4426408 4492800 169 152 155 161 1930 0 0 0 0 52 0 0 0 0 0 +13 1783756734744896800 DEPTH 46 1 0.64089654835853094 0 2 14 2 14 0 0 135 53 2578 23664736 81600 846.45420837402344 5.8724999999999996 1025.4838 120960 36581 1 0 5898240 4423680 4423680 4426334 4492800 158 150 152 167 1951 0 0 0 0 53 0 0 0 0 0 +14 1783756735777417100 DEPTH 46 1 0.63714513658489369 0 2 14 2 14 0 0 135 69 2565 23664797 81600 841.74093627929688 6.0293000000000001 1031.3483000000001 120960 25830 1 0 5898240 4423680 4423680 4426395 4492800 160 151 152 171 1931 0 0 0 0 69 0 0 0 0 0 +15 1783756735958198200 REFRESH 46 0 0.63360142579952572 0 2 14 2 14 0 0 135 11 406 3943946 55200 149.63302612304688 0.98370000000000002 179.52979999999999 20160 12168 0 0 983040 737280 737280 737546 748800 99 26 31 57 193 0 0 0 0 11 0 0 0 0 0 +16 1783756737000092500 DEPTH 46 1 0.63024636621185637 0 2 14 2 14 0 0 135 54 2585 23664838 81600 857.81484985351562 5.9368000000000007 1040.0338999999999 120960 58083 1 0 5898240 4423680 4423680 4426438 4492800 156 150 150 154 1975 0 0 0 0 54 0 0 0 0 0 +17 1783756738031589600 DEPTH 46 1 0.62706328922863919 0 2 14 3 13 1 0 135 49 2574 23664893 81600 849.5089111328125 5.9280999999999997 1030.1713999999999 120960 47268 1 0 5898240 4423680 4423680 4426491 4492800 166 150 150 156 1952 1 0 0 0 48 1 0 0 0 1 +18 1783756739062475800 DEPTH 46 1 0.67403753496867691 0 3 13 3 13 1 0 136 54 2594 23664860 81600 850.38905334472656 5.9050000000000002 1029.7209 120960 37848 1 0 5898240 4423680 4423680 4426458 4492800 183 150 150 168 1943 0 0 0 0 54 0 0 0 0 2 +19 1783756740112524500 DEPTH 46 1 0.66622222051917535 0 3 13 3 13 1 0 136 55 2592 23664802 81600 848.69021606445312 5.9571999999999994 1048.7408 120960 25828 1 0 5898240 4423680 4423680 4426402 4492800 208 150 150 188 1896 2 0 0 0 53 2 0 0 0 1 +20 1783756740293717300 REFRESH 46 0 0.65927339852002542 0 3 13 3 13 0 0 136 13 415 3943890 55200 150.19914245605469 0.98380000000000001 179.98699999999999 20160 12313 0 0 983040 737280 737280 737490 748800 103 26 30 69 187 0 0 0 0 13 0 0 0 0 0 +21 1783756741339975000 DEPTH 46 1 0.65256093446850483 0 3 13 3 13 1 0 139 63 2589 23664805 81600 861.64675903320312 5.9033999999999995 1045.0545999999999 120960 59470 1 0 5898240 4423680 4423680 4426404 4492800 211 150 150 163 1915 0 0 0 0 63 0 0 0 0 1 +22 1783756742373741300 DEPTH 46 1 0.64637072409039487 0 3 13 3 13 1 0 140 66 2578 23664884 81600 852.33859252929688 5.8841000000000001 1032.5184999999999 120960 48520 1 0 5898240 4423680 4423680 4426484 4492800 241 150 150 225 1812 1 0 0 0 65 0 0 0 0 1 +23 1783756743412185600 DEPTH 46 1 0.6406737666877147 0 3 13 3 13 1 0 140 48 2583 23664882 81600 850.14595031738281 5.9203999999999999 1037.2702999999999 120960 38747 1 0 5898240 4423680 4423680 4426478 4492800 272 150 150 315 1696 2 0 0 0 46 2 0 0 0 1 +24 1783756744449717100 DEPTH 46 1 0.63546395271128331 0 3 13 3 13 1 0 141 50 2585 23664870 81600 847.43309020996094 5.9166000000000007 1036.3471999999999 120960 27210 1 0 5898240 4423680 4423680 4426470 4492800 276 150 150 325 1684 1 0 0 0 49 1 0 0 0 1 +25 1783756744633153700 REFRESH 46 0 0.6305710471898458 0 3 13 3 13 0 0 141 14 417 3943926 55200 150.98777770996094 1.0167999999999999 182.16650000000001 20160 12593 0 0 983040 737280 737280 737526 748800 145 26 31 86 129 0 0 0 0 14 0 0 0 0 0 +26 1783756745676303900 DEPTH 46 1 0.6260142500078234 0 3 13 3 13 0 0 143 73 2553 23664874 81600 859.49897766113281 5.9403000000000006 1041.9235000000001 120960 61129 1 0 5898240 4423680 4423680 4426474 4492800 303 150 150 230 1720 0 0 0 0 73 0 0 0 0 0 +27 1783756746710296300 DEPTH 46 1 0.62177938442191483 0 3 13 3 13 0 0 144 59 2542 23664737 81600 850.21994018554688 5.8475999999999999 1032.8290999999999 120960 50360 1 0 5898240 4423680 4423680 4426337 4492800 302 150 150 253 1687 0 0 0 0 59 0 0 0 0 0 +28 1783756747747779400 DEPTH 46 1 0.61783719744885124 0 3 13 3 13 1 0 146 62 2547 23664812 81600 849.79106140136719 5.8865999999999996 1036.2291 120960 40670 1 0 5898240 4423680 4423680 4426412 4492800 294 150 150 321 1632 0 0 0 0 62 0 0 0 0 1 +29 1783756748778598000 DEPTH 46 1 0.61417505287157559 0 3 13 3 13 1 0 148 62 2526 23664898 81600 846.87637329101562 5.9793000000000003 1029.6223 120960 27723 1 0 5898240 4423680 4423680 4426498 4492800 310 150 151 353 1562 0 0 0 0 62 0 0 0 0 2 +30 1783756748971707900 REFRESH 46 0 0.61076874137067338 0 3 13 3 13 0 0 148 9 415 3943933 55200 151.12396240234375 0.98480000000000001 191.91759999999999 20160 13111 0 0 983040 737280 737280 737533 748800 133 26 31 88 137 0 0 0 0 9 0 0 0 0 0 +31 1783756750014338800 DEPTH 46 1 0.60655216338036344 0 3 13 3 13 1 0 149 61 2527 23664897 81600 862.38621520996094 5.9033999999999995 1041.4558999999999 120960 63057 1 0 5898240 4423680 4423680 4426492 4492800 320 150 153 245 1659 0 0 0 0 61 0 0 0 0 1 +32 1783756751061401400 DEPTH 46 1 0.60367295369861618 0 3 13 3 13 1 0 150 61 2534 23664854 81600 856.98098754882812 5.8959000000000001 1045.8312000000001 120960 52600 1 0 5898240 4423680 4423680 4426451 4492800 332 150 152 296 1604 0 0 0 0 61 0 0 0 0 1 +33 1783756752093749500 DEPTH 46 1 0.60093083737911268 0 3 13 3 13 1 0 150 56 2543 23664823 81600 851.468994140625 5.8905000000000003 1031.0809999999999 120960 41982 1 0 5898240 4423680 4423680 4426423 4492800 318 150 154 327 1594 0 0 0 0 56 0 0 0 0 1 +34 1783756753137488300 DEPTH 46 1 0.59834980807890381 0 3 13 3 13 1 0 151 44 2523 23664827 81600 851.07095336914062 5.9087999999999994 1042.5893000000001 120960 29797 1 0 5898240 4423680 4423680 4426423 4492800 317 150 154 381 1521 0 0 0 0 44 0 0 0 0 1 +35 1783756753319736300 REFRESH 46 0 0.59591312659026829 0 3 13 3 13 0 0 151 9 412 3943891 55200 150.84124755859375 0.99939999999999996 181.10069999999999 20160 13340 0 0 983040 737280 737280 737491 748800 147 26 31 98 110 0 0 0 0 9 0 0 0 0 0 +36 1783756754385914800 DEPTH 46 1 0.59260856427656261 0 3 13 3 13 0 0 151 56 2524 23664835 81600 860.63948059082031 5.9140999999999995 1042.7516000000001 120960 64421 1 0 5898240 4423680 4423680 4426435 4492800 323 150 152 242 1657 0 0 0 0 56 0 0 0 0 0 +37 1783756755422486100 DEPTH 46 1 0.59052692440589527 0 3 13 3 13 1 0 152 53 2535 23664792 81600 855.43832397460938 5.8959000000000001 1035.442 120960 53779 1 0 5898240 4423680 4423680 4426389 4492800 361 150 158 315 1551 0 0 0 0 53 0 0 0 0 1 +38 1783756756468130100 DEPTH 46 1 0.58856703052922277 0 3 13 3 13 0 0 152 62 2534 23664861 81600 852.16038513183594 5.9303999999999997 1044.4782 120960 42507 1 0 5898240 4423680 4423680 4426461 4492800 340 150 150 353 1541 0 0 0 0 62 0 0 0 0 0 +39 1783756757501168000 DEPTH 46 1 0.58668109030284255 0 3 13 3 13 0 0 153 51 2548 23664849 81600 850.49632263183594 5.8616000000000001 1031.6422 120960 30345 1 0 5898240 4423680 4423680 4426446 4492800 349 150 154 427 1468 0 0 0 0 51 0 0 0 0 0 +40 1783756757684239100 REFRESH 46 0 0.58488269119261216 0 3 13 3 13 0 0 153 12 414 3943909 55200 151.27142333984375 0.98170000000000002 181.81209999999999 20160 13287 0 0 983040 737280 737280 737509 748800 136 26 31 97 124 0 0 0 0 12 0 0 0 0 0 +41 1783756758731621600 DEPTH 46 1 0.58316510957853196 0 3 13 3 13 1 0 154 52 2542 23664770 81600 863.79405212402344 5.9157999999999999 1046.2139 120960 65166 1 0 5898240 4423680 4423680 4426370 4492800 385 151 158 271 1577 0 0 0 0 52 0 0 0 0 1 +42 1783756759768083200 DEPTH 46 1 0.58152365770645276 0 3 13 3 13 0 0 157 59 2533 23664887 81600 854.85530090332031 5.9009999999999998 1035.3132000000001 120960 53993 1 0 5898240 4423680 4423680 4426485 4492800 382 151 158 326 1516 3 0 0 0 56 0 0 0 0 0 +43 1783756760814600100 DEPTH 46 1 0.57994978141107301 0 3 13 3 13 1 0 157 58 2535 23664849 81600 854.12947082519531 5.9366999999999992 1045.3937000000001 120960 43346 1 0 5898240 4423680 4423680 4426447 4492800 386 150 155 373 1471 2 0 0 0 56 1 0 0 0 0 +44 1783756761849427000 DEPTH 46 1 0.57846377480584699 0 3 13 3 13 1 0 161 46 2557 23664873 81600 852.47398376464844 5.9035000000000002 1033.5923 120960 29983 1 0 5898240 4423680 4423680 4426471 4492800 376 150 153 464 1414 2 0 0 0 44 2 0 0 0 0 +45 1783756762033732300 REFRESH 46 0 0.57705424626077639 0 3 13 3 13 0 0 162 7 415 3943891 55200 151.18745422363281 0.98209999999999997 183.14109999999999 20160 13552 0 0 983040 737280 737280 737491 748800 161 26 31 109 88 0 0 0 0 7 0 0 0 0 0 +46 1783756763098611300 DEPTH 46 1 0.57265276534002152 0 3 13 3 13 1 0 166 59 2563 23664840 81600 867.63417053222656 6.0029000000000003 1063.6822999999999 120960 65844 1 0 5898240 4423680 4423680 4426437 4492800 402 152 166 319 1524 1 0 0 0 58 1 0 0 0 0 +47 1783756764156395900 DEPTH 46 1 0.57164951665723285 0 3 13 3 13 1 0 168 45 2555 23664744 81600 861.45832824707031 5.8676999999999992 1056.5336 120960 55194 1 0 5898240 4423680 4423680 4426344 4492800 420 152 179 381 1423 0 0 0 0 45 0 0 0 0 1 +48 1783756765201766000 DEPTH 46 1 0.57064213307502021 0 3 13 3 13 0 0 170 36 2561 23664834 81600 857.2811279296875 5.8803999999999998 1044.1259 120960 44227 1 0 5898240 4423680 4423680 4426434 4492800 399 151 165 464 1382 0 0 0 0 36 0 0 0 0 0 +49 1783756766247143700 DEPTH 46 1 0.56962253816596653 0 3 13 3 13 0 0 171 35 2562 23664793 81600 856.94190979003906 5.9416000000000002 1044.0877 120960 29999 1 0 5898240 4423680 4423680 4426391 4492800 402 150 161 501 1348 0 0 0 0 35 0 0 0 0 0 +50 1783756766432659800 REFRESH 46 0 0.56862161361473751 0 3 13 3 13 0 0 171 8 414 3943909 55200 151.63253784179688 1.1982999999999999 184.35140000000001 20160 13516 0 0 983040 737280 737280 737509 748800 157 26 31 105 95 0 0 0 0 8 0 0 0 0 0 +51 1783756767490110500 DEPTH 46 1 0.56563899250143557 0 3 13 3 13 0 0 173 42 2550 23664944 81600 869.11058044433594 5.9781000000000004 1056.1837 120960 66167 1 0 5898240 4423680 4423680 4426544 4492800 461 154 182 315 1438 0 0 0 0 42 0 0 0 0 0 +52 1783756768543003100 DEPTH 46 1 0.56487430135185535 0 3 13 3 13 1 0 174 35 2562 23664860 81600 859.67539978027344 5.8900000000000006 1051.6696999999999 120960 55102 1 0 5898240 4423680 4423680 4426458 4492800 455 154 180 338 1435 0 0 0 0 35 0 0 0 0 1 +53 1783756769597410600 DEPTH 46 1 0.56414027523396126 0 3 13 3 13 0 0 174 34 2551 23664798 81600 859.3912353515625 5.9296999999999995 1053.1274000000001 120960 43789 1 0 5898240 4423680 4423680 4426397 4492800 441 154 183 410 1363 0 0 0 0 34 0 0 0 0 0 +54 1783756770639467100 DEPTH 46 1 0.56336899693403275 0 3 13 3 13 0 0 174 33 2559 23664854 81600 855.69731140136719 5.8714999999999993 1040.8364999999999 120960 29681 1 0 5898240 4423680 4423680 4426454 4492800 435 152 181 443 1348 0 0 0 0 33 0 0 0 0 0 +55 1783756770824129900 REFRESH 46 0 0.56259864086625733 0 3 13 3 13 0 0 175 8 417 3943902 55200 151.17529296875 1.0101 183.16990000000001 20160 13548 0 0 983040 737280 737280 737502 748800 156 26 32 112 91 0 0 0 0 8 0 0 0 0 0 +56 1783756771893633400 DEPTH 46 1 0.55983041382843435 0 3 13 3 13 0 0 178 47 2548 23664852 81600 868.57893371582031 5.9263999999999992 1059.3599999999999 120960 65836 1 0 5898240 4423680 4423680 4426452 4492800 467 153 175 319 1434 0 0 0 0 47 0 0 0 0 0 +57 1783756772942213700 DEPTH 46 1 0.5592653659815332 0 3 13 3 13 0 0 179 38 2563 23664777 81600 859.74417114257812 5.9010999999999996 1045.7755 120960 54487 1 0 5898240 4423680 4423680 4426377 4492800 450 152 175 411 1375 0 0 0 0 38 0 0 0 0 0 +58 1783756773989330000 DEPTH 46 1 0.55868440780762096 0 3 13 3 13 0 0 180 48 2548 23664827 81600 856.74298095703125 5.9173999999999998 1045.8063999999999 120960 43303 1 0 5898240 4423680 4423680 4426427 4492800 448 150 165 465 1320 0 0 0 0 48 0 0 0 0 0 +59 1783756775028995100 DEPTH 46 1 0.55809032532058178 0 3 13 3 13 1 0 181 37 2555 23664925 81600 854.63021850585938 5.8520000000000003 1038.1731 120960 29617 1 0 5898240 4423680 4423680 4426523 4492800 446 150 170 542 1247 0 0 0 0 37 0 0 0 0 1 +60 1783756775213662000 REFRESH 46 0 0.55748564929904276 0 3 13 3 13 0 0 181 7 415 3943894 55200 152.33331298828125 0.98460000000000003 183.36959999999999 20160 13428 0 0 983040 737280 737280 737494 748800 149 26 33 111 96 0 0 0 0 7 0 0 0 0 0 +61 1783756776266771000 DEPTH 46 1 0.55387245958248776 0 3 13 3 13 1 0 185 51 2554 23664784 81600 867.17424011230469 5.9007999999999994 1051.9564 120960 65703 1 0 5898240 4423680 4423680 4426382 4492800 484 151 181 341 1397 0 0 0 0 51 0 0 0 0 1 +62 1783756777317686100 DEPTH 46 1 0.5535618066241087 0 3 13 3 13 0 0 186 52 2555 23664787 81600 861.5953369140625 5.9379 1049.721 120960 54708 1 0 5898240 4423680 4423680 4426385 4492800 475 150 174 402 1354 0 0 0 0 52 0 0 0 0 0 +63 1783756778360004900 DEPTH 46 1 0.55320642590305558 0 3 13 3 13 1 0 187 44 2565 23664776 81600 857.0457763671875 5.9105000000000008 1040.8154 120960 44103 1 0 5898240 4423680 4423680 4426374 4492800 462 150 181 447 1325 0 0 0 0 44 0 0 0 0 1 +64 1783756779410916700 DEPTH 46 1 0.55283867362074224 0 3 13 3 13 1 0 189 39 2555 23664834 81600 854.56671142578125 5.9183999999999992 1049.6394 120960 30310 1 0 5898240 4423680 4423680 4426433 4492800 474 151 177 508 1245 0 0 0 0 39 0 0 0 0 1 +65 1783756779592806900 REFRESH 46 0 0.55246782878605682 0 3 13 3 13 0 0 190 12 414 3943923 55200 151.21612548828125 0.98270000000000002 180.68279999999999 20160 13364 0 0 983040 737280 737280 737523 748800 155 26 33 116 84 0 0 0 0 12 0 0 0 0 0 +66 1783756780651491100 DEPTH 46 1 0.55202775425218364 0 3 13 3 13 1 0 191 39 2560 23664867 81600 868.81736755371094 5.8635999999999999 1057.4099000000001 120960 65982 1 0 5898240 4423680 4423680 4426467 4492800 492 152 177 360 1379 0 0 0 0 39 0 0 0 0 1 +67 1783756781695244500 DEPTH 46 1 0.55159288445731647 0 3 13 3 13 0 0 192 33 2568 23664799 81600 861.38619995117188 5.8907999999999996 1042.5244 120960 54605 1 0 5898240 4423680 4423680 4426399 4492800 520 154 191 428 1275 0 0 0 0 33 0 0 0 0 0 +68 1783756782741944300 DEPTH 46 1 0.55111578700918051 0 3 13 3 13 1 0 194 36 2563 23664790 81600 857.87437438964844 5.9573999999999998 1045.3974000000001 120960 43500 1 0 5898240 4423680 4423680 4426390 4492800 514 151 179 526 1193 0 0 0 0 36 0 0 0 0 1 +69 1783756783781193900 DEPTH 46 1 0.55065929044492556 0 3 13 3 13 0 0 194 39 2570 23664847 81600 855.39808654785156 5.9009000000000009 1038.0409 120960 29387 1 0 5898240 4423680 4423680 4426446 4492800 499 150 167 550 1204 0 0 0 0 39 0 0 0 0 0 +70 1783756783964944300 REFRESH 46 0 0.5501547119282959 0 3 13 3 13 0 0 194 4 415 3943925 55200 151.54147338867188 0.98450000000000004 181.52670000000001 20160 13502 0 0 983040 737280 737280 737525 748800 153 26 33 113 90 0 0 0 0 4 0 0 0 0 0 +71 1783756785059296100 DEPTH 46 1 0.54364149366101333 0 3 13 3 13 0 0 194 39 2557 23664966 81600 868.50828552246094 5.9433000000000007 1062.4864 120960 66048 1 0 5898240 4423680 4423680 4426562 4492800 550 152 187 347 1321 0 0 0 0 39 0 0 0 0 0 +72 1783756786113401000 DEPTH 46 1 0.54372135288932311 0 3 13 3 13 0 0 196 37 2570 23664830 81600 861.74919128417969 5.9049000000000005 1052.9033999999999 120960 55147 1 0 5898240 4423680 4423680 4426427 4492800 523 153 194 415 1285 0 0 0 0 37 0 0 0 0 0 +73 1783756787162258700 DEPTH 46 1 0.54373581464959075 0 3 13 3 13 0 0 197 40 2556 23664874 81600 858.37010192871094 5.9177999999999997 1047.6249 120960 43545 1 0 5898240 4423680 4423680 4426473 4492800 521 152 179 498 1206 0 0 0 0 40 0 0 0 0 0 +74 1783756788213479100 DEPTH 46 1 0.54369223165775538 0 3 13 3 13 0 0 198 40 2567 23664887 81600 855.40226745605469 6.0061 1049.9964 120960 29658 1 0 5898240 4423680 4423680 4426487 4492800 526 152 180 564 1145 0 0 0 0 40 0 0 0 0 0 +75 1783756788398245300 REFRESH 46 0 0.54359720218324803 0 3 13 3 13 0 0 199 7 418 3943909 55200 152.08345031738281 0.9839 183.55860000000001 20160 13486 0 0 983040 737280 737280 737509 748800 158 26 33 116 85 0 0 0 0 7 0 0 0 0 0 +76 1783756789451933800 DEPTH 46 1 0.54045664611010902 0 3 13 3 13 0 0 200 39 2577 23664792 81600 869.060546875 5.9028 1052.5065999999999 120960 66268 1 0 5898240 4423680 4423680 4426390 4492800 559 152 197 466 1203 0 0 0 0 39 0 0 0 0 0 +77 1783756790511304000 DEPTH 46 1 0.54057587336771096 0 3 13 3 13 0 0 201 38 2573 23664801 81600 859.88644409179688 5.9198999999999993 1057.9639 120960 55854 1 0 5898240 4423680 4423680 4426400 4492800 537 151 183 531 1171 0 0 0 0 38 0 0 0 0 0 +78 1783756791555435600 DEPTH 46 1 0.54062964549520687 0 3 13 3 13 0 0 202 27 2564 23664874 81600 857.38189697265625 5.9045000000000005 1042.9466 120960 45184 1 0 5898240 4423680 4423680 4426472 4492800 524 151 177 562 1150 0 0 0 0 27 0 0 0 0 0 +79 1783756792599282600 DEPTH 46 1 0.54062523102735749 0 3 13 3 13 0 0 202 37 2558 23664935 81600 856.61747741699219 5.9259999999999993 1042.6359 120960 30843 1 0 5898240 4423680 4423680 4426533 4492800 501 151 175 646 1085 0 0 0 0 37 0 0 0 0 0 +80 1783756792783120700 REFRESH 46 0 0.54056915532058647 0 3 13 3 13 0 0 202 7 416 3943925 55200 151.523193359375 0.98560000000000003 182.65649999999999 20160 13493 0 0 983040 737280 737280 737525 748800 161 26 33 117 79 0 0 0 0 7 0 0 0 0 0 +81 1783756793841256900 DEPTH 46 1 0.537467275376175 0 3 13 3 13 1 0 202 34 2556 23664916 81600 869.39236450195312 5.9202999999999992 1056.9333999999999 120960 66154 1 0 5898240 4423680 4423680 4426511 4492800 541 151 181 437 1246 0 0 0 0 34 0 0 0 0 1 +82 1783756794890993900 DEPTH 46 1 0.53764255720530052 0 3 13 3 13 0 0 202 41 2547 23664847 81600 861.84121704101562 5.8710000000000004 1048.5012999999999 120960 54972 1 0 5898240 4423680 4423680 4426447 4492800 526 151 178 483 1209 0 0 0 0 41 0 0 0 0 0 +83 1783756795934214300 DEPTH 46 1 0.53773252522145232 0 3 13 3 13 1 0 203 39 2559 23664829 81600 858.6864013671875 5.9026000000000005 1042.018 120960 44453 1 0 5898240 4423680 4423680 4426426 4492800 551 151 185 588 1084 0 0 0 0 39 0 0 0 0 1 +84 1783756796978500200 DEPTH 46 1 0.53779592241056595 0 3 13 3 13 0 0 204 33 2555 23664884 81600 857.00056457519531 5.9475999999999996 1041.8529000000001 120960 29811 1 0 5898240 4423680 4423680 4426483 4492800 484 150 170 607 1144 0 0 0 0 33 0 0 0 0 0 +85 1783756797165783100 REFRESH 46 0 0.53777232753484783 0 3 13 3 13 0 0 204 1 417 3943894 55200 152.92416381835938 1.0373000000000001 185.94460000000001 20160 13524 0 0 983040 737280 737280 737494 748800 162 26 33 119 77 0 0 0 0 1 0 0 0 0 0 +86 1783756798215728100 DEPTH 46 1 0.52870291381195234 0 3 13 3 13 0 0 205 45 2551 23664840 81600 868.39454650878906 5.9074 1048.769 120960 66047 1 0 5898240 4423680 4423680 4426438 4492800 560 151 179 471 1190 0 0 0 0 45 0 0 0 0 0 +87 1783756799279205700 DEPTH 46 1 0.52949286867293499 0 3 13 3 13 0 0 207 42 2552 23664801 81600 864.01774597167969 6.0320000000000009 1062.2862 120960 55689 1 0 5898240 4423680 4423680 4426397 4492800 536 151 175 557 1133 0 0 0 0 42 0 0 0 0 0 +88 1783756800327550500 DEPTH 46 1 0.53015684802675311 0 3 13 3 13 1 0 208 47 2550 23664869 81600 860.926025390625 5.9004999999999992 1047.0721000000001 120960 44681 1 0 5898240 4423680 4423680 4426467 4492800 522 150 172 618 1088 0 0 0 0 47 0 0 0 0 1 +89 1783756801365497100 DEPTH 46 1 0.53077636972889142 0 3 13 3 13 0 0 209 34 2547 23664967 81600 856.17129516601562 5.8843999999999994 1036.7335 120960 30829 1 0 5898240 4423680 4423680 4426565 4492800 499 150 164 680 1054 0 0 0 0 34 0 0 0 0 0 +90 1783756801549886100 REFRESH 46 0 0.53121976796868342 0 3 13 3 13 0 0 209 7 416 3943925 55200 151.58476257324219 0.98019999999999996 183.1891 20160 13569 0 0 983040 737280 737280 737525 748800 156 26 33 112 89 0 0 0 0 7 0 0 0 0 0 +91 1783756802616276400 DEPTH 46 1 0.52857355164667108 0 3 13 3 13 0 0 210 50 2541 23664849 81600 870.72917175292969 5.9241000000000001 1065.1763000000001 120960 66208 1 0 5898240 4423680 4423680 4426447 4492800 580 151 184 469 1157 0 0 0 0 50 0 0 0 0 0 +92 1783756803661276000 DEPTH 46 1 0.52914722746004239 0 3 13 3 13 1 0 211 35 2561 23664832 81600 862.24958801269531 5.9209999999999994 1043.8335 120960 54939 1 0 5898240 4423680 4423680 4426432 4492800 505 150 174 480 1252 0 0 2 0 33 0 0 0 0 1 +93 1783756804736608200 DEPTH 46 1 0.52962190145490018 0 3 13 3 13 0 0 212 46 2548 23664770 81600 860.78172302246094 5.9114000000000004 1074.1459 120960 43827 1 0 5898240 4423680 4423680 4426366 4492800 526 150 173 591 1108 0 0 5 0 41 0 0 0 0 0 +94 1783756805784416800 DEPTH 46 1 0.53000287513569511 0 3 13 3 13 0 0 212 49 2548 23664841 81600 855.91252136230469 5.8953999999999995 1046.0927999999999 120960 30358 1 0 5898240 4423680 4423680 4426441 4492800 505 150 165 652 1076 0 0 1 0 48 0 0 0 0 0 +95 1783756805967801800 REFRESH 46 0 0.53030259261684365 0 3 13 3 13 0 0 212 8 414 3943899 55200 150.70310974121094 0.9889 182.1079 20160 13651 0 0 983040 737280 737280 737499 748800 159 26 34 111 84 0 0 0 0 8 0 0 0 0 0 +96 1783756807025863700 DEPTH 46 1 0.52852968238465348 0 3 13 3 13 0 0 213 34 2559 23664817 81600 868.59580993652344 6.0198 1056.7224000000001 120960 66615 1 0 5898240 4423680 4423680 4426416 4492800 532 150 177 439 1261 0 0 0 0 34 0 0 0 0 0 +97 1783756808087705600 DEPTH 46 1 0.52889190020504551 0 3 13 3 13 1 0 214 41 2556 23664662 81600 862.70541381835938 5.9054000000000002 1060.5428999999999 120960 55082 1 0 5898240 4423680 4423680 4426257 4492800 578 150 176 618 1034 0 0 1 0 40 0 0 0 0 1 +98 1783756809129347100 DEPTH 46 1 0.52917838819886265 0 3 13 3 13 0 0 214 34 2551 23664835 81600 858.90827941894531 5.8938999999999995 1040.3824999999999 120960 44425 1 0 5898240 4423680 4423680 4426430 4492800 525 150 167 588 1121 0 0 0 0 34 0 0 0 0 0 +99 1783756810176557500 DEPTH 46 1 0.5293928503284584 0 3 13 3 13 0 0 214 42 2546 23664925 81600 857.61729431152344 5.9116999999999997 1045.8916999999999 120960 30057 1 0 5898240 4423680 4423680 4426525 4492800 518 150 166 689 1023 0 0 0 0 42 0 0 0 0 0 +100 1783756810360636800 REFRESH 46 0 0.52954512567068646 0 3 13 3 13 0 0 214 2 417 3943889 55200 152.43463134765625 0.98050000000000004 182.816 20160 13577 0 0 983040 737280 737280 737489 748800 162 26 34 116 79 0 0 0 0 2 0 0 0 0 0 +101 1783756811422252100 DEPTH 46 1 0.52164188901017849 0 3 13 3 13 0 0 214 44 2546 23664842 81600 872.47514343261719 5.8696999999999999 1060.3807999999999 120960 66541 1 0 5898240 4423680 4423680 4426437 4492800 589 151 178 512 1116 0 0 0 0 44 0 0 0 0 0 +102 1783756812470766100 DEPTH 46 1 0.52248913903709604 0 3 13 3 13 0 0 214 39 2567 23664865 81600 862.72392272949219 5.8738999999999999 1047.3154999999999 120960 55122 1 0 5898240 4423680 4423680 4426463 4492800 548 150 169 521 1179 0 0 0 0 39 0 0 0 0 0 +103 1783756813512235100 DEPTH 46 1 0.52321226618288885 0 3 13 3 13 0 0 215 31 2552 23664767 81600 857.22314453125 5.9187000000000003 1040.2293999999999 120960 43575 1 0 5898240 4423680 4423680 4426366 4492800 525 150 170 576 1131 0 0 0 0 31 0 0 0 0 0 +104 1783756814547550700 DEPTH 46 1 0.52382411366496018 0 3 13 3 13 0 0 215 37 2555 23664820 81600 854.12535095214844 5.9089 1034.1608000000001 120960 29546 1 0 5898240 4423680 4423680 4426419 4492800 512 150 163 599 1131 0 0 1 0 36 0 0 0 0 0 +105 1783756814730904600 REFRESH 46 0 0.52433623241964533 0 3 13 3 13 0 0 215 5 418 3943906 55200 151.87762451171875 0.98460000000000003 182.13130000000001 20160 13579 0 0 983040 737280 737280 737506 748800 158 26 34 109 91 0 0 0 0 5 0 0 0 0 0 +106 1783756815810507800 DEPTH 46 1 0.51975901053495954 0 3 13 3 13 0 0 216 42 2523 23664847 81600 866.3017578125 5.9237000000000002 1060.2279000000001 120960 66110 1 0 5898240 4423680 4423680 4426446 4492800 541 150 167 457 1208 0 0 4 0 38 0 0 0 0 0 +107 1783756816848858300 DEPTH 46 1 0.52060178973340565 0 3 13 3 13 1 0 217 52 2516 23664807 81600 856.59812927246094 5.8689000000000009 1037.0799 120960 55033 1 0 5898240 4423680 4423680 4426405 4492800 480 150 150 503 1233 0 0 3 0 49 0 0 0 0 1 +108 1783756817885154400 DEPTH 46 1 0.52133050985166973 0 3 13 3 13 0 0 218 48 2525 23664925 81600 853.731201171875 5.9766999999999992 1035.0271 120960 44568 1 0 5898240 4423680 4423680 4426523 4492800 462 150 150 558 1205 0 0 6 0 42 0 0 0 0 0 +109 1783756818929070000 DEPTH 46 1 0.52194189060833041 0 3 13 3 13 0 0 218 43 2564 23664794 81600 853.1993408203125 5.9107000000000003 1042.7048 120960 30589 1 0 5898240 4423680 4423680 4426393 4492800 419 150 153 620 1222 0 0 2 0 41 0 0 0 0 0 +110 1783756819116038200 REFRESH 46 0 0.52245559170459654 0 3 13 3 13 0 0 219 6 416 3943909 55200 152.75587463378906 0.97709999999999997 185.36070000000001 20160 13440 0 0 983040 737280 737280 737508 748800 165 26 34 116 75 0 0 0 0 6 0 0 0 0 0 +111 1783756820173235600 DEPTH 46 1 0.51888176039355782 0 3 13 3 13 0 0 219 48 2585 23664941 81600 869.58489990234375 5.9107000000000003 1055.8785 120960 65843 1 0 5898240 4423680 4423680 4426538 4492800 544 150 161 459 1271 0 0 2 0 46 0 0 0 0 0 +112 1783756821218540900 DEPTH 46 1 0.51962952254489392 0 3 13 3 13 0 0 219 38 2568 23664762 81600 859.59234619140625 5.9287000000000001 1044.0773999999999 120960 55015 1 0 5898240 4423680 4423680 4426362 4492800 519 150 158 562 1179 0 0 0 0 38 0 0 0 0 0 +113 1783756822258891400 DEPTH 46 1 0.5202670849462685 0 3 13 3 13 1 0 219 37 2561 23664844 81600 855.53028869628906 5.9128000000000007 1038.7319 120960 44040 1 0 5898240 4423680 4423680 4426443 4492800 483 150 151 568 1209 0 0 0 0 37 0 0 0 0 1 +114 1783756823296549300 DEPTH 46 1 0.52081193131895254 0 3 13 3 13 1 0 219 39 2559 23664857 81600 851.51481628417969 5.9076000000000004 1036.4168999999999 120960 30356 1 0 5898240 4423680 4423680 4426454 4492800 316 150 150 420 1523 0 0 0 0 39 0 0 0 0 1 +115 1783756823479537300 REFRESH 46 0 0.52126342073995791 0 3 13 3 13 0 0 219 4 402 3943910 55200 151.56632995605469 0.98060000000000003 181.82499999999999 20160 13459 0 0 983040 737280 737280 737510 748800 118 25 33 88 138 0 0 0 0 4 0 0 0 0 0 +116 1783756824536501300 DEPTH 46 1 0.51563345691087492 0 3 13 3 13 0 0 219 34 2554 23664885 81600 863.90571594238281 5.9052999999999995 1055.7625 120960 66127 1 0 5898240 4423680 4423680 4426482 4492800 309 150 150 290 1655 0 0 0 0 34 0 0 0 0 0 +117 1783756825574533300 DEPTH 46 1 0.51653246860245772 0 3 13 3 13 1 0 219 39 2558 23664839 81600 855.74229431152344 5.8837999999999999 1036.8377 120960 55455 1 0 5898240 4423680 4423680 4426437 4492800 228 150 150 222 1808 0 0 0 0 39 0 0 0 0 1 +118 1783756826616762400 DEPTH 46 1 0.51731381975330626 0 3 13 3 13 1 0 219 27 2564 23664900 81600 855.49247741699219 5.8747000000000007 1040.9612 120960 44382 1 0 5898240 4423680 4423680 4426498 4492800 193 150 150 211 1860 0 0 0 0 27 0 0 0 0 1 +119 1783756827649548900 DEPTH 46 1 0.51801047180525639 0 3 13 3 13 1 0 220 39 2548 23664904 81600 853.04083251953125 6.0029000000000003 1031.577 120960 30576 1 0 5898240 4423680 4423680 4426503 4492800 172 150 150 180 1896 0 0 0 0 39 0 0 0 0 1 +120 1783756827840098000 REFRESH 46 0 0.51858670377918636 0 3 13 3 13 0 0 220 6 396 3943911 55200 150.86796569824219 0.9849 188.6994 20160 13519 0 0 983040 737280 737280 737511 748800 119 25 29 86 137 0 0 0 0 6 0 0 0 0 0 +121 1783756828882875400 DEPTH 46 1 0.51505761115222515 0 3 13 3 13 0 0 222 39 2567 23664832 81600 864.66889953613281 5.9228999999999994 1041.5549000000001 120960 66220 1 0 5898240 4423680 4423680 4426430 4492800 216 150 150 207 1844 0 0 0 0 39 0 0 0 0 0 +122 1783756829921749500 DEPTH 46 1 0.5158490317167963 0 3 13 3 13 1 0 222 24 2552 23664760 81600 857.26066589355469 5.9492999999999991 1037.7104999999999 120960 55174 1 0 5898240 4423680 4423680 4426358 4492800 205 150 150 243 1804 0 0 0 0 24 0 0 0 0 1 +123 1783756830954804100 DEPTH 46 1 0.51652964930121759 0 3 13 3 13 1 0 222 29 2557 23664766 81600 852.28121948242188 5.9504000000000001 1031.806 120960 43857 1 0 5898240 4423680 4423680 4426364 4492800 203 150 150 242 1812 0 0 0 0 29 0 0 0 0 1 +124 1783756831990468700 DEPTH 46 1 0.51710999629473231 0 3 13 3 13 0 0 222 28 2549 23664784 81600 851.41885375976562 5.8679000000000006 1034.1410000000001 120960 29969 1 0 5898240 4423680 4423680 4426381 4492800 193 150 150 291 1765 0 0 0 0 28 0 0 0 0 0 +125 1783756832173536500 REFRESH 46 0 0.51760082498955229 0 3 13 3 13 0 0 222 8 399 3943906 55200 152.14694213867188 0.98170000000000002 181.82140000000001 20160 13672 0 0 983040 737280 737280 737506 748800 122 25 30 87 135 0 0 0 0 8 0 0 0 0 0 +126 1783756833221982300 DEPTH 46 1 0.51601138169491423 0 3 13 2 13 1 0 222 34 2565 23664953 81600 867.13446044921875 5.8962000000000003 1047.1629 120960 66655 1 0 5898240 4423680 4423680 4426550 4492800 209 150 150 200 1856 0 0 0 0 34 0 0 0 0 1 +127 1783756834258339400 DEPTH 46 1 0.61654998340495126 0 2 13 2 13 1 0 222 45 2562 23664836 81600 857.03459167480469 5.9168999999999992 1035.0938000000001 120960 55385 1 0 5898240 4423680 4423680 4426433 4492800 208 150 150 241 1813 0 0 0 0 45 0 0 0 0 2 +128 1783756835295725800 DEPTH 46 1 0.60766594232179849 0 2 13 2 13 1 0 222 50 2573 23664881 81600 855.23309326171875 5.9792999999999994 1036.2017000000001 120960 44006 1 0 5898240 4423680 4423680 4426480 4492800 363 150 151 428 1481 0 0 0 0 50 0 0 0 0 3 +129 1783756836337141400 DEPTH 46 1 0.59941588119765399 0 2 13 2 13 0 0 222 64 2552 23664828 81600 851.06620788574219 5.9052000000000007 1040.1914999999999 120960 31134 1 0 5898240 4423680 4423680 4426427 4492800 258 150 151 347 1646 0 0 0 0 64 0 0 0 0 0 +130 1783756836519763100 REFRESH 46 0 0.59152302860292605 0 2 13 2 13 0 0 223 9 404 3943896 55200 151.54789733886719 0.98040000000000005 181.41820000000001 20160 13564 0 0 983040 737280 737280 737496 748800 127 25 34 92 126 0 0 0 1 8 0 0 0 0 0 +131 1783756837576691900 DEPTH 46 1 0.58338967646456097 0 2 13 2 13 1 0 223 63 2554 23664832 81600 865.84927368164062 5.8860000000000001 1055.7349999999999 120960 65856 1 0 5898240 4423680 4423680 4426430 4492800 242 150 150 227 1785 0 0 0 0 63 0 0 0 0 2 +132 1783756838614513000 DEPTH 46 1 0.5770561185957781 0 2 13 2 13 1 0 224 46 2534 23664909 81600 857.4727783203125 5.8819999999999997 1036.4808 120960 54982 1 0 5898240 4423680 4423680 4426508 4492800 291 150 150 297 1646 0 0 0 0 46 0 0 0 0 1 +133 1783756839656533600 DEPTH 46 1 0.57131736873344097 0 2 13 2 13 0 0 224 50 2542 23664865 81600 852.75627136230469 5.9542000000000002 1040.7311999999999 120960 44287 1 0 5898240 4423680 4423680 4426460 4492800 154 150 150 197 1891 0 0 0 0 50 0 0 0 0 0 +134 1783756840696102600 DEPTH 46 1 0.56611681959295423 0 2 13 2 13 0 0 224 47 2548 23664814 81600 850.60581970214844 5.9044999999999996 1038.4043999999999 120960 30319 1 0 5898240 4423680 4423680 4426414 4492800 236 150 150 331 1681 0 0 0 0 47 0 0 0 0 0 +135 1783756840878838900 REFRESH 46 0 0.56140758816878189 0 2 13 2 13 0 0 224 9 411 3943921 55200 151.62265014648438 0.98460000000000003 181.51159999999999 20160 13604 0 0 983040 737280 737280 737520 748800 127 25 34 91 134 0 0 0 0 9 0 0 0 0 0 +136 1783756841926381900 DEPTH 46 1 0.55614079479604794 0 2 13 2 13 0 0 226 39 2559 23664819 81600 865.28077697753906 5.9016000000000002 1046.2719999999999 120960 66333 1 0 5898240 4423680 4423680 4426418 4492800 231 150 150 229 1799 0 0 0 0 39 0 0 0 0 0 +137 1783756842970670400 DEPTH 46 1 0.5523724440229385 0 2 13 2 13 0 0 229 42 2546 23664806 81600 857.96859741210938 5.8920999999999992 1043.1219000000001 120960 55208 1 0 5898240 4423680 4423680 4426405 4492800 226 150 150 278 1742 0 0 0 0 42 0 0 0 0 0 +138 1783756844004560800 DEPTH 46 1 0.54895293626773967 0 2 13 2 13 1 0 230 44 2535 23664741 81600 855.15673828125 5.8708 1032.6300000000001 120960 43383 1 0 5898240 4423680 4423680 4426340 4492800 184 150 150 246 1805 0 0 0 0 44 0 0 0 0 1 +139 1783756845042279300 DEPTH 46 1 0.54586566845427753 0 2 13 2 13 1 0 231 48 2522 23664764 81600 850.66314697265625 5.9845999999999995 1036.4447 120960 29904 1 0 5898240 4423680 4423680 4426364 4492800 188 150 150 301 1733 0 0 0 0 48 0 0 0 0 1 +140 1783756845230280200 REFRESH 46 0 0.5430415739008656 0 2 13 2 13 0 0 231 7 403 3943917 55200 150.88844299316406 1.0691999999999999 184.22970000000001 20160 13423 0 0 983040 737280 737280 737517 748800 128 25 29 95 126 0 0 0 0 7 0 0 0 0 0 +141 1783756846305370700 DEPTH 46 1 0.53747260943009212 0 2 13 2 13 1 0 231 41 2522 23664813 81600 865.43374633789062 5.9418000000000006 1053.2941000000001 120960 66109 1 0 5898240 4423680 4423680 4426411 4492800 155 150 150 173 1894 0 0 0 0 41 0 0 0 0 1 +142 1783756847343760000 DEPTH 46 1 0.53545908423570787 0 2 13 2 13 0 0 231 30 2522 23664802 81600 854.12742614746094 5.9094999999999995 1037.1715999999999 120960 55082 1 0 5898240 4423680 4423680 4426402 4492800 165 150 150 194 1863 0 0 0 0 30 0 0 0 0 0 +143 1783756848386666500 DEPTH 46 1 0.53359449893440458 0 2 13 2 13 0 0 231 32 2527 23664897 81600 855.19601440429688 5.9107000000000003 1041.7428 120960 44040 1 0 5898240 4423680 4423680 4426493 4492800 160 150 150 223 1844 0 0 0 0 32 0 0 0 0 0 +144 1783756849419931400 DEPTH 46 1 0.53188977512878721 0 2 13 2 13 0 0 231 37 2526 23664854 81600 852.56578063964844 5.9110000000000005 1031.962 120960 29495 1 0 5898240 4423680 4423680 4426452 4492800 163 150 150 181 1882 0 0 0 0 37 0 0 0 0 0 +145 1783756849604807700 REFRESH 46 0 0.5303291476481895 0 2 13 2 13 0 0 231 8 409 3943929 55200 150.85955810546875 0.98619999999999997 183.2894 20160 13583 0 0 983040 737280 737280 737529 748800 128 25 31 98 127 0 0 0 0 8 0 0 0 0 0 +146 1783756850656748100 DEPTH 46 1 0.52689842472078419 0 2 13 2 13 0 0 231 41 2527 23664758 81600 865.17620849609375 6.0040000000000004 1050.4324999999999 120960 66352 1 0 5898240 4423680 4423680 4426358 4492800 200 150 150 222 1805 0 0 0 0 41 0 0 0 0 0 +147 1783756851697362200 DEPTH 46 1 0.52578483069545523 0 2 13 2 13 0 0 231 52 2539 23664887 81600 858.29415893554688 5.8623000000000003 1039.3059000000001 120960 55090 1 0 5898240 4423680 4423680 4426485 4492800 168 150 150 202 1869 0 0 0 0 52 0 0 0 0 0 +148 1783756852732714000 DEPTH 46 1 0.52475686448991921 0 2 13 2 13 0 0 231 33 2536 23664889 81600 853.69569396972656 5.8982000000000001 1034.0553 120960 44165 1 0 5898240 4423680 4423680 4426488 4492800 150 150 150 156 1930 0 0 0 0 33 0 0 0 0 0 +149 1783756853768436100 DEPTH 46 1 0.52380617219251446 0 2 13 2 13 1 0 231 32 2516 23664793 81600 853.00410461425781 5.9085000000000001 1034.3659 120960 30269 1 0 5898240 4423680 4423680 4426393 4492800 150 150 150 159 1907 0 0 0 0 32 0 0 0 0 1 +150 1783756853954474800 REFRESH 46 0 0.52292567677371959 0 2 13 2 13 0 0 231 10 406 3943895 55200 151.92268371582031 0.98740000000000006 184.7467 20160 13575 0 0 983040 737280 737280 737495 748800 127 25 29 91 134 0 0 0 0 10 0 0 0 0 0 +151 1783756855001580400 DEPTH 46 1 0.52210767296820104 0 2 13 2 13 0 0 231 31 2513 23664899 81600 865.83383178710938 5.9053999999999993 1045.8330000000001 120960 66105 1 0 5898240 4423680 4423680 4426498 4492800 150 150 150 165 1898 0 0 0 0 31 0 0 0 0 0 +152 1783756856053750400 DEPTH 46 1 0.52134655638105509 0 2 13 2 13 0 0 232 25 2522 23664883 81600 856.90577697753906 5.9168000000000003 1050.903 120960 55081 1 0 5898240 4423680 4423680 4426479 4492800 155 150 150 173 1894 0 0 0 0 25 0 0 0 0 0 +153 1783756857087962200 DEPTH 46 1 0.52063683596830135 0 2 13 2 13 0 0 232 38 2541 23664836 81600 854.94117736816406 5.8883000000000001 1032.9572000000001 120960 44022 1 0 5898240 4423680 4423680 4426436 4492800 159 150 150 203 1879 0 0 0 0 38 0 0 0 0 0 +154 1783756858118091900 DEPTH 46 1 0.51997356712491616 0 2 13 2 13 1 0 232 37 2528 23664876 81600 850.82124328613281 5.8919999999999995 1029.0026 120960 30099 1 0 5898240 4423680 4423680 4426476 4492800 171 150 150 223 1834 0 0 0 0 37 0 0 0 0 1 +155 1783756858301016700 REFRESH 46 0 0.51937543140464637 0 2 13 2 13 1 0 232 7 404 3943906 55200 151.82421875 0.99939999999999996 181.7226 20160 13592 0 0 983040 737280 737280 737506 748800 127 25 30 92 130 0 0 0 0 7 0 0 0 0 1 +156 1783756859351045400 DEPTH 46 1 0.51578983673864687 0 2 13 2 13 0 0 232 29 2536 23664804 81600 865.8367919921875 5.9081999999999999 1048.8733 120960 66080 1 0 5898240 4423680 4423680 4426404 4492800 218 150 150 207 1811 0 0 0 0 29 0 0 0 0 0 +157 1783756860395534200 DEPTH 46 1 0.5155388505725369 0 2 13 2 13 1 0 232 31 2539 23664919 81600 857.70567321777344 5.9337000000000009 1043.1364000000001 120960 55377 1 0 5898240 4423680 4423680 4426518 4492800 171 150 150 180 1888 0 0 0 0 31 0 0 0 0 1 +158 1783756861429166200 DEPTH 46 1 0.51529376564927765 0 2 13 2 13 0 0 232 36 2550 23664767 81600 853.14231872558594 5.9238999999999997 1032.4063000000001 120960 44030 1 0 5898240 4423680 4423680 4426364 4492800 155 150 150 201 1894 0 0 0 0 36 0 0 0 0 0 +159 1783756862463236300 DEPTH 46 1 0.51504503684033043 0 2 13 2 13 0 0 232 40 2547 23664856 81600 850.60037231445312 5.8963000000000001 1032.8583000000001 120960 30837 1 0 5898240 4423680 4423680 4426456 4492800 150 150 150 207 1890 0 0 0 0 40 0 0 0 0 0 +160 1783756862645834800 REFRESH 46 0 0.51479777728392417 0 2 13 2 13 1 0 232 5 407 3943896 55200 151.64210510253906 0.98499999999999999 181.38720000000001 20160 13589 0 0 983040 737280 737280 737496 748800 122 25 29 92 139 0 0 0 0 5 0 0 0 0 1 +161 1783756863693937900 DEPTH 46 1 0.50955322322951724 0 2 13 2 13 1 0 232 34 2571 23664809 81600 862.98368835449219 5.8911999999999995 1046.9236000000001 120960 66081 1 0 5898240 4423680 4423680 4426408 4492800 237 150 150 230 1804 0 0 0 0 34 0 0 0 0 1 +162 1783756864742723800 DEPTH 46 1 0.5098107474872644 0 2 13 2 13 0 0 232 33 2557 23664869 81600 856.54069519042969 5.9173 1047.6206999999999 120960 55623 1 0 5898240 4423680 4423680 4426469 4492800 161 150 150 219 1877 0 0 0 0 33 0 0 0 0 0 +163 1783756865786571000 DEPTH 46 1 0.5100177630572591 0 2 13 2 13 1 0 232 27 2557 23664865 81600 854.683349609375 5.9854999999999992 1042.6960999999999 120960 44583 1 0 5898240 4423680 4423680 4426463 4492800 159 150 150 214 1884 0 0 0 0 27 0 0 0 0 1 +164 1783756866829061800 DEPTH 46 1 0.51018161159736275 0 2 13 2 13 0 0 232 27 2569 23664822 81600 849.03904724121094 6.2313000000000001 1041.3344 120960 30261 1 0 5898240 4423680 4423680 4426422 4492800 159 150 150 197 1913 0 0 0 0 27 0 0 0 0 0 +165 1783756867012241000 REFRESH 46 0 0.51030629668895078 0 2 13 2 13 0 0 232 7 411 3943929 55200 151.32261657714844 0.98670000000000002 181.97210000000001 20160 13572 0 0 983040 737280 737280 737528 748800 135 25 30 105 116 0 0 0 0 7 0 0 0 0 0 +166 1783756868065669300 DEPTH 46 1 0.5073961422622898 0 2 13 2 13 0 0 233 32 2546 23664814 81600 865.37370300292969 6.0781000000000001 1052.1976999999999 120960 66321 1 0 5898240 4423680 4423680 4426412 4492800 174 150 150 217 1855 0 0 0 0 32 0 0 0 0 0 +167 1783756869114899700 DEPTH 46 1 0.50775479681265179 0 2 13 2 13 1 0 233 25 2556 23664878 81600 856.55949401855469 5.9155000000000006 1048.0277000000001 120960 55207 1 0 5898240 4423680 4423680 4426476 4492800 184 150 150 199 1873 0 0 0 0 25 0 0 0 0 1 +168 1783756870151025300 DEPTH 46 1 0.50805819775777339 0 2 13 2 13 0 0 233 26 2550 23664812 81600 854.30772399902344 5.915 1034.7959000000001 120960 44029 1 0 5898240 4423680 4423680 4426412 4492800 156 150 150 195 1899 0 0 0 0 26 0 0 0 0 0 +169 1783756871196515200 DEPTH 46 1 0.50830671926106008 0 2 13 2 13 1 0 233 30 2557 23664812 81600 852.66123962402344 5.9163999999999994 1044.2402999999999 120960 30346 1 0 5898240 4423680 4423680 4426411 4492800 197 150 150 291 1769 0 0 0 0 30 0 0 0 0 1 +170 1783756871391105700 REFRESH 46 0 0.50851124595615371 0 2 13 2 13 0 0 233 4 411 3943906 55200 151.19973754882812 1.0819000000000001 193.4179 20160 13583 0 0 983040 737280 737280 737506 748800 136 25 29 100 121 0 0 0 0 4 0 0 0 0 0 +171 1783756872435126200 DEPTH 46 1 0.50267116908328047 0 2 13 2 13 1 0 234 34 2564 23664783 81600 865.35464477539062 5.9231000000000007 1042.8605 120960 66170 1 0 5898240 4423680 4423680 4426383 4492800 200 150 150 192 1872 0 0 0 0 34 0 0 0 0 1 +172 1783756873491877300 DEPTH 46 1 0.50339368601029577 0 2 13 2 13 0 0 234 24 2570 23664858 81600 858.23295593261719 5.9439000000000002 1055.5096000000001 120960 55274 1 0 5898240 4423680 4423680 4426456 4492800 193 150 150 240 1837 0 0 0 0 24 0 0 0 0 0 +173 1783756874532311900 DEPTH 46 1 0.50402269003453459 0 2 13 2 13 0 0 234 22 2564 23664886 81600 855.00125122070312 5.8580999999999994 1039.1590000000001 120960 43986 1 0 5898240 4423680 4423680 4426482 4492800 197 150 150 243 1824 0 0 0 0 22 0 0 0 0 0 +174 1783756875567639600 DEPTH 46 1 0.50456768333679514 0 2 13 2 13 0 0 234 29 2564 23664818 81600 853.22824096679688 5.8826000000000001 1034.0925 120960 30373 1 0 5898240 4423680 4423680 4426418 4492800 180 150 150 283 1801 0 0 0 0 29 0 0 0 0 0 +175 1783756875751300400 REFRESH 46 0 0.50503721603662743 0 2 13 2 13 0 0 234 7 407 3943901 55200 151.20704650878906 0.98419999999999996 182.45070000000001 20160 13416 0 0 983040 737280 737280 737501 748800 126 25 28 92 136 0 0 0 0 7 0 0 0 0 0 +176 1783756876820241600 DEPTH 46 1 0.50243898145138499 0 2 13 0 14 1 0 234 31 2555 23664808 81600 866.04367065429688 5.9001999999999999 1048.3024 120960 66208 1 0 5898240 4423680 4423680 4426408 4492800 206 150 150 235 1814 1 0 0 0 30 1 0 0 0 0 +177 1783756877859928000 DEPTH 46 1 0.60307990180669835 0 0 14 0 14 1 0 234 27 2559 23664853 81600 855.44630432128906 5.9245000000000001 1038.4111 120960 54828 1 0 5898240 4423680 4423680 4426453 4492800 221 150 150 257 1781 1 0 0 0 26 1 0 0 0 0 +178 1783756878911761400 DEPTH 46 1 0.59654316641687166 0 0 14 0 14 1 0 234 33 2571 23664879 81600 857.439453125 6.0164000000000009 1050.402 120960 44022 1 0 5898240 4423680 4423680 4426477 4492800 172 150 150 208 1891 1 0 0 0 32 1 0 0 0 0 +179 1783756879963199000 DEPTH 46 1 0.58810651832816796 0 0 14 0 14 1 0 234 28 2584 23664850 81600 857.48445129394531 5.8649000000000004 1050.2231999999999 120960 30134 1 0 5898240 4423680 4423680 4426450 4492800 194 150 150 275 1815 1 0 0 0 27 1 0 0 0 1 +180 1783756880152882300 REFRESH 46 0 0.5805996171281208 0 0 14 0 14 0 0 234 11 414 3943897 55200 153.46269226074219 0.9859 188.40520000000001 20160 13477 0 0 983040 737280 737280 737496 748800 147 25 30 102 110 0 0 0 0 11 0 0 0 0 0 +181 1783756881219189900 DEPTH 46 1 0.57334322063798715 0 0 14 0 14 1 0 234 27 2594 23664913 81600 870.48086547851562 6.1767000000000003 1064.7998 120960 66258 1 0 5898240 4423680 4423680 4426512 4492800 256 150 150 239 1799 1 0 0 0 26 1 0 0 0 0 +182 1783756882267873000 DEPTH 46 1 0.5667927420988228 0 0 14 0 14 1 0 234 40 2583 23664797 81600 863.53330993652344 5.8896999999999995 1047.4553000000001 120960 54789 1 0 5898240 4423680 4423680 4426396 4492800 282 150 150 283 1718 1 0 0 0 39 1 0 0 0 1 +183 1783756883327212500 DEPTH 46 1 0.560902834657101 0 0 14 0 14 0 0 234 30 2578 23664844 81600 859.24794006347656 5.9369999999999994 1058.0736999999999 120960 44099 1 0 5898240 4423680 4423680 4426443 4492800 256 150 150 308 1714 0 0 0 0 30 0 0 0 0 0 +184 1783756884367399100 DEPTH 46 1 0.55555662220448143 0 0 14 0 14 1 0 234 36 2578 23664809 81600 857.68067932128906 5.9248000000000003 1039.0087000000001 120960 29695 1 0 5898240 4423680 4423680 4426407 4492800 248 150 150 364 1666 0 0 0 0 36 0 0 0 0 1 +185 1783756884552874100 REFRESH 46 0 0.55072770575595675 0 0 14 0 14 0 0 234 4 415 3943896 55200 152.82585144042969 0.98199999999999998 183.7585 20160 13535 0 0 983040 737280 737280 737496 748800 151 25 32 101 106 0 0 0 0 4 0 0 0 0 0 +186 1783756885618932700 DEPTH 46 1 0.54036000815144303 0 0 14 0 14 0 0 234 32 2581 23664818 81600 868.92727661132812 5.9392000000000005 1064.7574 120960 65873 1 0 5898240 4423680 4423680 4426417 4492800 294 150 150 292 1695 0 0 0 0 32 0 0 0 0 0 +187 1783756886668555700 DEPTH 46 1 0.53700977616924384 0 0 14 0 14 1 0 234 30 2585 23664894 81600 860.52351379394531 5.8877999999999995 1048.0231000000001 120960 55619 1 0 5898240 4423680 4423680 4426493 4492800 186 150 150 294 1805 0 0 0 0 30 0 0 0 0 1 +188 1783756887718630700 DEPTH 46 1 0.53397696083352697 0 0 14 0 14 1 0 234 26 2574 23664787 81600 861.20724487304688 5.8660000000000005 1048.7909999999999 120960 43994 1 0 5898240 4423680 4423680 4426385 4492800 263 150 150 289 1722 0 0 0 0 26 0 0 0 0 1 +189 1783756888763401300 DEPTH 46 1 0.53122776385302806 0 0 14 0 14 0 0 234 26 2589 23664838 81600 856.91133117675781 5.9238999999999997 1043.5328999999999 120960 30607 1 0 5898240 4423680 4423680 4426438 4492800 219 150 150 337 1733 0 0 0 0 26 0 0 0 0 0 +190 1783756888954742400 REFRESH 46 0 0.52873360588292062 0 0 14 0 14 0 0 234 6 417 3943925 55200 151.53254699707031 4.2606000000000002 190.1155 20160 13523 0 0 983040 737280 737280 737525 748800 154 25 30 102 106 0 0 0 0 6 0 0 0 0 0 +191 1783756890009675800 DEPTH 46 1 0.52247006283357456 0 0 14 0 14 1 0 234 36 2570 23664853 81600 870.98828125 5.9077000000000002 1053.7240999999999 120960 66093 1 0 5898240 4423680 4423680 4426450 4492800 267 150 150 250 1753 0 0 0 0 36 0 0 0 0 1 +192 1783756891064193400 DEPTH 46 1 0.52081934035933475 0 0 14 0 14 0 0 234 24 2596 23664946 81600 863.88322448730469 5.8833000000000002 1053.1697999999999 120960 54665 1 0 5898240 4423680 4423680 4426545 4492800 210 150 150 232 1854 0 0 0 0 24 0 0 0 0 0 +193 1783756892112908300 DEPTH 46 1 0.51930998771371017 0 0 14 0 14 0 0 234 20 2588 23664864 81600 858.63468933105469 5.8574999999999999 1047.0399 120960 43734 1 0 5898240 4423680 4423680 4426461 4492800 255 150 150 267 1766 0 0 0 0 20 0 0 0 0 0 +194 1783756893160145500 DEPTH 46 1 0.51793313237218552 0 0 14 0 14 0 0 234 33 2580 23664876 81600 858.46800231933594 5.9001000000000001 1045.7320999999999 120960 29838 1 0 5898240 4423680 4423680 4426472 4492800 232 150 150 371 1677 0 0 0 0 33 0 0 0 0 0 +195 1783756893345098600 REFRESH 46 0 0.51667564292298973 0 0 14 0 14 0 0 234 7 417 3943914 55200 151.81106567382812 0.98529999999999995 183.5994 20160 13588 0 0 983040 737280 737280 737514 748800 159 25 30 106 97 0 0 0 0 7 0 0 0 0 0 +196 1783756894408947100 DEPTH 46 1 0.51252569980304363 0 0 14 0 14 0 0 234 30 2587 23664818 81600 868.78172302246094 5.9538000000000011 1062.5596 120960 66424 1 0 5898240 4423680 4423680 4426417 4492800 216 150 150 206 1865 0 0 0 0 30 0 0 0 0 0 +197 1783756895450401600 DEPTH 46 1 0.51177266413297584 0 0 14 0 14 0 0 234 35 2572 23664815 81600 861.03097534179688 5.9077000000000002 1040.2654 120960 55418 1 0 5898240 4423680 4423680 4426415 4492800 252 150 150 250 1770 0 0 0 0 35 0 0 0 0 0 +198 1783756896503907700 DEPTH 46 1 0.51107695966824385 0 0 14 0 14 0 0 235 26 2590 23664854 81600 860.29888916015625 5.9264999999999999 1052.3364999999999 120960 44423 1 0 5898240 4423680 4423680 4426453 4492800 185 150 150 239 1866 0 0 0 0 26 0 0 0 0 0 +199 1783756897551979800 DEPTH 46 1 0.51043296655475867 0 0 14 0 14 1 0 235 37 2587 23664849 81600 857.6929931640625 5.9745999999999997 1046.8382999999999 120960 30019 1 0 5898240 4423680 4423680 4426449 4492800 222 150 150 288 1777 0 0 0 0 37 0 0 0 0 1 +200 1783756897735396000 REFRESH 46 0 0.50983581355594509 0 0 14 0 14 0 0 235 6 416 3943916 55200 151.6510009765625 0.98270000000000002 182.17689999999999 20160 13547 0 0 983040 737280 737280 737516 748800 147 25 29 101 114 0 0 0 0 6 0 0 0 0 0 +201 1783756898789884600 DEPTH 46 1 0.50528055181986753 0 0 14 0 14 0 0 235 26 2583 23664894 81600 870.54130554199219 5.8708000000000009 1053.2633000000001 120960 65949 1 0 5898240 4423680 4423680 4426490 4492800 200 150 150 210 1873 0 0 0 0 26 0 0 0 0 0 +202 1783756899842936200 DEPTH 46 1 0.50516328974301095 0 0 14 0 14 1 0 235 34 2587 23664734 81600 860.86946105957031 5.9569999999999999 1051.6901 120960 55675 1 0 5898240 4423680 4423680 4426332 4492800 225 150 150 252 1810 0 0 0 0 34 0 0 0 0 1 +203 1783756900889690000 DEPTH 46 1 0.50504045506306816 0 0 14 0 14 1 0 235 23 2580 23664847 81600 857.70416259765625 5.9027999999999992 1045.4638 120960 44222 1 0 5898240 4423680 4423680 4426446 4492800 216 150 150 247 1817 0 0 0 0 23 0 0 0 0 1 +204 1783756901946664700 DEPTH 46 1 0.50491352414964408 0 0 14 0 14 0 0 236 32 2584 23664817 81600 856.69673156738281 6.0151999999999992 1055.6700000000001 120960 30598 1 0 5898240 4423680 4423680 4426415 4492800 224 150 150 263 1797 0 0 0 0 32 0 0 0 0 0 +205 1783756902130587500 REFRESH 46 0 0.5047810318229522 0 0 14 0 14 0 0 236 5 415 3943923 55200 152.69580078125 0.98129999999999995 182.7518 20160 13587 0 0 983040 737280 737280 737523 748800 151 25 28 97 114 0 0 0 0 5 0 0 0 0 0 +206 1783756903191999100 DEPTH 46 1 0.49964468947535723 0 0 14 0 14 1 0 236 36 2583 23664878 81600 869.70185852050781 5.8927000000000005 1059.7221999999999 120960 65690 1 0 5898240 4423680 4423680 4426474 4492800 237 150 150 216 1830 0 0 0 0 36 0 0 0 0 1 +207 1783756904248497700 DEPTH 46 1 0.50000498653261483 0 0 14 0 14 0 0 236 24 2584 23664859 81600 865.1571044921875 6.2304000000000004 1055.1795 120960 55473 1 0 5898240 4423680 4423680 4426457 4492800 184 150 150 191 1909 0 0 0 0 24 0 0 0 0 0 +208 1783756905295597700 DEPTH 46 1 0.50031236124654588 0 0 14 0 14 1 0 236 30 2570 23664780 81600 858.83781433105469 5.9279999999999999 1045.7973999999999 120960 43985 1 0 5898240 4423680 4423680 4426378 4492800 211 150 150 251 1808 0 0 0 0 30 0 0 0 0 1 +209 1783756906335171300 DEPTH 46 1 0.50057498992160465 0 0 14 0 14 1 0 236 25 2580 23664837 81600 856.32736206054688 5.9290000000000003 1038.3182999999999 120960 30448 1 0 5898240 4423680 4423680 4426435 4492800 200 150 150 257 1823 0 0 0 0 25 0 0 0 0 1 +210 1783756906519341900 REFRESH 46 0 0.50079912485267031 0 0 14 0 14 0 0 236 4 417 3943907 55200 152.00445556640625 0.9839 182.95670000000001 20160 13482 0 0 983040 737280 737280 737507 748800 149 25 30 101 112 0 0 0 0 4 0 0 0 0 0 +211 1783756907614195200 DEPTH 46 1 0.49497701619863455 0 0 14 0 14 0 0 237 19 2570 23664850 81600 871.39189147949219 5.9207999999999998 1073.3214 120960 66004 1 0 5898240 4423680 4423680 4426449 4492800 197 150 150 197 1876 0 0 0 0 19 0 0 0 0 0 +212 1783756908663040400 DEPTH 46 1 0.49572062753370005 0 0 14 0 14 1 0 237 35 2578 23664779 81600 861.67001342773438 5.8959000000000001 1047.6112000000001 120960 55502 1 0 5898240 4423680 4423680 4426378 4492800 234 150 150 250 1794 0 0 0 0 35 0 0 0 0 1 +213 1783756909707962900 DEPTH 46 1 0.49637525641466246 0 0 14 0 14 1 0 237 32 2580 23664785 81600 858.33383178710938 5.9276 1043.7660000000001 120960 44898 1 0 5898240 4423680 4423680 4426383 4492800 227 150 150 307 1746 0 0 0 0 32 0 0 0 0 1 +214 1783756910761494300 DEPTH 46 1 0.49694648319682705 0 0 14 0 14 0 0 237 16 2585 23664881 81600 857.39741516113281 5.9339999999999993 1052.3195000000001 120960 30960 1 0 5898240 4423680 4423680 4426480 4492800 213 150 150 290 1782 0 0 0 0 16 0 0 0 0 0 +215 1783756910949273800 REFRESH 46 0 0.49744425807915665 0 0 14 0 14 0 0 237 7 417 3943911 55200 151.63107299804688 0.99250000000000005 186.46090000000001 20160 13435 0 0 983040 737280 737280 737511 748800 155 25 30 102 105 0 0 0 0 7 0 0 0 0 0 +216 1783756912004951400 DEPTH 46 1 0.49487614993501522 0 0 14 0 14 0 0 237 23 2585 23664868 81600 871.05641174316406 5.8929999999999998 1054.3924 120960 66279 1 0 5898240 4423680 4423680 4426468 4492800 179 150 150 182 1924 0 0 0 0 23 0 0 0 0 0 +217 1783756913056317600 DEPTH 46 1 0.49554884100150076 0 0 14 0 14 0 0 237 29 2575 23664835 81600 863.33544921875 5.8740000000000006 1050.2018 120960 55362 1 0 5898240 4423680 4423680 4426435 4492800 208 150 150 282 1785 0 0 0 0 29 0 0 0 0 0 +218 1783756914107738800 DEPTH 46 1 0.49613834435895626 0 0 14 0 14 0 0 237 25 2576 23664841 81600 859.2591552734375 5.9130000000000003 1050.1949 120960 44377 1 0 5898240 4423680 4423680 4426439 4492800 193 150 150 284 1799 0 0 0 0 25 0 0 0 0 0 +219 1783756915153995300 DEPTH 46 1 0.49665307085970811 0 0 14 0 14 0 0 237 18 2577 23664860 81600 859.58380126953125 5.9127000000000001 1045.0693000000001 120960 30164 1 0 5898240 4423680 4423680 4426457 4492800 162 150 150 193 1922 0 0 0 0 18 0 0 0 0 0 +220 1783756915338345000 REFRESH 46 0 0.49710058936369567 0 0 14 0 14 0 0 237 4 416 3943885 55200 151.87046813964844 0.98650000000000004 183.1875 20160 13606 0 0 983040 737280 737280 737485 748800 159 25 30 102 100 0 0 0 0 4 0 0 0 0 0 +221 1783756916393727700 DEPTH 46 1 0.49148771095030747 0 0 14 0 14 0 0 238 38 2580 23664863 81600 868.15318298339844 5.9041000000000006 1054.0914 120960 66276 1 0 5898240 4423680 4423680 4426463 4492800 271 150 150 241 1768 0 0 0 0 38 0 0 0 0 0 +222 1783756917453346700 DEPTH 46 1 0.49242056470880868 0 0 14 0 14 1 0 238 37 2588 23664915 81600 864.02029418945312 5.9104999999999999 1058.4589000000001 120960 55742 1 0 5898240 4423680 4423680 4426514 4492800 226 150 150 298 1764 0 0 0 0 37 0 0 0 0 1 +223 1783756918499724900 DEPTH 46 1 0.4932451852035325 0 0 14 0 14 0 0 238 27 2579 23664851 81600 860.68153381347656 5.8814000000000002 1045.1566 120960 44300 1 0 5898240 4423680 4423680 4426450 4492800 186 150 150 275 1818 0 0 0 0 27 0 0 0 0 0 +224 1783756919544809400 DEPTH 46 1 0.49397144492220146 0 0 14 0 14 0 0 238 20 2585 23664890 81600 856.0494384765625 5.8686000000000007 1043.9177999999999 120960 31097 1 0 5898240 4423680 4423680 4426490 4492800 180 150 150 283 1822 0 0 0 0 20 0 0 0 0 0 +225 1783756919729511100 REFRESH 46 0 0.4946097860194768 0 0 14 0 14 0 0 238 8 415 3943918 55200 151.64521789550781 0.98560000000000003 183.4615 20160 13630 0 0 983040 737280 737280 737515 748800 152 25 29 104 105 0 0 0 0 8 0 0 0 0 0 +226 1783756920796443800 DEPTH 46 1 0.49316908634567563 0 0 14 0 14 0 0 238 27 2583 23664871 81600 869.30003356933594 5.9155000000000006 1064.8184000000001 120960 66726 1 0 5898240 4423680 4423680 4426471 4492800 193 150 150 250 1840 0 0 0 0 27 0 0 0 0 0 +227 1783756921840774300 DEPTH 46 1 0.4938573351425497 0 0 14 0 14 0 0 238 19 2581 23664836 81600 857.89056396484375 5.9155000000000006 1043.0419999999999 120960 55282 1 0 5898240 4423680 4423680 4426435 4492800 173 150 150 229 1879 0 0 0 0 19 0 0 0 0 0 +228 1783756922892401300 DEPTH 46 1 0.49446172191526216 0 0 14 0 14 0 0 238 26 2584 23664757 81600 857.17912292480469 5.9331000000000005 1050.4465 120960 44577 1 0 5898240 4423680 4423680 4426356 4492800 246 150 150 306 1732 0 0 0 0 26 0 0 0 0 0 +229 1783756923944270000 DEPTH 46 1 0.49499071641697284 0 0 14 0 14 0 0 238 26 2560 23664830 81600 854.67790222167969 5.9041999999999994 1050.1035999999999 120960 30516 1 0 5898240 4423680 4423680 4426430 4492800 231 150 150 311 1718 0 0 0 0 26 0 0 0 0 0 +230 1783756924130624500 REFRESH 46 0 0.49545194063477599 0 0 14 0 14 0 0 238 6 412 3943934 55200 152.02201843261719 0.99860000000000004 185.0557 20160 13504 0 0 983040 737280 737280 737534 748800 154 25 29 98 106 0 0 0 0 6 0 0 0 0 0 +231 1783756925187028300 DEPTH 46 1 0.49185225357685902 0 0 14 0 14 0 0 238 18 2566 23664870 81600 869.20547485351562 5.8653000000000004 1055.1892 120960 66403 1 0 5898240 4423680 4423680 4426470 4492800 266 150 150 226 1774 0 0 0 0 18 0 0 0 0 0 +232 1783756926238823600 DEPTH 46 1 0.49259782758076393 0 0 14 0 14 1 0 238 36 2569 23664878 81600 863.18727111816406 5.9165999999999999 1050.1327000000001 120960 55733 1 0 5898240 4423680 4423680 4426476 4492800 284 150 150 279 1706 0 0 0 0 36 0 0 0 0 2 +233 1783756927285700000 DEPTH 46 1 0.49326756582631703 0 0 14 0 14 1 0 238 26 2591 23664865 81600 859.98786926269531 5.9942999999999991 1045.6958 120960 44406 1 0 5898240 4423680 4423680 4426463 4492800 213 150 150 249 1829 0 0 0 0 26 0 0 0 0 1 +234 1783756928339029100 DEPTH 46 1 0.4938475781906837 0 0 14 0 14 1 0 239 19 2579 23664822 81600 857.92860412597656 5.8988000000000005 1052.1512 120960 30546 1 0 5898240 4423680 4423680 4426421 4492800 195 150 150 260 1824 0 0 0 0 19 0 0 0 0 1 +235 1783756928523301500 REFRESH 46 0 0.49436082254572045 0 0 14 0 14 0 0 239 5 413 3943907 55200 152.46028137207031 0.98319999999999996 183.0797 20160 13541 0 0 983040 737280 737280 737507 748800 154 25 29 97 108 0 0 0 0 5 0 0 0 0 0 +236 1783756929597051900 DEPTH 46 1 0.48979750613316431 0 0 14 0 14 0 0 240 26 2573 23664939 81600 871.34114074707031 5.9373000000000005 1072.4774 120960 66445 1 0 5898240 4423680 4423680 4426538 4492800 328 150 150 245 1700 0 0 0 0 26 0 0 0 0 0 +237 1783756930646290600 DEPTH 46 1 0.49067620857109878 0 0 14 0 14 0 0 240 30 2589 23665010 81600 863.07609558105469 6.0017000000000005 1048.0248999999999 120960 54842 1 0 5898240 4423680 4423680 4426609 4492800 257 150 150 266 1766 0 0 0 0 30 0 0 0 0 0 +238 1783756931690150400 DEPTH 46 1 0.49145280477358405 0 0 14 0 14 0 0 240 23 2575 23664882 81600 858.29141235351562 5.9041000000000006 1042.6461999999999 120960 43553 1 0 5898240 4423680 4423680 4426480 4492800 262 150 150 297 1716 0 0 0 0 23 0 0 0 0 0 +239 1783756932734959200 DEPTH 46 1 0.49213758146127351 0 0 14 0 14 0 0 240 24 2579 23664825 81600 853.01164245605469 5.8970000000000002 1043.3880999999999 120960 29841 1 0 5898240 4423680 4423680 4426424 4492800 214 150 150 310 1755 0 0 0 0 24 0 0 0 0 0 +240 1783756932917247200 REFRESH 46 0 0.49273979598980427 0 0 14 0 14 0 0 240 7 413 3943902 55200 151.35005187988281 0.9839 181.16059999999999 20160 13491 0 0 983040 737280 737280 737501 748800 156 25 29 104 99 0 0 0 0 7 0 0 0 0 0 +241 1783756933982789600 DEPTH 46 1 0.49026777929519771 0 0 14 0 14 0 0 240 28 2580 23664841 81600 865.80633544921875 6.0021000000000004 1064.2799 120960 66155 1 0 5898240 4423680 4423680 4426440 4492800 236 150 150 229 1815 0 0 0 0 28 0 0 0 0 0 +242 1783756935043534900 DEPTH 46 1 0.49102902854457314 0 0 14 0 14 0 0 240 26 2584 23664868 81600 858.92268371582031 5.8774999999999995 1059.4782 120960 55449 1 0 5898240 4423680 4423680 4426468 4492800 260 150 150 237 1787 0 0 0 0 26 0 0 0 0 0 +243 1783756936163562600 DEPTH 46 1 0.49170029052164577 0 0 14 0 14 0 0 240 24 2588 23664886 81600 912.63493347167969 5.9903999999999993 1117.8993 120960 44683 1 0 5898240 4423680 4423680 4426486 4492800 197 150 150 284 1807 0 0 0 0 24 0 0 0 0 0 +244 1783756937242663200 DEPTH 46 1 0.49229063667353345 0 0 14 0 14 0 0 241 23 2575 23664840 81600 868.92964172363281 6.0151000000000003 1077.0879 120960 31007 1 0 5898240 4423680 4423680 4426439 4492800 228 150 150 340 1707 0 0 0 0 23 0 0 0 0 0 +245 1783756937428021700 REFRESH 46 0 0.49280823065274426 0 0 14 0 14 0 0 241 5 415 3943910 55200 152.47666931152344 0.9869 183.9699 20160 13609 0 0 983040 737280 737280 737510 748800 156 25 29 107 98 0 0 0 0 5 0 0 0 0 0 +246 1783756938516431600 DEPTH 46 1 0.48826041910482965 0 0 14 0 14 1 0 241 24 2579 23664829 81600 870.56895446777344 5.9555999999999996 1063.6755000000001 120960 66407 1 0 5898240 4423680 4423680 4426429 4492800 255 150 150 226 1798 0 0 0 0 24 0 0 0 0 1 +247 1783756939583701100 DEPTH 46 1 0.48915855006821785 0 0 14 0 14 0 0 241 27 2576 23664947 81600 865.87687683105469 6.0586000000000002 1065.9093 120960 54977 1 0 5898240 4423680 4423680 4426546 4492800 324 150 150 349 1603 0 0 0 0 27 0 0 0 0 0 +248 1783756940642010000 DEPTH 46 1 0.48994862607854023 0 0 14 0 14 0 0 241 20 2570 23664835 81600 857.52706909179688 5.9329999999999998 1056.6723 120960 43771 1 0 5898240 4423680 4423680 4426433 4492800 265 150 150 288 1717 0 0 0 0 20 0 0 0 0 0 +249 1783756941696120600 DEPTH 46 1 0.49064625887318392 0 0 14 0 14 1 0 241 32 2567 23664832 81600 862.41236877441406 5.9111000000000002 1052.825 120960 29946 1 0 5898240 4423680 4423680 4426430 4492800 223 150 150 323 1721 0 0 0 0 32 0 0 0 0 1 +250 1783756941881271000 REFRESH 46 0 0.49126098905811805 0 0 14 0 14 0 0 241 8 416 3943923 55200 152.00440979003906 0.98329999999999995 183.7654 20160 13569 0 0 983040 737280 737280 737523 748800 149 25 27 97 118 0 0 0 0 8 0 0 0 0 0 +251 1783756942962676900 DEPTH 46 1 0.48980072054510265 0 0 14 0 14 0 0 241 24 2583 23664907 81600 890.29017639160156 5.9183000000000003 1080.0854999999999 120960 66130 1 0 5898240 4423680 4423680 4426504 4492800 313 150 150 251 1719 0 0 0 0 24 0 0 0 0 0 +252 1783756944199880100 DEPTH 46 1 0.49047324829038841 0 0 14 0 14 0 0 241 29 2563 23664816 81600 863.41256713867188 6.1934000000000005 1235.4704999999999 120960 55450 1 0 5898240 4423680 4423680 4426414 4492800 231 150 150 245 1787 0 0 0 0 29 0 0 0 0 0 +253 1783756945290934800 DEPTH 46 1 0.49106535982301747 0 0 14 0 14 0 0 241 24 2580 23664910 81600 877.77774047851562 5.9502999999999995 1089.7086999999999 120960 44621 1 0 5898240 4423680 4423680 4426508 4492800 269 150 150 328 1683 0 0 0 0 24 0 0 0 0 0 +254 1783756946350894400 DEPTH 46 1 0.49158516333838354 0 0 14 0 14 0 0 241 30 2568 23664890 81600 865.56228637695312 5.9021999999999997 1058.7385999999999 120960 30187 1 0 5898240 4423680 4423680 4426489 4492800 226 150 150 357 1685 0 0 0 0 30 0 0 0 0 0 +255 1783756946534540800 REFRESH 46 0 0.49203995563868164 0 0 14 0 14 0 0 241 6 418 3943895 55200 152.12042236328125 0.97989999999999999 182.41290000000001 20160 13593 0 0 983040 737280 737280 737495 748800 159 25 29 112 93 0 0 0 0 6 0 0 0 0 0 +256 1783756947625149600 DEPTH 46 1 0.48843630327920146 0 0 14 0 14 1 0 241 26 2571 23664817 81600 886.83418273925781 6.1710999999999991 1089.1078 120960 66470 1 0 5898240 4423680 4423680 4426415 4492800 266 150 150 231 1774 0 0 0 0 26 0 0 0 0 1 +257 1783756948685535600 DEPTH 46 1 0.48918347505848042 0 0 14 0 14 0 0 243 22 2568 23664906 81600 867.11259460449219 5.8826999999999998 1058.8879999999999 120960 55516 1 0 5898240 4423680 4423680 4426505 4492800 213 150 150 220 1835 0 0 0 0 22 0 0 0 0 0 +258 1783756949735354500 DEPTH 46 1 0.48983973396634206 0 0 14 0 14 0 0 243 23 2568 23664809 81600 862.57223510742188 5.8841000000000001 1048.5048999999999 120960 44102 1 0 5898240 4423680 4423680 4426409 4492800 241 150 150 319 1708 0 0 0 0 23 0 0 0 0 0 +259 1783756950811098900 DEPTH 46 1 0.49041759452301015 0 0 14 0 14 1 0 244 28 2567 23664868 81600 861.16661071777344 5.9649000000000001 1074.2103 120960 29538 1 0 5898240 4423680 4423680 4426466 4492800 179 150 150 301 1787 0 0 0 0 28 0 0 0 0 1 +260 1783756950996967100 REFRESH 46 0 0.49092497456926637 0 0 14 0 14 0 0 244 6 417 3943922 55200 152.31663513183594 0.98950000000000005 184.27969999999999 20160 13497 0 0 983040 737280 737280 737522 748800 158 25 29 108 97 0 0 0 0 6 0 0 0 0 0 +261 1783756952061830200 DEPTH 46 1 0.48736895531527014 0 0 14 0 14 0 0 244 31 2560 23664807 81600 872.48785400390625 5.8953000000000007 1062.9751000000001 120960 65759 1 0 5898240 4423680 4423680 4426406 4492800 275 150 150 254 1731 0 0 0 0 31 0 0 0 0 0 +262 1783756953180458700 DEPTH 46 1 0.48815595363622466 0 0 14 0 14 1 0 244 20 2562 23664783 81600 891.14894104003906 6.5707000000000004 1114.9096999999999 120960 55199 1 0 5898240 4423680 4423680 4426382 4492800 309 150 150 321 1632 0 0 0 0 20 0 0 0 0 1 +263 1783756954321883800 DEPTH 46 1 0.48887925731755311 0 0 14 1 13 1 0 244 24 2563 23664690 81600 913.29444885253906 6.3919999999999995 1139.4272000000001 120960 43672 1 0 5898240 4423680 4423680 4426288 4492800 246 150 150 342 1675 0 0 0 3 21 0 0 0 2 0 +264 1783756955462381000 DEPTH 46 1 0.5394902411826763 0 1 13 1 13 1 0 244 31 2566 23664827 81600 906.1173095703125 6.194700000000001 1138.9655 120960 30195 1 0 5898240 4423680 4423680 4426425 4492800 211 150 150 340 1715 0 0 0 2 29 0 0 0 2 0 +265 1783756955656964200 REFRESH 46 0 0.53510893294769946 0 1 13 1 13 0 0 244 2 414 3943882 55200 162.09715270996094 0.97970000000000002 193.11660000000001 20160 13574 0 0 983040 737280 737280 737481 748800 154 25 29 103 103 0 0 0 0 2 0 0 0 0 0 +266 1783756956817071900 DEPTH 46 1 0.52307220752040529 0 1 13 1 13 1 0 244 29 2564 23664772 81600 926.50494384765625 5.9395000000000007 1158.2601999999999 120960 66162 1 0 5898240 4423680 4423680 4426369 4492800 302 150 150 324 1638 0 0 0 3 26 0 0 0 3 1 +267 1783756957948270900 DEPTH 46 1 0.52080508209734955 0 1 13 1 13 1 0 244 58 2567 23664827 81600 919.77420043945312 5.9443999999999999 1129.1447000000001 120960 55303 1 0 5898240 4423680 4423680 4426426 4492800 272 150 150 318 1677 0 0 0 3 55 0 0 0 2 2 +268 1783756959071646600 DEPTH 46 1 0.51868050024832568 0 1 13 1 13 1 0 245 51 2567 23664882 81600 915.11911010742188 5.8969000000000005 1121.4943000000001 120960 43296 1 0 5898240 4423680 4423680 4426482 4492800 221 150 150 341 1705 0 0 0 0 51 0 0 0 0 1 +269 1783756960188346300 DEPTH 46 1 0.5162574930990369 0 1 13 1 13 1 0 245 38 2570 23664869 81600 907.05612182617188 5.9165999999999999 1115.1755000000001 120960 29800 1 0 5898240 4423680 4423680 4426469 4492800 191 150 150 354 1725 0 0 0 0 38 0 0 0 0 1 +270 1783756960382516800 REFRESH 46 0 0.51410399750337188 0 1 13 1 13 0 0 245 5 418 3943928 55200 160.60313415527344 0.98150000000000004 192.8982 20160 13548 0 0 983040 737280 737280 737528 748800 153 25 27 98 115 0 0 0 0 5 0 0 0 0 0 +271 1783756961521526600 DEPTH 46 1 0.50710694634157771 0 1 13 1 13 0 0 245 41 2563 23664945 81600 923.54600524902344 5.9510999999999994 1137.4836 120960 66312 1 0 5898240 4423680 4423680 4426544 4492800 297 150 150 300 1666 0 0 0 0 41 0 0 0 0 0 +272 1783756962649958200 DEPTH 46 1 0.50579761002744317 0 1 13 1 13 1 0 246 50 2564 23664856 81600 917.89208984375 6.0301999999999998 1127.0400999999999 120960 55154 1 0 5898240 4423680 4423680 4426456 4492800 221 150 150 330 1713 0 0 0 0 50 0 0 0 0 1 +273 1783756963700235300 DEPTH 46 1 0.50463785218522905 0 1 13 1 12 1 0 246 49 2544 23664850 81600 855.23251342773438 5.9286999999999992 1048.9738 120960 44071 1 0 5898240 4423680 4423680 4426446 4492800 192 150 150 364 1688 0 0 0 0 49 0 0 0 0 2 +274 1783756964757165300 DEPTH 46 1 0.60355161459806861 0 1 12 1 12 0 0 246 53 2548 23664907 81600 853.99258422851562 6.0661999999999994 1055.6264000000001 120960 30382 1 0 5898240 4423680 4423680 4426506 4492800 251 150 150 417 1580 0 0 0 0 53 0 0 0 0 0 +275 1783756964957612900 REFRESH 46 0 0.59256217943872125 0 1 12 1 12 0 0 246 10 412 3943898 55200 151.49055480957031 1.1073999999999999 198.9152 20160 13655 0 0 983040 737280 737280 737498 748800 151 25 28 97 111 0 0 0 0 10 0 0 0 0 0 +276 1783756966010587500 DEPTH 46 1 0.58265992187479609 0 1 12 1 12 0 0 247 48 2548 23664776 81600 865.93391418457031 5.9094999999999995 1051.2973999999999 120960 66146 1 0 5898240 4423680 4423680 4426375 4492800 250 150 150 279 1719 0 0 0 0 48 0 0 0 0 0 +277 1783756967056225300 DEPTH 46 1 0.57373617911456765 0 1 12 1 12 0 0 247 33 2555 23664747 81600 856.58842468261719 5.9184000000000001 1044.1543999999999 120960 55102 1 0 5898240 4423680 4423680 4426347 4492800 297 150 150 355 1603 0 0 0 0 33 0 0 0 0 0 +278 1783756968116612200 DEPTH 46 1 0.56569315420789701 0 1 12 1 12 1 0 247 48 2558 23664888 81600 856.01412963867188 5.972599999999999 1058.9487999999999 120960 44600 1 0 5898240 4423680 4423680 4426488 4492800 215 150 150 354 1689 0 0 0 0 48 0 0 0 0 1 +279 1783756969196875100 DEPTH 46 1 0.55870436991411165 0 1 12 1 12 1 0 247 46 2559 23664884 81600 853.43098449707031 5.9052000000000007 1055.0059000000001 120960 30735 1 0 5898240 4423680 4423680 4426483 4492800 364 150 150 554 1341 0 0 0 0 46 0 0 0 0 1 +280 1783756969382886000 REFRESH 46 0 0.55225316290237814 0 1 12 1 12 0 0 247 8 413 3943907 55200 152.15615844726562 0.98599999999999999 184.30109999999999 20160 13711 0 0 983040 737280 737280 737507 748800 157 25 29 104 98 0 0 0 0 8 0 0 0 0 0 +281 1783756970455534800 DEPTH 46 1 0.54432379322837576 0 1 12 1 12 0 0 247 50 2547 23664836 81600 864.43183898925781 5.9813000000000009 1070.8326 120960 66185 1 0 5898240 4423680 4423680 4426436 4492800 308 150 150 300 1639 0 0 0 0 50 0 0 0 0 0 +282 1783756971506418400 DEPTH 46 1 0.53917591794163677 0 1 12 1 12 1 0 247 58 2576 23664799 81600 859.11575317382812 5.9055 1049.4014 120960 55279 1 0 5898240 4423680 4423680 4426396 4492800 250 150 150 330 1696 0 0 0 0 58 0 0 0 0 1 +283 1783756972565578600 DEPTH 46 1 0.53465308214797935 0 1 12 1 12 0 0 247 46 2562 23664792 81600 854.39253234863281 5.9212999999999996 1057.8205 120960 44239 1 0 5898240 4423680 4423680 4426391 4492800 184 150 150 369 1709 0 0 0 0 46 0 0 0 0 0 +284 1783756973645370800 DEPTH 46 1 0.53044954964378921 0 1 12 1 12 0 0 247 48 2586 23664842 81600 861.62242126464844 5.9737 1078.2273 120960 30118 1 0 5898240 4423680 4423680 4426438 4492800 158 150 150 309 1819 0 0 0 0 48 0 0 0 0 0 +285 1783756973831379200 REFRESH 46 0 0.52665508383090609 0 1 12 1 12 0 0 247 6 413 3943904 55200 151.96467590332031 0.98499999999999999 184.2253 20160 13573 0 0 983040 737280 737280 737504 748800 159 25 29 104 96 0 0 0 0 6 0 0 0 0 0 +286 1783756974915399500 DEPTH 46 1 0.51922882924089775 0 1 12 1 12 0 0 247 40 2564 23664875 81600 871.4617919921875 5.9159000000000006 1081.7825 120960 66348 1 0 5898240 4423680 4423680 4426472 4492800 231 150 150 279 1754 0 0 0 0 40 0 0 0 0 0 +287 1783756975969307100 DEPTH 46 1 0.51653401555637302 0 1 12 1 12 0 0 247 45 2569 23664872 81600 860.87986755371094 5.9560000000000004 1052.6449 120960 55302 1 0 5898240 4423680 4423680 4426472 4492800 179 150 150 267 1823 0 0 0 0 45 0 0 0 0 0 +288 1783756977026977800 DEPTH 46 1 0.51409754910019678 0 1 12 1 12 0 0 247 37 2569 23664827 81600 852.3275146484375 5.944 1056.2686000000001 120960 44449 1 0 5898240 4423680 4423680 4426427 4492800 205 150 150 334 1730 0 0 0 0 37 0 0 0 0 0 +289 1783756978064291800 DEPTH 46 1 0.51189364517572133 0 1 12 1 12 1 0 247 39 2584 23664783 81600 849.77723693847656 5.9172999999999991 1035.9469999999999 120960 30355 1 0 5898240 4423680 4423680 4426383 4492800 158 150 150 250 1876 0 0 0 0 39 0 0 0 0 1 +290 1783756978249568800 REFRESH 46 0 0.51061764210630067 0 1 12 1 12 0 0 247 7 413 3943918 55200 151.85816955566406 0.98419999999999996 184.01329999999999 20160 13469 0 0 983040 737280 737280 737518 748800 163 25 29 106 90 0 0 0 0 7 0 0 0 0 0 +291 1783756979312946800 DEPTH 46 1 0.5057397092039716 0 1 12 1 12 1 0 247 39 2575 23664915 81600 866.99040222167969 5.9248000000000003 1062.136 120960 66019 1 0 5898240 4423680 4423680 4426513 4492800 185 150 150 223 1867 0 0 0 0 39 0 0 0 0 1 +292 1783756980372214600 DEPTH 46 1 0.50459757493388269 0 1 12 1 12 0 0 247 30 2573 23664788 81600 866.51148986816406 5.9313000000000002 1057.9076 120960 55196 1 0 5898240 4423680 4423680 4426387 4492800 204 150 150 265 1804 0 0 0 0 30 0 0 0 0 0 +293 1783756981434547500 DEPTH 46 1 0.50329982463343403 0 1 12 1 12 0 0 247 30 2583 23664809 81600 853.96748352050781 7.1081000000000003 1061.1003000000001 120960 43610 1 0 5898240 4423680 4423680 4426409 4492800 161 150 150 221 1901 0 0 0 0 30 0 0 0 0 0 +294 1783756982492468200 DEPTH 46 1 0.50212100971656048 0 1 12 1 12 0 0 248 42 2566 23664814 81600 851.77534484863281 5.9984000000000002 1056.7083 120960 30142 1 0 5898240 4423680 4423680 4426413 4492800 186 150 150 315 1765 0 0 0 0 42 0 0 0 0 0 +295 1783756982676779800 REFRESH 46 0 0.50104928443387553 0 1 12 1 12 0 0 248 9 412 3943896 55200 151.07072448730469 1.0115000000000001 182.8133 20160 13580 0 0 983040 737280 737280 737496 748800 163 25 28 101 95 0 0 0 0 9 0 0 0 0 0 +296 1783756983742028200 DEPTH 46 1 0.499073987251894 0 1 12 1 12 0 0 248 39 2586 23664874 81600 863.45738220214844 5.9220000000000006 1063.9087 120960 66263 1 0 5898240 4423680 4423680 4426473 4492800 166 150 150 189 1931 0 0 0 0 39 0 0 0 0 0 +297 1783756984791519900 DEPTH 46 1 0.49828552243524843 0 1 12 1 12 1 0 249 37 2588 23664853 81600 858.47891235351562 5.9177999999999997 1048.1806999999999 120960 55499 1 0 5898240 4423680 4423680 4426453 4492800 161 150 150 196 1931 0 0 0 0 37 0 0 0 0 1 +298 1783756985865479800 DEPTH 46 1 0.49757364111830105 0 1 12 1 12 1 0 249 44 2577 23664935 81600 854.67593383789062 5.9018000000000006 1072.6349 120960 44131 1 0 5898240 4423680 4423680 4426535 4492800 165 150 150 246 1866 0 0 0 0 44 0 0 0 0 1 +299 1783756986926626000 DEPTH 46 1 0.49756562393914838 0 1 12 1 12 0 0 249 41 2579 23664899 81600 853.4967041015625 5.9070999999999998 1059.1044999999999 120960 30321 1 0 5898240 4423680 4423680 4426498 4492800 156 150 150 209 1914 0 0 0 0 41 0 0 0 0 0 +300 1783756987114710300 REFRESH 46 0 0.49689618234713251 0 1 12 1 12 0 0 249 8 413 3943898 55200 151.20999145507812 0.99839999999999995 186.35919999999999 20160 13505 0 0 983040 737280 737280 737498 748800 159 25 27 94 108 0 0 0 0 8 0 0 0 0 0 +301 1783756988176864400 DEPTH 46 1 0.49428317238231217 0 1 12 1 12 0 0 249 36 2579 23664872 81600 866.70234680175781 5.9436 1060.4548 120960 66659 1 0 5898240 4423680 4423680 4426470 4492800 183 150 150 210 1886 0 0 0 0 36 0 0 0 0 0 +302 1783756989234857900 DEPTH 46 1 0.49392099623584029 0 1 12 1 12 1 0 250 33 2564 23664788 81600 859.81047058105469 5.9370000000000003 1056.6158 120960 55770 1 0 5898240 4423680 4423680 4426386 4492800 214 150 150 267 1783 0 0 0 0 33 0 0 0 0 1 +303 1783756990278916400 DEPTH 46 1 0.49361492702609838 0 1 12 1 12 0 0 250 26 2575 23664907 81600 856.14483642578125 5.9554999999999998 1042.3257000000001 120960 44382 1 0 5898240 4423680 4423680 4426507 4492800 157 150 150 173 1945 0 0 0 0 26 0 0 0 0 0 +304 1783756991326934300 DEPTH 46 1 0.49329877579026427 0 1 12 1 12 1 0 250 44 2567 23664853 81600 853.52740478515625 5.9216000000000006 1046.5706 120960 30856 1 0 5898240 4423680 4423680 4426451 4492800 178 150 150 261 1828 1 0 0 1 42 0 0 0 0 1 +305 1783756991518191700 REFRESH 46 0 0.49300390985100723 0 1 12 1 12 0 0 250 7 415 3943914 55200 157.991943359375 0.9819 189.9151 20160 13672 0 0 983040 737280 737280 737514 748800 151 25 28 90 121 0 0 0 0 7 0 0 0 0 0 +306 1783756992589452600 DEPTH 46 1 0.48972823816651712 0 1 12 1 12 0 0 250 43 2573 23664901 81600 870.0025634765625 5.9312000000000005 1069.8975 120960 66542 1 0 5898240 4423680 4423680 4426499 4492800 209 150 150 249 1815 2 0 0 0 41 0 0 0 0 0 +307 1783756993645851400 DEPTH 46 1 0.48976988830849949 0 1 12 1 12 0 0 250 36 2567 23664838 81600 863.46090698242188 6.3546999999999993 1055.1452999999999 120960 55193 1 0 5898240 4423680 4423680 4426436 4492800 205 150 150 328 1734 0 0 0 0 36 0 0 0 0 0 +308 1783756994693505100 DEPTH 46 1 0.48979717149848345 0 1 12 1 12 0 0 250 40 2584 23664789 81600 855.62297058105469 5.9352999999999998 1046.0972999999999 120960 44996 1 0 5898240 4423680 4423680 4426384 4492800 161 150 150 212 1911 0 0 0 0 40 0 0 0 0 0 +309 1783756995759005200 DEPTH 46 1 0.48981156752248117 0 1 12 1 12 0 0 250 47 2567 23664957 81600 855.121826171875 5.9519000000000002 1063.5690999999999 120960 30881 1 0 5898240 4423680 4423680 4426557 4492800 173 150 150 360 1734 2 0 0 0 45 0 0 0 0 0 +310 1783756995946383600 REFRESH 46 0 0.48981440787773328 0 1 12 1 12 0 0 250 7 416 3943900 55200 151.35539245605469 0.98740000000000006 185.56979999999999 20160 13489 0 0 983040 737280 737280 737500 748800 158 25 28 92 113 0 0 0 0 7 0 0 0 0 0 +311 1783756997013519200 DEPTH 46 1 0.48680689060473792 0 1 12 1 12 0 0 250 42 2578 23664809 81600 867.60502624511719 6.3636999999999997 1065.7663 120960 66111 1 0 5898240 4423680 4423680 4426408 4492800 168 150 150 188 1922 0 0 0 0 42 0 0 0 0 0 +312 1783756998075476000 DEPTH 46 1 0.4870900936360355 0 1 12 1 12 0 0 250 50 2576 23664795 81600 860.07559204101562 5.9532000000000007 1060.4880000000001 120960 55010 1 0 5898240 4423680 4423680 4426395 4492800 175 150 150 234 1867 0 0 0 0 50 0 0 0 0 0 +313 1783756999141015600 DEPTH 46 1 0.4873349868100747 0 1 12 1 12 0 0 250 37 2574 23664763 81600 857.95344543457031 6.4520999999999997 1063.8751999999999 120960 43560 1 0 5898240 4423680 4423680 4426361 4492800 166 150 150 236 1872 0 0 0 0 37 0 0 0 0 0 +314 1783757000260327600 DEPTH 46 1 0.48754544268365113 0 1 12 1 12 0 0 251 55 2559 23664828 81600 866.81178283691406 6.5895000000000001 1091.6785 120960 30063 1 0 5898240 4423680 4423680 4426428 4492800 179 150 150 328 1752 0 0 0 0 55 0 0 0 0 0 +315 1783757000455917000 REFRESH 46 0 0.48772494626306356 0 1 12 1 12 0 0 251 6 411 3943915 55200 159.4388427734375 0.98660000000000003 193.82660000000001 20160 13580 0 0 983040 737280 737280 737514 748800 156 25 29 94 107 0 0 0 0 6 0 0 0 0 0 +316 1783757001591442900 DEPTH 46 1 0.48387663376211515 0 1 12 1 12 0 0 251 52 2571 23664877 81600 921.66860961914062 5.9805000000000001 1133.9860000000001 120960 66398 1 0 5898240 4423680 4423680 4426475 4492800 189 150 150 217 1865 0 0 0 0 52 0 0 0 0 0 +317 1783757002702049300 DEPTH 46 1 0.48440332748427684 0 1 12 1 12 0 0 251 58 2568 23664790 81600 914.8212890625 5.9331000000000005 1109.204 120960 55790 1 0 5898240 4423680 4423680 4426389 4492800 182 150 150 254 1832 0 0 0 0 58 0 0 0 0 0 +318 1783757003820205800 DEPTH 46 1 0.48486756721659674 0 1 12 1 12 0 0 251 50 2562 23664887 81600 907.14431762695312 6.0020999999999995 1116.6902 120960 44023 1 0 5898240 4423680 4423680 4426487 4492800 177 150 150 219 1866 0 0 0 0 50 0 0 0 0 0 +319 1783757004937248000 DEPTH 46 1 0.48527563848418159 0 1 12 1 12 1 0 251 53 2566 23664852 81600 906.00962829589844 5.9806999999999997 1115.5404000000001 120960 30044 1 0 5898240 4423680 4423680 4426448 4492800 174 150 150 283 1809 0 0 0 0 53 0 0 0 0 1 +320 1783757005130165800 REFRESH 46 0 0.48563656895896345 0 1 12 1 12 0 0 251 9 414 3943942 55200 160.20793151855469 0.9829 191.6069 20160 13521 0 0 983040 737280 737280 737542 748800 158 25 29 88 114 0 0 0 0 9 0 0 0 0 0 +321 1783757006255273400 DEPTH 46 1 0.4849483703287058 0 1 12 1 12 1 0 251 47 2564 23664806 81600 921.42510986328125 6.1487999999999996 1123.0881999999999 120960 65910 1 0 5898240 4423680 4423680 4426403 4492800 164 150 150 184 1916 0 0 0 0 47 0 0 0 0 1 +322 1783757007402195500 DEPTH 46 1 0.48531939385949896 0 1 12 2 11 1 0 251 59 2567 23664801 81600 913.97328186035156 6.1179999999999994 1144.8967 120960 54744 1 0 5898240 4423680 4423680 4426398 4492800 187 150 150 263 1817 0 0 0 0 59 0 0 0 0 1 +323 1783757008459958600 DEPTH 46 1 0.53564370019063023 0 2 11 2 11 0 0 251 46 2561 23664939 81600 857.18203735351562 5.9455999999999998 1056.1035999999999 120960 44209 1 0 5898240 4423680 4423680 4426536 4492800 160 150 150 200 1901 0 0 0 0 46 0 0 0 0 0 +324 1783757009522089500 DEPTH 46 1 0.53092602787607068 0 2 11 2 11 0 0 251 53 2561 23664816 81600 865.90583801269531 5.9660000000000002 1060.3258000000001 120960 29829 1 0 5898240 4423680 4423680 4426415 4492800 166 150 150 254 1841 0 0 0 0 53 0 0 0 0 0 +325 1783757009713304700 REFRESH 46 0 0.52667061326472053 0 2 11 2 11 1 0 251 11 416 3943928 55200 151.09532165527344 1.4297 189.36770000000001 20160 13547 0 0 983040 737280 737280 737528 748800 168 25 29 94 100 0 0 0 0 11 0 0 0 0 1 +326 1783757010782990800 DEPTH 46 1 0.52284966401842148 0 2 11 2 11 1 0 251 59 2553 23664840 81600 868.27403259277344 5.9497999999999998 1068.3339000000001 120960 66692 1 0 5898240 4423680 4423680 4426438 4492800 195 150 150 241 1817 0 0 0 0 59 0 0 0 0 1 +327 1783757011835709100 DEPTH 46 1 0.51938321139266064 0 2 11 2 11 0 0 251 50 2554 23664920 81600 857.833251953125 5.9221000000000004 1051.4096999999999 120960 55676 1 0 5898240 4423680 4423680 4426518 4492800 165 150 150 225 1864 0 0 0 0 50 0 0 0 0 0 +328 1783757012894315400 DEPTH 46 1 0.51625377812019979 0 2 11 2 11 0 0 252 46 2561 23664812 81600 855.53152465820312 5.9615 1057.3648000000001 120960 44309 1 0 5898240 4423680 4423680 4426411 4492800 193 150 150 293 1775 0 0 0 0 46 0 0 0 0 0 +329 1783757013942573800 DEPTH 46 1 0.51342792996605546 0 2 11 2 11 0 0 252 56 2551 23664827 81600 855.673583984375 5.9151000000000007 1046.9384 120960 30194 1 0 5898240 4423680 4423680 4426426 4492800 165 150 150 300 1786 0 0 0 0 56 0 0 0 0 0 +330 1783757014140598300 REFRESH 46 0 0.5108753456063041 0 2 11 2 11 0 0 252 5 414 3943937 55200 153.23135375976562 0.99650000000000005 196.81790000000001 20160 13610 0 0 983040 737280 737280 737537 748800 158 25 29 93 109 0 0 0 0 5 0 0 0 0 0 +331 1783757015203611200 DEPTH 46 1 0.50356873559756898 0 2 11 2 11 0 0 252 47 2548 23664955 81600 871.267578125 5.9138999999999999 1061.6832999999999 120960 66065 1 0 5898240 4423680 4423680 4426555 4492800 216 150 150 263 1769 0 0 0 0 47 0 0 0 0 0 +332 1783757016253044000 DEPTH 46 1 0.50198353919137395 0 2 11 2 11 0 0 252 42 2558 23664805 81600 862.0267333984375 5.9133999999999993 1047.9699000000001 120960 55784 1 0 5898240 4423680 4423680 4426404 4492800 181 150 150 218 1859 0 0 0 0 42 0 0 0 0 0 +333 1783757017315619900 DEPTH 46 1 0.50054765146703151 0 2 11 2 11 0 0 253 55 2550 23664833 81600 859.83297729492188 5.9028 1061.1679999999999 120960 44416 1 0 5898240 4423680 4423680 4426431 4492800 185 150 150 322 1743 0 0 0 0 55 0 0 0 0 0 +334 1783757018366666300 DEPTH 46 1 0.4992461777512136 0 2 11 2 11 0 0 253 44 2559 23664840 81600 858.90208435058594 5.9383000000000008 1049.6823999999999 120960 30857 1 0 5898240 4423680 4423680 4426438 4492800 163 150 150 242 1854 0 0 0 0 44 0 0 0 0 0 +335 1783757018556378800 REFRESH 46 0 0.49806571259553595 0 2 11 2 11 0 0 253 8 414 3943912 55200 151.80082702636719 0.98540000000000005 188.4186 20160 13609 0 0 983040 737280 737280 737512 748800 165 25 29 101 94 0 0 0 0 8 0 0 0 0 0 +336 1783757019634674200 DEPTH 46 1 0.49499419085635554 0 2 11 2 11 0 0 254 42 2551 23664860 81600 872.93569946289062 5.9255000000000004 1076.9464 120960 66205 1 0 5898240 4423680 4423680 4426457 4492800 171 150 150 228 1852 0 0 0 0 42 0 0 0 0 0 +337 1783757020695120600 DEPTH 46 1 0.49422075366656087 0 2 11 2 11 1 0 254 57 2553 23664887 81600 866.61508178710938 5.9465000000000003 1058.7985000000001 120960 55251 1 0 5898240 4423680 4423680 4426487 4492800 170 150 150 263 1820 0 0 0 0 57 0 0 0 0 1 +338 1783757021761363400 DEPTH 46 1 0.49352780517855832 0 2 11 2 11 0 0 254 50 2548 23664915 81600 862.96441650390625 5.9771000000000001 1064.799 120960 44339 1 0 5898240 4423680 4423680 4426513 4492800 192 150 150 268 1788 0 0 0 0 50 0 0 0 0 0 +339 1783757022835931400 DEPTH 46 1 0.49288297679091714 0 2 11 2 11 1 0 254 38 2544 23664865 81600 858.91796875 5.9401999999999999 1072.6466 120960 30720 1 0 5898240 4423680 4423680 4426465 4492800 189 150 150 275 1780 0 0 0 0 38 0 0 0 0 1 +340 1783757023022232700 REFRESH 46 0 0.49229389872283186 0 2 11 2 11 0 0 254 9 415 3943900 55200 152.52061462402344 0.99299999999999999 184.8425 20160 13611 0 0 983040 737280 737280 737500 748800 158 25 29 91 112 0 0 0 0 9 0 0 0 0 0 +341 1783757024092553100 DEPTH 46 1 0.49075457031469494 0 2 11 2 11 1 0 254 47 2550 23664812 81600 873.29962158203125 5.9972000000000003 1068.98 120960 65940 1 0 5898240 4423680 4423680 4426411 4492800 209 150 150 232 1809 0 0 0 0 47 0 0 0 0 1 +342 1783757025148104000 DEPTH 46 1 0.49040156612728525 0 2 11 2 11 0 0 254 37 2556 23664864 81600 867.44355773925781 5.9276999999999997 1054.2809999999999 120960 55365 1 0 5898240 4423680 4423680 4426463 4492800 199 150 151 242 1814 0 0 0 0 37 0 0 0 0 0 +343 1783757026208912600 DEPTH 46 1 0.49003371758827841 0 2 11 2 11 0 0 254 59 2559 23664857 81600 863.15411376953125 6.2736000000000001 1059.5382999999999 120960 44771 1 0 5898240 4423680 4423680 4426457 4492800 156 150 150 199 1904 0 0 0 0 59 0 0 0 0 0 +344 1783757027273867200 DEPTH 46 1 0.48969382812558437 0 2 11 2 11 1 0 254 63 2554 23664921 81600 860.56536865234375 5.9094000000000007 1063.664 120960 30142 1 0 5898240 4423680 4423680 4426521 4492800 164 150 150 248 1842 0 0 0 0 63 0 0 0 0 1 +345 1783757027459150200 REFRESH 46 0 0.48939823395147325 0 2 11 2 11 0 0 254 8 413 3943899 55200 151.86636352539062 0.98629999999999995 184.01570000000001 20160 13517 0 0 983040 737280 737280 737499 748800 161 25 29 96 102 0 0 0 0 8 0 0 0 0 0 +346 1783757028533616100 DEPTH 46 1 0.48710434202911645 0 2 11 2 11 0 0 255 63 2558 23664813 81600 871.62715148925781 5.8987000000000007 1073.2143000000001 120960 66436 1 0 5898240 4423680 4423680 4426411 4492800 156 150 150 167 1935 0 0 0 0 63 0 0 0 0 0 +347 1783757029586735800 DEPTH 46 1 0.48703111381794978 0 2 11 2 11 0 0 255 53 2539 23664733 81600 863.06068420410156 5.8871000000000002 1051.7546 120960 55427 1 0 5898240 4423680 4423680 4426331 4492800 181 150 150 270 1788 0 0 0 0 53 0 0 0 0 0 +348 1783757030669893500 DEPTH 46 1 0.48695651594706491 0 2 11 2 11 0 0 255 46 2554 23664878 81600 855.58033752441406 6.0786999999999995 1048.4640999999999 120960 44450 1 0 5898240 4423680 4423680 4426477 4492800 169 150 150 263 1822 0 0 0 0 46 0 0 0 0 0 +349 1783757031721625400 DEPTH 46 1 0.48688071816994388 0 2 11 2 11 0 0 255 55 2548 23664772 81600 851.77095031738281 5.9245000000000001 1050.1135999999999 120960 30220 1 0 5898240 4423680 4423680 4426370 4492800 175 150 150 272 1801 0 0 0 0 55 0 0 0 0 0 +350 1783757031908917400 REFRESH 46 0 0.48680387305395628 0 2 11 2 11 0 0 255 10 415 3943943 55200 151.59295654296875 0.98839999999999995 185.6028 20160 13573 0 0 983040 737280 737280 737542 748800 153 25 29 98 110 0 0 0 0 10 0 0 0 0 0 +351 1783757032967692100 DEPTH 46 1 0.48672611770088353 0 2 11 2 11 0 0 255 42 2552 23664906 81600 864.72172546386719 5.9450000000000003 1057.0813000000001 120960 66210 1 0 5898240 4423680 4423680 4426506 4492800 156 150 150 185 1911 0 0 0 0 42 0 0 0 0 0 +352 1783757034033713400 DEPTH 46 1 0.48664757529536856 0 2 11 2 11 0 0 255 46 2550 23664846 81600 855.15675354003906 5.9614000000000003 1064.6776 120960 55200 1 0 5898240 4423680 4423680 4426445 4492800 157 150 150 212 1881 0 0 0 0 46 0 0 0 0 0 +353 1783757035080117800 DEPTH 46 1 0.48656835649849861 0 2 11 2 11 0 0 255 45 2538 23664839 81600 856.01370239257812 5.9117999999999995 1045.1601000000001 120960 43781 1 0 5898240 4423680 4423680 4426439 4492800 160 150 150 280 1798 0 0 0 0 45 0 0 0 0 0 +354 1783757036141563700 DEPTH 46 1 0.48648856070200741 0 2 11 2 11 0 0 255 47 2552 23664854 81600 852.45028686523438 5.934800000000001 1059.9275 120960 30066 1 0 5898240 4423680 4423680 4426452 4492800 157 150 150 276 1819 0 0 0 0 47 0 0 0 0 0 +355 1783757036332966200 REFRESH 46 0 0.48640827715703638 0 2 11 2 11 0 0 255 5 415 3943925 55200 151.706787109375 1.3346 189.77889999999999 20160 13550 0 0 983040 737280 737280 737524 748800 155 25 29 91 115 0 0 0 0 5 0 0 0 0 0 +356 1783757037392116700 DEPTH 46 1 0.48132758598999814 0 2 11 2 11 1 0 256 33 2553 23664762 81600 864.94279479980469 5.9276 1057.8108999999999 120960 66154 1 0 5898240 4423680 4423680 4426360 4492800 166 150 150 212 1875 0 0 0 0 33 0 0 0 0 1 +357 1783757038444258300 DEPTH 46 1 0.48739063799004784 0 2 11 2 11 0 0 256 34 2544 23664883 81600 857.10551452636719 5.9896000000000003 1050.8124 120960 55423 1 0 5898240 4423680 4423680 4426482 4492800 177 150 150 269 1798 0 0 0 0 34 0 0 0 0 0 +358 1783757039498251600 DEPTH 46 1 0.48719493205171138 0 2 11 2 11 1 0 256 47 2558 23664955 81600 853.32838439941406 5.9497999999999998 1052.5784000000001 120960 44407 1 0 5898240 4423680 4423680 4426553 4492800 163 150 150 229 1866 0 0 0 0 47 0 0 0 0 1 +359 1783757040554668900 DEPTH 46 1 0.487422059313944 0 2 11 2 11 0 0 256 37 2558 23664864 81600 854.30424499511719 5.9084000000000003 1055.0914 120960 30298 1 0 5898240 4423680 4423680 4426463 4492800 163 150 150 273 1822 0 0 0 0 37 0 0 0 0 0 +360 1783757040740795800 REFRESH 46 0 0.48720655561030113 0 2 11 2 11 0 0 256 8 417 3943910 55200 152.07014465332031 0.98499999999999999 184.5497 20160 13549 0 0 983040 737280 737280 737510 748800 168 25 29 94 101 0 0 0 0 8 0 0 0 0 0 +361 1783757041811422300 DEPTH 46 1 0.48500432012576872 0 2 11 2 11 0 0 256 37 2557 23664857 81600 879.44136047363281 5.9055999999999997 1069.0662 120960 66084 1 0 5898240 4423680 4423680 4426455 4492800 160 150 150 179 1918 0 0 0 0 37 0 0 0 0 0 +362 1783757042871205900 DEPTH 46 1 0.48501405622905558 0 2 11 2 11 0 0 256 60 2554 23664858 81600 863.74667358398438 5.9390000000000001 1058.3632 120960 55445 1 0 5898240 4423680 4423680 4426457 4492800 168 150 150 223 1863 0 0 0 0 60 0 0 0 0 0 +363 1783757043926701900 DEPTH 46 1 0.48501459676444758 0 2 11 2 11 1 0 256 50 2552 23664905 81600 859.64117431640625 6.2021999999999995 1054.1048000000001 120960 44238 1 0 5898240 4423680 4423680 4426505 4492800 186 150 150 291 1775 0 0 0 0 50 0 0 0 0 1 +364 1783757044992198700 DEPTH 46 1 0.48560350310461675 0 2 11 2 11 0 0 257 40 2556 23664839 81600 859.20468139648438 5.9417 1064.3251 120960 30682 1 0 5898240 4423680 4423680 4426437 4492800 156 150 150 177 1923 0 0 0 0 40 0 0 0 0 0 +365 1783757045179163000 REFRESH 46 0 0.48552874430452347 0 2 11 2 11 0 0 257 14 417 3943907 55200 152.48994445800781 0.98729999999999996 185.3485 20160 13508 0 0 983040 737280 737280 737507 748800 161 25 29 93 109 0 0 0 0 14 0 0 0 0 0 +366 1783757046250243700 DEPTH 46 1 0.48545332832712551 0 2 11 2 11 0 0 257 43 2557 23664865 81600 872.18367004394531 5.9079999999999995 1069.5344 120960 66361 1 0 5898240 4423680 4423680 4426463 4492800 171 150 150 214 1872 0 0 0 0 43 0 0 0 0 0 +367 1783757047321302600 DEPTH 46 1 0.48537735015928218 0 2 11 2 11 0 0 257 46 2553 23664848 81600 860.76222229003906 5.9378999999999991 1069.6509000000001 120960 55451 1 0 5898240 4423680 4423680 4426447 4492800 179 150 150 256 1818 0 0 0 0 46 0 0 0 0 0 +368 1783757048365573400 DEPTH 46 1 0.48530089510965824 0 2 11 2 11 1 0 258 49 2558 23664824 81600 855.021484375 5.9184999999999999 1042.8996999999999 120960 44803 1 0 5898240 4423680 4423680 4426424 4492800 162 150 150 241 1855 0 0 0 0 49 0 0 0 0 1 +369 1783757049425858800 DEPTH 46 1 0.48522531555458182 0 2 11 2 11 0 0 258 45 2563 23664774 81600 853.64212036132812 5.9407000000000005 1058.9981 120960 29913 1 0 5898240 4423680 4423680 4426374 4492800 156 150 150 180 1927 0 0 0 0 45 0 0 0 0 0 +370 1783757049617262300 REFRESH 46 0 0.48514800112688194 0 2 11 2 11 0 0 258 7 417 3943918 55200 151.97567749023438 1.1296999999999999 190.00370000000001 20160 13657 0 0 983040 737280 737280 737517 748800 157 25 29 91 115 0 0 0 0 7 0 0 0 0 0 +371 1783757050686835400 DEPTH 46 1 0.48207042965065877 0 2 11 2 11 0 0 258 58 2566 23664847 81600 868.36215209960938 5.9228000000000005 1067.6837 120960 66377 1 0 5898240 4423680 4423680 4426446 4492800 156 150 150 166 1944 0 0 0 0 58 0 0 0 0 0 +372 1783757051742610100 DEPTH 46 1 0.48229265521772674 0 2 11 2 11 0 0 259 44 2564 23664878 81600 861.73452758789062 5.9058000000000002 1054.4372000000001 120960 55788 1 0 5898240 4423680 4423680 4426474 4492800 170 150 150 200 1894 0 0 0 0 44 0 0 0 0 0 +373 1783757052825824200 DEPTH 46 1 0.48248472633881312 0 2 11 2 11 1 0 260 57 2563 23664898 81600 859.1224365234375 5.934099999999999 1081.6207999999999 120960 44499 1 0 5898240 4423680 4423680 4426498 4492800 156 150 150 163 1944 0 0 0 0 57 0 0 0 0 1 +374 1783757053879606200 DEPTH 46 1 0.48265016663790117 0 2 11 2 11 0 0 260 46 2569 23664899 81600 855.73199462890625 5.9332000000000003 1052.3921 120960 30212 1 0 5898240 4423680 4423680 4426499 4492800 156 150 150 187 1926 0 0 0 0 46 0 0 0 0 0 +375 1783757054067732100 REFRESH 46 0 0.48279070680330183 0 2 11 2 11 0 0 260 6 419 3943913 55200 152.50534057617188 0.98109999999999997 186.46019999999999 20160 13464 0 0 983040 737280 737280 737513 748800 157 25 29 89 119 0 0 0 0 6 0 0 0 0 0 +376 1783757055147966400 DEPTH 46 1 0.47890934469124435 0 2 11 2 11 0 0 260 41 2560 23664857 81600 871.69306945800781 5.9202000000000004 1078.8672999999999 120960 66221 1 0 5898240 4423680 4423680 4426455 4492800 158 150 150 175 1927 0 0 0 0 41 0 0 0 0 0 +377 1783757056207441900 DEPTH 46 1 0.47940829807144952 0 2 11 2 11 0 0 260 34 2558 23664822 81600 866.0213623046875 5.9126000000000003 1058.2043000000001 120960 55083 1 0 5898240 4423680 4423680 4426420 4492800 163 150 150 206 1889 0 0 0 0 34 0 0 0 0 0 +378 1783757057263946800 DEPTH 46 1 0.4798495627719519 0 2 11 2 11 1 0 260 46 2565 23664883 81600 860.90847778320312 5.8958000000000004 1055.0923 120960 44176 1 0 5898240 4423680 4423680 4426481 4492800 158 150 150 181 1926 0 0 0 0 46 0 0 0 0 1 +379 1783757058320506000 DEPTH 46 1 0.48023948029408453 0 2 11 2 11 0 0 260 38 2556 23664753 81600 860.57235717773438 5.9001999999999999 1054.9386999999999 120960 30135 1 0 5898240 4423680 4423680 4426353 4492800 164 150 150 207 1885 0 0 0 0 38 0 0 0 0 0 +380 1783757058524927900 REFRESH 46 0 0.48058212156882441 0 2 11 2 11 0 0 260 6 415 3943904 55200 153.05728149414062 0.98299999999999998 202.6268 20160 13550 0 0 983040 737280 737280 737504 748800 157 25 29 93 111 0 0 0 0 6 0 0 0 0 0 +381 1783757059592478800 DEPTH 46 1 0.47688278653174088 0 2 11 2 11 0 0 260 41 2566 23664842 81600 876.08502197265625 5.9601000000000006 1066.2202 120960 66642 1 0 5898240 4423680 4423680 4426440 4492800 156 150 150 162 1948 0 0 0 0 41 0 0 0 0 0 +382 1783757060682898900 DEPTH 46 1 0.47754569954618137 0 2 11 2 11 0 0 260 40 2560 23664891 81600 866.31802368164062 5.9658999999999995 1066.1547 120960 55619 1 0 5898240 4423680 4423680 4426489 4492800 156 150 150 166 1938 0 0 0 0 40 0 0 0 0 0 +383 1783757061750929900 DEPTH 46 1 0.47813466238125124 0 2 11 2 11 1 0 260 50 2569 23664918 81600 866.14533996582031 5.9295000000000009 1066.5408 120960 43767 1 0 5898240 4423680 4423680 4426517 4492800 156 150 150 161 1952 0 0 0 0 50 0 0 0 0 1 +384 1783757062826061300 DEPTH 46 1 0.4786603997746085 0 2 11 2 11 0 0 260 43 2569 23664901 81600 864.97361755371094 6.0279999999999996 1073.1706999999999 120960 30292 1 0 5898240 4423680 4423680 4426498 4492800 159 150 150 196 1914 0 0 0 0 43 0 0 0 0 0 +385 1783757063012855000 REFRESH 46 0 0.47912265392869779 0 2 11 2 11 0 0 260 13 417 3943893 55200 152.83097839355469 0.98580000000000001 185.48330000000001 20160 13611 0 0 983040 737280 737280 737493 748800 157 25 29 90 116 0 0 0 0 13 0 0 0 0 0 +386 1783757064089902900 DEPTH 46 1 0.4795311025778824 0 2 11 2 11 0 0 261 40 2565 23664816 81600 875.2144775390625 6.2576000000000001 1075.8027999999999 120960 66349 1 0 5898240 4423680 4423680 4426416 4492800 156 150 150 160 1949 0 0 0 0 40 0 0 0 0 0 +387 1783757065163111500 DEPTH 46 1 0.47989115222831324 0 2 11 2 11 1 0 261 40 2579 23664841 81600 868.89335632324219 5.9987999999999992 1071.8635999999999 120960 55358 1 0 5898240 4423680 4423680 4426440 4492800 156 150 150 158 1965 0 0 0 0 40 0 0 0 0 1 +388 1783757066224414100 DEPTH 46 1 0.48021592299237936 0 2 11 2 11 0 0 261 29 2589 23664847 81600 863.71945190429688 5.9198000000000004 1059.9935 120960 43899 1 0 5898240 4423680 4423680 4426447 4492800 159 150 150 185 1945 0 0 0 0 29 0 0 0 0 0 +389 1783757067296892000 DEPTH 46 1 0.48049245959607834 0 2 11 2 11 0 0 261 43 2580 23664887 81600 864.03982543945312 5.9916999999999998 1070.7394999999999 120960 30168 1 0 5898240 4423680 4423680 4426486 4492800 156 150 150 156 1968 0 0 0 0 43 0 0 0 0 0 +390 1783757067483658000 REFRESH 46 0 0.48073386536877144 0 2 11 2 11 0 0 261 5 422 3943903 55200 151.75578308105469 0.99170000000000003 184.98419999999999 20160 13717 0 0 983040 737280 737280 737503 748800 151 25 29 83 134 0 0 0 0 5 0 0 0 0 0 +391 1783757068559305400 DEPTH 46 1 0.47594367875081522 0 2 11 2 11 0 0 263 46 2576 23664880 81600 876.6572265625 5.9249000000000001 1074.2566999999999 120960 66557 1 0 5898240 4423680 4423680 4426480 4492800 156 150 150 157 1963 0 0 0 0 46 0 0 0 0 0 +392 1783757069620988600 DEPTH 46 1 0.47662508419198452 0 2 11 2 10 1 0 264 42 2581 23664904 81600 869.56442260742188 5.9020999999999999 1059.7850000000001 120960 55719 1 0 5898240 4423680 4423680 4426502 4492800 159 150 150 156 1966 2 0 0 0 40 2 0 0 0 0 +393 1783757070756227200 DEPTH 46 1 0.57723094755172699 0 2 10 2 10 1 0 264 42 2581 23664818 81600 905.10635375976562 5.9752999999999998 1133.3593000000001 120960 44354 1 0 5898240 4423680 4423680 4426416 4492800 162 150 150 166 1953 1 0 0 0 41 1 0 0 0 1 +394 1783757071892362100 DEPTH 46 1 0.56818435322184002 0 2 10 2 10 1 0 264 55 2577 23664768 81600 914.33062744140625 6.0151000000000003 1134.7925 120960 29854 1 0 5898240 4423680 4423680 4426367 4492800 162 150 150 156 1959 0 0 0 0 55 0 0 0 0 1 +395 1783757072086970100 REFRESH 46 0 0.55975207144784944 0 2 10 2 10 0 0 264 4 417 3943918 55200 160.44134521484375 0.99570000000000003 193.25530000000001 20160 13535 0 0 983040 737280 737280 737518 748800 133 25 27 77 155 0 0 0 0 4 0 0 0 0 0 +396 1783757073234716900 DEPTH 46 1 0.54602318042641884 0 2 10 2 10 1 0 265 63 2580 23664825 81600 925.3553466796875 5.9228000000000005 1146.4047 120960 66230 1 0 5898240 4423680 4423680 4426424 4492800 163 150 150 156 1961 0 0 0 0 63 0 0 0 0 2 +397 1783757074370616000 DEPTH 46 1 0.539739085948578 0 2 10 2 10 1 0 266 59 2581 23664818 81600 915.91580200195312 5.9554999999999998 1134.4095 120960 55446 1 0 5898240 4423680 4423680 4426415 4492800 162 150 150 160 1959 0 0 0 0 59 0 0 0 0 1 +398 1783757075526677000 DEPTH 46 1 0.53403364450365376 0 2 10 2 10 1 0 266 58 2582 23664796 81600 910.73651123046875 5.9977 1154.7925 120960 44519 1 0 5898240 4423680 4423680 4426396 4492800 162 150 150 156 1964 0 0 0 0 58 0 0 0 0 1 +399 1783757076686593300 DEPTH 46 1 0.52888998921725294 0 2 10 2 10 1 0 266 61 2580 23664816 81600 902.68055725097656 5.8884999999999996 1158.7433000000001 120960 30674 1 0 5898240 4423680 4423680 4426416 4492800 160 150 150 160 1960 0 0 0 0 61 0 0 0 0 1 +400 1783757076881389600 REFRESH 46 0 0.52432463943258911 0 2 10 2 10 0 0 266 6 407 3943906 55200 160.24371337890625 0.98580000000000001 193.2379 20160 13589 0 0 983040 737280 737280 737506 748800 136 25 27 77 142 0 0 0 0 6 0 0 0 0 0 +401 1783757078059752100 DEPTH 46 1 0.51610222026570995 0 2 10 2 10 1 0 266 55 2559 23664894 81600 918.03341674804688 5.8950000000000005 1176.5523000000001 120960 66557 1 0 5898240 4423680 4423680 4426493 4492800 161 150 150 156 1942 0 0 0 0 55 0 0 0 0 1 +402 1783757079229460700 DEPTH 46 1 0.51269486076398829 0 2 10 2 10 0 0 266 62 2551 23664816 81600 905.99220275878906 6.0125999999999999 1167.9164000000001 120960 55652 1 0 5898240 4423680 4423680 4426416 4492800 160 150 150 155 1936 0 0 0 0 62 0 0 0 0 0 +403 1783757080432206400 DEPTH 46 1 0.50962107854184924 0 2 10 2 9 1 0 266 57 2577 23664911 81600 907.42372131347656 5.8936000000000002 1201.3175000000001 120960 44344 1 0 5898240 4423680 4423680 4426510 4492800 158 150 150 155 1964 0 0 0 0 57 0 0 0 0 1 +404 1783757081617860200 DEPTH 46 1 0.60684753946031789 0 2 9 2 9 1 0 266 60 2566 23664858 81600 902.52082824707031 6.0305999999999997 1184.2365 120960 30149 1 0 5898240 4423680 4423680 4426458 4492800 159 150 150 155 1952 0 0 0 0 60 0 0 0 0 1 +405 1783757081815991900 REFRESH 46 0 0.59994847268162088 0 2 9 2 9 0 0 266 7 403 3943915 55200 159.95085144042969 0.98080000000000001 195.50790000000001 20160 13536 0 0 983040 737280 737280 737514 748800 98 25 27 71 182 0 0 0 0 7 0 0 0 0 0 +406 1783757083057471800 DEPTH 46 1 0.58512799412213101 0 2 9 2 9 0 0 268 41 2579 23664846 81600 920.28213500976562 5.9372999999999996 1239.9582 120960 66072 1 0 5898240 4423680 4423680 4426445 4492800 156 150 150 154 1969 0 0 0 0 41 0 0 0 0 0 +407 1783757084299730700 DEPTH 46 1 0.574782498175471 0 2 9 2 9 0 0 268 56 2585 23664821 81600 918.12147521972656 5.9497999999999998 1240.4132 120960 55475 1 0 5898240 4423680 4423680 4426421 4492800 158 150 150 157 1970 0 0 0 0 56 0 0 0 0 0 +408 1783757085501467000 DEPTH 46 1 0.56546450960082217 0 2 9 2 9 0 0 268 40 2583 23664846 81600 916.84461975097656 6.1177000000000001 1200.3452 120960 44956 1 0 5898240 4423680 4423680 4426443 4492800 159 150 150 154 1970 0 0 0 0 40 0 0 0 0 0 +409 1783757086654890000 DEPTH 46 1 0.5570713005536283 0 2 9 2 9 0 0 268 48 2591 23664733 81600 863.58514404296875 5.8945000000000007 1152.0287000000001 120960 30473 1 0 5898240 4423680 4423680 4426332 4492800 156 150 150 155 1980 0 0 0 0 48 0 0 0 0 0 +410 1783757086841937100 REFRESH 46 0 0.54951041584697236 0 2 9 2 9 0 0 268 9 414 3943925 55200 151.15263366699219 0.98540000000000005 185.63499999999999 20160 13395 0 0 983040 737280 737280 737525 748800 106 25 27 70 186 0 0 0 0 9 0 0 0 0 0 +411 1783757087996430100 DEPTH 46 1 0.54169864568680459 0 2 9 2 9 0 0 268 52 2586 23664851 81600 870.2706298828125 5.9323000000000006 1152.6769999999999 120960 65950 1 0 5898240 4423680 4423680 4426449 4492800 158 150 150 154 1974 0 0 0 0 52 0 0 0 0 0 +412 1783757089198173200 DEPTH 46 1 0.5356611011336383 0 2 9 2 9 0 0 268 49 2607 23664925 81600 861.01605224609375 5.9077999999999999 1191.7186999999999 120960 54742 1 0 5898240 4423680 4423680 4426525 4492800 156 150 150 151 2000 0 0 0 0 49 0 0 0 0 0 +413 1783757090383676100 DEPTH 46 1 0.53022038201806598 0 2 9 2 8 1 0 269 58 2615 23664780 81600 857.204345703125 5.9287999999999998 1183.4436000000001 120960 44207 1 0 5898240 4423680 4423680 4426379 4492800 155 150 150 150 2010 0 0 0 0 58 0 0 0 0 1 +414 1783757091601260100 DEPTH 46 1 0.62531682806471367 0 2 8 2 7 1 0 269 52 2599 23664861 81600 853.76777648925781 5.9185999999999996 1169.1523999999999 120960 30252 1 0 5898240 4423680 4423680 4426461 4492800 156 150 150 155 1988 0 0 0 0 52 0 0 0 0 1 +415 1783757091791939600 REFRESH 46 0 0.71089674490379129 0 2 7 2 7 0 0 269 6 413 3943957 55200 150.17984008789062 0.98440000000000005 189.0223 20160 13527 0 0 983040 737280 737280 737557 748800 103 25 27 68 190 0 0 0 0 6 0 0 0 0 0 +416 1783757093014833800 DEPTH 46 1 0.68391180748147673 0 2 7 2 7 0 0 269 38 2608 23664841 81600 868.69137573242188 5.9061000000000003 1221.2036000000001 120960 66193 1 0 5898240 4423680 4423680 4426441 4492800 155 150 150 150 2003 0 0 0 0 38 0 0 0 0 0 +417 1783757094228212200 DEPTH 46 1 0.66361852312925407 0 2 7 2 7 0 0 271 55 2599 23664819 81600 860.07080078125 5.922299999999999 1211.6410000000001 120960 55406 1 0 5898240 4423680 4423680 4426419 4492800 156 150 150 152 1991 0 0 0 0 55 0 0 0 0 0 +418 1783757095488875200 DEPTH 46 1 0.64534774832630704 0 2 7 2 7 0 0 271 39 2606 23664764 81600 856.85006713867188 6.0403000000000002 1259.0337 120960 43977 1 0 5898240 4423680 4423680 4426361 4492800 155 150 150 150 2001 0 0 0 0 39 0 0 0 0 0 +419 1783757096712175700 DEPTH 46 1 0.62889725378566474 0 2 7 2 7 0 0 273 49 2588 23664841 81600 853.73562622070312 5.9107000000000003 1221.6521 120960 30026 1 0 5898240 4423680 4423680 4426440 4492800 157 150 150 152 1979 0 0 0 0 49 0 0 0 0 0 +420 1783757096900366000 REFRESH 46 0 0.61408503303172357 0 2 7 2 7 0 0 273 7 415 3943935 55200 151.98822021484375 0.997 186.69540000000001 20160 13616 0 0 983040 737280 737280 737534 748800 101 25 27 70 192 0 0 0 0 7 0 0 0 0 0 +421 1783757098148769500 DEPTH 46 1 0.59774728012000777 0 2 7 2 7 1 0 275 51 2616 23664885 81600 868.06193542480469 6.0072999999999999 1247.0590999999999 120960 66013 1 0 5898240 4423680 4423680 4426484 4492800 154 150 150 150 2012 0 0 0 0 51 0 0 0 0 1 +422 1783757099390368700 DEPTH 46 1 0.58719532244101869 0 2 7 2 7 0 0 275 38 2599 23664814 81600 859.93527221679688 5.9119999999999999 1240.2166999999999 120960 55137 1 0 5898240 4423680 4423680 4426413 4492800 155 150 150 150 1994 0 0 0 0 38 0 0 0 0 0 +423 1783757100621825400 DEPTH 46 1 0.57653309596332458 0 2 7 2 7 0 0 275 48 2605 23664904 81600 859.16644287109375 5.9641999999999999 1229.8239000000001 120960 43882 1 0 5898240 4423680 4423680 4426502 4492800 156 150 150 150 1999 0 0 0 0 48 0 0 0 0 0 +424 1783757101840078600 DEPTH 46 1 0.56693040151306284 0 2 7 2 7 0 0 277 38 2602 23664844 81600 854.80520629882812 5.9148999999999994 1215.866 120960 30169 1 0 5898240 4423680 4423680 4426444 4492800 156 150 150 150 1996 0 0 0 0 38 0 0 0 0 0 +425 1783757102034167700 REFRESH 46 0 0.55828130686475452 0 2 7 2 7 0 0 277 5 413 3943897 55200 151.16184997558594 0.98599999999999999 192.33680000000001 20160 13538 0 0 983040 737280 737280 737497 748800 113 25 27 69 179 0 0 0 0 5 0 0 0 0 0 +426 1783757103263428400 DEPTH 46 1 0.54549047290339236 0 2 7 2 7 0 0 280 44 2571 23664823 81600 867.27371215820312 5.9647999999999994 1227.9236000000001 120960 66190 1 0 5898240 4423680 4423680 4426420 4492800 156 150 150 150 1965 0 0 0 0 44 0 0 0 0 0 +427 1783757104477635800 DEPTH 46 1 0.53897209431424009 0 2 7 2 7 0 0 284 48 2578 23664754 81600 859.50785827636719 5.9893000000000001 1212.8235999999999 120960 55265 1 0 5898240 4423680 4423680 4426354 4492800 156 150 150 150 1972 0 0 0 0 48 0 0 0 0 0 +428 1783757105694770200 DEPTH 46 1 0.53309894620364262 0 2 7 2 7 0 0 285 47 2564 23664889 81600 858.49676513671875 5.9679000000000002 1215.4795999999999 120960 44457 1 0 5898240 4423680 4423680 4426489 4492800 156 150 150 150 1958 0 0 0 0 47 0 0 0 0 0 +429 1783757106881978800 DEPTH 46 1 0.52780652605774736 0 2 7 2 7 0 0 286 40 2560 23664870 81600 855.63214111328125 5.9569000000000001 1185.7846999999999 120960 30274 1 0 5898240 4423680 4423680 4426470 4492800 156 150 150 150 1954 0 0 0 0 40 0 0 0 0 0 +430 1783757107074380400 REFRESH 46 0 0.52303678150534572 0 2 7 2 7 0 0 286 5 410 3943893 55200 152.29942321777344 0.98140000000000005 190.51159999999999 20160 13786 0 0 983040 737280 737280 737493 748800 111 25 26 72 176 0 0 0 0 5 0 0 0 0 0 +431 1783757108305164200 DEPTH 46 1 0.51373746530442199 0 2 7 2 7 0 0 287 30 2559 23664821 81600 868.65093994140625 5.9108000000000001 1229.2971 120960 66548 1 0 5898240 4423680 4423680 4426418 4492800 156 150 150 150 1953 0 0 0 0 30 0 0 0 0 0 +432 1783757109521169100 DEPTH 46 1 0.51036155483003953 0 2 7 2 7 0 0 287 41 2557 23664863 81600 861.00555419921875 5.923 1214.6502 120960 55335 1 0 5898240 4423680 4423680 4426462 4492800 156 150 150 150 1951 0 0 0 0 41 0 0 0 0 0 +433 1783757110700829600 DEPTH 46 1 0.50731672961343099 0 2 7 2 7 0 0 288 25 2557 23664897 81600 858.61859130859375 5.9487000000000005 1178.4643000000001 120960 44324 1 0 5898240 4423680 4423680 4426496 4492800 156 150 150 150 1951 0 0 0 0 25 0 0 0 0 0 +434 1783757111903120400 DEPTH 46 1 0.50456990112717159 0 2 7 2 7 0 0 289 27 2554 23664873 81600 859.25260925292969 5.9256000000000002 1201.0780999999999 120960 30232 1 0 5898240 4423680 4423680 4426472 4492800 156 150 150 150 1948 0 0 0 0 27 0 0 0 0 0 +435 1783757112102041000 REFRESH 46 0 0.50209128959182714 0 2 7 2 7 0 0 289 8 414 3943924 55200 151.90835571289062 0.98170000000000002 197.3783 20160 13511 0 0 983040 737280 737280 737524 748800 128 25 27 74 160 0 0 0 0 8 0 0 0 0 0 +436 1783757113356920200 DEPTH 46 1 0.49785409310193035 0 2 7 2 7 0 0 289 32 2546 23664929 81600 882.13023376464844 5.9908000000000001 1253.1565000000001 120960 66160 1 0 5898240 4423680 4423680 4426527 4492800 156 150 150 150 1940 0 0 0 0 32 0 0 0 0 0 +437 1783757114538603700 DEPTH 46 1 0.49603418983935182 0 2 7 2 7 0 0 292 31 2547 23664851 81600 863.29615783691406 5.8705999999999996 1179.0586000000001 120960 55796 1 0 5898240 4423680 4423680 4426451 4492800 156 150 150 150 1941 0 0 0 0 31 0 0 0 0 0 +438 1783757115720248800 DEPTH 46 1 0.49438987006532664 0 2 7 2 7 0 0 293 33 2534 23664755 81600 858.19929504394531 5.9081999999999999 1179.9739999999999 120960 44411 1 0 5898240 4423680 4423680 4426354 4492800 156 150 150 150 1928 0 0 0 0 33 0 0 0 0 0 +439 1783757116897449900 DEPTH 46 1 0.49290359491327096 0 2 7 2 7 0 0 295 35 2528 23664884 81600 855.62042236328125 5.9023000000000003 1175.8045 120960 30198 1 0 5898240 4423680 4423680 4426484 4492800 156 150 150 150 1922 0 0 0 0 35 0 0 0 0 0 +440 1783757117094214600 REFRESH 46 0 0.49155957930231009 0 2 7 2 7 0 0 295 4 413 3943917 55200 152.14591979980469 0.98340000000000005 195.42089999999999 20160 13485 0 0 983040 737280 737280 737517 748800 146 25 28 83 131 0 0 0 0 4 0 0 0 0 0 +441 1783757118305814900 DEPTH 46 1 0.48434361655944647 0 2 7 2 7 0 0 297 29 2522 23664837 81600 869.79278564453125 5.9851999999999999 1210.0328 120960 66354 1 0 5898240 4423680 4423680 4426437 4492800 156 150 150 150 1916 0 0 0 0 29 0 0 0 0 0 +442 1783757119499916500 DEPTH 46 1 0.48384292057950373 0 2 7 2 7 1 0 298 20 2515 23664818 81600 863.13948059082031 5.8898999999999999 1192.7498000000001 120960 55356 1 0 5898240 4423680 4423680 4426417 4492800 156 150 150 150 1909 0 0 0 0 20 0 0 0 0 1 +443 1783757120726879000 DEPTH 46 1 0.48357269176480999 0 2 7 2 7 0 0 299 33 2509 23664821 81600 858.83099365234375 5.9222000000000001 1224.8262999999999 120960 44294 1 0 5898240 4423680 4423680 4426421 4492800 156 150 150 150 1903 0 0 0 0 33 0 0 0 0 0 +444 1783757121971705300 DEPTH 46 1 0.48313648639220519 0 2 7 2 7 0 0 300 18 2515 23664816 81600 856.38087463378906 5.8982000000000001 1198.7699 120960 30507 1 0 5898240 4423680 4423680 4426414 4492800 156 150 150 150 1909 0 0 0 0 18 0 0 0 0 0 +445 1783757122163766600 REFRESH 46 0 0.48273762900074169 0 2 7 2 7 0 0 300 4 411 3943902 55200 151.46086120605469 0.99629999999999996 190.7158 20160 13684 0 0 983040 737280 737280 737502 748800 148 25 27 77 134 0 0 0 0 4 0 0 0 0 0 +446 1783757123388101500 DEPTH 46 1 0.47637240358320793 0 2 7 2 7 0 0 301 20 2507 23664857 81600 869.462158203125 5.9109999999999996 1223.0284999999999 120960 66444 1 0 5898240 4423680 4423680 4426457 4492800 156 150 150 150 1901 0 0 0 0 20 0 0 0 0 0 +447 1783757124599147500 DEPTH 46 1 0.47663746563719278 0 2 7 2 7 0 0 302 28 2511 23664860 81600 862.74710083007812 5.8968000000000007 1202.3524 120960 54972 1 1 5898240 4423680 4423680 4426459 4492800 156 150 150 150 1905 0 0 0 0 27 0 0 0 0 0 +448 1783757125823445700 DEPTH 46 1 0.4768698050152973 0 2 7 2 7 0 0 302 19 2505 23664830 81600 860.13845825195312 5.9106999999999994 1222.1766 120960 43922 1 0 5898240 4423680 4423680 4426429 4492800 156 150 150 150 1899 0 0 0 0 19 0 0 0 0 0 +449 1783757127049954300 DEPTH 46 1 0.47707271249031896 0 2 7 2 7 0 0 304 14 2505 23664866 81600 857.91551208496094 5.9565000000000001 1225.114 120960 30690 1 0 5898240 4423680 4423680 4426464 4492800 156 150 150 150 1899 0 0 0 0 14 0 0 0 0 0 +450 1783757127240741600 REFRESH 46 0 0.47724914966391069 0 2 7 2 7 0 0 305 3 411 3943916 55200 152.237060546875 0.98780000000000001 189.42349999999999 20160 13705 0 0 983040 737280 737280 737516 748800 158 25 29 83 116 0 0 1 0 2 0 0 0 0 0 +451 1783757128467603300 DEPTH 46 1 0.47040178188436799 0 2 7 2 7 0 0 305 19 2512 23664909 81600 870.35151672363281 5.9174999999999995 1225.5108 120960 66698 1 0 5898240 4423680 4423680 4426508 4492800 156 150 150 150 1906 0 0 0 0 19 0 0 0 0 0 +452 1783757129689120600 DEPTH 46 1 0.47123300787263123 0 2 7 2 7 0 0 305 18 2507 23664885 81600 861.81791687011719 5.8996999999999993 1219.8242 120960 55467 1 0 5898240 4423680 4423680 4426484 4492800 156 150 150 150 1901 0 0 0 0 18 0 0 0 0 0 +453 1783757130907060500 DEPTH 46 1 0.47197498638568108 0 2 7 2 7 0 0 305 22 2509 23664786 81600 860.33644104003906 5.9053000000000004 1216.6558 120960 44362 1 0 5898240 4423680 4423680 4426384 4492800 156 150 150 150 1903 0 0 0 0 22 0 0 0 0 0 +454 1783757132125530400 DEPTH 46 1 0.47263666021358897 0 2 7 2 7 0 0 305 14 2519 23664800 81600 857.02833557128906 5.8858000000000006 1216.8137999999999 120960 30896 1 0 5898240 4423680 4423680 4426396 4492800 156 150 150 150 1913 0 0 0 0 14 0 0 0 0 0 +455 1783757132318169600 REFRESH 46 0 0.47322607777685582 0 2 7 2 7 0 0 305 2 414 3943887 55200 152.57679748535156 1.0276000000000001 191.23330000000001 20160 13538 0 0 983040 737280 737280 737487 748800 159 25 30 83 117 0 0 0 0 2 0 0 0 0 0 +456 1783757133550767200 DEPTH 46 1 0.46575048256401175 0 2 7 2 7 0 0 305 24 2508 23664797 81600 871.87544250488281 5.9293000000000005 1230.1346000000001 120960 66221 1 0 5898240 4423680 4423680 4426395 4492800 156 150 150 150 1902 0 0 0 0 24 0 0 0 0 0 +457 1783757134762119600 DEPTH 46 1 0.46701639362544883 0 2 7 2 7 0 0 305 14 2509 23664978 81600 862.53059387207031 5.8959000000000001 1209.9757999999999 120960 55913 1 0 5898240 4423680 4423680 4426575 4492800 156 150 150 150 1903 0 0 0 0 14 0 0 0 0 0 +458 1783757135988437800 DEPTH 46 1 0.468149678017866 0 2 7 2 7 0 0 305 16 2507 23664852 81600 861.93690490722656 6.1432000000000002 1224.8729000000001 120960 44596 1 0 5898240 4423680 4423680 4426449 4492800 156 150 150 150 1901 0 0 0 0 16 0 0 0 0 0 +459 1783757137188592400 DEPTH 46 1 0.46916361600426271 0 2 7 2 7 0 0 305 10 2499 23664804 81600 859.38461303710938 6.0916999999999994 1198.8889999999999 120960 30420 1 0 5898240 4423680 4423680 4426396 4492800 156 150 150 153 1890 0 0 0 0 10 0 0 0 0 0 +460 1783757137380350600 REFRESH 46 0 0.47007015973392802 0 2 7 2 7 0 0 305 5 414 3943893 55200 152.13670349121094 0.98670000000000002 189.93960000000001 20160 13582 0 0 983040 737280 737280 737492 748800 162 25 31 86 110 0 0 0 0 5 0 0 0 0 0 +461 1783757138689083200 DEPTH 46 1 0.46588006605442533 0 2 7 2 7 0 0 305 5 2507 23664761 81600 920.13362121582031 6.7774999999999999 1307.309 120960 66278 1 0 5898240 4423680 4423680 4426354 4492800 156 150 150 150 1901 0 0 0 0 5 0 0 0 0 0 +462 1783757139984019400 DEPTH 46 1 0.46210301604237236 0 2 7 2 7 0 0 305 10 2500 23664912 81600 913.30584716796875 6.1241999999999992 1293.0183999999999 120960 55518 1 0 5898240 4423680 4423680 4426505 4492800 156 150 150 150 1894 0 0 0 0 10 0 0 0 0 0 +463 1783757141234941000 DEPTH 46 1 0.46369772258113873 0 2 7 2 7 0 0 305 10 2502 23664783 81600 908.87184143066406 5.8818999999999999 1249.0146 120960 43775 1 0 5898240 4423680 4423680 4426376 4492800 156 150 150 150 1896 0 0 0 0 10 0 0 0 0 0 +464 1783757142520714600 DEPTH 46 1 0.46512702718076693 0 2 7 2 7 0 0 306 19 2501 23664913 81600 908.42440795898438 5.9710000000000001 1284.4077 120960 30187 1 0 5898240 4423680 4423680 4426505 4492800 156 150 150 150 1895 0 0 0 0 19 0 0 0 0 0 +465 1783757142719123900 REFRESH 46 0 0.46640748711589741 0 2 7 2 7 0 0 306 0 414 3943927 55200 160.24986267089844 0.97840000000000005 197.13800000000001 20160 13561 0 0 983040 737280 737280 737526 748800 156 25 28 82 123 0 0 0 0 0 0 0 0 0 0 +466 1783757144011867000 DEPTH 46 1 0.45755400384989442 0 2 7 2 7 0 0 306 18 2502 23664963 81600 922.43255615234375 6.0263 1291.4231 120960 66433 1 0 5898240 4423680 4423680 4426557 4492800 156 150 150 150 1896 0 0 0 0 18 0 0 0 0 0 +467 1783757145279563000 DEPTH 46 1 0.45957998861655497 0 2 7 2 7 0 0 306 16 2501 23664856 81600 914.63591003417969 5.9137000000000004 1266.4590000000001 120960 55433 1 0 5898240 4423680 4423680 4426450 4492800 156 150 150 152 1893 0 0 0 0 16 0 0 0 0 0 +468 1783757146568729000 DEPTH 46 1 0.46139751144364122 0 2 7 2 7 0 0 306 20 2508 23664863 81600 914.66889953613281 6.0207000000000006 1287.3087 120960 44861 1 0 5898240 4423680 4423680 4426455 4492800 156 150 150 151 1901 0 0 0 0 20 0 0 0 0 0 +469 1783757147817731100 DEPTH 46 1 0.46302743527405454 0 2 7 2 7 0 0 306 23 2501 23664926 81600 912.50381469726562 6.0019 1247.3978999999999 120960 30315 1 0 5898240 4423680 4423680 4426518 4492800 156 150 150 162 1883 0 0 0 0 23 0 0 0 0 0 +470 1783757148015521400 REFRESH 46 0 0.46448853667488749 0 2 7 2 7 0 0 306 0 413 3943906 55200 159.47775268554688 0.98350000000000004 196.51849999999999 20160 13548 0 0 983040 737280 737280 737505 748800 164 25 31 83 110 0 0 0 0 0 0 0 0 0 0 +471 1783757149250304300 DEPTH 46 1 0.45579771447556472 0 2 7 2 7 0 0 306 19 2495 23664862 81600 922.53915405273438 5.9682000000000004 1233.1735000000001 120960 66078 1 0 5898240 4423680 4423680 4426455 4492800 159 150 150 150 1886 0 0 0 0 19 0 0 0 0 0 +472 1783757150474054300 DEPTH 46 1 0.45797017754216568 0 2 7 2 7 1 0 308 20 2495 23664814 81600 912.73164367675781 5.8912999999999993 1222.2696000000001 120960 55145 1 0 5898240 4423680 4423680 4426407 4492800 176 150 150 177 1842 0 0 0 0 20 0 0 0 0 1 +473 1783757151720154300 DEPTH 46 1 0.46154386309132445 0 2 7 2 7 0 0 309 19 2495 23664870 81600 915.68052673339844 5.9394999999999998 1244.6081999999999 120960 44354 1 0 5898240 4423680 4423680 4426464 4492800 188 150 150 208 1799 0 0 0 0 19 0 0 0 0 0 +474 1783757152913603100 DEPTH 46 1 0.46313016658766115 0 2 7 2 7 0 0 309 13 2495 23664750 81600 857.71348571777344 5.9135 1157.8266000000001 120960 30377 1 0 5898240 4423680 4423680 4426343 4492800 195 150 150 198 1802 0 0 0 0 13 0 0 0 0 0 +475 1783757153105933100 REFRESH 46 0 0.4645520918216125 0 2 7 2 7 0 0 309 0 413 3943908 55200 151.731201171875 0.98719999999999997 191.00470000000001 20160 13572 0 0 983040 737280 737280 737507 748800 167 25 31 87 103 0 0 0 0 0 0 0 0 0 0 +476 1783757154298892500 DEPTH 46 1 0.4558260928093274 0 2 7 2 7 0 0 309 11 2494 23664806 81600 870.72152709960938 6.0314999999999994 1191.3888999999999 120960 66273 1 0 5898240 4423680 4423680 4426399 4492800 212 150 150 229 1753 0 0 0 0 11 0 0 0 0 0 +477 1783757155452784400 DEPTH 46 1 0.45796697808764225 0 2 7 2 7 0 0 309 14 2495 23664857 81600 869.68525695800781 5.8916000000000004 1152.2937999999999 120960 54787 1 0 5898240 4423680 4423680 4426449 4492800 203 150 150 265 1727 0 0 0 0 14 0 0 0 0 0 +478 1783757156629409700 DEPTH 46 1 0.45988807526253855 0 2 7 2 7 0 0 309 12 2495 23664832 81600 859.5777587890625 5.9340000000000002 1174.6835000000001 120960 43806 1 0 5898240 4423680 4423680 4426426 4492800 179 150 150 267 1749 0 0 0 0 12 0 0 0 0 0 +479 1783757157790591100 DEPTH 46 1 0.46161137910275091 0 2 7 2 7 0 0 309 12 2497 23664875 81600 856.826171875 5.990499999999999 1159.7168999999999 120960 29889 1 0 5898240 4423680 4423680 4426469 4492800 191 150 150 317 1689 0 0 0 0 12 0 0 0 0 0 +480 1783757157981472700 REFRESH 46 0 0.46315668482400923 0 2 7 2 7 0 0 309 4 413 3943918 55200 152.77030944824219 0.98370000000000002 189.5795 20160 13636 0 0 983040 737280 737280 737517 748800 162 25 30 87 109 0 0 0 0 4 0 0 0 0 0 +481 1783757159150048800 DEPTH 46 1 0.45854180804485239 0 2 7 2 7 0 0 309 18 2501 23664876 81600 872.70747375488281 5.9717000000000002 1166.8849 120960 65984 1 0 5898240 4423680 4423680 4426469 4492800 229 150 150 242 1730 0 0 0 0 18 0 0 0 0 0 +482 1783757160313917200 DEPTH 46 1 0.46038278274685585 0 2 7 2 7 0 0 310 10 2496 23664851 81600 864.257568359375 5.9238 1162.2692 120960 55496 1 0 5898240 4423680 4423680 4426444 4492800 218 150 150 233 1745 0 0 0 0 10 0 0 0 0 0 +483 1783757161458494200 DEPTH 46 1 0.46203403943883237 0 2 7 2 7 0 0 310 21 2501 23664802 81600 860.21430969238281 5.8902999999999999 1143.2850000000001 120960 44428 1 0 5898240 4423680 4423680 4426395 4492800 194 150 150 227 1780 0 0 0 0 21 0 0 0 0 0 +484 1783757162606921300 DEPTH 46 1 0.46351456550460796 0 2 7 2 7 0 0 311 11 2498 23664861 81600 856.40472412109375 5.9429000000000007 1147.2103 120960 30583 1 0 5898240 4423680 4423680 4426453 4492800 168 150 150 174 1856 0 0 0 0 11 0 0 0 0 0 +485 1783757162796733200 REFRESH 46 0 0.4648414495160163 0 2 7 2 7 0 0 311 1 413 3943880 55200 151.86326599121094 0.98570000000000002 188.2577 20160 13555 0 0 983040 737280 737280 737479 748800 162 25 28 82 116 0 0 0 0 1 0 0 0 0 0 +486 1783757163968618400 DEPTH 46 1 0.45703007111458904 0 2 7 2 7 0 0 312 12 2504 23664853 81600 869.64633178710938 5.9180999999999999 1170.0235 120960 66535 1 0 5898240 4423680 4423680 4426447 4492800 160 150 150 157 1887 0 0 0 0 12 0 0 0 0 0 +487 1783757165122060300 DEPTH 46 1 0.45899427190507325 0 2 7 2 7 0 0 312 9 2500 23664887 81600 862.53433227539062 5.8858999999999995 1151.8662999999999 120960 55768 1 0 5898240 4423680 4423680 4426479 4492800 156 150 150 151 1893 0 0 0 0 9 0 0 0 0 0 +488 1783757166281159800 DEPTH 46 1 0.45975650925959244 0 2 7 2 7 0 0 312 16 2504 23664909 81600 858.25430297851562 5.9265999999999996 1157.777 120960 43985 1 0 5898240 4423680 4423680 4426503 4492800 165 150 150 184 1855 0 0 0 0 16 0 0 0 0 0 +489 1783757167430911600 DEPTH 46 1 0.46143699474138777 0 2 7 2 7 0 0 312 8 2507 23664876 81600 858.56253051757812 5.9357000000000006 1148.4888000000001 120960 30501 1 0 5898240 4423680 4423680 4426470 4492800 166 150 150 210 1831 0 0 0 0 8 0 0 0 0 0 +490 1783757167620061000 REFRESH 46 0 0.4609439186861809 0 2 7 2 7 0 0 313 5 410 3943907 55200 152.02188110351562 0.98550000000000004 187.83420000000001 20160 13587 0 0 983040 737280 737280 737506 748800 164 25 31 89 101 0 0 0 0 5 0 0 0 0 0 +491 1783757168770489000 DEPTH 46 1 0.45749465232539627 0 2 7 2 7 0 0 313 4 2508 23664842 81600 870.51313781738281 5.9002999999999997 1149.1094000000001 120960 66620 1 0 5898240 4423680 4423680 4426436 4492800 162 150 150 154 1892 0 0 0 0 4 0 0 0 0 0 +492 1783757169919574100 DEPTH 46 1 0.45338482969705762 0 2 7 2 7 0 0 313 6 2505 23664872 81600 862.69416809082031 5.9033999999999995 1147.7519 120960 55493 1 0 5898240 4423680 4423680 4426464 4492800 163 150 150 169 1873 0 0 0 0 6 0 0 0 0 0 +493 1783757171083688200 DEPTH 46 1 0.45168052136559034 0 2 7 2 7 0 0 313 9 2506 23664918 81600 860.43434143066406 5.9409000000000001 1162.1455000000001 120960 43908 1 0 5898240 4423680 4423680 4426512 4492800 161 150 150 160 1885 0 0 0 0 9 0 0 0 0 0 +494 1783757172276244200 DEPTH 46 1 0.45314119076964005 0 2 7 2 7 0 0 313 18 2533 23664772 81600 856.013671875 5.9181000000000008 1191.1935000000001 120960 30006 1 0 5898240 4423680 4423680 4426365 4492800 156 150 150 151 1926 0 0 0 0 18 0 0 0 0 0 +495 1783757172470553600 REFRESH 46 0 0.45545035493510522 0 2 7 2 7 0 0 313 5 414 3943888 55200 151.91346740722656 0.98750000000000004 192.928 20160 13609 0 0 983040 737280 737280 737487 748800 146 25 27 77 139 0 0 0 0 5 0 0 0 0 0 +496 1783757173694818800 DEPTH 46 1 0.45252317911686291 0 2 7 2 7 0 0 313 26 2558 23664981 81600 869.53517150878906 5.9049999999999994 1223.0915 120960 66520 1 0 5898240 4423680 4423680 4426574 4492800 156 150 150 150 1952 0 0 0 0 26 0 0 0 0 0 +497 1783757174892467600 DEPTH 46 1 0.45488331197631771 0 2 7 2 7 1 0 313 15 2560 23664786 81600 861.03126525878906 5.8903000000000008 1196.0975000000001 120960 55516 1 0 5898240 4423680 4423680 4426380 4492800 156 150 150 150 1954 0 0 0 0 15 0 0 0 0 1 +498 1783757176124545600 DEPTH 46 1 0.45700206439347019 0 2 7 2 7 0 0 313 19 2585 23664867 81600 859.14602661132812 6.4702000000000002 1230.3087 120960 43970 1 0 5898240 4423680 4423680 4426461 4492800 162 150 150 166 1957 0 0 0 0 19 0 0 0 0 0 +499 1783757177307747400 DEPTH 46 1 0.45890353463638567 0 2 7 2 7 0 0 316 22 2541 23664858 81600 856.27757263183594 6.0002999999999993 1181.8127999999999 120960 30315 1 0 5898240 4423680 4423680 4426452 4492800 156 150 150 153 1932 0 0 0 0 22 0 0 0 0 0 +500 1783757177500333700 REFRESH 46 0 0.46060949253649053 0 2 7 2 7 0 0 316 8 414 3943907 55200 151.2015380859375 0.98640000000000005 191.16980000000001 20160 13565 0 0 983040 737280 737280 737506 748800 137 25 27 78 147 0 0 0 0 8 0 0 0 0 0 +501 1783757178675593600 DEPTH 46 1 0.46013950372355678 0 2 7 2 7 0 0 316 17 2543 23664849 81600 867.21343994140625 5.9234 1173.9047 120960 66560 1 0 5898240 4423680 4423680 4426441 4492800 156 150 150 151 1936 0 0 0 0 17 0 0 0 0 0 +502 1783757179882146800 DEPTH 46 1 0.46171117719857402 0 2 7 2 7 0 0 316 18 2564 23664879 81600 861.9906005859375 5.8927999999999994 1205.0219999999999 120960 55243 1 0 5898240 4423680 4423680 4426474 4492800 156 150 150 150 1958 0 0 0 0 18 0 0 0 0 0 +503 1783757181100851200 DEPTH 46 1 0.46312036099705284 0 2 7 2 7 1 0 316 15 2558 23664818 81600 857.54234313964844 6.0111999999999997 1216.9976999999999 120960 44119 1 0 5898240 4423680 4423680 4426417 4492800 156 150 150 150 1952 0 0 0 0 15 0 0 0 0 1 +504 1783757182300805800 DEPTH 46 1 0.46447844994508636 0 2 7 2 7 0 0 316 15 2551 23664891 81600 855.41851806640625 5.9780999999999995 1198.6315 120960 30572 1 0 5898240 4423680 4423680 4426487 4492800 156 150 150 150 1945 0 0 0 0 15 0 0 0 0 0 +505 1783757182493339800 REFRESH 46 0 0.46560030434434047 0 2 7 2 7 0 0 316 3 416 3943903 55200 152.30841064453125 0.99039999999999995 190.88239999999999 20160 13613 0 0 983040 737280 737280 737502 748800 152 25 27 77 135 0 0 0 0 3 0 0 0 0 0 +506 1783757183749486500 DEPTH 46 1 0.4596046933794653 0 2 7 2 7 1 0 316 28 2564 23664923 81600 867.42070007324219 5.9301000000000004 1216.3378 120960 66830 1 0 5898240 4423680 4423680 4426523 4492800 156 150 150 150 1958 0 0 0 0 28 0 0 0 0 1 +507 1783757184965008800 DEPTH 46 1 0.46120338817597195 0 2 7 2 7 0 0 316 27 2566 23664762 81600 858.78764343261719 5.9040000000000008 1213.8521000000001 120960 55592 1 0 5898240 4423680 4423680 4426361 4492800 156 150 150 150 1960 0 0 0 0 27 0 0 0 0 0 +508 1783757186184115700 DEPTH 46 1 0.46263695093711177 0 2 7 2 7 1 0 316 27 2570 23664913 81600 858.96673583984375 5.9040999999999997 1217.1507999999999 120960 43976 1 0 5898240 4423680 4423680 4426513 4492800 156 150 150 151 1963 0 0 0 0 27 0 0 0 0 1 +509 1783757187364755300 DEPTH 46 1 0.46419249053652178 0 2 7 2 7 0 0 316 18 2545 23664903 81600 855.28498840332031 5.9334999999999996 1179.0633 120960 30045 1 0 5898240 4423680 4423680 4426503 4492800 156 150 150 150 1939 0 0 0 0 18 0 0 0 0 0 +510 1783757187556949700 REFRESH 46 0 0.46531668069419962 0 2 7 2 7 0 0 316 8 412 3943896 55200 151.731201171875 0.98240000000000005 190.80430000000001 20160 13528 0 0 983040 737280 737280 737496 748800 146 25 27 78 136 0 0 0 0 8 0 0 0 0 0 +511 1783757188761593600 DEPTH 46 1 0.46432324131767783 0 2 7 2 7 0 0 316 17 2553 23664818 81600 869.0191650390625 5.923 1202.4718 120960 66510 1 0 5898240 4423680 4423680 4426415 4492800 156 150 150 150 1947 0 0 0 0 17 0 0 0 0 0 +512 1783757189958357500 DEPTH 46 1 0.46542394905481216 0 2 7 2 7 0 0 316 22 2549 23664794 81600 860.36257934570312 5.8925000000000001 1195.1918000000001 120960 55345 1 0 5898240 4423680 4423680 4426393 4492800 156 150 150 150 1943 0 0 0 0 22 0 0 0 0 0 +513 1783757191136746000 DEPTH 46 1 0.46640940282735338 0 2 7 2 7 0 0 316 17 2535 23664753 81600 856.27769470214844 5.9207999999999998 1177.1391000000001 120960 44427 1 0 5898240 4423680 4423680 4426352 4492800 156 150 150 150 1929 0 0 0 0 17 0 0 0 0 0 +514 1783757192355874200 DEPTH 46 1 0.46729114160394569 0 2 7 2 7 0 0 316 16 2561 23664861 81600 854.02413940429688 5.9658999999999995 1214.3341 120960 30289 1 0 5898240 4423680 4423680 4426460 4492800 156 150 150 150 1955 0 0 0 0 16 0 0 0 0 0 +515 1783757192549318100 REFRESH 46 0 0.46807955039582239 0 2 7 2 7 0 0 316 1 412 3943917 55200 151.82438659667969 0.98240000000000005 191.58600000000001 20160 13459 0 0 983040 737280 737280 737517 748800 127 25 27 74 159 0 0 0 0 1 0 0 0 0 0 +516 1783757193772130400 DEPTH 46 1 0.45978397565292828 0 2 7 2 7 0 0 317 18 2573 23664865 81600 879.05223083496094 5.9078000000000008 1220.9636 120960 66054 1 0 5898240 4423680 4423680 4426465 4492800 156 150 150 151 1966 0 0 0 0 18 0 0 0 0 0 +517 1783757194986159100 DEPTH 46 1 0.46131282912042726 0 2 7 2 7 0 0 317 26 2539 23664806 81600 871.24885559082031 5.9281000000000006 1211.7345 120960 55354 1 0 5898240 4423680 4423680 4426406 4492800 156 150 150 150 1933 0 0 0 0 26 0 0 0 0 0 +518 1783757196194838700 DEPTH 46 1 0.46268368130955556 0 2 7 2 7 0 0 318 19 2554 23664884 81600 858.98924255371094 5.9471999999999996 1206.9593 120960 44256 1 0 5898240 4423680 4423680 4426482 4492800 156 150 150 151 1947 0 0 0 0 19 0 0 0 0 0 +519 1783757197420224100 DEPTH 46 1 0.46391234562138733 0 2 7 2 7 0 0 318 17 2566 23664825 81600 866.89398193359375 5.8997999999999999 1224.0734 120960 29920 1 0 5898240 4423680 4423680 4426424 4492800 156 150 150 150 1960 0 0 0 0 17 0 0 0 0 0 +520 1783757197610588400 REFRESH 46 0 0.46501305405821985 0 2 7 2 7 0 0 318 6 414 3943896 55200 151.91448974609375 0.98499999999999999 189.18600000000001 20160 13675 0 0 983040 737280 737280 737496 748800 128 25 27 74 160 0 0 0 0 6 0 0 0 0 0 +521 1783757198799935100 DEPTH 46 1 0.46199861536381776 0 2 7 2 7 0 0 318 15 2547 23664903 81600 869.91889953613281 5.8944999999999999 1187.9391000000001 120960 66420 1 0 5898240 4423680 4423680 4426501 4492800 156 150 150 151 1940 0 0 0 0 15 0 0 0 0 0 +522 1783757199998015600 DEPTH 46 1 0.46328055734962975 0 2 7 2 7 0 0 318 23 2545 23664874 81600 868.90179443359375 5.9280999999999997 1196.837 120960 55586 1 0 5898240 4423680 4423680 4426472 4492800 156 150 150 150 1939 0 0 0 0 23 0 0 0 0 0 +523 1783757201199022700 DEPTH 46 1 0.46442925498838072 0 2 7 2 7 0 0 319 14 2560 23664825 81600 858.61959838867188 5.9826999999999995 1199.8377 120960 43726 1 0 5898240 4423680 4423680 4426424 4492800 156 150 150 150 1954 0 0 0 0 14 0 0 0 0 0 +524 1783757202373295500 DEPTH 46 1 0.46545804569830157 0 2 7 2 7 0 0 321 20 2537 23664844 81600 856.98225402832031 5.8929 1173.0821000000001 120960 30061 1 0 5898240 4423680 4423680 4426444 4492800 156 150 150 150 1931 0 0 0 0 20 0 0 0 0 0 +525 1783757202566699900 REFRESH 46 0 0.46637893309893375 0 2 7 2 7 0 0 322 3 414 3943894 55200 151.38383483886719 0.98440000000000005 191.95259999999999 20160 13618 0 0 983040 737280 737280 737494 748800 157 25 28 80 124 0 0 0 0 3 0 0 0 0 0 +526 1783757203764916800 DEPTH 46 1 0.46020272039134963 0 2 7 2 7 0 0 323 28 2542 23664824 81600 867.73759460449219 5.9485999999999999 1196.3865000000001 120960 66727 1 0 5898240 4423680 4423680 4426423 4492800 156 150 150 151 1935 0 0 0 0 28 0 0 0 0 0 +527 1783757204940785100 DEPTH 46 1 0.46163913040034876 0 2 7 2 7 0 0 323 19 2543 23664800 81600 862.32647705078125 5.9172999999999991 1174.6185 120960 55657 1 0 5898240 4423680 4423680 4426397 4492800 156 150 150 150 1937 0 0 0 0 19 0 0 0 0 0 +528 1783757206118776000 DEPTH 46 1 0.4629269136124316 0 2 7 2 7 0 0 323 23 2529 23664763 81600 862.29789733886719 5.9497999999999998 1176.7192 120960 44030 1 0 5898240 4423680 4423680 4426362 4492800 156 150 150 150 1923 0 0 0 0 23 0 0 0 0 0 +529 1783757207303060400 DEPTH 46 1 0.46408094540997263 0 2 7 2 7 0 0 323 32 2540 23664826 81600 855.76689147949219 5.9273000000000007 1183.1120000000001 120960 29129 1 0 5898240 4423680 4423680 4426425 4492800 156 150 150 152 1932 0 0 0 0 32 0 0 0 0 0 +530 1783757207503780500 REFRESH 46 0 0.46511461358197398 0 2 7 2 7 0 0 323 6 414 3943903 55200 157.49221801757812 0.98180000000000001 199.49809999999999 20160 13608 0 0 983040 737280 737280 737503 748800 144 25 27 77 141 0 0 0 0 6 0 0 0 0 0 +531 1783757208702618500 DEPTH 46 1 0.46203996708374079 0 2 7 2 7 0 0 323 24 2540 23664855 81600 869.54118347167969 5.8999999999999995 1197.5885000000001 120960 66355 1 0 5898240 4423680 4423680 4426455 4492800 156 150 150 150 1934 0 0 0 0 24 0 0 0 0 0 +532 1783757209880963700 DEPTH 46 1 0.46326784992058623 0 2 7 2 7 0 0 324 21 2549 23664842 81600 859.48500061035156 5.8905000000000003 1177.0844999999999 120960 55565 1 0 5898240 4423680 4423680 4426440 4492800 156 150 150 150 1943 0 0 0 0 21 0 0 0 0 0 +533 1783757211071969800 DEPTH 46 1 0.4643680216431636 0 2 7 2 7 0 0 326 20 2540 23664831 81600 858.29426574707031 5.9599999999999991 1189.8148000000001 120960 44030 1 0 5898240 4423680 4423680 4426431 4492800 158 150 150 153 1929 0 0 0 0 20 0 0 0 0 0 +534 1783757212230984800 DEPTH 46 1 0.46535326579326253 0 2 7 2 7 0 0 328 24 2522 23664750 81600 856.50839233398438 5.8990999999999998 1157.9067 120960 29988 1 0 5898240 4423680 4423680 4426350 4492800 158 150 150 157 1907 0 0 0 0 24 0 0 0 0 0 +535 1783757212422587100 REFRESH 46 0 0.46623508750502257 0 2 7 2 7 0 0 328 4 414 3943905 55200 152.08723449707031 0.98499999999999999 190.2492 20160 13543 0 0 983040 737280 737280 737505 748800 140 25 28 77 144 0 0 0 0 4 0 0 0 0 0 +536 1783757213583278500 DEPTH 46 1 0.46102384134602359 0 2 7 2 7 0 0 328 20 2519 23664828 81600 870.385498046875 5.8986000000000001 1159.4086 120960 66235 1 0 5898240 4423680 4423680 4426427 4492800 161 150 150 153 1905 0 0 0 0 20 0 0 0 0 0 +537 1783757214801132100 DEPTH 46 1 0.46232884637426397 0 2 7 2 7 0 0 329 23 2529 23664838 81600 862.47015380859375 5.9164999999999992 1164.0003999999999 120960 55347 1 0 5898240 4423680 4423680 4426437 4492800 158 150 150 151 1920 0 0 0 0 23 0 0 0 0 0 +538 1783757215771272900 DEPTH 46 1 0.46349848968943869 0 2 7 2 7 0 0 329 17 2099 19720611 70080 718.11160278320312 4.9301000000000004 968.98919999999998 100800 36583 0 0 4915200 3686400 3686400 3688610 3744000 130 125 125 126 1593 0 0 0 0 17 0 0 0 0 0 diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/run.tsv b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/run.tsv new file mode 100644 index 00000000..7dfd1e73 --- /dev/null +++ b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/run.tsv @@ -0,0 +1,32 @@ +format szilassi-global-search-v4 +run_id 8056e161-c165-4b49-89b1-1419e90b916b +node_id LOOKICH +seed 1749665423 +topology_from 46 +topology_to 46 +backend cuda-fp32 +objective_version 4 +cuda_math standard-fp32 +cuda_chains_requested 0 +cuda_chains_effective 61440 +cuda_iterations_per_batch 64 +cuda_depth_batches 6 +cuda_session_cache 1 +algorithm hybrid-quality-diversity-v1 +control_baseline_fraction 0.25 +strategy_weights baseline:4,replica:3,adaptive:3,pbt:3,injected:3 +fresh_fractions depth:1/4,breadth:7/8,injected-protected +replica_exchange group:8,temperature-ratio:16 +pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04 +verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1 +accounted_fp32_steps proposal-iterations-plus-injection-pbt;setup-retries-excluded +map_elites_bins determinant:8,edge:8,turn:8,extent:8 +map_elites_max_cells_per_topology 4096 +cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only +spsa adam:6,cpu-double,fp32-roundtrip,final-canonical-dd-gate +topology_scheduler ucb-plus-reward-plus-staleness,full-refresh-every-5 +topology_scheduler_mode quality-first +worst_priority_coefficient 0.65 +cpu_iterations_per_trial 50000 +degeneracy_formula worst-plus-0.05-rest +degeneracy_weight 0.01 diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000001_de3307fb.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000001_de3307fb.szar new file mode 100644 index 00000000..d8096764 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000001_de3307fb.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000002_53cb2b13.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000002_53cb2b13.szar new file mode 100644 index 00000000..affa878b Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000002_53cb2b13.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000003_fd0cf678.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000003_fd0cf678.szar new file mode 100644 index 00000000..2cedb205 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000003_fd0cf678.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000004_0989ca2d.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000004_0989ca2d.szar new file mode 100644 index 00000000..e0b6d06a Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000004_0989ca2d.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000005_6b8cad75.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000005_6b8cad75.szar new file mode 100644 index 00000000..f3bbeb1c Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000005_6b8cad75.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000006_a84b7614.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000006_a84b7614.szar new file mode 100644 index 00000000..e1b18190 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000006_a84b7614.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000007_5c384d3f.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000007_5c384d3f.szar new file mode 100644 index 00000000..4e980da5 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000007_5c384d3f.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000008_b0e3ddc1.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000008_b0e3ddc1.szar new file mode 100644 index 00000000..139a56d8 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000008_b0e3ddc1.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000009_498a41ec.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000009_498a41ec.szar new file mode 100644 index 00000000..8bd7351b Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000009_498a41ec.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000010_77b7f846.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000010_77b7f846.szar new file mode 100644 index 00000000..6750f2fb Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000010_77b7f846.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000011_9c06634c.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000011_9c06634c.szar new file mode 100644 index 00000000..971b1eae Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000011_9c06634c.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000012_b5329c59.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000012_b5329c59.szar new file mode 100644 index 00000000..f75aadd1 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000012_b5329c59.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000013_d14e1475.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000013_d14e1475.szar new file mode 100644 index 00000000..a3edfff6 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000013_d14e1475.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000014_7dc9080b.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000014_7dc9080b.szar new file mode 100644 index 00000000..3bc29132 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000014_7dc9080b.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000015_18f5db79.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000015_18f5db79.szar new file mode 100644 index 00000000..8f4004fa Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000015_18f5db79.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000016_251d4cbd.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000016_251d4cbd.szar new file mode 100644 index 00000000..f6247035 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000016_251d4cbd.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000017_832de17b.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000017_832de17b.szar new file mode 100644 index 00000000..da47cd06 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000017_832de17b.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000018_1fcbc6e6.szar b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000018_1fcbc6e6.szar new file mode 100644 index 00000000..8446d089 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/archive/delta_00000000000000000018_1fcbc6e6.szar differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000001_eff57c73.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000001_eff57c73.szcp new file mode 100644 index 00000000..cef25192 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000001_eff57c73.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000002_520453af.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000002_520453af.szcp new file mode 100644 index 00000000..b4647132 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000002_520453af.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000003_faba2081.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000003_faba2081.szcp new file mode 100644 index 00000000..3b808242 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000003_faba2081.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000004_7778eb76.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000004_7778eb76.szcp new file mode 100644 index 00000000..bc6910e0 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000004_7778eb76.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000005_8d6b339a.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000005_8d6b339a.szcp new file mode 100644 index 00000000..2a410333 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000005_8d6b339a.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000006_8fd7e2ab.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000006_8fd7e2ab.szcp new file mode 100644 index 00000000..5a379537 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000006_8fd7e2ab.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000007_38b31266.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000007_38b31266.szcp new file mode 100644 index 00000000..c61a1b6d Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000007_38b31266.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000008_5ec153ce.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000008_5ec153ce.szcp new file mode 100644 index 00000000..78998111 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000008_5ec153ce.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000009_585742ed.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000009_585742ed.szcp new file mode 100644 index 00000000..39eb5dc9 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000009_585742ed.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000010_d1c08416.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000010_d1c08416.szcp new file mode 100644 index 00000000..ad5f93ea Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000010_d1c08416.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000011_c0e9f6f7.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000011_c0e9f6f7.szcp new file mode 100644 index 00000000..e514b258 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000011_c0e9f6f7.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000012_02a5c211.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000012_02a5c211.szcp new file mode 100644 index 00000000..1cc228f9 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000012_02a5c211.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000013_8b6105b7.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000013_8b6105b7.szcp new file mode 100644 index 00000000..20e14b9e Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000013_8b6105b7.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000014_b3730e9e.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000014_b3730e9e.szcp new file mode 100644 index 00000000..d204ed2f Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000014_b3730e9e.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000015_6c53d1af.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000015_6c53d1af.szcp new file mode 100644 index 00000000..452d49f0 Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000015_6c53d1af.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000016_63a7b506.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000016_63a7b506.szcp new file mode 100644 index 00000000..127de32e Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000016_63a7b506.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000017_8da13260.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000017_8da13260.szcp new file mode 100644 index 00000000..6c2c79af Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000017_8da13260.szcp differ diff --git a/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000018_dc517670.szcp b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000018_dc517670.szcp new file mode 100644 index 00000000..00c206dd Binary files /dev/null and b/results/search/runs/8056e161-c165-4b49-89b1-1419e90b916b/topology_046/checkpoints/checkpoint_00000000000000000018_dc517670.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/metrics.tsv b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/metrics.tsv new file mode 100644 index 00000000..0c94a1f9 --- /dev/null +++ b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/metrics.tsv @@ -0,0 +1,4697 @@ +round unix_ns phase topology depth bandit_score before_C before_I after_C after_I improved backend_error archive_cells archive_improvements verified accounted_fp32_steps new_trials kernel_ms transfer_ms wall_ms rex_attempts rex_accepts spsa_attempted spsa_accepted steps_baseline steps_replica steps_adaptive steps_pbt steps_injected verified_baseline verified_replica verified_adaptive verified_pbt verified_injected archive_baseline archive_replica archive_adaptive archive_pbt archive_injected global_baseline global_replica global_adaptive global_pbt global_injected +1 1783752160704566600 DEPTH 56 1 0.81496195372550428 2 5 2 5 0 0 139 51 2569 23664773 143040 840.34048461914062 5.9062999999999999 1265.7954999999999 120960 58112 1 0 5898240 4423680 4423680 4426372 4492800 186 195 173 194 1821 5 3 5 4 34 0 0 0 0 0 +2 1783752161780106500 DEPTH 8 1 0.82505026751287325 2 5 2 5 0 0 192 59 2525 23664854 143040 850.56694030761719 5.9005000000000001 1057.5383999999999 120960 64822 1 0 5898240 4423680 4423680 4426452 4492800 179 219 174 197 1756 4 2 2 4 47 0 0 0 0 0 +3 1783752163028881500 DEPTH 13 1 0.83513837298519067 1 6 1 6 0 0 148 40 2503 23664710 143040 817.81031799316406 5.923 1230.9537 120960 58375 1 0 5898240 4423680 4423680 4426308 4492800 198 175 180 173 1777 5 1 5 3 26 0 0 0 0 0 +4 1783752164346390400 DEPTH 17 1 0.84522627109163506 0 7 0 7 1 0 134 53 2555 23664920 143040 817.54901123046875 5.9034999999999993 1298.9737 120960 57318 1 0 5898240 4423680 4423680 4426518 4492800 153 187 158 168 1889 5 2 3 3 40 0 0 0 0 1 +5 1783752165585826900 DEPTH 31 1 0.70531396277499181 2 6 2 6 0 0 91 59 2568 23664868 143040 815.33270263671875 5.8769 1222.7924 120960 57079 1 0 5898240 4423680 4423680 4426467 4492800 176 183 177 157 1875 3 4 6 6 40 0 0 0 0 0 +6 1783752166873407500 DEPTH 9 1 0.71540144897170976 2 6 2 6 0 0 99 20 2602 23664703 143040 833.39947509765625 5.9111000000000002 1273.5953 120960 57717 1 0 5898240 4423680 4423680 4426302 4492800 163 196 162 175 1906 2 3 1 2 12 0 0 0 0 0 +7 1783752168143585000 DEPTH 1 1 0.72548873061195773 1 7 1 7 0 0 111 47 2574 23664894 143040 828.5245361328125 5.8904000000000005 1252.9504999999999 120960 57469 1 0 5898240 4423680 4423680 4426494 4492800 166 192 184 173 1859 5 2 2 4 34 0 0 0 0 0 +8 1783752169276314200 DEPTH 33 1 0.73557580861968053 1 7 1 7 0 0 152 75 2539 23664804 143040 841.9952392578125 5.9098999999999995 1112.7995000000001 120960 63329 1 0 5898240 4423680 4423680 4426403 4492800 208 222 204 201 1704 5 2 6 5 57 0 0 0 0 0 +9 1783752170572765400 DEPTH 11 1 0.74566268391265267 0 8 0 8 1 0 88 29 2559 23664865 143040 820.37532043457031 5.8950999999999993 1281.9681 120960 56858 1 0 5898240 4423680 4423680 4426463 4492800 182 154 196 189 1838 2 1 8 1 17 0 0 0 0 2 +10 1783752171842307900 DEPTH 53 1 0.75574935740253446 0 8 0 8 1 0 111 67 2509 23664875 143040 843.65179443359375 5.8783000000000003 1249.1908000000001 120960 65408 1 0 5898240 4423680 4423680 4426473 4492800 198 216 192 190 1713 8 0 5 5 49 0 0 0 2 0 +11 1783752173078654200 DEPTH 45 1 0.71583582999492468 2 7 2 7 0 0 105 45 2565 23664856 143040 839.79438781738281 5.8814000000000011 1220.1017999999999 120960 62662 1 0 5898240 4423680 4423680 4426455 4492800 166 150 160 183 1906 6 3 3 6 27 0 0 0 0 0 +12 1783752174373662200 DEPTH 44 1 0.72592210258941459 2 7 2 7 0 0 104 44 2578 23664780 143040 830.578369140625 5.8949000000000007 1279.0201 120960 59554 1 0 5898240 4423680 4423680 4426379 4492800 159 177 171 176 1895 5 0 6 6 27 0 0 0 0 0 +13 1783752175630740900 DEPTH 54 1 0.73600817607963998 1 8 1 8 1 0 90 42 2540 23664766 143040 813.19468688964844 5.8877999999999995 1240.7638999999999 120960 56923 1 0 5898240 4423680 4423680 4426363 4492800 184 193 185 182 1796 3 0 2 4 33 0 0 0 0 1 +14 1783752176907862500 DEPTH 52 1 0.74609405135333373 1 8 1 8 0 0 85 44 2585 23664791 143040 813.83096313476562 5.8779000000000003 1260.7781 120960 55093 1 0 5898240 4423680 4423680 4426390 4492800 194 152 165 202 1872 2 2 3 6 31 0 0 0 0 0 +15 1783752177954859900 DEPTH 50 1 0.7462780769049181 2 9 2 9 0 0 101 64 2550 23664792 143040 808.00262451171875 5.9046000000000003 1031.7847999999999 120960 56987 1 0 5898240 4423680 4423680 4426390 4492800 183 203 180 198 1786 9 2 4 6 43 0 0 0 0 0 +16 1783752179044808500 DEPTH 16 1 0.74126521077285101 2 8 2 8 0 0 145 81 2515 23664830 143040 852.58612060546875 5.8863000000000003 1072.0243 120960 65978 1 0 5898240 4423680 4423680 4426428 4492800 192 220 188 243 1672 3 2 6 7 63 0 0 0 0 0 +17 1783752180328822900 DEPTH 21 1 0.75135049666508569 0 10 0 10 1 0 150 80 2550 23664808 143040 835.16725158691406 5.9483999999999995 1260.1212 120960 60138 1 0 5898240 4423680 4423680 4426407 4492800 179 177 159 181 1854 9 2 8 8 53 0 0 0 0 2 +18 1783752181361436300 DEPTH 49 1 0.75940659872646421 3 10 3 10 1 0 117 130 2602 23664866 143040 830.68919372558594 5.9209999999999994 1014.2886 120960 59587 1 0 5898240 4423680 4423680 4426466 4492800 165 166 162 156 1953 5 3 9 3 110 0 0 0 0 2 +19 1783752182380416100 DEPTH 47 1 0.76949664591550526 2 11 2 11 0 0 99 47 2567 23664907 143040 822.5546875 5.8635000000000002 1002.6317 120960 58312 1 0 5898240 4423680 4423680 4426507 4492800 169 167 158 160 1913 12 2 6 5 22 0 0 0 0 0 +20 1783752183392723100 DEPTH 37 1 0.77958648838519851 1 12 1 12 1 0 107 48 2609 23664885 143040 824.25303649902344 5.8997000000000011 998.93460000000005 120960 57747 1 0 5898240 4423680 4423680 4426484 4492800 157 188 162 155 1947 9 2 3 5 29 1 0 0 0 2 +21 1783752184381852700 DEPTH 48 1 0.784318984177654 2 12 2 11 1 0 53 44 2592 23664839 143040 793.82344055175781 5.8515999999999995 964.29629999999997 120960 54914 1 0 5898240 4423680 4423680 4426439 4492800 154 156 175 183 1924 1 3 5 3 32 0 0 0 0 1 +22 1783752185429931100 DEPTH 39 1 0.7944084199005701 2 12 2 12 1 0 122 118 2554 23664806 143040 844.76441955566406 5.8769999999999998 1021.8878 120960 63191 1 0 5898240 4423680 4423680 4426405 4492800 168 194 157 172 1863 10 1 11 4 92 0 0 0 0 3 +23 1783752186425729700 DEPTH 34 1 0.80449765358442638 1 13 1 13 1 0 92 40 2610 23664844 143040 800.98992919921875 5.8866999999999994 970.03110000000004 120960 54475 1 0 5898240 4423680 4423680 4426443 4492800 158 150 158 164 1980 7 2 2 4 25 0 0 0 0 2 +24 1783752187431446300 DEPTH 51 1 0.81042001944443887 3 12 3 12 1 0 85 55 2591 23664849 143040 812.80691528320312 5.8993000000000002 987.70079999999996 120960 55844 1 0 5898240 4423680 4423680 4426449 4492800 161 194 194 198 1844 6 6 7 1 35 0 1 0 0 2 +25 1783752188470454700 DEPTH 43 1 0.81050885169013187 2 13 2 13 1 0 91 92 2542 23664812 143040 838.53193664550781 5.8563000000000001 1012.0791 120960 61396 1 0 5898240 4423680 4423680 4426411 4492800 177 193 161 191 1820 11 0 9 6 66 0 0 0 0 1 +26 1783752189494895900 DEPTH 58 1 0.81059748452538716 2 13 2 13 1 0 101 55 2611 23664899 143040 825.87101745605469 5.8577000000000004 999.36800000000005 120960 57882 1 0 5898240 4423680 4423680 4426499 4492800 164 181 151 172 1943 9 4 6 2 34 0 0 0 0 2 +27 1783752190518445900 DEPTH 57 1 0.8106859188151585 2 13 2 13 1 0 91 95 2542 23664862 143040 823.34870910644531 5.8552999999999997 997.07079999999996 120960 57511 1 0 5898240 4423680 4423680 4426461 4492800 180 171 171 180 1840 9 2 5 2 77 0 0 0 0 3 +28 1783752191522691900 DEPTH 40 1 0.80744082208551937 3 13 3 12 1 0 84 72 2594 23664958 143040 808.39230346679688 5.8585000000000003 977.92639999999994 120960 57245 1 0 5898240 4423680 4423680 4426556 4492800 153 187 152 173 1929 4 2 10 3 53 0 0 0 0 4 +29 1783752192564120200 DEPTH 42 1 0.80752886185704265 3 13 4 12 1 0 92 117 2581 23664770 143040 838.63124084472656 5.8502000000000001 1015.4939000000001 120960 60066 1 0 5898240 4423680 4423680 4426369 4492800 166 189 173 150 1903 7 5 5 7 93 0 0 0 0 2 +30 1783752193599214200 DEPTH 32 1 0.807616705644848 2 14 2 14 1 0 100 64 2560 23664855 143040 836.51443481445312 5.8793999999999995 1011.1735 120960 57587 1 0 5898240 4423680 4423680 4426453 4492800 165 168 165 186 1876 9 6 7 7 35 0 0 0 0 1 +31 1783752194899956000 DEPTH 17 1 1.0321550309607763 0 7 0 7 1 0 135 35 2553 23664932 81600 813.64488220214844 5.8315000000000001 1271.4623999999999 120960 46181 1 0 5898240 4423680 4423680 4426526 4492800 150 185 158 202 1858 0 0 2 1 32 0 0 0 0 1 +32 1783752196192970100 DEPTH 56 1 1.032071344831174 2 5 2 5 0 0 139 38 2562 23664860 81600 821.85905456542969 5.8419999999999996 1263.5435 120960 47486 1 0 5898240 4423680 4423680 4426460 4492800 228 193 186 274 1681 0 0 0 2 36 0 0 0 0 0 +33 1783752197260505600 DEPTH 8 1 1.0321493933291617 2 5 2 5 0 0 192 44 2524 23664879 81600 846.97389221191406 5.8975999999999997 1049.087 120960 53254 1 0 5898240 4423680 4423680 4426476 4492800 178 214 181 208 1743 1 0 0 0 43 0 0 0 0 0 +34 1783752198483870300 DEPTH 13 1 1.0322272695215389 1 6 1 6 0 0 150 37 2515 23664842 81600 816.2996826171875 5.8361999999999998 1205.1410000000001 120960 48162 1 0 5898240 4423680 4423680 4426441 4492800 197 167 178 186 1787 1 0 0 0 36 0 0 0 0 0 +35 1783752199747584200 DEPTH 31 1 0.88230497414340525 2 6 2 6 0 0 91 37 2575 23664798 81600 813.77911376953125 5.8619000000000003 1234.8308 120960 46913 1 0 5898240 4423680 4423680 4426394 4492800 188 175 257 264 1691 0 0 2 2 33 0 0 0 0 0 +36 1783752201046743200 DEPTH 9 1 0.88238250792522266 2 6 2 6 0 0 102 14 2600 23664853 81600 832.5234375 5.8412000000000006 1273.5797 120960 47177 1 0 5898240 4423680 4423680 4426452 4492800 164 198 175 207 1856 0 0 1 0 13 0 0 0 0 0 +37 1783752202319289000 DEPTH 1 1 0.88245987159285477 1 7 1 7 0 0 111 29 2580 23664759 81600 820.83009338378906 5.8501999999999992 1243.2022999999999 120960 47516 1 0 5898240 4423680 4423680 4426359 4492800 174 181 199 186 1840 0 0 0 2 27 0 0 0 0 0 +38 1783752203435123500 DEPTH 33 1 0.88253706586760494 1 7 1 7 0 0 152 41 2531 23664713 81600 836.82206726074219 5.8431999999999995 1088.4606000000001 120960 52425 1 0 5898240 4423680 4423680 4426312 4492800 209 204 222 239 1657 0 0 0 0 41 0 0 0 0 0 +39 1783752204728175100 DEPTH 11 1 0.8826810634278921 0 8 0 8 0 0 88 25 2578 23664870 81600 813.23651123046875 5.8586 1266.0876000000001 120960 45513 1 0 5898240 4423680 4423680 4426470 4492800 204 150 344 377 1503 1 0 0 0 24 0 0 0 0 0 +40 1783752205972412000 DEPTH 53 1 0.88270979246398185 0 8 0 8 0 0 111 49 2504 23664867 81600 837.4599609375 5.8339000000000008 1215.0026 120960 53576 1 0 5898240 4423680 4423680 4426464 4492800 198 205 198 200 1703 0 0 1 0 48 0 0 0 0 0 +41 1783752207010829100 DEPTH 55 1 0.8085702897196817 1 15 1 15 1 0 115 41 2601 23664852 143040 838.87713623046875 5.8666 1012.6129 120960 58565 1 0 5898240 4423680 4423680 4426452 4492800 165 168 178 163 1927 8 4 6 7 16 0 0 0 0 1 +42 1783752208039963900 DEPTH 12 1 0.80842151145489916 3 8 3 8 0 0 125 81 2535 23664894 143040 828.97169494628906 5.9671000000000003 1012.24 120960 59945 1 0 5898240 4423680 4423680 4426493 4492800 189 194 185 190 1777 6 4 7 8 56 0 0 0 0 0 +43 1783752209263747800 DEPTH 41 1 0.80850199982553805 1 10 1 10 0 0 88 53 2562 23664900 143040 809.92013549804688 5.884500000000001 1193.8184000000001 120960 56026 1 0 5898240 4423680 4423680 4426499 4492800 194 205 179 173 1811 7 2 0 1 43 0 0 0 0 0 +44 1783752210303948000 DEPTH 46 1 0.80609913019621837 2 15 2 15 1 0 86 138 2588 23664946 143040 839.57215881347656 5.8542000000000005 1014.0599 120960 60280 1 0 5898240 4423680 4423680 4426543 4492800 170 173 152 160 1933 19 1 11 7 100 0 0 0 0 2 +45 1783752211327931900 DEPTH 38 1 0.80391140519827975 4 14 4 14 1 0 74 64 2591 23664834 143040 826.62445068359375 5.8540000000000001 998.19529999999997 120960 57643 1 0 5898240 4423680 4423680 4426434 4492800 160 177 168 167 1919 7 5 6 4 42 0 0 0 0 2 +46 1783752212361526700 DEPTH 10 1 0.79874242328848377 1 11 1 11 0 0 96 42 2577 23664852 143040 820.96701049804688 5.8499000000000008 1007.1699 120960 56631 1 0 5898240 4423680 4423680 4426451 4492800 178 173 162 181 1883 7 5 7 4 19 0 0 0 0 0 +47 1783752213641694500 DEPTH 17 1 0.93055297104222978 0 7 0 7 1 0 135 41 2551 23664869 81600 812.22164916992188 5.8461999999999996 1279.0661 120960 39367 1 0 5898240 4423680 4423680 4426466 4492800 155 186 168 243 1799 0 0 1 0 40 0 0 0 0 2 +48 1783752214901067400 DEPTH 56 1 0.93027369809399107 2 5 2 5 0 0 140 35 2567 23664856 81600 818.34907531738281 5.8239000000000001 1258.1482000000001 120960 40217 1 0 5898240 4423680 4423680 4426454 4492800 335 188 219 353 1472 0 0 0 1 34 0 0 0 0 0 +49 1783752215939200800 DEPTH 8 1 0.93034556752198105 2 5 2 5 1 0 192 47 2518 23664844 81600 842.80293273925781 5.8732000000000006 1037.0373 120960 44816 1 0 5898240 4423680 4423680 4426443 4492800 187 210 199 386 1536 0 0 0 0 47 0 0 0 0 1 +50 1783752216936449700 DEPTH 48 1 0.90191772712672691 2 11 2 11 1 0 60 38 2590 23664861 81600 791.9339599609375 5.9441000000000006 972.17830000000004 120960 44181 1 0 5898240 4423680 4423680 4426461 4492800 177 158 212 345 1698 0 0 1 4 33 0 0 0 2 0 +51 1783752218152886400 DEPTH 13 1 0.94048884626239426 1 6 1 6 0 0 150 26 2514 23664785 81600 815.98735046386719 5.8540999999999999 1215.3018 120960 40906 1 0 5898240 4423680 4423680 4426384 4492800 200 165 180 199 1770 0 0 0 0 26 0 0 0 0 0 +52 1783752219405746700 DEPTH 54 1 0.8336057379292211 1 8 1 8 0 0 92 30 2548 23664885 81600 811.49079895019531 5.8260000000000005 1234.0605 120960 45786 1 0 5898240 4423680 4423680 4426483 4492800 201 192 202 215 1738 0 0 1 0 29 0 0 0 0 0 +53 1783752220629806300 DEPTH 45 1 0.83367512980503711 2 7 2 7 0 0 106 31 2568 23664874 81600 833.90240478515625 5.8509000000000002 1197.5120999999999 120960 52531 1 0 5898240 4423680 4423680 4426474 4492800 169 150 166 195 1888 0 1 1 0 29 0 0 0 0 0 +54 1783752221917134000 DEPTH 44 1 0.83374970831216499 2 7 2 7 0 0 104 27 2580 23664820 81600 826.408935546875 5.8499000000000008 1259.8490999999999 120960 48358 1 0 5898240 4423680 4423680 4426420 4492800 162 180 173 198 1867 1 0 2 0 24 0 0 0 0 0 +55 1783752222916209800 DEPTH 40 1 0.89278781935598206 3 12 3 11 1 0 85 82 2624 23664790 81600 804.88566589355469 5.8463000000000003 974.03539999999998 120960 45786 1 0 5898240 4423680 4423680 4426389 4492800 150 150 159 166 1999 0 0 4 2 76 0 0 0 0 2 +56 1783752224199098600 DEPTH 17 1 0.85002433437311675 0 7 0 7 1 0 136 32 2558 23664807 81600 811.25167846679688 5.8766999999999996 1281.7609 120960 28630 1 0 5898240 4423680 4423680 4426405 4492800 163 180 166 261 1788 0 0 0 0 32 0 0 0 0 1 +57 1783752225242176000 DEPTH 42 1 0.8396108823943198 4 12 4 12 0 0 97 77 2585 23664903 81600 835.36048889160156 5.8749000000000002 1008.7968 120960 50058 1 0 5898240 4423680 4423680 4426501 4492800 202 178 212 276 1717 0 0 1 4 72 0 0 0 0 0 +58 1783752226520818000 DEPTH 52 1 0.83404645084251605 1 8 1 8 0 0 86 28 2599 23664865 81600 812.54678344726562 5.8856999999999999 1246.4099000000001 120960 46046 1 0 5898240 4423680 4423680 4426464 4492800 207 154 187 337 1714 0 0 1 0 27 0 0 0 0 0 +59 1783752227810354600 DEPTH 56 1 0.86991059023539619 2 5 2 5 1 0 140 26 2571 23664897 81600 815.28167724609375 5.8872 1261.8471 120960 30032 1 0 5898240 4423680 4423680 4426497 4492800 358 188 221 401 1403 0 0 0 0 26 0 0 0 0 1 +60 1783752229064528300 DEPTH 31 1 0.87112613239844749 2 6 2 6 0 0 91 26 2588 23664888 81600 810.39761352539062 5.8777000000000008 1235.1944000000001 120960 39690 1 0 5898240 4423680 4423680 4426485 4492800 216 174 331 500 1367 0 0 0 0 26 0 0 0 0 0 +61 1783752230130083500 DEPTH 8 1 0.88004933977719413 2 5 2 5 0 0 193 38 2509 23664863 81600 839.55502319335938 5.8560999999999996 1040.6146000000001 120960 33434 1 0 5898240 4423680 4423680 4426459 4492800 193 208 203 499 1406 0 0 0 0 38 0 0 0 0 0 +62 1783752231208751600 DEPTH 50 1 0.81999900968939854 2 9 2 9 0 0 105 55 2554 23664749 81600 830.9295654296875 5.9039000000000001 1060.3105 120960 46131 1 0 5898240 4423680 4423680 4426348 4492800 182 195 180 200 1797 0 0 2 0 53 0 0 0 0 0 +63 1783752231421310600 REFRESH 9 0 0.8713358967062701 2 6 2 6 0 0 102 12 420 3943898 55200 149.82963562011719 0.98140000000000005 196.38300000000001 20160 14220 0 0 983040 737280 737280 737498 748800 28 26 38 30 298 0 1 2 0 9 0 0 0 0 0 +64 1783752231618021500 REFRESH 5 0 0.79301027187166662 2 11 2 11 1 0 87 11 411 3943925 116640 149.65350341796875 1.4193 184.6927 20160 15305 0 0 983040 737280 737280 737525 748800 26 26 27 27 305 1 0 0 0 10 0 0 0 0 1 +65 1783752231807959400 REFRESH 58 0 0.79369524322574825 2 13 2 13 0 0 101 14 410 3943925 55200 148.890625 0.98699999999999999 178.14590000000001 20160 14900 0 0 983040 737280 737280 737525 748800 25 26 32 29 298 0 0 0 0 14 0 0 0 0 0 +66 1783752232002131900 REFRESH 15 0 0.78363994283924976 3 12 3 12 0 0 72 10 422 3943908 116640 149.52755737304688 1.0031000000000001 183.0059 20160 15041 0 0 983040 737280 737280 737508 748800 27 29 25 25 316 0 0 0 2 8 0 0 0 0 0 +67 1783752232196945200 REFRESH 24 0 0.78371644512128813 4 11 4 11 0 0 118 10 415 3943907 116640 149.58387756347656 1.0027999999999999 183.42699999999999 20160 14906 0 0 983040 737280 737280 737506 748800 27 29 26 26 307 0 2 0 0 8 0 0 0 0 0 +68 1783752232388850300 REFRESH 3 0 0.79331659912991781 2 11 2 11 0 0 108 11 411 3943913 116640 148.05810546875 1.0005999999999999 180.10210000000001 20160 15096 0 0 983040 737280 737280 737513 748800 28 25 26 27 305 0 0 0 0 11 0 0 0 0 0 +69 1783752232606796700 REFRESH 11 0 0.87181179948887266 0 8 0 8 0 0 88 10 416 3943917 55200 148.71859741210938 0.98029999999999995 216.8844 20160 14275 0 0 983040 737280 737280 737516 748800 43 26 61 80 206 1 0 0 1 8 0 0 0 0 0 +70 1783752232790994200 REFRESH 33 0 0.87182029714642828 1 7 1 7 0 0 152 3 416 3943907 55200 150.31602478027344 0.97440000000000004 182.9632 20160 14356 0 0 983040 737280 737280 737506 748800 32 26 27 29 302 0 0 0 0 3 0 0 0 0 0 +71 1783752232972154000 REFRESH 8 0 0.85099121870604422 2 5 2 5 0 0 193 10 415 3943914 55200 149.80607604980469 0.97489999999999999 180.07210000000001 20160 12337 0 0 983040 737280 737280 737514 748800 66 26 41 45 237 0 0 0 0 10 0 0 0 0 0 +72 1783752233168710200 REFRESH 2 0 0.78826326876903663 2 12 2 12 0 0 95 12 420 3943924 116640 150.898681640625 0.99009999999999998 184.69300000000001 20160 14713 0 0 983040 737280 737280 737522 748800 27 26 26 26 315 1 0 1 0 10 0 0 0 0 0 +73 1783752233363378200 REFRESH 36 0 0.79369597648961177 3 10 3 10 0 0 89 16 416 3943908 116640 149.33094787597656 0.99619999999999997 182.8792 20160 14955 0 0 983040 737280 737280 737508 748800 27 28 26 26 309 0 0 1 0 15 0 0 0 0 0 +74 1783752233552689500 REFRESH 10 0 0.78520897743588769 1 11 1 11 0 0 98 13 422 3943917 55200 148.97663879394531 0.97799999999999998 177.76580000000001 20160 15021 0 0 983040 737280 737280 737517 748800 49 26 48 32 267 0 0 0 0 13 0 0 0 0 0 +75 1783752233749100100 REFRESH 56 0 0.91429857945230164 2 5 2 5 0 0 140 10 417 3943916 55200 148.89881896972656 0.97760000000000002 195.2424 20160 12145 0 0 983040 737280 737280 737516 748800 65 26 45 56 225 0 0 0 0 10 0 0 0 0 0 +76 1783752233943215600 REFRESH 20 0 0.78439793952066494 3 12 3 12 0 0 79 16 413 3943907 116640 149.53791809082031 0.99760000000000004 181.6249 20160 14819 0 0 983040 737280 737280 737507 748800 27 29 26 27 304 1 1 0 0 14 0 0 0 0 0 +77 1783752234129705900 REFRESH 13 0 1.0110995883926335 1 6 1 6 0 0 150 4 414 3943906 55200 149.72416687011719 0.9778 185.44200000000001 20160 13181 0 0 983040 737280 737280 737506 748800 47 26 41 51 249 0 0 0 0 4 0 0 0 0 0 +78 1783752234335768800 REFRESH 27 0 0.78871435889089192 0 14 0 14 0 0 89 14 423 3943915 116640 149.69442749023438 1.0197000000000001 182.99369999999999 20160 14829 0 0 983040 737280 737280 737515 748800 26 28 25 26 318 2 0 0 0 12 0 0 0 0 0 +79 1783752234540618500 REFRESH 54 0 0.82243777934033713 1 8 1 8 1 0 92 13 418 3943906 55200 148.55885314941406 0.97699999999999998 203.67959999999999 20160 14303 0 0 983040 737280 737280 737506 748800 42 26 46 109 195 0 0 0 0 13 0 0 0 0 1 +80 1783752234763554300 REFRESH 1 0 0.87250035561632733 1 7 1 7 0 0 111 8 417 3943915 55200 149.41395568847656 0.99809999999999999 185.67349999999999 20160 14314 0 0 983040 737280 737280 737515 748800 41 26 48 38 264 0 0 0 0 8 0 0 0 0 0 +81 1783752234961136800 REFRESH 28 0 0.78477118968280624 2 13 2 13 0 0 98 9 411 3943919 116640 149.51423645019531 0.99439999999999995 183.02799999999999 20160 14770 0 0 983040 737280 737280 737519 748800 27 29 26 25 304 1 2 0 0 6 0 0 0 0 0 +82 1783752235163868500 REFRESH 14 0 0.80151205609284348 0 12 0 12 0 0 95 16 418 3943911 116640 149.93305969238281 0.99570000000000003 188.1481 20160 15053 0 0 983040 737280 737280 737511 748800 27 29 26 26 310 0 0 0 0 16 0 0 0 0 0 +83 1783752235350420300 REFRESH 31 0 0.84148631093448367 2 6 2 6 0 0 92 13 420 3943902 55200 147.9761962890625 0.97660000000000002 185.423 20160 13117 0 0 983040 737280 737280 737502 748800 60 25 28 48 259 0 0 0 0 13 0 0 0 0 0 +84 1783752235547198100 REFRESH 18 0 0.77473693302622415 4 15 4 15 0 0 78 17 419 3943911 116640 148.9168701171875 0.99399999999999999 182.45359999999999 20160 14950 0 0 983040 737280 737280 737511 748800 26 25 25 25 318 0 1 1 1 14 0 0 0 0 0 +85 1783752235742555300 REFRESH 29 0 0.78923376521204869 2 12 2 12 0 0 90 11 418 3943911 116640 149.63302612304688 0.98799999999999999 181.89850000000001 20160 14632 0 0 983040 737280 737280 737511 748800 27 25 26 26 314 1 1 1 0 8 0 0 0 0 0 +86 1783752235939553200 REFRESH 23 0 0.7790801007314937 3 14 3 14 0 0 87 23 419 3943915 116640 149.88082885742188 0.99229999999999996 182.77340000000001 20160 14791 0 0 983040 737280 737280 737515 748800 27 25 28 27 312 3 0 2 1 17 0 0 0 0 0 +87 1783752236117175200 REFRESH 38 0 0.78692072476388197 4 14 4 14 0 0 74 13 414 3943894 55200 148.83941650390625 0.97289999999999999 176.49719999999999 20160 14985 0 0 983040 737280 737280 737494 748800 31 26 28 31 298 0 0 0 0 13 0 0 0 0 0 +88 1783752236315384100 REFRESH 34 0 0.79945908502993324 1 13 1 13 0 0 92 12 422 3943906 55200 148.97433471679688 0.9778 176.3681 20160 14983 0 0 983040 737280 737280 737506 748800 31 25 32 35 299 0 0 1 0 11 0 0 0 0 0 +89 1783752236511259900 REFRESH 35 0 0.79488446461018214 2 11 2 11 0 0 117 20 417 3943894 116640 149.55290222167969 0.98729999999999996 182.13550000000001 20160 14895 0 0 983040 737280 737280 737494 748800 28 25 26 27 311 1 1 1 1 16 0 0 0 0 0 +90 1783752236690845700 REFRESH 46 0 0.78937799866688452 2 15 2 15 0 0 87 18 412 3943921 55200 149.63507080078125 0.97609999999999997 178.3871 20160 14968 0 0 983040 737280 737280 737521 748800 28 26 30 28 300 1 0 0 0 17 0 0 0 0 0 +91 1783752236898447200 REFRESH 21 0 0.81143070333856826 0 10 0 10 0 0 151 10 418 3943893 55200 149.71369934082031 0.9728 184.41489999999999 20160 14851 0 0 983040 737280 737280 737493 748800 27 26 30 32 303 0 1 0 0 9 0 0 0 0 0 +92 1783752237106099100 REFRESH 44 0 0.82329857055598121 2 7 2 7 0 0 104 9 418 3943907 55200 150.19827270507812 0.98080000000000001 206.4786 20160 14298 0 0 983040 737280 737280 737507 748800 28 26 33 26 305 0 0 0 0 9 0 0 0 0 0 +93 1783752237306751800 REFRESH 51 0 0.79567604415490734 3 12 3 12 0 0 85 11 419 3943902 55200 148.62223815917969 0.97089999999999999 176.9032 20160 14989 0 0 983040 737280 737280 737502 748800 31 26 78 69 215 0 0 1 0 10 0 0 0 0 0 +94 1783752237500160800 REFRESH 26 0 0.78989101418025043 1 13 1 13 0 0 62 9 417 3943895 116640 148.22706604003906 0.99819999999999998 179.88640000000001 20160 15228 0 0 983040 737280 737280 737495 748800 25 25 25 26 316 1 1 0 0 7 0 0 0 0 0 +95 1783752237695039300 REFRESH 6 0 0.77973605167174898 3 14 3 14 0 0 83 17 410 3943924 116640 149.29676818847656 0.99850000000000005 181.1129 20160 15099 0 0 983040 737280 737280 737523 748800 26 25 27 28 304 1 1 0 2 13 0 0 0 0 0 +96 1783752237913582800 REFRESH 52 0 0.82356045669113187 1 8 1 8 0 0 87 9 421 3943911 55200 149.49069213867188 0.97230000000000005 217.37309999999999 20160 14369 0 0 983040 737280 737280 737511 748800 29 25 26 107 234 0 0 0 2 7 0 0 0 0 0 +97 1783752238105101300 REFRESH 57 0 0.79623335977039156 2 13 2 13 0 0 93 16 413 3943895 55200 149.17837524414062 0.97519999999999996 178.07480000000001 20160 14897 0 0 983040 737280 737280 737495 748800 27 26 54 42 264 0 1 0 1 14 0 0 0 0 0 +98 1783752238297366700 REFRESH 0 0 0.79553655109851029 1 12 1 12 1 0 71 10 424 3943909 116640 148.54144287109375 0.98939999999999995 180.0515 20160 15020 0 0 983040 737280 737280 737509 748800 26 25 26 25 322 2 0 0 1 7 0 0 0 0 1 +99 1783752238491205400 REFRESH 25 0 0.79025115569221449 3 11 3 11 0 0 80 8 416 3943903 116640 148.83941650390625 0.99260000000000004 181.35599999999999 20160 14691 0 0 983040 737280 737280 737503 748800 27 25 28 27 309 0 0 0 0 8 0 0 0 0 0 +100 1783752238687377600 REFRESH 19 0 0.79032276377469546 3 11 3 11 0 0 98 13 419 3943906 116640 148.75135803222656 0.99029999999999996 181.3443 20160 14688 0 0 983040 737280 737280 737506 748800 27 25 25 26 316 1 0 0 1 11 0 0 0 0 0 +101 1783752238884765500 REFRESH 16 0 0.81208735954475064 2 8 2 8 0 0 146 7 415 3943917 55200 150.44607543945312 0.9748 182.44739999999999 20160 14976 0 0 983040 737280 737280 737517 748800 26 26 26 160 177 0 0 0 0 7 0 0 0 0 0 +102 1783752239082562500 REFRESH 7 0 0.79046556392585399 2 12 2 12 0 0 89 10 416 3943905 116640 149.9696044921875 0.99460000000000004 182.55330000000001 20160 15004 0 0 983040 737280 737280 737504 748800 26 29 25 26 310 1 1 1 0 7 0 0 0 0 0 +103 1783752239273440300 REFRESH 55 0 0.79306999049939764 1 15 1 15 0 0 115 7 413 3943916 55200 148.56498718261719 0.98260000000000003 177.5772 20160 15032 0 0 983040 737280 737280 737516 748800 26 26 28 34 299 0 0 0 0 7 0 0 0 0 0 +104 1783752239473729200 REFRESH 41 0 0.79728997916806399 1 10 1 10 0 0 89 5 405 3943891 55200 148.56704711914062 0.97719999999999996 186.20849999999999 20160 15012 0 0 983040 737280 737280 737490 748800 30 26 30 28 291 0 0 0 0 5 0 0 0 0 0 +105 1783752239667340800 REFRESH 32 0 0.79323589763145741 2 14 2 14 0 0 100 18 418 3943897 55200 149.09132385253906 0.97719999999999996 177.29419999999999 20160 14982 0 0 983040 737280 737280 737497 748800 52 25 31 28 282 0 0 0 1 17 0 0 0 0 0 +106 1783752239844641200 REFRESH 48 0 0.88125060554323198 2 11 2 11 0 0 60 4 421 3943917 55200 148.41958618164062 0.97430000000000005 176.1069 20160 14402 0 0 983040 737280 737280 737517 748800 56 25 39 48 253 0 0 0 0 4 0 0 0 0 0 +107 1783752240067711100 REFRESH 17 0 1.003462331072748 0 7 0 7 0 0 137 10 412 3943899 55200 148.96844482421875 0.97899999999999998 221.99469999999999 20160 12172 0 0 983040 737280 737280 737499 748800 44 26 31 62 249 0 0 0 2 8 0 0 0 0 0 +108 1783752240251282100 REFRESH 45 0 0.82433399634866444 2 7 2 7 0 0 107 9 414 3943918 55200 149.05343627929688 0.97660000000000002 182.38030000000001 20160 14354 0 0 983040 737280 737280 737518 748800 32 25 33 34 290 0 1 0 0 8 0 0 0 0 0 +109 1783752240468750600 REFRESH 30 0 0.79096105037615139 2 12 2 12 1 0 91 22 411 3943916 116640 149.07302856445312 0.98719999999999997 182.24619999999999 20160 14911 0 0 983040 737280 737280 737516 748800 27 25 25 26 308 1 0 1 1 19 0 0 0 0 1 +110 1783752240670057000 REFRESH 53 0 0.87447815068273527 0 8 0 8 0 0 111 8 417 3943881 55200 149.65679931640625 0.97299999999999998 184.45240000000001 20160 14193 0 0 983040 737280 737280 737481 748800 30 26 27 30 304 1 0 0 0 7 0 0 0 0 0 +111 1783752240850045400 REFRESH 50 0 0.80675823900190258 2 9 2 9 0 0 106 10 419 3943873 55200 148.54450988769531 0.97670000000000001 178.65000000000001 20160 14235 0 0 983040 737280 737280 737473 748800 40 26 30 34 289 0 0 0 0 10 0 0 0 0 0 +112 1783752241057010800 REFRESH 22 0 0.78700471106771086 3 12 3 12 0 0 102 22 416 3943927 116640 150.0712890625 1.0034000000000001 184.2064 20160 14728 0 0 983040 737280 737280 737527 748800 27 29 26 25 309 2 2 1 1 16 0 0 0 0 0 +113 1783752241234634500 REFRESH 40 0 0.97439088255432105 3 11 3 11 1 0 87 16 418 3943904 55200 148.91030883789062 0.97719999999999996 176.46700000000001 20160 14379 0 0 983040 737280 737280 737504 748800 37 25 38 112 206 0 0 0 2 14 0 0 0 0 1 +114 1783752241450340300 REFRESH 4 0 0.79131093123625629 1 13 1 13 0 0 43 8 429 3943907 116640 147.59730529785156 0.99950000000000006 178.24809999999999 20160 15203 0 0 983040 737280 737280 737507 748800 25 25 26 25 328 1 0 1 1 5 0 0 0 0 0 +115 1783752241630112400 REFRESH 42 0 0.82202302407689154 4 12 4 12 0 0 98 14 419 3943886 55200 149.04319763183594 0.97760000000000002 178.58869999999999 20160 14273 0 0 983040 737280 737280 737486 748800 65 25 29 44 256 0 1 1 0 12 0 0 0 0 0 +116 1783752241832840200 REFRESH 12 0 0.79808890772498864 3 8 3 8 0 0 125 8 409 3943873 55200 149.43232727050781 0.97550000000000003 177.98519999999999 20160 14962 0 0 983040 737280 737280 737473 748800 29 26 27 46 281 0 0 0 0 8 0 0 0 0 0 +117 1783752242023502700 REFRESH 49 0 0.80733376611888852 3 10 3 10 0 0 117 16 407 3943943 55200 149.16812133789062 1.0254000000000001 177.80690000000001 20160 14978 0 0 983040 737280 737280 737543 748800 26 26 41 33 281 0 0 1 0 15 0 0 0 0 0 +118 1783752242216281700 REFRESH 43 0 0.79756227412410319 2 13 2 13 1 0 91 18 411 3943906 55200 150.29043579101562 0.97289999999999999 178.79249999999999 20160 14928 0 0 983040 737280 737280 737505 748800 28 26 27 33 297 0 0 0 0 18 0 0 0 0 1 +119 1783752242418361900 REFRESH 37 0 0.80719752939694012 1 12 1 12 0 0 110 14 410 3943888 55200 148.28440856933594 0.97250000000000003 176.2303 20160 14957 0 0 983040 737280 737280 737488 748800 29 26 30 31 294 1 1 0 0 12 0 0 0 0 0 +120 1783752242610715700 REFRESH 47 0 0.80708358645945499 2 11 2 11 0 0 99 11 418 3943910 55200 149.77433776855469 0.99880000000000002 178.90809999999999 20160 15026 0 0 983040 737280 737280 737509 748800 27 26 28 28 309 1 0 0 0 10 0 0 0 0 0 +121 1783752242800493700 REFRESH 39 0 0.80225848795888988 2 12 2 12 0 0 124 14 414 3943899 55200 149.21626281738281 0.97350000000000003 178.01929999999999 20160 14863 0 0 983040 737280 737280 737498 748800 26 26 26 28 308 0 0 2 0 12 0 0 0 0 0 +122 1783752244075405900 DEPTH 56 1 0.99809588107643299 2 5 2 5 0 0 141 37 2557 23664834 81600 848.00921630859375 5.8289 1273.6845000000001 120960 60168 1 0 5898240 4423680 4423680 4426434 4492800 168 156 150 174 1909 0 0 1 0 36 0 0 0 0 0 +123 1783752245295662400 DEPTH 13 1 0.99810317054959174 1 6 1 6 0 0 152 35 2506 23664914 81600 850.28707885742188 5.8768000000000002 1219.134 120960 65611 1 0 5898240 4423680 4423680 4426512 4492800 160 154 159 159 1874 0 0 0 0 35 0 0 0 0 0 +124 1783752246336779600 DEPTH 8 1 0.99545518066211958 2 5 2 5 0 0 194 48 2504 23664915 81600 859.88847351074219 5.8551000000000002 1040.0264 120960 60920 1 0 5898240 4423680 4423680 4426513 4492800 184 156 153 177 1834 0 0 0 0 48 0 0 0 0 0 +125 1783752247643359900 DEPTH 17 1 0.92576251365724627 0 7 0 7 0 0 139 48 2545 23664839 81600 849.46340942382812 5.9154999999999998 1291.2309 120960 59887 1 0 5898240 4423680 4423680 4426438 4492800 150 156 150 168 1921 1 0 0 0 47 0 0 0 0 0 +126 1783752248922961600 DEPTH 11 1 0.86418298024814888 0 8 0 8 1 0 89 26 2555 23664840 81600 844.50791931152344 5.8368999999999991 1278.5034000000001 120960 68586 1 0 5898240 4423680 4423680 4426438 4492800 170 150 212 175 1848 0 0 0 0 26 0 0 0 0 2 +127 1783752250204682000 DEPTH 9 1 0.86418765206822623 2 6 2 6 0 0 103 21 2587 23664867 81600 855.10844421386719 5.8449 1254.9440999999999 120960 69473 1 0 5898240 4423680 4423680 4426467 4492800 151 150 155 162 1969 1 0 1 0 19 0 0 0 0 0 +128 1783752251463383500 DEPTH 1 1 0.86224646228106072 1 7 1 7 0 0 111 36 2570 23664905 81600 852.51655578613281 5.9379 1243.0589 120960 69283 1 0 5898240 4423680 4423680 4426503 4492800 150 156 168 158 1938 0 0 0 0 36 0 0 0 0 0 +129 1783752252579166100 DEPTH 33 1 0.85730516398706424 1 7 1 7 0 0 154 53 2528 23664790 81600 856.378173828125 5.8486000000000002 1089.8894 120960 69091 1 0 5898240 4423680 4423680 4426387 4492800 162 156 156 150 1904 0 0 2 0 51 0 0 0 0 0 +130 1783752253618614400 DEPTH 40 1 0.86232210476691251 3 11 3 11 1 0 87 72 2608 23664814 81600 850.4716796875 5.8601999999999999 1016.3129 120960 69657 1 0 5898240 4423680 4423680 4426414 4492800 150 150 156 155 1997 0 0 0 0 72 0 0 0 0 2 +131 1783752254843725800 DEPTH 31 1 0.85455562074588887 2 6 2 6 1 0 95 40 2559 23664823 81600 848.43904113769531 5.8189000000000002 1223.9655 120960 66104 1 0 5898240 4423680 4423680 4426421 4492800 178 150 156 181 1894 0 0 0 0 40 0 0 0 0 1 +132 1783752255910215800 DEPTH 48 1 0.85355845145658338 2 11 2 11 1 0 61 30 2583 23664843 81600 846.08912658691406 5.8407 1020.8973 120960 69172 1 0 5898240 4423680 4423680 4426441 4492800 159 150 193 211 1870 0 0 1 0 29 0 0 0 0 5 +133 1783752257227032800 DEPTH 56 1 0.85059183553842066 2 5 2 5 0 0 143 50 2556 23664899 81600 840.91108703613281 5.8891 1278.3314 120960 48885 1 0 5898240 4423680 4423680 4426498 4492800 174 156 151 189 1886 0 0 0 0 50 0 0 0 0 0 +134 1783752258514041500 DEPTH 54 1 0.81460150766946915 1 8 1 8 1 0 92 29 2549 23664845 81600 846.81388854980469 5.8504999999999994 1267.5283999999999 120960 69117 1 0 5898240 4423680 4423680 4426444 4492800 176 150 168 186 1869 0 0 3 0 26 0 0 0 0 1 +135 1783752259802494700 DEPTH 44 1 0.81365511712489769 2 7 2 7 0 0 107 27 2571 23664843 81600 853.29464721679688 5.8948999999999998 1269.7810999999999 120960 69024 1 0 5898240 4423680 4423680 4426442 4492800 150 150 156 156 1959 2 0 0 0 25 0 0 0 0 0 +136 1783752261098648700 DEPTH 52 1 0.81371307001336257 1 8 1 8 0 0 88 33 2597 23664828 81600 848.39808654785156 5.8731999999999998 1265.9259999999999 120960 68285 1 0 5898240 4423680 4423680 4426427 4492800 155 150 150 314 1828 2 0 0 0 31 0 0 0 0 0 +137 1783752262364682500 DEPTH 53 1 0.86278618056069156 0 8 0 8 0 0 113 53 2502 23664939 81600 854.16139221191406 5.8330000000000002 1229.0319999999999 120960 68274 1 0 5898240 4423680 4423680 4426539 4492800 162 156 150 156 1878 1 0 0 0 52 0 0 0 0 0 +138 1783752263610618500 DEPTH 13 1 0.89080899145822368 1 6 1 6 0 0 152 27 2505 23664894 81600 841.84332275390625 5.8864000000000001 1216.0427999999999 120960 53264 1 0 5898240 4423680 4423680 4426492 4492800 162 156 156 156 1875 0 0 0 0 27 0 0 0 0 0 +139 1783752264643640100 DEPTH 8 1 0.8884271049829624 2 5 2 5 0 0 195 45 2494 23664842 81600 850.86381530761719 5.8449 1031.9149 120960 50225 1 0 5898240 4423680 4423680 4426442 4492800 182 156 150 179 1827 0 0 0 0 45 0 0 0 0 0 +140 1783752265971214500 DEPTH 17 1 0.88870588788138993 0 7 0 7 0 0 139 41 2538 23664970 81600 842.05934143066406 5.8467999999999991 1281.4494999999999 120960 49469 1 0 5898240 4423680 4423680 4426568 4492800 150 156 150 184 1898 1 0 0 1 39 0 0 0 0 0 +141 1783752267174330100 DEPTH 45 1 0.81400125987690197 2 7 2 7 0 0 109 33 2558 23664834 81600 854.41018676757812 5.8471000000000002 1201.7908 120960 69513 1 0 5898240 4423680 4423680 4426433 4492800 150 150 159 156 1943 0 2 0 0 31 0 0 0 0 0 +142 1783752268445273400 DEPTH 21 1 0.80145743710909811 0 10 0 10 1 0 152 56 2541 23664810 81600 856.7060546875 5.8428000000000004 1238.7620999999999 120960 69718 1 0 5898240 4423680 4423680 4426410 4492800 156 150 152 157 1926 0 0 0 0 56 0 0 0 0 1 +143 1783752269528590100 DEPTH 16 1 0.79849259063265532 2 8 2 7 1 0 148 63 2515 23664703 81600 857.42953491210938 5.9047999999999998 1054.9919 120960 69912 1 0 5898240 4423680 4423680 4426303 4492800 156 156 156 337 1710 0 0 1 2 60 0 0 0 0 1 +144 1783752270600895300 DEPTH 50 1 0.7946522499599773 2 9 2 9 0 0 106 47 2550 23664871 81600 850.01423645019531 5.8399999999999999 1071.0907 120960 69168 1 0 5898240 4423680 4423680 4426468 4492800 159 150 158 173 1910 0 0 0 0 47 0 0 0 0 0 +145 1783752271884419500 DEPTH 14 1 0.78994730715284522 0 12 0 12 1 0 97 49 2562 23664924 81600 857.81387329101562 5.9058000000000002 1237.2121999999999 120960 65373 1 0 5898240 4423680 4423680 4426520 4492800 156 157 156 157 1936 0 0 0 0 49 0 0 0 0 1 +146 1783752273149618800 DEPTH 56 1 0.86388208680397116 2 5 2 5 0 0 144 41 2567 23664822 81600 835.29933166503906 5.8410000000000002 1263.9783 120960 38929 1 0 5898240 4423680 4423680 4426421 4492800 174 156 150 203 1884 0 1 0 0 40 0 0 0 0 0 +147 1783752274160423200 DEPTH 40 1 0.8391458702555058 3 11 3 11 1 0 92 80 2598 23664844 81600 841.83854675292969 5.8494000000000002 1009.5394 120960 57971 1 0 5898240 4423680 4423680 4426442 4492800 150 150 154 150 1994 0 0 0 0 80 0 0 0 0 1 +148 1783752275379552200 DEPTH 13 1 0.83402368058504417 1 6 1 6 0 0 153 24 2500 23664870 81600 838.7996826171875 5.8613999999999997 1218.0791999999999 120960 42481 1 0 5898240 4423680 4423680 4426470 4492800 164 155 157 158 1866 0 0 0 0 24 0 0 0 0 0 +149 1783752276664118700 DEPTH 11 1 0.83562240858132664 0 8 0 8 1 0 90 18 2571 23664803 81600 836.52165222167969 5.8403999999999998 1274.0217 120960 57089 1 0 5898240 4423680 4423680 4426403 4492800 196 150 231 218 1776 0 1 0 0 17 0 0 0 0 3 +150 1783752277719023700 DEPTH 42 1 0.80550796961288607 4 12 4 12 0 0 101 77 2581 23664853 81600 857.64271545410156 5.8726000000000003 1030.5189 120960 69618 1 0 5898240 4423680 4423680 4426452 4492800 153 150 150 172 1956 0 0 1 1 75 0 0 0 0 0 +151 1783752278753812100 DEPTH 8 1 0.85189930567952776 2 5 2 5 0 0 196 40 2502 23664901 81600 851.05142211914062 5.8449 1033.6504 120960 40000 1 0 5898240 4423680 4423680 4426499 4492800 232 156 153 269 1692 1 0 0 0 39 0 0 0 0 0 +152 1783752280007336400 DEPTH 9 1 0.85571236493320557 2 6 2 6 0 0 103 14 2601 23664809 81600 842.67677307128906 5.8482000000000003 1252.4226000000001 120960 57661 1 0 5898240 4423680 4423680 4426409 4492800 152 150 155 165 1979 1 0 0 0 13 0 0 0 0 0 +153 1783752281079190500 DEPTH 49 1 0.79271173772983106 3 10 3 10 1 0 117 71 2581 23664832 81600 856.12217712402344 5.8439000000000005 1028.7727 120960 69838 1 0 5898240 4423680 4423680 4426431 4492800 154 150 156 158 1963 1 0 0 0 70 0 0 0 0 1 +154 1783752281266572900 REFRESH 53 0 0.77403401433543462 0 8 0 8 0 0 115 16 415 3943938 55200 149.99449157714844 0.97809999999999997 186.1687 20160 12947 0 0 983040 737280 737280 737538 748800 36 26 27 37 289 1 0 0 0 15 0 0 0 0 0 +155 1783752281446102200 REFRESH 49 0 0.54875583482346479 3 10 3 10 0 0 118 12 415 3943902 55200 149.44122314453125 0.98129999999999995 178.2741 20160 14144 0 0 983040 737280 737280 737502 748800 27 26 47 40 275 1 0 0 0 11 0 0 0 0 0 +156 1783752281652127500 REFRESH 38 0 0.7746629515751986 4 14 4 14 0 0 74 11 420 3943914 55200 149.54290771484375 0.998 177.09880000000001 20160 14613 0 0 983040 737280 737280 737514 748800 32 26 31 31 300 0 0 0 0 11 0 0 0 0 0 +157 1783752281846261800 REFRESH 29 0 0.77818819175605258 2 12 2 12 0 0 91 11 416 3943924 55200 149.60954284667969 0.97689999999999999 178.58920000000001 20160 14760 0 0 983040 737280 737280 737524 748800 27 25 26 27 311 0 1 0 0 10 0 0 0 0 0 +158 1783752282039936300 REFRESH 39 0 0.78766614683697189 2 12 2 12 0 0 127 13 408 3943943 55200 149.74053955078125 0.9708 179.41550000000001 20160 14729 0 0 983040 737280 737280 737543 748800 29 26 27 30 296 0 0 1 1 11 0 0 0 0 0 +159 1783752282235314900 REFRESH 9 0 0.66730974512996055 2 6 2 6 0 0 103 9 419 3943891 55200 148.39602661132812 0.97270000000000001 194.28749999999999 20160 12027 0 0 983040 737280 737280 737491 748800 34 26 50 36 273 0 0 0 0 9 0 0 0 0 0 +160 1783752282442343100 REFRESH 44 0 0.80524174130980342 2 7 2 7 0 0 107 12 416 3943936 55200 149.25004577636719 0.97850000000000004 205.8468 20160 13098 0 0 983040 737280 737280 737536 748800 30 26 37 26 297 0 0 0 0 12 0 0 0 0 0 +161 1783752282662564700 REFRESH 43 0 0.78339390494173322 2 13 2 13 0 0 91 13 413 3943918 55200 149.80709838867188 1 178.97049999999999 20160 14665 0 0 983040 737280 737280 737517 748800 28 26 27 31 301 0 0 0 0 13 0 0 0 0 0 +162 1783752282844686000 REFRESH 8 0 0.83586014825579225 2 5 2 5 0 0 196 13 415 3943923 55200 150.04057312011719 0.97770000000000001 181.01320000000001 20160 12127 0 0 983040 737280 737280 737523 748800 102 26 62 50 175 0 0 0 0 13 0 0 0 0 0 +163 1783752283041427400 REFRESH 35 0 0.783909936027129 2 11 2 11 0 0 117 11 418 3943921 55200 149.90438842773438 0.97509999999999997 179.53030000000001 20160 14714 0 0 983040 737280 737280 737521 748800 28 25 26 29 310 1 0 0 0 10 0 0 0 0 0 +164 1783752283231671500 REFRESH 36 0 0.7839703324595575 3 10 3 10 0 0 89 13 419 3943905 55200 149.90541076660156 0.97230000000000005 178.55170000000001 20160 14704 0 0 983040 737280 737280 737505 748800 28 26 28 26 311 0 0 1 0 12 0 0 0 0 0 +165 1783752283408773900 REFRESH 48 0 0.84149248932627796 2 11 2 11 0 0 61 5 427 3943895 55200 148.17178344726562 0.99880000000000002 175.8931 20160 13018 0 0 983040 737280 737280 737495 748800 56 25 43 44 259 0 0 0 0 5 0 0 0 0 0 +166 1783752283614196800 REFRESH 0 0 0.78409274682441255 1 12 1 12 0 0 71 10 425 3943941 55200 149.27366638183594 0.97260000000000002 181.11269999999999 20160 14689 0 0 983040 737280 737280 737541 748800 26 25 27 25 322 0 0 0 0 10 0 0 0 0 0 +167 1783752283822363600 REFRESH 24 0 0.77462708425510496 4 11 4 11 0 0 118 9 413 3943915 55200 150.02828979492188 0.97370000000000001 179.5932 20160 14606 0 0 983040 737280 737280 737515 748800 27 26 27 26 307 0 0 0 0 9 0 0 0 0 0 +168 1783752284016642400 REFRESH 6 0 0.76862645714432531 3 14 3 14 0 0 83 15 412 3943934 55200 150.50137329101562 0.9738 178.97030000000001 20160 14805 0 0 983040 737280 737280 737533 748800 25 25 27 29 306 0 0 1 2 12 0 0 0 0 0 +169 1783752284241465300 REFRESH 17 0 0.98296868668085813 0 7 0 7 1 0 139 7 420 3943901 55200 149.570556640625 0.99780000000000002 223.70859999999999 20160 12722 0 0 983040 737280 737280 737501 748800 60 26 28 66 240 0 0 0 0 7 0 0 0 0 1 +170 1783752284425971100 REFRESH 33 0 0.85037008692700589 1 7 1 7 0 0 154 10 416 3943910 55200 149.59111022949219 0.97909999999999997 183.35069999999999 20160 12868 0 0 983040 737280 737280 737510 748800 31 26 27 29 303 0 0 0 0 10 0 0 0 0 0 +171 1783752284611118200 REFRESH 45 0 0.80582242053258435 2 7 2 7 0 0 110 8 416 3943932 55200 149.93408203125 0.9758 183.94669999999999 20160 13026 0 0 983040 737280 737280 737532 748800 39 25 35 35 282 0 0 0 0 8 0 0 0 0 0 +172 1783752284799985400 REFRESH 13 0 0.96852870124815005 1 6 1 6 0 0 153 4 415 3943910 55200 149.55110168457031 0.97030000000000005 187.7167 20160 12571 0 0 983040 737280 737280 737510 748800 100 26 45 62 182 0 0 0 0 4 0 0 0 0 0 +173 1783752284989242800 REFRESH 21 0 0.79180833305034037 0 10 0 10 1 0 152 10 415 3943894 55200 149.95149230957031 0.97289999999999999 188.15020000000001 20160 14203 0 0 983040 737280 737280 737494 748800 29 26 28 35 297 0 0 0 0 10 0 0 0 0 1 +174 1783752285191687200 REFRESH 26 0 0.77821144214963456 1 13 1 13 0 0 62 9 418 3943941 55200 149.58781433105469 1.0026999999999999 178.11449999999999 20160 14711 0 0 983040 737280 737280 737540 748800 25 25 25 27 316 0 0 0 0 9 0 0 0 0 0 +175 1783752285370204800 REFRESH 40 0 0.8941666058119927 3 11 3 11 0 0 92 13 421 3943923 55200 149.212158203125 0.97370000000000001 177.36709999999999 20160 12208 0 0 983040 737280 737280 737523 748800 77 25 55 149 115 0 0 0 1 12 0 0 0 0 0 +176 1783752285573781300 REFRESH 19 0 0.77932986436011498 3 11 3 11 0 0 98 11 421 3943921 55200 150.53520202636719 0.9758 179.16900000000001 20160 14823 0 0 983040 737280 737280 737519 748800 28 25 25 27 316 0 0 0 0 11 0 0 0 0 0 +177 1783752285768795500 REFRESH 22 0 0.77522225746128037 3 12 3 12 0 0 102 11 416 3943919 55200 150.07052612304688 0.97619999999999996 179.28299999999999 20160 14795 0 0 983040 737280 737280 737519 748800 27 26 26 25 312 0 0 0 1 10 0 0 0 0 0 +178 1783752285995170500 REFRESH 7 0 0.7794478834477232 2 12 2 12 0 0 91 13 418 3943907 55200 150.33549499511719 0.97840000000000005 179.39169999999999 20160 14755 0 0 983040 737280 737280 737506 748800 27 26 25 26 314 0 0 1 0 12 0 0 0 0 0 +179 1783752286197389900 REFRESH 2 0 0.77950674265007636 2 12 2 12 0 0 96 10 418 3943906 55200 149.93408203125 0.98409999999999997 187.0292 20160 14721 0 0 983040 737280 737280 737506 748800 27 26 26 26 313 1 1 0 0 8 0 0 0 0 0 +180 1783752286388884200 REFRESH 4 0 0.77756550206402908 1 13 1 13 1 0 43 9 423 3943924 55200 148.87936401367188 0.97140000000000004 176.1216 20160 14713 0 0 983040 737280 737280 737524 748800 25 25 29 25 319 0 0 2 1 6 0 0 0 0 1 +181 1783752286580834000 REFRESH 37 0 0.79414588774176087 1 12 1 12 1 0 111 10 410 3943902 55200 148.16050720214844 0.99839999999999995 176.1884 20160 14698 0 0 983040 737280 737280 737502 748800 29 26 33 30 292 1 0 0 0 9 0 0 0 0 1 +182 1783752286765398100 REFRESH 16 0 0.91457059022649811 2 7 2 7 0 0 148 10 412 3943903 55200 150.434814453125 0.97389999999999999 183.44820000000001 20160 14156 0 0 983040 737280 737280 737502 748800 26 26 26 197 137 0 0 0 0 10 0 0 0 0 0 +183 1783752286967735200 REFRESH 3 0 0.78509832769890975 2 11 2 11 0 0 109 14 414 3943921 55200 148.69686889648438 0.98019999999999996 176.8793 20160 14698 0 0 983040 737280 737280 737521 748800 32 25 26 27 304 1 0 0 0 13 0 0 0 0 0 +184 1783752287149658600 REFRESH 50 0 0.78466723685265793 2 9 2 9 0 0 106 11 416 3943924 55200 149.46099853515625 0.97829999999999995 180.16030000000001 20160 12995 0 0 983040 737280 737280 737523 748800 53 26 34 40 263 0 0 0 0 11 0 0 0 0 0 +185 1783752287385932400 REFRESH 15 0 0.77569114704546149 3 12 3 12 0 0 72 8 418 3943904 55200 150.46543884277344 0.98129999999999995 180.0908 20160 14792 0 0 983040 737280 737280 737504 748800 27 26 25 25 315 0 0 0 1 7 0 0 0 0 0 +186 1783752287566680700 REFRESH 42 0 0.79122352502188242 4 12 4 12 0 0 103 15 419 3943910 55200 150.07539367675781 0.97999999999999998 179.57300000000001 20160 13054 0 0 983040 737280 737280 737509 748800 86 25 31 52 225 0 0 0 0 15 0 0 0 0 0 +187 1783752287770250100 REFRESH 10 0 0.77902095809228111 1 11 1 11 0 0 101 11 418 3943893 55200 149.34220886230469 0.9748 179.9538 20160 14727 0 0 983040 737280 737280 737493 748800 40 26 42 32 278 0 0 0 1 10 0 0 0 0 0 +188 1783752287964702900 REFRESH 12 0 0.78707623295172668 3 8 3 8 0 0 126 11 410 3943902 55200 150.12265014648438 0.97940000000000005 179.44239999999999 20160 14634 0 0 983040 737280 737280 737501 748800 30 26 29 54 271 0 0 0 1 10 0 0 0 0 0 +189 1783752288190136200 REFRESH 11 0 0.84889420806242466 0 8 0 8 0 0 90 9 410 3943888 55200 149.48556518554688 0.97760000000000002 224.33179999999999 20160 12061 0 0 983040 737280 737280 737488 748800 81 26 70 95 138 0 0 0 0 9 0 0 0 0 0 +190 1783752288382397600 REFRESH 27 0 0.78014767909539739 0 14 0 14 0 0 90 10 423 3943870 55200 150.0679931640625 0.9728 179.2936 20160 14639 0 0 983040 737280 737280 737470 748800 26 26 25 26 320 2 0 0 1 7 0 0 0 0 0 +191 1783752288592594200 REFRESH 51 0 0.78506042943690169 3 12 3 12 1 0 86 14 415 3943913 55200 148.20863342285156 0.97929999999999995 176.71510000000001 20160 14724 0 0 983040 737280 737280 737513 748800 32 26 97 73 187 0 0 1 0 13 0 0 0 0 1 +192 1783752288786300800 REFRESH 20 0 0.77609628247989104 3 12 3 12 0 0 79 14 419 3943926 55200 149.62074279785156 0.98499999999999999 178.7629 20160 14743 0 0 983040 737280 737280 737526 748800 27 26 26 27 313 0 0 0 0 14 0 0 0 0 0 +193 1783752288980864600 REFRESH 47 0 0.79467758339518302 2 11 2 11 0 0 101 13 419 3943905 55200 149.32684326171875 0.98640000000000005 179.5275 20160 14713 0 0 983040 737280 737280 737505 748800 27 26 29 28 309 1 0 0 0 12 0 0 0 0 0 +194 1783752289181799100 REFRESH 25 0 0.77837783658398374 3 11 3 11 0 0 83 9 418 3943907 55200 150.59660339355469 0.98899999999999999 181.23759999999999 20160 14789 0 0 983040 737280 737280 737506 748800 27 25 30 31 305 0 0 0 0 9 0 0 0 0 0 +195 1783752289394988900 REFRESH 54 0 0.80795663642231708 1 8 1 8 0 0 95 8 424 3943918 55200 148.64588928222656 0.98109999999999997 211.80860000000001 20160 13032 0 0 983040 737280 737280 737518 748800 58 26 60 127 153 0 0 2 0 6 0 0 0 0 0 +196 1783752289599074500 REFRESH 23 0 0.77026507113478015 3 14 3 14 0 0 87 17 422 3943902 55200 150.0528564453125 0.97799999999999998 179.35059999999999 20160 14608 0 0 983040 737280 737280 737501 748800 26 25 27 26 318 1 0 0 0 16 0 0 0 0 0 +197 1783752289824822600 REFRESH 41 0 0.78456958476725669 1 10 1 10 0 0 89 4 414 3943904 55200 148.02943420410156 0.97360000000000002 190.5377 20160 14732 0 0 983040 737280 737280 737504 748800 29 26 28 26 305 0 0 0 0 4 0 0 0 0 0 +198 1783752290017809700 REFRESH 58 0 0.78555857173406407 2 13 2 13 0 0 101 12 412 3943915 55200 149.75897216796875 0.97470000000000001 177.64410000000001 20160 14678 0 0 983040 737280 737280 737514 748800 28 26 32 33 293 0 0 0 0 12 0 0 0 0 0 +199 1783752290208561200 REFRESH 5 0 0.78602054133469645 2 11 2 11 0 0 87 8 411 3943915 55200 148.1185302734375 0.97650000000000003 175.68899999999999 20160 14723 0 0 983040 737280 737280 737515 748800 26 26 27 27 305 1 0 0 0 7 0 0 0 0 0 +200 1783752290393680200 REFRESH 14 0 0.77973899222291665 0 12 0 12 0 0 97 9 416 3943894 55200 149.94329833984375 0.97330000000000005 184.02510000000001 20160 14826 0 0 983040 737280 737280 737494 748800 28 26 26 26 310 0 0 0 0 9 0 0 0 0 0 +201 1783752290598886300 REFRESH 28 0 0.77561029809106519 2 13 2 13 0 0 104 18 411 3943944 55200 150.51533508300781 0.97660000000000002 180.4958 20160 14824 0 0 983040 737280 737280 737543 748800 27 26 26 25 307 0 1 0 1 16 0 0 0 0 0 +202 1783752290790652500 REFRESH 32 0 0.78238505810888326 2 14 2 14 0 0 104 20 416 3943911 55200 148.88858032226562 0.97460000000000002 177.017 20160 14617 0 0 983040 737280 737280 737511 748800 63 25 31 30 267 0 0 0 0 20 0 0 0 0 0 +203 1783752290980978700 REFRESH 31 0 0.86186026898818879 2 6 2 6 0 0 96 8 415 3943910 55200 148.068359375 0.97860000000000003 189.17760000000001 20160 12221 0 0 983040 737280 737280 737509 748800 66 25 26 41 257 0 0 0 0 8 0 0 0 0 0 +204 1783752291191579300 REFRESH 30 0 0.78094931807139012 2 12 2 12 0 0 92 17 409 3943868 55200 150.48704528808594 0.97589999999999999 180.2269 20160 14697 0 0 983040 737280 737280 737468 748800 27 25 25 27 305 1 0 0 0 16 0 0 0 0 0 +205 1783752291384291300 REFRESH 18 0 0.76657990986672631 4 15 4 15 0 0 79 14 425 3943907 55200 149.56246948242188 0.97309999999999997 178.01169999999999 20160 14733 0 0 983040 737280 737280 737507 748800 27 25 25 27 321 1 0 0 1 12 0 0 0 0 0 +206 1783752291575338800 REFRESH 57 0 0.7861558504733519 2 13 2 13 0 0 94 13 413 3943903 55200 148.74624633789062 0.99909999999999999 178.83029999999999 20160 14682 0 0 983040 737280 737280 737503 748800 27 26 57 48 255 0 0 0 0 13 0 0 0 0 0 +207 1783752291768642000 REFRESH 55 0 0.77964535615798636 1 15 1 15 0 0 115 17 413 3943918 55200 149.28793334960938 0.97660000000000002 177.631 20160 14782 0 0 983040 737280 737280 737518 748800 26 26 27 34 300 0 0 0 0 17 0 0 0 0 0 +208 1783752291961493500 REFRESH 46 0 0.77994869744840578 2 15 2 15 0 0 88 16 414 3943952 55200 149.38624572753906 0.98099999999999998 178.73920000000001 20160 14723 0 0 983040 737280 737280 737552 748800 28 26 30 29 301 0 0 0 0 16 0 0 0 0 0 +209 1783752292180502800 REFRESH 52 0 0.8077471185782461 1 8 1 8 0 0 90 7 421 3943902 55200 148.569091796875 0.97750000000000004 217.81190000000001 20160 13011 0 0 983040 737280 737280 737502 748800 32 25 26 133 205 1 0 0 1 5 0 0 0 0 0 +210 1783752292412774900 REFRESH 34 0 0.79028789217694351 1 13 1 13 0 0 92 10 423 3943909 55200 148.85478210449219 0.97240000000000004 175.87379999999999 20160 14703 0 0 983040 737280 737280 737509 748800 31 25 32 38 297 0 0 0 0 10 0 0 0 0 0 +211 1783752292617594000 REFRESH 56 0 0.9800488040796933 2 5 2 5 0 0 145 9 412 3943893 55200 148.77491760253906 0.97709999999999997 203.59999999999999 20160 12363 0 0 983040 737280 737280 737492 748800 113 26 42 50 181 0 0 0 0 9 0 0 0 0 0 +212 1783752292807573100 REFRESH 1 0 0.85699399317279612 1 7 1 7 0 0 111 11 417 3943886 55200 149.13107299804688 0.97660000000000002 188.8186 20160 13004 0 0 983040 737280 737280 737486 748800 46 26 55 33 257 0 0 0 0 11 0 0 0 0 0 +213 1783752294125843000 DEPTH 17 1 0.97531385917424585 0 7 0 7 0 0 139 37 2532 23664839 81600 850.80824279785156 5.8801000000000005 1292.442 120960 59847 1 0 5898240 4423680 4423680 4426438 4492800 150 156 150 182 1894 0 0 0 0 37 0 0 0 0 0 +214 1783752295171246100 DEPTH 8 1 0.97201722920573597 2 5 2 5 0 0 197 51 2508 23664878 81600 861.59654235839844 5.8458000000000006 1044.0413000000001 120960 57503 1 0 5898240 4423680 4423680 4426476 4492800 255 156 150 206 1741 1 0 0 0 50 0 0 0 0 0 +215 1783752296447256300 DEPTH 13 1 0.9682750232761852 1 6 1 6 1 0 155 32 2502 23664914 81600 854.46095275878906 5.8384 1237.2747999999999 120960 59393 1 0 5898240 4423680 4423680 4426513 4492800 165 155 157 158 1867 0 0 0 0 32 0 0 0 0 1 +216 1783752297504047200 DEPTH 16 1 0.89655872482401489 2 7 2 7 1 0 148 66 2532 23664851 81600 858.77027893066406 5.8792000000000009 1055.6367 120960 69477 1 0 5898240 4423680 4423680 4426451 4492800 156 156 156 294 1770 0 0 0 0 66 0 0 0 0 1 +217 1783752298553720900 DEPTH 40 1 0.87241346504898964 3 11 3 11 0 0 94 61 2582 23664835 81600 855.86726379394531 5.8488000000000007 1023.3662 120960 60873 1 0 5898240 4423680 4423680 4426433 4492800 154 150 153 152 1973 0 0 0 0 61 0 0 0 0 0 +218 1783752299804001300 DEPTH 53 1 0.84859030569060756 0 8 0 8 0 0 116 47 2519 23664838 81600 855.312255859375 5.8749000000000002 1221.0278000000001 120960 63780 1 0 5898240 4423680 4423680 4426437 4492800 163 156 150 157 1893 0 1 0 0 46 0 0 0 0 0 +219 1783752300895511300 DEPTH 33 1 0.84457451751472845 1 7 1 7 0 0 155 55 2518 23664806 81600 858.72920227050781 5.8711000000000002 1090.3393000000001 120960 65366 1 0 5898240 4423680 4423680 4426404 4492800 162 156 156 157 1887 0 0 2 0 53 0 0 0 0 0 +220 1783752302197607600 DEPTH 9 1 0.84131592810022549 2 6 2 6 0 0 103 18 2599 23664843 81600 858.14024353027344 5.8776999999999999 1269.1514 120960 60329 1 0 5898240 4423680 4423680 4426442 4492800 161 150 157 172 1959 0 0 0 0 18 0 0 0 0 0 +221 1783752303484641400 DEPTH 11 1 0.84143305141328706 0 8 0 8 1 0 91 22 2573 23664873 81600 848.03175354003906 5.8559999999999999 1285.8843999999999 120960 59239 1 0 5898240 4423680 4423680 4426470 4492800 237 150 246 232 1708 0 0 0 0 22 0 0 0 0 1 +222 1783752304771788100 DEPTH 56 1 0.83315070688698223 2 5 2 5 0 0 146 38 2547 23664794 81600 850.37533569335938 5.9167000000000005 1285.9526000000001 120960 57448 1 0 5898240 4423680 4423680 4426394 4492800 191 156 150 174 1876 0 0 0 0 38 0 0 0 0 0 +223 1783752305790496300 DEPTH 48 1 0.82124112082323431 2 11 2 11 0 0 66 25 2594 23664855 81600 846.25044250488281 5.8482000000000003 1017.4855 120960 64739 1 0 5898240 4423680 4423680 4426454 4492800 162 150 194 219 1869 0 0 0 1 24 0 0 0 0 0 +224 1783752307076967400 DEPTH 17 1 0.82989394450716381 0 7 0 7 1 0 140 35 2540 23664827 81600 841.64907836914062 5.8567 1285.4150999999999 120960 48506 1 0 5898240 4423680 4423680 4426424 4492800 169 156 150 217 1848 0 0 0 0 35 0 0 0 0 1 +225 1783752308374133200 DEPTH 44 1 0.79971241625762057 2 7 2 7 0 0 109 32 2576 23664823 81600 853.87347412109375 5.8484999999999996 1271.7308 120960 64765 1 0 5898240 4423680 4423680 4426422 4492800 150 150 158 156 1962 0 0 0 0 32 0 0 0 0 0 +226 1783752309646279000 DEPTH 54 1 0.79857252740536211 1 8 1 8 1 0 96 29 2557 23664792 81600 851.16796875 5.8585000000000003 1270.9684 120960 64451 1 0 5898240 4423680 4423680 4426388 4492800 186 150 178 221 1822 0 0 1 0 28 0 0 0 0 1 +227 1783752310836580700 DEPTH 45 1 0.79780446375021086 2 7 2 7 0 0 111 41 2560 23664909 81600 854.61056518554688 5.8592000000000004 1189.117 120960 65441 1 0 5898240 4423680 4423680 4426507 4492800 152 150 162 154 1942 0 1 0 0 40 0 0 0 0 0 +228 1783752311935525300 DEPTH 8 1 0.85682679263550054 2 5 2 5 1 0 197 45 2499 23664858 81600 854.35903930664062 5.8549000000000007 1038.8779 120960 46577 1 0 5898240 4423680 4423680 4426458 4492800 314 156 153 269 1607 0 0 0 0 45 0 0 0 0 1 +229 1783752313189127200 DEPTH 13 1 0.85369342042857388 1 6 1 6 0 0 155 31 2499 23664821 81600 844.14704895019531 5.8407999999999998 1225.3477 120960 48371 1 0 5898240 4423680 4423680 4426421 4492800 171 156 159 162 1851 0 0 0 0 31 0 0 0 0 0 +230 1783752314440794400 DEPTH 31 1 0.85189428770556774 2 6 2 6 0 0 97 33 2572 23664801 81600 849.93499755859375 5.8396000000000008 1236.096 120960 60288 1 0 5898240 4423680 4423680 4426397 4492800 206 150 156 184 1876 0 0 0 0 33 0 0 0 0 0 +231 1783752315715429400 DEPTH 56 1 0.80766880910048844 2 5 2 5 0 0 146 36 2563 23664753 81600 839.43391418457031 5.8291000000000004 1273.4368999999999 120960 46313 1 0 5898240 4423680 4423680 4426353 4492800 182 156 151 175 1899 0 0 0 0 36 0 0 0 0 0 +232 1783752317014955700 DEPTH 21 1 0.78477822819017329 0 10 0 10 1 0 153 38 2555 23664854 81600 854.02760314941406 5.8609 1254.3309999999999 120960 70027 1 0 5898240 4423680 4423680 4426454 4492800 156 150 152 168 1929 0 0 0 0 38 0 0 0 0 1 +233 1783752318098142500 DEPTH 37 1 0.78257772656353786 1 12 1 12 1 0 111 34 2595 23664905 81600 854.46630859375 5.8769999999999989 1025.1766 120960 69952 1 0 5898240 4423680 4423680 4426503 4492800 151 156 153 160 1975 0 0 0 0 34 0 0 0 0 1 +234 1783752319170558400 DEPTH 47 1 0.78248075160424524 2 11 2 11 1 0 102 37 2563 23664879 81600 854.79530334472656 5.8768000000000002 1028.2969000000001 120960 70118 1 0 5898240 4423680 4423680 4426479 4492800 150 150 152 152 1959 2 0 0 0 35 0 0 0 0 2 +235 1783752320236310800 DEPTH 42 1 0.77926296790429272 4 12 4 12 0 0 107 88 2610 23664871 81600 857.14320373535156 5.8859000000000004 1033.6977999999999 120960 64569 1 0 5898240 4423680 4423680 4426469 4492800 153 150 150 163 1994 0 0 0 0 88 0 0 0 0 0 +236 1783752321290141900 DEPTH 12 1 0.77823067027304627 3 8 3 8 0 0 132 55 2521 23664870 81600 853.76054382324219 5.8430999999999997 1022.6268 120960 70124 1 0 5898240 4423680 4423680 4426470 4492800 163 150 161 186 1861 0 1 0 1 53 0 0 0 0 0 +237 1783752322549566800 DEPTH 1 1 0.84945039025713376 1 7 1 7 0 0 111 35 2570 23664773 81600 853.81344604492188 5.8895 1242.9523999999999 120960 65470 1 0 5898240 4423680 4423680 4426372 4492800 151 156 168 168 1927 0 0 0 0 35 0 0 0 0 0 +238 1783752323833175100 DEPTH 17 1 0.85498244669975965 0 7 0 7 1 0 141 26 2542 23664889 81600 838.93247985839844 5.8424999999999994 1282.4802 120960 38380 1 0 5898240 4423680 4423680 4426487 4492800 182 156 150 254 1800 0 0 0 0 26 0 0 0 0 2 +239 1783752324907648700 DEPTH 16 1 0.86003094580079198 2 7 2 7 0 0 148 51 2527 23664828 81600 850.78663635253906 5.8507999999999996 1043.9704999999999 120960 57532 1 0 5898240 4423680 4423680 4426428 4492800 156 156 156 335 1724 0 0 0 1 50 0 0 0 0 0 +240 1783752325921892900 DEPTH 40 1 0.83198563459693087 3 11 3 11 1 0 95 73 2568 23664778 81600 847.72087097167969 5.8951000000000002 1013.0128 120960 50270 1 0 5898240 4423680 4423680 4426375 4492800 160 150 154 178 1926 0 0 0 0 73 0 0 0 0 2 +241 1783752327001277400 DEPTH 8 1 0.84195242831243222 2 5 2 5 0 0 197 48 2496 23664819 81600 851.4647216796875 5.8425000000000002 1034.9583 120960 37639 1 0 5898240 4423680 4423680 4426419 4492800 365 156 151 292 1532 0 0 0 0 48 0 0 0 0 0 +242 1783752328273435500 DEPTH 52 1 0.79748570500808857 1 8 1 8 0 0 90 32 2596 23664872 81600 848.99505615234375 5.8491 1270.9492 120960 64746 1 0 5898240 4423680 4423680 4426470 4492800 161 150 150 370 1765 1 0 0 0 31 0 0 0 0 0 +243 1783752329520135000 DEPTH 13 1 0.84936733081464777 1 6 1 6 0 0 155 25 2500 23664943 81600 839.76876831054688 5.8583999999999996 1226.8249000000001 120960 38262 1 0 5898240 4423680 4423680 4426540 4492800 177 156 159 162 1846 0 0 0 0 25 0 0 0 0 0 +244 1783752330762124500 DEPTH 53 1 0.84192627491765759 0 8 0 8 0 0 116 45 2510 23664979 81600 846.41239929199219 5.931 1223.3668 120960 52134 1 0 5898240 4423680 4423680 4426579 4492800 162 156 150 158 1884 1 0 0 0 44 0 0 0 0 0 +245 1783752330957100300 REFRESH 28 0 0.76451616897571228 2 13 2 13 0 0 107 15 415 3943903 55200 149.83270263671875 0.97109999999999996 180.1199 20160 14761 0 0 983040 737280 737280 737502 748800 28 26 26 25 310 0 0 0 0 15 0 0 0 0 0 +246 1783752331149991400 REFRESH 20 0 0.76546653873965664 3 12 3 12 0 0 80 12 417 3943907 55200 150.08767700195312 0.97729999999999995 178.23599999999999 20160 14717 0 0 983040 737280 737280 737507 748800 28 26 28 26 309 0 0 0 0 12 0 0 0 0 0 +247 1783752331343842000 REFRESH 24 0 0.76451683133698034 4 11 4 11 0 0 118 7 413 3943915 55200 149.27360534667969 1.0014000000000001 178.74109999999999 20160 14679 0 0 983040 737280 737280 737515 748800 27 26 27 29 304 0 0 0 0 7 0 0 0 0 0 +248 1783752331537779300 REFRESH 38 0 0.76536602416457455 4 14 4 14 0 0 74 13 414 3943913 55200 149.064697265625 1.0649 178.74879999999999 20160 14519 0 0 983040 737280 737280 737513 748800 34 26 32 33 289 0 0 0 0 13 0 0 0 0 0 +249 1783752331729795100 REFRESH 13 0 0.76496235930920675 1 6 1 6 0 0 155 1 416 3943914 55200 149.61459350585938 0.97260000000000002 190.7527 20160 12078 0 0 983040 737280 737280 737514 748800 135 26 48 64 143 0 0 0 0 1 0 0 0 0 0 +250 1783752331930113700 REFRESH 26 0 0.76793391508005882 1 13 1 13 0 0 64 20 417 3943937 55200 149.14764404296875 0.97589999999999999 177.3595 20160 14666 0 0 983040 737280 737280 737537 748800 25 25 25 28 314 0 0 0 0 20 0 0 0 0 0 +251 1783752332108836100 REFRESH 40 0 0.69390589557106175 3 11 3 11 0 0 95 10 423 3943897 55200 149.52653503417969 0.97719999999999996 177.5599 20160 13364 0 0 983040 737280 737280 737496 748800 97 25 45 134 122 0 0 1 0 9 0 0 0 0 0 +252 1783752332338963500 REFRESH 9 0 0.83552932695094762 2 6 2 6 0 0 103 8 421 3943905 55200 150.45840454101562 0.9718 200.1902 20160 12722 0 0 983040 737280 737280 737505 748800 43 25 52 37 264 0 0 0 0 8 0 0 0 0 0 +253 1783752332535747600 REFRESH 43 0 0.77403297784525149 2 13 2 13 0 0 93 16 410 3943869 55200 148.88038635253906 1.4930000000000001 180.9786 20160 14695 0 0 983040 737280 737280 737469 748800 28 26 29 35 292 0 0 1 1 14 0 0 0 0 0 +254 1783752332729128200 REFRESH 6 0 0.75980613189547641 3 14 3 12 1 0 85 16 413 3943911 55200 150.02009582519531 0.97570000000000001 177.99549999999999 20160 14753 0 0 983040 737280 737280 737511 748800 25 25 29 29 305 0 0 1 2 13 0 0 0 0 1 +255 1783752332907339100 REFRESH 47 0 0.7318890852170532 2 11 2 11 0 0 102 10 420 3943930 55200 148.81689453125 0.97089999999999999 176.97980000000001 20160 13873 0 0 983040 737280 737280 737530 748800 37 26 32 29 296 0 0 0 0 10 0 0 0 0 0 +256 1783752333085725100 REFRESH 48 0 0.80692631534089387 2 11 2 11 1 0 66 3 427 3943909 55200 149.00531005859375 0.98080000000000001 177.19839999999999 20160 12160 0 0 983040 737280 737280 737509 748800 107 25 51 54 190 0 0 0 0 3 0 0 0 0 1 +257 1783752333302388100 REFRESH 54 0 0.79213349422194124 1 8 1 8 0 0 96 11 423 3943898 55200 149.79277038574219 0.97389999999999999 215.20750000000001 20160 12002 0 0 983040 737280 737280 737498 748800 81 26 65 120 131 0 0 0 0 11 0 0 0 0 0 +258 1783752333496846500 REFRESH 25 0 0.76743168833656084 3 11 3 11 0 0 86 11 418 3943894 55200 150.4716796875 0.97119999999999995 180.01400000000001 20160 14756 0 0 983040 737280 737280 737494 748800 27 25 34 33 299 0 0 0 0 11 0 0 0 0 0 +259 1783752333687899400 REFRESH 4 0 0.76748818252642437 1 13 1 13 1 0 44 11 424 3943872 55200 148.53427124023438 0.97109999999999996 175.57040000000001 20160 14750 0 0 983040 737280 737280 737472 748800 26 25 30 25 318 1 0 0 1 9 0 0 0 0 1 +260 1783752333878230600 REFRESH 3 0 0.77568752526647222 2 11 2 11 0 0 109 11 415 3943943 55200 148.495361328125 0.9758 175.81030000000001 20160 14809 0 0 983040 737280 737280 737543 748800 28 25 27 26 309 1 0 0 0 10 0 0 0 0 0 +261 1783752334073236400 REFRESH 46 0 0.76825633383121217 2 15 2 15 0 0 89 18 416 3943927 55200 149.67193603515625 0.97140000000000004 178.50229999999999 20160 14593 0 0 983040 737280 737280 737527 748800 28 26 30 29 303 0 0 0 0 18 0 0 0 0 0 +262 1783752334267019800 REFRESH 55 0 0.768355699384352 1 15 1 15 0 0 115 12 415 3943937 55200 149.84806823730469 0.97629999999999995 178.27449999999999 20160 14612 0 0 983040 737280 737280 737537 748800 26 26 27 36 300 0 0 0 0 12 0 0 0 0 0 +263 1783752334461379800 REFRESH 10 0 0.7713249888644621 1 11 1 11 0 0 101 9 422 3943919 55200 149.48777770996094 0.97250000000000003 179.0284 20160 14654 0 0 983040 737280 737280 737519 748800 35 26 43 32 286 0 0 0 0 9 0 0 0 0 0 +264 1783752334655794200 REFRESH 27 0 0.77052688365728794 0 14 0 14 0 0 90 7 421 3943919 55200 149.79788208007812 0.98140000000000005 179.40940000000001 20160 14658 0 0 983040 737280 737280 737519 748800 26 26 25 26 318 1 0 0 0 6 0 0 0 0 0 +265 1783752334841554700 REFRESH 53 0 0.79565947095738354 0 8 0 8 0 0 116 13 413 3943909 55200 149.60231018066406 0.97309999999999997 184.55709999999999 20160 11942 0 0 983040 737280 737280 737509 748800 61 26 27 37 262 1 0 0 0 12 0 0 0 0 0 +266 1783752335044899800 REFRESH 50 0 0.7778836239405047 2 9 2 9 0 0 106 6 416 3943937 55200 148.74624633789062 0.99939999999999996 179.05199999999999 20160 12955 0 0 983040 737280 737280 737537 748800 49 26 34 42 265 0 0 0 0 6 0 0 0 0 0 +267 1783752335239187200 REFRESH 23 0 0.76044621756362296 3 14 3 14 1 0 87 19 420 3943917 55200 150.01702880859375 0.97689999999999999 178.9289 20160 14791 0 0 983040 737280 737280 737517 748800 27 25 29 28 311 0 0 0 0 19 0 0 0 0 1 +268 1783752335432026600 REFRESH 0 0 0.77608109887648768 1 12 1 12 0 0 71 11 423 3943932 55200 149.52140808105469 0.98119999999999996 177.99359999999999 20160 14731 0 0 983040 737280 737280 737532 748800 27 25 26 25 320 0 0 0 0 11 0 0 0 0 0 +269 1783752335636653600 REFRESH 44 0 0.79370471592602998 2 7 2 7 0 0 109 10 412 3943901 55200 148.78720092773438 0.97589999999999999 203.4119 20160 12069 0 0 983040 737280 737280 737501 748800 32 26 41 28 285 0 0 0 0 10 0 0 0 0 0 +270 1783752335815662800 REFRESH 49 0 0.77233662491275934 3 10 3 10 0 0 118 14 409 3943908 55200 149.47532653808594 0.97499999999999998 177.76750000000001 20160 13939 0 0 983040 737280 737280 737507 748800 27 26 52 45 259 0 0 0 0 14 0 0 0 0 0 +271 1783752336019811500 REFRESH 29 0 0.77086795088613502 2 12 2 12 0 0 92 9 420 3943919 55200 150.68057250976562 0.995 179.53550000000001 20160 14831 0 0 983040 737280 737280 737519 748800 28 25 28 27 312 0 0 0 0 9 0 0 0 0 0 +272 1783752336242460900 REFRESH 11 0 0.83640907882825088 0 8 0 8 0 0 91 9 419 3943896 55200 148.6510009765625 0.97789999999999999 221.4102 20160 12513 0 0 983040 737280 737280 737496 748800 95 25 76 90 133 0 0 0 2 7 0 0 0 0 0 +273 1783752336426037200 REFRESH 8 0 0.95795880857217042 2 5 2 5 0 0 197 4 417 3943930 55200 151.21101379394531 0.97650000000000003 182.47810000000001 20160 12235 0 0 983040 737280 737280 737529 748800 112 26 74 50 155 0 0 0 0 4 0 0 0 0 0 +274 1783752336625910100 REFRESH 58 0 0.77505326423646748 2 13 2 13 1 0 102 10 408 3943931 55200 149.93714904785156 0.97760000000000002 176.99270000000001 20160 14617 0 0 983040 737280 737280 737531 748800 26 26 33 32 291 0 0 0 0 10 0 0 0 0 1 +275 1783752336818202800 REFRESH 57 0 0.77523152656823135 2 13 2 13 0 0 94 10 416 3943930 55200 148.78515625 0.97470000000000001 177.2998 20160 14546 0 0 983040 737280 737280 737530 748800 27 26 57 47 259 0 0 0 0 10 0 0 0 0 0 +276 1783752337039267000 REFRESH 52 0 0.7912946322114367 1 8 1 8 0 0 90 9 424 3943916 55200 148.68479919433594 0.97560000000000002 219.87739999999999 20160 12000 0 0 983040 737280 737280 737516 748800 34 25 27 134 204 0 0 0 1 8 0 0 0 0 0 +277 1783752337220326900 REFRESH 42 0 0.76825524686138014 4 12 4 12 0 0 107 13 417 3943919 55200 149.5152587890625 0.98229999999999995 179.88290000000001 20160 12159 0 0 983040 737280 737280 737519 748800 83 25 25 38 246 0 0 0 0 13 0 0 0 0 0 +278 1783752337443978200 REFRESH 17 0 0.96124441496850843 0 7 0 7 0 0 142 7 412 3943904 55200 149.69754028320312 0.97419999999999995 222.57910000000001 20160 12077 0 0 983040 737280 737280 737504 748800 105 26 36 88 157 0 0 0 1 6 0 0 0 0 0 +279 1783752337628574000 REFRESH 16 0 0.86583016850825156 2 7 2 7 0 0 148 6 415 3943909 55200 150.02508544921875 0.98170000000000002 183.01920000000001 20160 12116 0 0 983040 737280 737280 737509 748800 26 26 26 179 158 0 0 0 1 5 0 0 0 0 0 +280 1783752337833680400 REFRESH 41 0 0.77161337458762547 1 10 1 10 0 0 92 13 413 3943907 55200 149.31149291992188 0.99839999999999995 188.03370000000001 20160 14594 0 0 983040 737280 737280 737507 748800 32 26 29 27 299 1 0 0 0 12 0 0 0 0 0 +281 1783752338024696000 REFRESH 31 0 0.84582254484879216 2 6 2 6 0 0 99 9 418 3943902 55200 148.62336730957031 0.9768 189.8793 20160 12589 0 0 983040 737280 737280 737500 748800 86 25 26 51 230 0 0 0 0 9 0 0 0 0 0 +282 1783752338234787800 REFRESH 14 0 0.7712107601912761 0 12 0 12 0 0 97 17 412 3943907 55200 149.45382690429688 0.97570000000000001 183.6345 20160 14698 0 0 983040 737280 737280 737507 748800 29 26 27 29 301 0 0 0 0 17 0 0 0 0 0 +283 1783752338428109800 REFRESH 12 0 0.7704567339844175 3 8 3 8 0 0 132 10 413 3943910 55200 148.46482849121094 0.97770000000000001 177.90299999999999 20160 13957 0 0 983040 737280 737280 737510 748800 35 26 32 76 244 0 0 0 0 10 0 0 0 0 0 +284 1783752338620189500 REFRESH 5 0 0.7748492325205929 2 11 2 11 0 0 87 10 411 3943912 55200 148.80256652832031 0.97430000000000005 176.91390000000001 20160 14835 0 0 983040 737280 737280 737512 748800 27 26 27 28 303 0 0 0 0 10 0 0 0 0 0 +285 1783752338805767100 REFRESH 21 0 0.77818602978967355 0 10 0 10 0 0 153 9 413 3943911 55200 149.47430419921875 0.9738 184.4983 20160 12866 0 0 983040 737280 737280 737511 748800 30 26 30 34 293 0 0 0 0 9 0 0 0 0 0 +286 1783752339002611500 REFRESH 2 0 0.77158706199047555 2 12 2 12 0 0 96 11 420 3943930 55200 151.22227478027344 0.97770000000000001 181.56030000000001 20160 14789 0 0 983040 737280 737280 737529 748800 27 26 28 26 313 0 0 0 0 11 0 0 0 0 0 +287 1783752339194500100 REFRESH 51 0 0.77558843448208181 3 12 3 12 0 0 86 5 414 3943898 55200 148.75750732421875 0.97089999999999999 176.48480000000001 20160 14586 0 0 983040 737280 737280 737498 748800 32 26 103 82 171 0 0 0 0 5 0 0 0 0 0 +288 1783752339386689100 REFRESH 32 0 0.77232806467873316 2 14 2 14 0 0 106 20 416 3943883 55200 149.26028442382812 0.97499999999999998 177.35839999999999 20160 14549 0 0 983040 737280 737280 737482 748800 69 25 32 32 258 1 0 0 0 19 0 0 0 0 0 +289 1783752339571151500 REFRESH 45 0 0.7927252198271667 2 7 2 7 0 0 111 9 418 3943891 55200 149.92588806152344 0.97330000000000005 183.25360000000001 20160 11974 0 0 983040 737280 737280 737490 748800 55 25 35 40 263 0 0 0 0 9 0 0 0 0 0 +290 1783752339775743500 REFRESH 30 0 0.77177861400626979 2 12 2 12 0 0 93 10 411 3943911 55200 150.47264099121094 0.97419999999999995 179.5455 20160 14690 0 0 983040 737280 737280 737510 748800 27 26 27 28 303 0 0 0 0 10 0 0 0 0 0 +291 1783752339970095100 REFRESH 18 0 0.75740021896404697 4 15 4 15 0 0 80 16 419 3943896 55200 150.01190185546875 0.9718 178.65260000000001 20160 14723 0 0 983040 737280 737280 737495 748800 28 25 25 28 313 1 1 0 0 14 0 0 0 0 0 +292 1783752340165203300 REFRESH 15 0 0.76570367188794886 3 12 3 12 0 0 73 7 420 3943913 55200 150.28019714355469 0.97230000000000005 178.351 20160 14705 0 0 983040 737280 737280 737512 748800 27 26 25 25 317 0 0 0 1 6 0 0 0 0 0 +293 1783752340356472000 REFRESH 34 0 0.78002131005606767 1 13 1 13 0 0 92 7 422 3943903 55200 148.60800170898438 0.97119999999999995 175.4616 20160 14736 0 0 983040 737280 737280 737503 748800 31 25 32 37 297 0 0 0 0 7 0 0 0 0 0 +294 1783752340551691600 REFRESH 22 0 0.76779755462711852 3 12 3 12 0 0 102 12 419 3943914 55200 150.21260070800781 0.97750000000000004 180.36709999999999 20160 14798 0 0 983040 737280 737280 737514 748800 28 26 26 25 314 0 0 0 0 12 0 0 0 0 0 +295 1783752340744840300 REFRESH 39 0 0.78048629132384129 2 12 2 12 0 0 129 11 412 3943928 55200 148.80767822265625 0.97799999999999998 177.6892 20160 14652 0 0 983040 737280 737280 737528 748800 29 26 27 31 299 0 0 0 0 11 0 0 0 0 0 +296 1783752340923426200 REFRESH 37 0 0.77319701322361634 1 12 1 12 0 0 114 8 419 3943914 55200 148.73100280761719 0.97260000000000002 177.43199999999999 20160 13953 0 0 983040 737280 737280 737514 748800 33 26 47 34 279 0 0 0 0 8 0 0 0 0 0 +297 1783752341113648000 REFRESH 1 0 0.84411780854131857 1 7 1 7 0 0 111 6 414 3943899 55200 150.03926086425781 0.97650000000000003 189.1387 20160 12089 0 0 983040 737280 737280 737499 748800 72 26 65 54 197 0 0 0 0 6 0 0 0 0 0 +298 1783752341316200300 REFRESH 35 0 0.77750832448668372 2 11 2 11 0 0 118 13 414 3943920 55200 149.92486572265625 0.97619999999999996 178.39570000000001 20160 14658 0 0 983040 737280 737280 737520 748800 29 25 26 33 301 1 0 0 1 11 0 0 0 0 0 +299 1783752341525490000 REFRESH 56 0 0.96464328355122353 2 5 2 5 0 0 146 10 412 3943891 55200 148.50259399414062 0.97629999999999995 208.0959 20160 12131 0 0 983040 737280 737280 737491 748800 124 26 40 45 177 0 0 0 0 10 0 0 0 0 0 +300 1783752341719020200 REFRESH 7 0 0.77224426219318643 2 12 2 12 0 0 91 9 416 3943895 55200 149.84498596191406 0.98460000000000003 178.38489999999999 20160 14709 0 0 983040 737280 737280 737494 748800 27 26 25 26 312 0 0 1 0 8 0 0 0 0 0 +301 1783752341946028800 REFRESH 33 0 0.84063222772017498 1 7 1 7 0 0 156 6 416 3943912 55200 149.86239624023438 0.97719999999999996 181.3837 20160 12077 0 0 983040 737280 737280 737511 748800 38 26 27 29 296 0 0 1 1 4 0 0 0 0 0 +302 1783752342141091400 REFRESH 36 0 0.77769422116898568 3 10 3 10 0 0 90 11 419 3943912 55200 150.53823852539062 0.97499999999999998 179.8313 20160 14693 0 0 983040 737280 737280 737511 748800 30 26 28 28 307 0 0 0 0 11 0 0 0 0 0 +303 1783752342335161100 REFRESH 19 0 0.77238338765895509 3 11 3 11 0 0 101 10 421 3943909 55200 149.36985778808594 0.99560000000000004 178.83869999999999 20160 14760 0 0 983040 737280 737280 737509 748800 28 25 25 27 316 0 0 0 0 10 0 0 0 0 0 +304 1783752343384369500 DEPTH 6 1 0.95652699277987974 3 12 3 12 1 0 89 128 2562 23664821 81600 857.28466796875 5.8366000000000007 1027.4426000000001 120960 68766 1 0 5898240 4423680 4423680 4426420 4492800 150 150 154 165 1943 1 0 0 4 123 0 0 0 0 4 +305 1783752344703098900 DEPTH 17 1 0.95419716236403129 0 7 0 7 0 0 142 34 2530 23664874 81600 851.89730834960938 5.8793000000000006 1292.1742999999999 120960 57707 1 0 5898240 4423680 4423680 4426472 4492800 216 156 150 188 1820 0 0 0 0 34 0 0 0 0 0 +306 1783752345751292000 DEPTH 8 1 0.9481507738699213 2 5 2 5 0 0 198 48 2504 23664796 81600 862.17440795898438 5.8530999999999995 1047.0944999999999 120960 57905 1 0 5898240 4423680 4423680 4426394 4492800 385 157 151 210 1601 0 0 0 0 48 0 0 0 0 0 +307 1783752347022227400 DEPTH 13 1 0.94355890552023425 1 6 1 6 0 0 156 21 2497 23664847 81600 854.64958190917969 5.8745000000000003 1237.0571 120960 58216 1 0 5898240 4423680 4423680 4426446 4492800 176 155 159 162 1845 0 0 0 0 21 0 0 0 0 0 +308 1783752348129444400 DEPTH 16 1 0.84853646258637161 2 7 2 7 0 0 148 60 2535 23664911 81600 858.76602172851562 5.8944999999999999 1051.9979000000001 120960 60039 1 0 5898240 4423680 4423680 4426510 4492800 156 156 156 328 1739 0 0 1 3 56 0 0 0 0 0 +309 1783752349399128500 DEPTH 53 1 0.83076015819817306 0 8 0 8 0 0 116 40 2507 23664823 81600 853.90826416015625 5.8628 1228.8867 120960 56123 1 0 5898240 4423680 4423680 4426422 4492800 162 156 150 162 1877 0 0 0 0 40 0 0 0 0 0 +310 1783752350711107700 DEPTH 11 1 0.83021755008492171 0 8 0 8 1 0 91 21 2580 23664980 81600 847.19120788574219 5.8884000000000007 1287.3248000000001 120960 58373 1 0 5898240 4423680 4423680 4426579 4492800 287 150 263 298 1582 0 0 1 0 20 0 0 0 0 1 +311 1783752352019124400 DEPTH 9 1 0.82919584382511191 2 6 2 6 0 0 104 18 2601 23664907 81600 859.65151977539062 5.8463000000000003 1276.3720000000001 120960 60015 1 0 5898240 4423680 4423680 4426506 4492800 167 150 155 170 1959 4 0 0 0 14 0 0 0 0 0 +312 1783752353317237800 DEPTH 56 1 0.83982649371099327 2 5 2 5 0 0 147 38 2562 23664850 81600 850.09306335449219 5.8323999999999998 1283.7650000000001 120960 57044 1 0 5898240 4423680 4423680 4426450 4492800 183 156 151 172 1900 0 0 0 0 38 0 0 0 0 0 +313 1783752354553811800 DEPTH 31 1 0.83847709901504253 2 6 2 6 1 0 103 38 2550 23664783 81600 850.64671325683594 5.8925999999999998 1235.3957 120960 59242 1 0 5898240 4423680 4423680 4426382 4492800 233 150 156 204 1807 0 0 0 0 38 0 0 0 0 1 +314 1783752355597544000 DEPTH 40 1 0.81863219144640365 3 11 3 11 0 0 95 55 2575 23664906 81600 857.55596923828125 5.8551000000000002 1022.9457 120960 62771 1 0 5898240 4423680 4423680 4426505 4492800 161 150 152 159 1953 0 0 0 0 55 0 0 0 0 0 +315 1783752356875380700 DEPTH 44 1 0.78826088213199763 2 7 2 7 0 0 110 28 2580 23664862 81600 852.28173828125 5.8287999999999993 1276.7236 120960 59507 1 0 5898240 4423680 4423680 4426462 4492800 150 150 160 156 1964 0 0 0 0 28 0 0 0 0 0 +316 1783752357918019100 DEPTH 48 1 0.7881188924437641 2 11 2 11 0 0 67 23 2593 23664909 81600 848.03794860839844 5.8668000000000005 1018.0278 120960 60492 1 0 5898240 4423680 4423680 4426509 4492800 192 150 216 254 1781 0 0 0 0 23 0 0 0 0 0 +317 1783752359190178600 DEPTH 54 1 0.78737580427012632 1 8 1 8 1 0 98 29 2557 23664834 81600 851.51295471191406 5.8469999999999995 1270.9857999999999 120960 59679 1 0 5898240 4423680 4423680 4426432 4492800 191 150 187 258 1771 0 0 0 0 29 0 0 0 0 2 +318 1783752360479648100 DEPTH 52 1 0.78494383202815743 1 8 1 8 0 0 92 35 2591 23664889 81600 848.27734375 5.8427999999999995 1268.2682 120960 58879 1 0 5898240 4423680 4423680 4426487 4492800 166 150 151 439 1685 1 0 0 0 34 0 0 0 0 0 +319 1783752361745865200 DEPTH 21 1 0.77046090235212217 0 10 0 10 1 0 154 54 2534 23664898 81600 854.69642639160156 5.8365 1242.0217 120960 64343 1 0 5898240 4423680 4423680 4426498 4492800 156 150 156 163 1909 0 0 0 0 54 0 0 0 0 1 +320 1783752363069827700 DEPTH 17 1 0.85023275541231025 0 7 0 7 0 0 143 27 2538 23664858 81600 842.33322143554688 5.8580000000000005 1286.9508000000001 120960 47317 1 0 5898240 4423680 4423680 4426456 4492800 203 156 150 216 1813 0 0 0 0 27 0 0 0 0 0 +321 1783752364091225800 DEPTH 6 1 0.85734868440907119 3 12 3 12 1 0 95 122 2572 23664902 81600 849.50241088867188 5.8401999999999994 1020.2901000000001 120960 57117 1 0 5898240 4423680 4423680 4426500 4492800 150 150 157 199 1916 1 0 4 4 113 0 0 0 0 3 +322 1783752365133323600 DEPTH 8 1 0.85454939045478595 2 5 2 5 0 0 198 43 2503 23664890 81600 857.43205261230469 5.8352000000000004 1040.9774 120960 47204 1 0 5898240 4423680 4423680 4426489 4492800 415 156 151 239 1542 1 0 0 0 42 0 0 0 0 0 +323 1783752366367393200 DEPTH 13 1 0.85069395107348555 1 6 1 6 0 0 157 31 2492 23664918 81600 843.40452575683594 5.8241999999999994 1232.9511 120960 47037 1 0 5898240 4423680 4423680 4426517 4492800 180 156 158 159 1839 0 0 0 0 31 0 0 0 0 0 +324 1783752367620036500 DEPTH 1 1 0.83394222643063043 1 7 1 7 0 0 111 34 2573 23664836 81600 855.8662109375 5.8315999999999999 1251.529 120960 59661 1 0 5898240 4423680 4423680 4426435 4492800 151 156 168 167 1931 0 0 0 0 34 0 0 0 0 0 +325 1783752368838702400 DEPTH 45 1 0.78601556160875963 2 7 2 7 0 0 111 34 2558 23664865 81600 853.17303466796875 5.8367999999999993 1207.0487000000001 120960 59122 1 0 5898240 4423680 4423680 4426465 4492800 155 150 162 155 1936 0 0 0 0 34 0 0 0 0 0 +326 1783752370111410000 DEPTH 56 1 0.84528070227358054 2 5 2 5 0 0 149 32 2563 23664852 81600 840.01588439941406 5.8283000000000005 1271.5251000000001 120960 46208 1 0 5898240 4423680 4423680 4426452 4492800 206 156 152 195 1854 0 0 0 0 32 0 0 0 0 0 +327 1783752371208236000 DEPTH 33 1 0.83077327844141358 1 7 1 7 1 0 158 48 2529 23664748 81600 858.94515991210938 5.8424999999999994 1095.6652999999999 120960 60114 1 0 5898240 4423680 4423680 4426347 4492800 169 156 156 155 1893 0 0 1 0 47 0 0 0 0 1 +328 1783752372292032900 DEPTH 16 1 0.78652061818769026 2 7 2 7 0 0 150 54 2523 23664937 81600 851.67936706542969 5.8391999999999999 1045.7292 120960 48631 1 0 5898240 4423680 4423680 4426536 4492800 156 156 156 317 1738 0 0 0 3 51 0 0 0 0 0 +329 1783752373602532200 DEPTH 17 1 0.7862337174518047 0 7 0 7 0 0 143 34 2542 23664771 81600 838.93934631347656 5.8281000000000009 1286.7239999999999 120960 38190 1 0 5898240 4423680 4423680 4426370 4492800 218 156 150 277 1741 0 0 0 0 34 0 0 0 0 0 +330 1783752374651478500 DEPTH 39 1 0.76945103313259344 2 12 2 12 1 0 133 72 2550 23664827 81600 854.76333618164062 5.8377999999999997 1026.1048000000001 120960 70031 1 0 5898240 4423680 4423680 4426425 4492800 155 153 154 156 1932 0 0 5 0 67 0 0 0 0 4 +331 1783752375693289800 DEPTH 0 1 0.76722468036542113 1 12 1 12 1 0 74 29 2573 23664851 81600 852.84486389160156 5.8449 1019.5767 120960 68994 1 0 5898240 4423680 4423680 4426451 4492800 151 150 157 152 1963 2 0 0 1 26 0 0 0 0 1 +332 1783752376746667700 DEPTH 36 1 0.76726569709653636 3 10 3 10 0 0 90 33 2580 23664767 81600 857.78666687011719 5.8543000000000003 1031.6739 120960 68235 1 0 5898240 4423680 4423680 4426367 4492800 156 150 154 162 1958 0 0 0 0 33 0 0 0 0 0 +333 1783752377802714700 DEPTH 3 1 0.76730822380517882 2 11 2 11 1 0 109 55 2591 23664848 81600 848.57821655273438 5.8575000000000008 1017.0217 120960 68818 1 0 5898240 4423680 4423680 4426448 4492800 160 150 155 165 1961 2 0 4 1 48 0 0 0 0 1 +334 1783752378890417500 DEPTH 35 1 0.76735069261376598 2 11 2 11 0 0 120 97 2547 23664929 81600 859.7186279296875 5.8636999999999997 1032.4105999999999 120960 69053 1 0 5898240 4423680 4423680 4426528 4492800 157 150 156 166 1918 0 0 2 3 92 0 0 0 0 0 +335 1783752380007340900 DEPTH 50 1 0.76710110588624758 2 9 2 9 0 0 107 48 2543 23664868 81600 850.5906982421875 5.8817999999999993 1080.2947999999999 120960 64895 1 0 5898240 4423680 4423680 4426466 4492800 160 150 156 171 1906 0 0 0 0 48 0 0 0 0 0 +336 1783752380199419400 REFRESH 28 0 0.7571016476173138 2 13 2 13 0 0 108 14 404 3943909 55200 150.94271850585938 0.99750000000000005 180.49350000000001 20160 14792 0 0 983040 737280 737280 737509 748800 26 26 26 27 299 0 1 0 0 13 0 0 0 0 0 +337 1783752380388808800 REFRESH 1 0 0.70816481768249795 1 7 1 7 0 0 111 12 417 3943931 55200 149.24493408203125 0.97299999999999998 188.25049999999999 20160 12219 0 0 983040 737280 737280 737531 748800 89 26 67 55 180 0 0 0 0 12 0 0 0 0 0 +338 1783752380595029900 REFRESH 14 0 0.76349980843542342 0 12 0 12 0 0 98 13 418 3943908 55200 150.5791015625 0.97430000000000005 184.80019999999999 20160 14469 0 0 983040 737280 737280 737508 748800 29 26 27 29 307 0 0 0 0 13 0 0 0 0 0 +339 1783752380787000000 REFRESH 40 0 0.80334046929263025 3 11 3 11 0 0 96 7 418 3943914 55200 149.28076171875 0.9778 176.69970000000001 20160 13004 0 0 983040 737280 737280 737514 748800 103 25 39 112 139 0 0 0 0 7 0 0 0 0 0 +340 1783752380975234800 REFRESH 57 0 0.76558372509163308 2 13 2 13 1 0 94 6 412 3943922 55200 148.41958618164062 0.99890000000000001 176.79040000000001 20160 14548 0 0 983040 737280 737280 737522 748800 27 26 55 44 260 0 0 0 0 6 0 0 0 0 1 +341 1783752381164462000 REFRESH 10 0 0.76351589251596108 1 11 1 11 0 0 101 10 423 3943906 55200 149.14457702636719 0.97629999999999995 177.63220000000001 20160 14722 0 0 983040 737280 737280 737506 748800 36 26 43 35 283 0 0 0 0 10 0 0 0 0 0 +342 1783752381354478700 REFRESH 23 0 0.75212082983153605 3 14 3 14 1 0 87 20 415 3943935 55200 149.88185119628906 0.97999999999999998 178.08080000000001 20160 14803 0 0 983040 737280 737280 737535 748800 26 25 28 29 307 0 0 0 0 20 0 0 0 0 1 +343 1783752381545683700 REFRESH 22 0 0.75820652187077608 3 12 3 12 0 0 102 17 415 3943904 55200 150.75331115722656 0.97740000000000005 179.39930000000001 20160 14731 0 0 983040 737280 737280 737504 748800 29 26 26 26 308 0 0 0 0 17 0 0 0 0 0 +344 1783752381736389800 REFRESH 7 0 0.76141508664853819 2 12 2 12 0 0 92 15 421 3943924 55200 149.84396362304688 0.99760000000000004 178.52340000000001 20160 14762 0 0 983040 737280 737280 737523 748800 27 26 25 26 317 0 0 0 0 15 0 0 0 0 0 +345 1783752381913060500 REFRESH 3 0 0.62753886642240975 2 11 2 11 0 0 110 14 408 3943914 55200 148.43084716796875 0.97570000000000001 175.55279999999999 20160 14708 0 0 983040 737280 737280 737514 748800 42 25 33 38 270 1 0 0 0 13 0 0 0 0 0 +346 1783752382128700500 REFRESH 43 0 0.76572644640017118 2 13 2 13 1 0 96 16 412 3943881 55200 150.56076049804688 0.97809999999999997 179.97550000000001 20160 14574 0 0 983040 737280 737280 737481 748800 29 26 33 41 283 0 0 0 1 15 0 0 0 0 1 +347 1783752382318422500 REFRESH 24 0 0.75447377738633792 4 11 4 11 0 0 119 11 407 3943883 55200 149.15583801269531 0.97850000000000004 178.0624 20160 14688 0 0 983040 737280 737280 737482 748800 27 26 28 31 295 0 0 0 0 11 0 0 0 0 0 +348 1783752382509551200 REFRESH 13 0 0.9381416316152531 1 6 1 6 0 0 157 11 415 3943902 55200 149.41183471679688 0.97150000000000003 189.99549999999999 20160 12669 0 0 983040 737280 737280 737502 748800 140 26 44 58 147 0 0 0 0 11 0 0 0 0 0 +349 1783752382709453900 REFRESH 25 0 0.76010373633832939 3 11 3 11 0 0 87 15 415 3943917 55200 149.94329833984375 0.97350000000000003 179.18729999999999 20160 14748 0 0 983040 737280 737280 737517 748800 28 25 38 41 283 0 0 0 0 15 0 0 0 0 0 +350 1783752382889021500 REFRESH 6 0 0.912406278411102 3 12 3 12 0 0 95 12 414 3943914 55200 150.11430358886719 0.9738 178.41909999999999 20160 13839 0 0 983040 737280 737280 737514 748800 26 25 76 43 244 0 0 0 0 12 0 0 0 0 0 +351 1783752383074393900 REFRESH 33 0 0.81711415757970352 1 7 1 7 0 0 159 7 419 3943897 55200 151.12882995605469 0.97340000000000004 184.20760000000001 20160 11852 0 0 983040 737280 737280 737497 748800 50 26 29 29 285 0 0 0 0 7 0 0 0 0 0 +352 1783752383261295400 REFRESH 21 0 0.76439745993087693 0 10 0 10 0 0 154 10 413 3943910 55200 149.64927673339844 0.98089999999999999 185.7619 20160 12001 0 0 983040 737280 737280 737510 748800 35 26 33 45 274 0 0 0 0 10 0 0 0 0 0 +353 1783752383481153600 REFRESH 52 0 0.77983041827950694 1 8 1 8 0 0 92 5 424 3943906 55200 149.06243896484375 0.99309999999999998 218.6557 20160 12256 0 0 983040 737280 737280 737506 748800 38 25 29 145 187 0 0 1 0 4 0 0 0 0 0 +354 1783752383680132100 REFRESH 18 0 0.74840792092289377 4 15 4 15 1 0 83 19 420 3943938 55200 150.329345703125 0.97389999999999999 178.70959999999999 20160 14784 0 0 983040 737280 737280 737538 748800 29 25 25 30 311 1 0 0 0 18 0 0 0 0 1 +355 1783752383888021400 REFRESH 9 0 0.82474173924039862 2 6 2 6 0 0 104 13 423 3943885 55200 150.50341796875 0.98070000000000002 194.6943 20160 12916 0 0 983040 737280 737280 737484 748800 52 26 60 53 232 0 0 0 0 13 0 0 0 0 0 +356 1783752384079080100 REFRESH 20 0 0.7587468510916654 3 12 3 12 0 0 84 22 425 3943887 55200 150.2659912109375 0.97650000000000003 178.66890000000001 20160 14852 0 0 983040 737280 737280 737487 748800 28 26 28 27 316 1 0 0 0 21 0 0 0 0 0 +357 1783752384303842000 REFRESH 17 0 0.94294019787080341 0 7 0 7 0 0 143 7 416 3943890 55200 149.7733154296875 0.97660000000000002 223.52549999999999 20160 12694 0 0 983040 737280 737280 737490 748800 114 26 27 84 165 0 0 0 0 7 0 0 0 0 0 +358 1783752384503359500 REFRESH 41 0 0.765744768540221 1 10 1 10 0 0 93 8 412 3943899 55200 148.41535949707031 0.97340000000000004 187.50470000000001 20160 14629 0 0 983040 737280 737280 737499 748800 32 26 30 27 297 0 0 0 0 8 0 0 0 0 0 +359 1783752384691595900 REFRESH 32 0 0.76286856280859061 2 14 2 14 0 0 106 19 417 3943898 55200 148.40422058105469 0.97430000000000005 176.85939999999999 20160 14585 0 0 983040 737280 737280 737498 748800 60 25 32 30 270 0 0 0 0 19 0 0 0 0 0 +360 1783752384873543700 REFRESH 8 0 0.94170681200388928 2 5 2 5 0 0 198 5 416 3943890 55200 150.62322998046875 0.99929999999999997 180.8535 20160 12262 0 0 983040 737280 737280 737488 748800 105 26 82 49 154 1 0 0 0 4 0 0 0 0 0 +361 1783752385062020100 REFRESH 53 0 0.82641730083632681 0 8 0 8 0 0 116 13 416 3943919 55200 150.83721923828125 0.97499999999999998 187.09110000000001 20160 11955 0 0 983040 737280 737280 737518 748800 78 26 27 43 242 0 0 0 0 13 0 0 0 0 0 +362 1783752385242824900 REFRESH 35 0 0.7582094329419633 2 11 2 11 0 0 120 9 415 3943903 55200 150.53414916992188 0.9778 179.63849999999999 20160 14776 0 0 983040 737280 737280 737501 748800 29 25 27 70 264 0 0 0 0 9 0 0 0 0 0 +363 1783752385423822200 REFRESH 50 0 0.75981090865930034 2 9 2 9 0 0 108 10 418 3943918 55200 149.28486633300781 0.9748 179.78149999999999 20160 12009 0 0 983040 737280 737280 737517 748800 86 26 39 53 214 0 0 0 1 9 0 0 0 0 0 +364 1783752385639716900 REFRESH 37 0 0.76303984449764994 1 12 1 12 0 0 116 13 414 3943919 55200 149.95968627929688 0.97360000000000002 178.0677 20160 13778 0 0 983040 737280 737280 737518 748800 36 26 53 35 264 0 0 0 0 13 0 0 0 0 0 +365 1783752385829266700 REFRESH 15 0 0.75431550735362229 3 12 3 12 0 0 73 10 422 3943876 55200 149.47737121582031 0.97570000000000001 177.59280000000001 20160 14663 0 0 983040 737280 737280 737476 748800 27 26 25 25 319 0 0 0 0 10 0 0 0 0 0 +366 1783752386017119100 REFRESH 5 0 0.7668800113555172 2 11 2 11 0 0 87 5 410 3943906 55200 149.25529479980469 0.96950000000000003 177.09450000000001 20160 14703 0 0 983040 737280 737280 737506 748800 27 26 29 29 299 0 0 0 0 5 0 0 0 0 0 +367 1783752386200179400 REFRESH 16 0 0.82617857248971205 2 7 2 7 0 0 151 10 418 3943925 55200 150.25357055664062 0.98009999999999997 181.93379999999999 20160 11964 0 0 983040 737280 737280 737525 748800 27 26 26 182 157 0 0 0 1 9 0 0 0 0 0 +368 1783752386424321100 REFRESH 11 0 0.82612873700946332 0 8 0 8 0 0 91 8 424 3943904 55200 149.1435546875 0.97409999999999997 223.0797 20160 12652 0 0 983040 737280 737280 737504 748800 116 25 58 67 158 0 0 0 1 7 0 0 0 0 0 +369 1783752386614894100 REFRESH 27 0 0.76044462967717508 0 14 0 14 0 0 92 17 421 3943898 55200 149.94125366210938 0.98350000000000004 179.07239999999999 20160 14779 0 0 983040 737280 737280 737498 748800 26 26 25 26 318 1 0 0 1 15 0 0 0 0 0 +370 1783752386803228700 REFRESH 38 0 0.75830419081668865 4 14 4 14 0 0 76 13 415 3943909 55200 149.18144226074219 0.97199999999999998 176.7972 20160 14515 0 0 983040 737280 737280 737509 748800 35 26 32 31 291 0 0 0 0 13 0 0 0 0 0 +371 1783752386992796800 REFRESH 42 0 0.76027357009526597 4 12 4 12 0 0 107 12 417 3943940 55200 148.81280517578125 0.97419999999999995 177.87559999999999 20160 12086 0 0 983040 737280 737280 737540 748800 124 25 29 62 177 0 0 0 0 12 0 0 0 0 0 +372 1783752387183279200 REFRESH 55 0 0.76095014420140816 1 15 1 15 0 0 115 11 415 3943898 55200 150.108154296875 0.97719999999999996 178.67599999999999 20160 14579 0 0 983040 737280 737280 737498 748800 26 26 28 37 298 0 0 0 0 11 0 0 0 0 0 +373 1783752387376950000 REFRESH 31 0 0.83541669360941073 2 6 2 6 0 0 103 5 416 3943925 55200 148.78924560546875 1.0271999999999999 192.4982 20160 12800 0 0 983040 737280 737280 737525 748800 116 25 26 57 192 0 0 0 0 5 0 0 0 0 0 +374 1783752387576197700 REFRESH 12 0 0.76522928766018694 3 8 3 8 0 0 133 5 413 3943909 55200 149.50604248046875 0.97240000000000004 178.5145 20160 13670 0 0 983040 737280 737280 737509 748800 36 26 35 83 233 0 0 0 0 5 0 0 0 0 0 +375 1783752387764467600 REFRESH 47 0 0.76599215412616772 2 11 2 11 0 0 102 6 421 3943910 55200 148.35098266601562 0.97589999999999999 176.2585 20160 13767 0 0 983040 737280 737280 737510 748800 43 26 38 30 284 0 0 0 0 6 0 0 0 0 0 +376 1783752387982619900 REFRESH 30 0 0.76372908673853068 2 12 2 12 1 0 93 14 413 3943922 55200 149.79379272460938 0.98229999999999995 180.60769999999999 20160 14748 0 0 983040 737280 737280 737520 748800 28 25 27 30 303 0 0 0 0 14 0 0 0 0 1 +377 1783752388161498100 REFRESH 48 0 0.77806049898506258 2 11 2 11 0 0 67 2 427 3943905 55200 149.24185180664062 0.97809999999999997 177.679 20160 14152 0 0 983040 737280 737280 737505 748800 105 25 47 50 200 0 0 0 0 2 0 0 0 0 0 +378 1783752388375052500 REFRESH 56 0 0.95206878070456424 2 5 2 5 0 0 149 0 423 3943917 55200 149.77433776855469 0.97270000000000001 212.34809999999999 20160 12388 0 0 983040 737280 737280 737517 748800 147 26 47 48 155 0 0 0 0 0 0 0 0 0 0 +379 1783752388572530600 REFRESH 58 0 0.76706662744249254 2 13 2 13 0 0 103 15 407 3943933 55200 149.61459350585938 0.9718 177.32310000000001 20160 14672 0 0 983040 737280 737280 737533 748800 29 26 34 34 284 0 0 0 1 14 0 0 0 0 0 +380 1783752388759092600 REFRESH 34 0 0.76818065245566325 1 13 1 13 0 0 92 15 419 3943925 55200 148.453369140625 0.97550000000000003 175.06700000000001 20160 14600 0 0 983040 737280 737280 737525 748800 31 25 32 39 292 0 0 0 0 15 0 0 0 0 0 +381 1783752388968611400 REFRESH 44 0 0.78387294978076405 2 7 2 7 0 0 110 4 412 3943920 55200 149.20704650878906 0.9788 208.28299999999999 20160 12264 0 0 983040 737280 737280 737520 748800 34 26 44 28 280 0 0 0 0 4 0 0 0 0 0 +382 1783752389147357700 REFRESH 0 0 0.75898722263388951 1 12 1 12 0 0 74 8 423 3943905 55200 149.70982360839844 0.97109999999999996 177.5968 20160 14822 0 0 983040 737280 737280 737505 748800 31 25 33 32 302 0 0 0 0 8 0 0 0 0 0 +383 1783752389335455600 REFRESH 26 0 0.76229663234315559 1 13 1 13 1 0 64 7 420 3943903 55200 149.08108520507812 0.98029999999999995 177.20400000000001 20160 14740 0 0 983040 737280 737280 737503 748800 26 25 26 29 314 0 0 0 0 7 0 0 0 0 1 +384 1783752389514521900 REFRESH 36 0 0.75906126606842317 3 10 3 10 0 0 91 11 416 3943924 55200 149.5152587890625 0.97870000000000001 177.91720000000001 20160 14613 0 0 983040 737280 737280 737524 748800 34 26 35 40 281 1 0 0 0 10 0 0 0 0 0 +385 1783752389734549900 REFRESH 54 0 0.78354943926387832 1 8 1 8 0 0 98 9 420 3943920 55200 149.40342712402344 0.97699999999999998 218.83690000000001 20160 12945 0 0 983040 737280 737280 737520 748800 97 26 60 118 119 0 0 0 0 9 0 0 0 0 0 +386 1783752389933383000 REFRESH 51 0 0.76226767400657647 3 12 3 12 1 0 86 14 417 3943884 55200 149.52755737304688 0.9748 177.63480000000001 20160 14587 0 0 983040 737280 737280 737484 748800 34 26 123 95 139 0 0 0 0 14 0 0 0 0 1 +387 1783752390122718100 REFRESH 49 0 0.76622027893577815 3 10 3 10 0 0 119 12 413 3943909 55200 149.15583801269531 0.99790000000000001 177.30520000000001 20160 13832 0 0 983040 737280 737280 737509 748800 27 26 40 37 283 0 0 0 0 12 0 0 0 0 0 +388 1783752390315477500 REFRESH 19 0 0.7642049097128264 3 11 3 11 0 0 101 10 423 3943919 55200 151.2857666015625 0.98150000000000004 181.4365 20160 14775 0 0 983040 737280 737280 737517 748800 30 25 25 27 316 0 0 0 0 10 0 0 0 0 0 +389 1783752390525513800 REFRESH 2 0 0.76424441375459695 2 12 2 12 0 0 96 11 419 3943909 55200 150.61517333984375 0.97509999999999997 179.7338 20160 14836 0 0 983040 737280 737280 737507 748800 27 26 27 26 313 0 0 0 0 11 0 0 0 0 0 +390 1783752390711621600 REFRESH 4 0 0.76177916415240543 1 13 1 13 0 0 44 4 422 3943919 55200 148.50457763671875 0.97760000000000002 175.2474 20160 14746 0 0 983040 737280 737280 737519 748800 25 25 30 26 316 0 0 0 0 4 0 0 0 0 0 +391 1783752390903254500 REFRESH 29 0 0.76332327140093792 2 12 2 12 0 0 94 16 419 3943898 55200 150.31706237792969 0.97560000000000002 179.9872 20160 14769 0 0 983040 737280 737280 737497 748800 29 25 30 28 307 0 0 0 0 16 0 0 0 0 0 +392 1783752391094891700 REFRESH 46 0 0.76142894199283095 2 15 2 15 0 0 90 13 415 3943898 55200 150.17984008789062 0.97609999999999997 179.38999999999999 20160 14597 0 0 983040 737280 737280 737498 748800 28 26 32 30 299 1 0 0 0 12 0 0 0 0 0 +393 1783752391275584000 REFRESH 39 0 0.76121744975138939 2 12 2 12 0 0 133 13 408 3943881 55200 150.10099792480469 0.97209999999999996 179.5146 20160 13779 0 0 983040 737280 737280 737481 748800 28 26 28 30 296 0 0 0 0 13 0 0 0 0 0 +394 1783752391460422000 REFRESH 45 0 0.78194697924283485 2 7 2 7 0 0 111 11 416 3943883 55200 150.68672180175781 0.97560000000000002 183.6061 20160 12008 0 0 983040 737280 737280 737482 748800 62 25 31 36 262 0 0 0 0 11 0 0 0 0 0 +395 1783752392776638100 DEPTH 17 1 0.937001272863206 0 7 0 7 0 0 145 39 2530 23664833 81600 852.32817077636719 5.8702000000000005 1290.8287 120960 59999 1 0 5898240 4423680 4423680 4426433 4492800 220 156 150 225 1779 0 0 0 0 39 0 0 0 0 0 +396 1783752394056252500 DEPTH 13 1 0.93624279778359543 1 6 1 6 1 0 157 29 2502 23664834 81600 854.73341369628906 5.8346999999999998 1245.1352999999999 120960 59733 1 0 5898240 4423680 4423680 4426432 4492800 176 155 158 168 1845 0 0 0 0 29 0 0 0 0 1 +397 1783752395105097900 DEPTH 8 1 0.93386703721494047 2 5 2 5 0 0 199 44 2503 23664758 81600 862.93342590332031 5.8316999999999997 1047.7108000000001 120960 58737 1 0 5898240 4423680 4423680 4426357 4492800 435 156 153 223 1536 2 1 0 0 41 0 0 0 0 0 +398 1783752396130336100 DEPTH 6 1 0.88864409450114767 3 12 3 12 1 0 95 106 2560 23664891 81600 855.56930541992188 5.8550000000000004 1024.1214 120960 68835 1 0 5898240 4423680 4423680 4426489 4492800 150 150 159 194 1907 0 0 3 3 100 0 0 0 0 3 +399 1783752397425405000 DEPTH 56 1 0.89806375529995353 2 5 2 5 0 0 150 38 2568 23664840 81600 852.97906494140625 5.8470000000000004 1288.2068999999999 120960 58335 1 0 5898240 4423680 4423680 4426440 4492800 288 156 152 195 1777 0 0 0 0 38 0 0 0 0 0 +400 1783752398682511900 DEPTH 1 1 0.82444031713430521 1 7 1 7 0 0 111 29 2568 23664819 81600 855.51980590820312 5.8619999999999992 1255.9666999999999 120960 58227 1 0 5898240 4423680 4423680 4426419 4492800 163 156 168 180 1901 0 0 0 0 29 0 0 0 0 0 +401 1783752399943064000 DEPTH 53 1 0.8218976599975365 0 8 0 8 1 0 116 36 2509 23664836 81600 858.65730285644531 5.8635000000000002 1240.1398999999999 120960 55675 1 0 5898240 4423680 4423680 4426435 4492800 162 156 150 156 1885 0 0 0 0 36 0 0 0 0 1 +402 1783752401232521900 DEPTH 9 1 0.82060173718175233 2 6 2 6 0 0 105 10 2599 23664825 81600 860.87461853027344 5.8863000000000003 1288.4029 120960 60261 1 0 5898240 4423680 4423680 4426422 4492800 191 150 167 191 1900 1 0 0 0 9 0 0 0 0 0 +403 1783752402516450300 DEPTH 31 1 0.82470069580018612 2 6 2 6 0 0 104 36 2553 23664836 81600 851.82147216796875 5.8880000000000008 1245.9958999999999 120960 60375 1 0 5898240 4423680 4423680 4426435 4492800 253 150 156 235 1759 0 0 0 0 36 0 0 0 0 0 +404 1783752403643526000 DEPTH 33 1 0.82017831074793646 1 7 1 7 0 0 160 47 2535 23664849 81600 861.54827880859375 5.9209999999999994 1110.3264999999999 120960 57276 1 0 5898240 4423680 4423680 4426447 4492800 179 156 156 156 1888 1 0 0 0 46 0 0 0 0 0 +405 1783752404963554200 DEPTH 11 1 0.81955165579303835 0 8 0 8 1 0 92 17 2581 23664912 81600 850.68391418457031 5.8669000000000002 1295.0996 120960 59050 1 0 5898240 4423680 4423680 4426508 4492800 317 150 249 314 1551 0 0 0 0 17 0 0 0 0 1 +406 1783752406057117200 DEPTH 16 1 0.81665706291218754 2 7 2 7 0 0 151 50 2536 23664837 81600 859.62545776367188 5.9056000000000006 1055.7245 120960 56377 1 0 5898240 4423680 4423680 4426436 4492800 156 156 156 395 1673 0 0 0 0 50 0 0 0 0 0 +407 1783752407097904600 DEPTH 40 1 0.78773476494067318 3 11 3 11 0 0 100 40 2575 23664820 81600 858.1029052734375 5.8407999999999998 1025.0528999999999 120960 63154 1 0 5898240 4423680 4423680 4426418 4492800 162 150 152 167 1944 1 0 0 0 39 0 0 0 0 0 +408 1783752408403558900 DEPTH 52 1 0.77068650750194467 1 8 1 8 0 0 92 31 2582 23664882 81600 847.80857849121094 5.9123000000000001 1270.6076 120960 57644 1 0 5898240 4423680 4423680 4426482 4492800 173 150 150 501 1608 1 0 0 1 29 0 0 0 0 0 +409 1783752409746698400 DEPTH 17 1 0.82378642717714301 0 7 0 7 0 0 146 28 2545 23664861 81600 842.68336486816406 5.8873999999999995 1296.9502 120960 48682 1 0 5898240 4423680 4423680 4426461 4492800 204 156 150 227 1808 0 0 0 0 28 0 0 0 0 0 +410 1783752410803559500 DEPTH 48 1 0.75991339888454601 2 11 2 11 0 0 68 17 2584 23664836 81600 849.06246948242188 5.8515000000000006 1015.2563 120960 64745 1 0 5898240 4423680 4423680 4426435 4492800 275 150 228 286 1645 0 0 0 0 17 0 0 0 0 0 +411 1783752412076038900 DEPTH 13 1 0.83341805377387812 1 6 1 6 0 0 157 24 2502 23664828 81600 843.54725646972656 5.8403 1240.5337999999999 120960 48762 1 0 5898240 4423680 4423680 4426427 4492800 175 156 156 164 1851 0 0 0 0 24 0 0 0 0 0 +412 1783752413150047100 DEPTH 8 1 0.83099513589901519 2 5 2 5 0 0 200 39 2524 23664842 81600 856.248046875 5.8366000000000007 1046.1405 120960 48116 1 0 5898240 4423680 4423680 4426441 4492800 350 154 150 231 1639 3 0 0 0 36 0 0 0 0 0 +413 1783752414449175900 DEPTH 56 1 0.8250251794012059 2 5 2 5 0 0 153 40 2555 23664850 81600 842.46604919433594 5.8519000000000005 1273.5979 120960 47084 1 0 5898240 4423680 4423680 4426450 4492800 258 156 151 205 1785 0 0 0 0 40 0 0 0 0 0 +414 1783752415748012500 DEPTH 54 1 0.77724146327194077 1 8 1 8 1 0 100 35 2555 23664832 81600 851.44744873046875 5.8596000000000004 1269.2445 120960 59949 1 0 5898240 4423680 4423680 4426432 4492800 212 150 181 239 1773 0 0 1 0 34 0 0 0 0 1 +415 1783752417037708600 DEPTH 44 1 0.77268417007876722 2 7 2 7 0 0 112 32 2574 23664814 81600 853.95942687988281 5.8460000000000001 1288.4655 120960 58368 1 0 5898240 4423680 4423680 4426414 4492800 151 150 163 156 1954 0 0 0 0 32 0 0 0 0 0 +416 1783752418328870100 DEPTH 21 1 0.75981811033352953 0 10 0 10 1 0 154 60 2543 23664846 81600 856.59831237792969 5.8445999999999998 1247.5093999999999 120960 59673 1 0 5898240 4423680 4423680 4426444 4492800 164 150 156 164 1909 0 0 0 0 60 0 0 0 0 1 +417 1783752419358338100 DEPTH 34 1 0.75880218258756615 1 13 1 13 1 0 92 14 2592 23664830 81600 846.7984619140625 5.8411999999999988 1011.7793 120960 70615 1 0 5898240 4423680 4423680 4426430 4492800 151 150 150 158 1983 0 0 0 1 13 0 0 0 0 1 +418 1783752420628691600 DEPTH 41 1 0.75777671291893678 1 10 1 10 0 0 94 32 2561 23664863 81600 849.90771484375 5.8493999999999993 1219.664 120960 70305 1 0 5898240 4423680 4423680 4426460 4492800 159 156 162 156 1928 0 0 0 0 32 0 0 0 0 0 +419 1783752421644792200 DEPTH 6 1 0.82758739287056804 3 12 3 12 1 0 97 79 2545 23664952 81600 846.32945251464844 5.8517000000000001 1014.994 120960 56964 1 0 5898240 4423680 4423680 4426552 4492800 150 150 157 211 1877 1 0 1 0 77 0 0 0 0 2 +420 1783752422956580500 DEPTH 17 1 0.79056830977643899 0 7 0 7 1 0 147 33 2536 23664875 81600 840.4722900390625 5.8710000000000004 1283.4847 120960 38760 1 0 5898240 4423680 4423680 4426474 4492800 198 156 150 238 1794 0 0 0 0 33 0 0 0 0 1 +421 1783752424208082000 DEPTH 45 1 0.77674849360347964 2 7 2 7 0 0 111 34 2552 23664861 81600 856.70130920410156 5.8466999999999993 1198.1376 120960 56726 1 0 5898240 4423680 4423680 4426460 4492800 162 150 162 162 1916 0 0 0 0 34 0 0 0 0 0 +422 1783752425450792500 DEPTH 13 1 0.79051184374474703 1 6 1 6 0 0 158 28 2500 23664897 81600 841.9451904296875 5.8841999999999999 1241.6042 120960 39701 1 0 5898240 4423680 4423680 4426497 4492800 179 156 157 171 1837 0 0 0 0 28 0 0 0 0 0 +423 1783752426710600700 DEPTH 1 1 0.7996450179544724 1 7 1 7 0 0 111 20 2565 23664785 81600 848.31072998046875 5.8444000000000003 1249.9676999999999 120960 46838 1 0 5898240 4423680 4423680 4426384 4492800 177 156 169 192 1871 0 0 0 0 20 0 0 0 0 0 +424 1783752427760297700 DEPTH 49 1 0.75768981926894874 3 10 3 10 1 0 120 51 2577 23664850 81600 854.12117004394531 5.8728999999999996 1024.4609 120960 69133 1 0 5898240 4423680 4423680 4426448 4492800 156 150 156 159 1956 0 0 0 0 51 0 0 0 0 2 +425 1783752429014663900 DEPTH 14 1 0.75772220293393133 0 12 0 12 0 0 99 32 2567 23664953 81600 856.59085083007812 5.8405000000000005 1233.7723000000001 120960 69995 1 0 5898240 4423680 4423680 4426552 4492800 156 152 156 159 1944 1 0 0 0 31 0 0 0 0 0 +426 1783752430079213400 DEPTH 43 1 0.7577608832291195 2 13 2 13 1 0 100 68 2527 23664840 81600 855.684814453125 5.8411999999999997 1025.0535 120960 70663 1 0 5898240 4423680 4423680 4426437 4492800 156 156 150 177 1888 0 0 2 0 66 0 0 0 0 1 +427 1783752430279279000 REFRESH 9 0 0.81599834511446268 2 6 2 6 0 0 105 5 422 3943916 55200 150.09587097167969 0.97529999999999994 198.96279999999999 20160 12555 0 0 983040 737280 737280 737516 748800 66 25 58 51 222 0 0 0 0 5 0 0 0 0 0 +428 1783752430481598300 REFRESH 20 0 0.75117145307064581 3 12 3 12 0 0 84 18 421 3943888 55200 149.62687683105469 0.98050000000000004 177.89009999999999 20160 14809 0 0 983040 737280 737280 737488 748800 29 26 31 32 303 1 0 0 0 17 0 0 0 0 0 +429 1783752430673559700 REFRESH 38 0 0.74946140528934224 4 14 4 14 0 0 76 6 414 3943893 55200 148.40115356445312 0.97850000000000004 176.69280000000001 20160 14550 0 0 983040 737280 737280 737493 748800 33 26 32 31 292 0 0 0 0 6 0 0 0 0 0 +430 1783752430851722800 REFRESH 0 0 0.74956092053630585 1 12 1 12 0 0 74 11 425 3943917 55200 149.05343627929688 0.97670000000000001 177.04810000000001 20160 14522 0 0 983040 737280 737280 737517 748800 32 25 33 33 302 0 0 0 1 10 0 0 0 0 0 +431 1783752431037935900 REFRESH 45 0 0.62136875227201049 2 7 2 7 0 0 111 6 416 3943932 55200 150.62322998046875 0.9819 185.01400000000001 20160 11936 0 0 983040 737280 737280 737532 748800 73 25 32 37 249 0 0 0 0 6 0 0 0 0 0 +432 1783752431241902400 REFRESH 42 0 0.75170295384161456 4 12 4 12 0 0 109 6 417 3943932 55200 149.8419189453125 0.97089999999999999 179.08879999999999 20160 12013 0 0 983040 737280 737280 737531 748800 114 25 29 54 195 0 0 0 0 6 0 0 0 0 0 +433 1783752431434531000 REFRESH 26 0 0.75100211678656092 1 13 1 13 1 0 65 11 420 3943920 55200 149.09030151367188 0.98099999999999998 176.56659999999999 20160 14628 0 0 983040 737280 737280 737520 748800 26 25 26 30 313 0 0 0 0 11 0 0 0 0 1 +434 1783752431624425800 REFRESH 21 0 0.68409012037696337 0 10 0 10 1 0 154 12 414 3943890 55200 150.36006164550781 0.99829999999999997 188.78620000000001 20160 12459 0 0 983040 737280 737280 737489 748800 38 26 33 50 267 0 0 0 0 12 0 0 0 0 1 +435 1783752431829248500 REFRESH 25 0 0.75332200211857636 3 11 3 11 1 0 88 12 419 3943893 55200 150.63577270507812 0.97570000000000001 179.8946 20160 14699 0 0 983040 737280 737280 737493 748800 27 25 37 39 291 0 0 0 0 12 0 0 0 0 1 +436 1783752432023025100 REFRESH 13 0 0.81771881505904342 1 6 1 6 0 0 158 4 415 3943921 55200 150.466552734375 0.97719999999999996 192.60599999999999 20160 12117 0 0 983040 737280 737280 737520 748800 165 26 47 58 119 0 0 0 0 4 0 0 0 0 0 +437 1783752432202925300 REFRESH 43 0 0.60828768250529353 2 13 2 13 0 0 100 14 412 3943890 55200 149.81837463378906 0.96799999999999997 178.68799999999999 20160 13643 0 0 983040 737280 737280 737490 748800 36 26 31 49 270 0 0 0 0 14 0 0 0 0 0 +438 1783752432382365200 REFRESH 39 0 0.75293273726780341 2 12 2 12 0 0 134 12 402 3943924 55200 149.30841064453125 0.97409999999999997 178.2595 20160 13674 0 0 983040 737280 737280 737524 748800 29 26 29 30 288 0 0 0 0 12 0 0 0 0 0 +439 1783752432603712300 REFRESH 40 0 0.77537711364131012 3 11 3 11 0 0 101 13 417 3943902 55200 150.29350280761719 0.97729999999999995 178.47900000000001 20160 12428 0 0 983040 737280 737280 737501 748800 119 25 31 107 135 0 0 0 0 13 0 0 0 0 0 +440 1783752432797606300 REFRESH 47 0 0.75445283440332445 2 11 2 11 0 0 103 11 421 3943940 55200 150.41127014160156 0.97370000000000001 178.56229999999999 20160 13682 0 0 983040 737280 737280 737539 748800 48 26 38 38 271 0 0 0 0 11 0 0 0 0 0 +441 1783752432978295900 REFRESH 35 0 0.7509383439002737 2 11 2 11 0 0 120 10 420 3943920 55200 150.403076171875 0.97330000000000005 179.44499999999999 20160 14402 0 0 983040 737280 737280 737519 748800 30 25 28 74 263 0 0 0 0 10 0 0 0 0 0 +442 1783752433195736500 REFRESH 56 0 0.93241901604555855 2 5 2 5 0 0 153 3 419 3943935 55200 150.18598937988281 0.9768 216.21010000000001 20160 12241 0 0 983040 737280 737280 737535 748800 151 26 39 44 159 0 0 0 0 3 0 0 0 0 0 +443 1783752433398347900 REFRESH 55 0 0.75277108359757716 1 15 1 15 0 0 116 14 413 3943896 55200 149.35142517089844 0.9738 177.74979999999999 20160 14551 0 0 983040 737280 737280 737496 748800 27 26 28 38 294 0 0 0 0 14 0 0 0 0 0 +444 1783752433608442400 REFRESH 44 0 0.76826288366479367 2 7 2 7 0 0 112 5 418 3943902 55200 150.07026672363281 0.97650000000000003 208.88380000000001 20160 12404 0 0 983040 737280 737280 737502 748800 39 26 47 29 277 0 0 0 0 5 0 0 0 0 0 +445 1783752433823009200 REFRESH 53 0 0.81771557472247758 0 8 0 8 0 0 116 6 417 3943919 55200 150.09893798828125 0.999 185.422 20160 12007 0 0 983040 737280 737280 737518 748800 89 26 27 47 228 0 0 0 0 6 0 0 0 0 0 +446 1783752434015302700 REFRESH 51 0 0.75391168975834411 3 12 3 12 0 0 86 3 414 3943882 55200 148.72268676757812 0.97370000000000001 177.32060000000001 20160 14552 0 0 983040 737280 737280 737482 748800 30 26 97 84 177 0 0 0 0 3 0 0 0 0 0 +447 1783752434239941000 REFRESH 17 0 0.92781680344472783 0 7 0 7 0 0 147 4 415 3943916 55200 150.02931213378906 0.97740000000000005 223.57259999999999 20160 12533 0 0 983040 737280 737280 737515 748800 129 26 31 86 143 0 0 0 0 4 0 0 0 0 0 +448 1783752434423241900 REFRESH 33 0 0.81643562737000386 1 7 1 7 0 0 160 5 419 3943890 55200 150.21846008300781 0.97370000000000001 182.09780000000001 20160 11973 0 0 983040 737280 737280 737490 748800 54 26 30 33 276 0 0 0 0 5 0 0 0 0 0 +449 1783752434627425400 REFRESH 46 0 0.75242441196664711 2 15 2 15 0 0 90 16 414 3943896 55200 150.35289001464844 0.99550000000000005 179.18100000000001 20160 14484 0 0 983040 737280 737280 737496 748800 28 26 31 29 300 0 0 0 0 16 0 0 0 0 0 +450 1783752434820091300 REFRESH 58 0 0.75860358298794595 2 13 2 13 0 0 103 8 413 3943912 55200 149.496826171875 0.97850000000000004 177.09450000000001 20160 14519 0 0 983040 737280 737280 737512 748800 29 26 35 43 280 0 0 0 0 8 0 0 0 0 0 +451 1783752435024796800 REFRESH 23 0 0.74604242794179287 3 14 3 14 0 0 88 18 417 3943913 55200 149.83372497558594 0.97189999999999999 178.97370000000001 20160 14704 0 0 983040 737280 737280 737513 748800 27 25 31 30 304 1 0 1 0 16 0 0 0 0 0 +452 1783752435218213500 REFRESH 7 0 0.75529297615803659 2 12 2 12 0 0 93 13 416 3943899 55200 149.65350341796875 0.97499999999999998 178.21520000000001 20160 14860 0 0 983040 737280 737280 737498 748800 27 26 25 26 312 0 0 0 1 12 0 0 0 0 0 +453 1783752435407859500 REFRESH 5 0 0.75496521073150624 2 11 2 11 0 0 87 9 411 3943912 55200 147.86061096191406 0.97089999999999999 175.21950000000001 20160 14738 0 0 983040 737280 737280 737512 748800 27 26 30 33 295 0 0 0 0 9 0 0 0 0 0 +454 1783752435628892800 REFRESH 54 0 0.77268408743859374 1 8 1 8 1 0 101 7 423 3943877 55200 149.53584289550781 0.99850000000000005 219.84549999999999 20160 12920 0 0 983040 737280 737280 737477 748800 124 26 57 114 102 0 0 0 0 7 0 0 0 0 1 +455 1783752435833069200 REFRESH 2 0 0.75629812457106815 2 12 2 12 0 0 96 10 422 3943895 55200 150.23820495605469 0.97909999999999997 179.26150000000001 20160 14832 0 0 983040 737280 737280 737495 748800 27 26 32 27 310 0 0 0 0 10 0 0 0 0 0 +456 1783752436029005400 REFRESH 28 0 0.75143742480232578 2 13 2 13 0 0 109 10 403 3943914 55200 150.71743774414062 0.97770000000000001 180.6285 20160 14747 0 0 983040 737280 737280 737513 748800 31 26 28 27 291 0 0 0 0 10 0 0 0 0 0 +457 1783752436249368300 REFRESH 19 0 0.75636801723750058 3 11 3 11 0 0 102 11 421 3943931 55200 150.73484802246094 0.97550000000000003 178.75470000000001 20160 14683 0 0 983040 737280 737280 737530 748800 31 25 26 30 309 0 0 0 0 11 0 0 0 0 0 +458 1783752436446283000 REFRESH 31 0 0.82054725366381887 2 6 2 6 0 0 104 9 417 3943909 55200 148.81280517578125 0.97170000000000001 195.7801 20160 12532 0 0 983040 737280 737280 737509 748800 114 25 28 55 195 0 0 0 0 9 0 0 0 0 0 +459 1783752436629783600 REFRESH 50 0 0.75540932374477299 2 9 2 9 0 0 108 10 418 3943885 55200 149.2305908203125 0.98460000000000003 182.23050000000001 20160 11984 0 0 983040 737280 737280 737485 748800 85 26 39 52 216 0 0 0 1 9 0 0 0 0 0 +460 1783752436811515400 REFRESH 36 0 0.75258236529369005 3 10 3 10 0 0 91 13 417 3943907 55200 150.08627319335938 0.98270000000000002 180.44970000000001 20160 14597 0 0 983040 737280 737280 737507 748800 40 26 35 44 272 0 0 0 0 13 0 0 0 0 0 +461 1783752437007939900 REFRESH 22 0 0.7523406442219186 3 12 3 12 0 0 102 18 416 3943873 55200 149.98220825195312 0.97989999999999999 181.1037 20160 14856 0 0 983040 737280 737280 737473 748800 31 26 27 28 304 0 0 0 0 18 0 0 0 0 0 +462 1783752437216256200 REFRESH 27 0 0.75384203241066439 0 14 0 14 0 0 92 12 423 3943894 55200 150.41331481933594 0.97709999999999997 179.0162 20160 14757 0 0 983040 737280 737280 737494 748800 26 26 25 27 319 1 0 0 0 11 0 0 0 0 0 +463 1783752437411324500 REFRESH 1 0 0.81558923825902929 1 7 1 7 1 0 111 5 416 3943900 55200 150.52595520019531 0.97550000000000003 193.9752 20160 12199 0 0 983040 737280 737280 737500 748800 100 26 58 46 186 0 0 0 0 5 0 0 0 0 1 +464 1783752437598146000 REFRESH 14 0 0.75083477477981231 0 12 0 12 0 0 99 12 416 3943896 55200 150.81881713867188 0.99809999999999999 185.66229999999999 20160 13595 0 0 983040 737280 737280 737496 748800 30 26 27 30 303 0 0 0 0 12 0 0 0 0 0 +465 1783752437782349400 REFRESH 16 0 0.80842086495152676 2 7 2 7 0 0 151 7 414 3943919 55200 150.72636413574219 0.97209999999999996 183.07660000000001 20160 11945 0 0 983040 737280 737280 737519 748800 27 26 26 201 134 0 0 0 1 6 0 0 0 0 0 +466 1783752437970339200 REFRESH 41 0 0.75216934014022185 1 10 1 10 0 0 94 3 407 3943910 55200 149.00825500488281 0.97570000000000001 186.80449999999999 20160 13585 0 0 983040 737280 737280 737510 748800 37 26 35 31 278 0 0 0 0 3 0 0 0 0 0 +467 1783752438172846600 REFRESH 57 0 0.75535861154321859 2 13 2 13 0 0 94 12 406 3943902 55200 150.0211181640625 0.98229999999999995 178.3835 20160 14459 0 0 983040 737280 737280 737502 748800 27 26 69 57 227 0 0 0 0 12 0 0 0 0 0 +468 1783752438414741300 REFRESH 52 0 0.76735621568813028 1 8 1 8 0 0 92 5 424 3943901 55200 148.87936401367188 0.98560000000000003 219.72370000000001 20160 12313 0 0 983040 737280 737280 737501 748800 62 25 31 168 138 0 0 0 0 5 0 0 0 0 0 +469 1783752438605845100 REFRESH 32 0 0.75588245863973369 2 14 2 14 1 0 107 16 416 3943917 55200 149.02989196777344 0.98009999999999997 177.02610000000001 20160 14569 0 0 983040 737280 737280 737516 748800 68 25 34 31 258 1 0 0 0 15 0 0 0 0 1 +470 1783752438785187100 REFRESH 48 0 0.75220794834501237 2 11 2 11 0 0 68 1 422 3943915 55200 149.16096496582031 1.0062 178.03739999999999 20160 14066 0 0 983040 737280 737280 737515 748800 110 25 46 44 197 0 0 0 0 1 0 0 0 0 0 +471 1783752438989464200 REFRESH 12 0 0.75547194743845736 3 8 3 8 0 0 133 4 412 3943927 55200 149.20799255371094 0.9869 180.65119999999999 20160 13470 0 0 983040 737280 737280 737527 748800 40 26 37 85 224 0 0 0 0 4 0 0 0 0 0 +472 1783752439169520200 REFRESH 49 0 0.7504569577727308 3 10 3 10 0 0 120 9 405 3943907 55200 149.59513854980469 0.98319999999999996 178.90270000000001 20160 12488 0 0 983040 737280 737280 737507 748800 29 26 57 41 252 0 0 0 0 9 0 0 0 0 0 +473 1783752439371601000 REFRESH 3 0 0.75301903826217842 2 11 2 11 0 0 110 9 417 3943907 55200 148.80152893066406 0.98380000000000001 177.69929999999999 20160 14499 0 0 983040 737280 737280 737507 748800 52 25 38 52 250 0 0 0 0 9 0 0 0 0 0 +474 1783752439596280400 REFRESH 11 0 0.81631739316451191 0 8 0 8 0 0 92 4 424 3943938 55200 150.08050537109375 0.97260000000000002 223.5789 20160 12397 0 0 983040 737280 737280 737537 748800 139 25 63 75 122 0 0 0 1 3 0 0 0 0 0 +475 1783752439834230500 REFRESH 10 0 0.75932361331124276 1 11 1 11 0 0 101 8 422 3943894 55200 148.66227722167969 0.9788 177.6319 20160 14591 0 0 983040 737280 737280 737494 748800 45 26 51 35 265 0 0 0 0 8 0 0 0 0 0 +476 1783752440024521100 REFRESH 4 0 0.74876968202168137 1 13 1 13 0 0 44 5 427 3943912 55200 148.1922607421875 0.9718 175.70660000000001 20160 14790 0 0 983040 737280 737280 737512 748800 25 25 30 28 319 2 0 0 0 3 0 0 0 0 0 +477 1783752440208261500 REFRESH 8 0 0.92938066686292276 2 5 2 5 0 0 200 8 417 3943916 55200 151.44345092773438 0.98080000000000001 182.58680000000001 20160 12231 0 0 983040 737280 737280 737515 748800 132 26 96 53 110 0 0 0 0 8 0 0 0 0 0 +478 1783752440411189400 REFRESH 29 0 0.75619212083780318 2 12 2 12 0 0 95 12 417 3943916 55200 150.00755310058594 0.9798 178.87289999999999 20160 14788 0 0 983040 737280 737280 737516 748800 27 25 32 28 305 0 0 1 0 11 0 0 0 0 0 +479 1783752440605039200 REFRESH 30 0 0.75712813247406285 2 12 2 12 0 0 93 10 408 3943925 55200 149.37702941894531 0.97750000000000004 178.8852 20160 14704 0 0 983040 737280 737280 737524 748800 28 25 32 31 292 0 0 0 0 10 0 0 0 0 0 +480 1783752440816554400 REFRESH 6 0 0.84851302677502294 3 12 3 12 1 0 97 14 413 3943931 55200 149.11692810058594 0.97360000000000002 178.14320000000001 20160 11909 0 0 983040 737280 737280 737531 748800 43 25 87 47 211 1 0 2 1 10 0 0 0 0 1 +481 1783752441011084700 REFRESH 24 0 0.74951746941838859 4 11 4 11 0 0 120 11 415 3943901 55200 149.83885192871094 0.97509999999999997 179.55520000000001 20160 14798 0 0 983040 737280 737280 737501 748800 27 26 28 31 303 0 0 0 0 11 0 0 0 0 0 +482 1783752441206161800 REFRESH 18 0 0.74282025466100965 4 15 4 15 0 0 83 14 422 3943895 55200 150.77786254882812 0.97960000000000003 179.7294 20160 14685 0 0 983040 737280 737280 737494 748800 29 25 25 30 313 0 0 0 0 14 0 0 0 0 0 +483 1783752441398335300 REFRESH 37 0 0.75761981787364241 1 12 1 12 0 0 117 12 415 3943908 55200 148.748291015625 0.97360000000000002 176.86439999999999 20160 13719 0 0 983040 737280 737280 737508 748800 33 26 39 30 287 0 0 0 0 12 0 0 0 0 0 +484 1783752441591957000 REFRESH 15 0 0.74880913477652622 3 12 3 12 0 0 73 14 419 3943913 55200 150.18496704101562 0.96930000000000005 179.05629999999999 20160 14795 0 0 983040 737280 737280 737513 748800 27 26 25 25 316 0 0 0 0 14 0 0 0 0 0 +485 1783752441767601300 REFRESH 34 0 0.7515289668029842 1 13 1 13 1 0 92 13 423 3943907 55200 147.84819030761719 0.97860000000000003 174.49180000000001 20160 13712 0 0 983040 737280 737280 737506 748800 36 25 38 39 285 0 0 0 1 12 0 0 0 0 1 +486 1783752443081365500 DEPTH 56 1 0.92318321910055534 2 5 2 5 0 0 156 41 2553 23664837 81600 852.89700317382812 5.8430999999999997 1285.3169 120960 58325 1 0 5898240 4423680 4423680 4426437 4492800 288 156 151 206 1752 0 0 0 0 41 0 0 0 0 0 +487 1783752444364188700 DEPTH 13 1 0.91982708699409654 1 6 1 6 0 0 158 27 2503 23664873 81600 856.19273376464844 5.8704999999999998 1257.088 120960 58796 1 0 5898240 4423680 4423680 4426472 4492800 182 155 160 170 1836 0 0 0 0 27 0 0 0 0 0 +488 1783752445684415600 DEPTH 17 1 0.91941767816564535 0 7 0 7 1 0 150 47 2547 23664899 81600 851.76278686523438 5.8492999999999995 1295.8802000000001 120960 59297 1 0 5898240 4423680 4423680 4426499 4492800 184 156 150 203 1854 0 0 0 0 47 0 0 0 0 1 +489 1783752446956194200 DEPTH 31 1 0.81491673958713762 2 6 2 6 0 0 106 26 2566 23664942 81600 851.12712097167969 5.8368000000000002 1246.7509 120960 59851 1 0 5898240 4423680 4423680 4426541 4492800 264 150 156 213 1783 0 1 0 2 23 0 0 0 0 0 +490 1783752448189656300 DEPTH 53 1 0.80972608433739379 0 8 0 8 0 0 118 58 2505 23664872 81600 853.69007873535156 5.8519999999999994 1232.2438999999999 120960 56115 1 0 5898240 4423680 4423680 4426472 4492800 162 156 150 156 1881 0 0 0 0 58 0 0 0 0 0 +491 1783752449315195500 DEPTH 33 1 0.80780418513818841 1 7 1 7 0 0 163 48 2520 23664837 81600 862.32391357421875 5.8750999999999998 1094.8485000000001 120960 56968 1 0 5898240 4423680 4423680 4426437 4492800 183 156 156 160 1865 0 1 0 0 47 0 0 0 0 0 +492 1783752450643363200 DEPTH 9 1 0.80770083224888745 2 6 2 6 0 0 107 13 2606 23664913 81600 857.76554870605469 5.8576999999999995 1288.3409999999999 120960 60003 1 0 5898240 4423680 4423680 4426513 4492800 187 150 165 189 1915 0 0 0 0 13 0 0 0 0 0 +493 1783752451905288200 DEPTH 1 1 0.80709649565460362 1 7 1 7 0 0 111 26 2563 23664881 81600 854.97331237792969 5.8351000000000006 1260.8362 120960 58035 1 0 5898240 4423680 4423680 4426480 4492800 204 156 175 187 1841 0 0 0 0 26 0 0 0 0 0 +494 1783752452980989700 DEPTH 8 1 0.84458850169443511 2 5 2 5 1 0 201 43 2519 23664866 81600 865.65843200683594 5.8639999999999999 1050.5906 120960 59140 1 0 5898240 4423680 4423680 4426464 4492800 352 155 150 208 1654 2 0 0 0 41 0 0 0 0 1 +495 1783752454038522200 DEPTH 16 1 0.79698489109585235 2 7 2 7 0 0 152 49 2526 23664736 81600 859.57009887695312 6.1270999999999995 1056.3902 120960 56429 1 0 5898240 4423680 4423680 4426336 4492800 156 156 156 438 1620 0 0 0 2 47 0 0 0 0 0 +496 1783752455349875700 DEPTH 54 1 0.76540569569211014 1 8 1 8 1 0 102 23 2565 23664844 81600 850.95527648925781 5.8331 1268.0635 120960 60781 1 0 5898240 4423680 4423680 4426444 4492800 259 150 179 294 1683 0 1 0 0 22 0 0 0 0 1 +497 1783752456383781900 DEPTH 40 1 0.76471048525192253 3 11 3 11 0 0 102 38 2568 23664883 81600 856.02326965332031 5.8749000000000002 1032.7348999999999 120960 60335 1 0 5898240 4423680 4423680 4426481 4492800 165 150 158 173 1922 0 0 0 0 38 0 0 0 0 0 +498 1783752457581930100 DEPTH 45 1 0.76388369989497495 2 7 2 7 0 0 112 37 2561 23664869 81600 857.16961669921875 5.8543000000000003 1196.9667999999999 120960 56385 1 0 5898240 4423680 4423680 4426468 4492800 163 150 169 163 1916 0 2 0 0 35 0 0 0 0 0 +499 1783752458881911400 DEPTH 44 1 0.75976951251569858 2 7 2 7 0 0 113 28 2580 23664821 81600 854.90371704101562 5.8446999999999996 1285.6836000000001 120960 58460 1 0 5898240 4423680 4423680 4426420 4492800 150 150 166 156 1958 0 0 0 0 28 0 0 0 0 0 +500 1783752460203264700 DEPTH 52 1 0.75835589001122572 1 8 1 8 0 0 92 23 2580 23664875 81600 849.10762023925781 5.8464999999999998 1270.5399 120960 57837 1 0 5898240 4423680 4423680 4426475 4492800 183 150 152 576 1519 0 0 0 0 23 0 0 0 0 0 +501 1783752461492062100 DEPTH 11 1 0.80602431393083962 0 8 0 8 0 0 93 16 2589 23664896 81600 847.20387268066406 5.8759999999999994 1287.7396000000001 120960 58824 1 0 5898240 4423680 4423680 4426495 4492800 389 150 247 282 1521 0 0 0 0 16 0 0 0 0 0 +502 1783752462802061500 DEPTH 56 1 0.83100162053027005 2 5 2 5 0 0 156 33 2547 23664792 81600 845.25440979003906 5.8487999999999989 1278.4132 120960 47053 1 0 5898240 4423680 4423680 4426391 4492800 281 156 151 225 1734 0 0 0 0 33 0 0 0 0 0 +503 1783752464066102200 DEPTH 13 1 0.82771587966583582 1 6 1 6 0 0 158 28 2503 23664894 81600 842.91072082519531 5.8567999999999998 1245.8833999999999 120960 48292 1 0 5898240 4423680 4423680 4426492 4492800 192 155 161 186 1809 0 0 0 0 28 0 0 0 0 0 +504 1783752465357477500 DEPTH 17 1 0.82708701485858571 0 7 0 7 1 0 153 40 2536 23664870 81600 844.75898742675781 5.8688000000000002 1290.1922999999999 120960 48457 1 0 5898240 4423680 4423680 4426465 4492800 189 156 150 203 1838 0 0 0 0 40 0 0 0 0 1 +505 1783752466406407900 DEPTH 6 1 0.8300460207773469 3 12 3 12 1 0 99 73 2536 23664780 81600 855.01025390625 5.8994 1023.8531 120960 59076 1 0 5898240 4423680 4423680 4426379 4492800 150 150 162 223 1851 0 0 0 1 72 0 0 0 0 2 +506 1783752467458591400 DEPTH 8 1 0.79192376438705081 2 5 2 5 0 0 201 45 2532 23664779 81600 855.8568115234375 5.8574000000000002 1050.9929 120960 48047 1 0 5898240 4423680 4423680 4426379 4492800 326 154 151 212 1689 1 0 0 0 44 0 0 0 0 0 +507 1783752468747872300 DEPTH 21 1 0.7502818270361592 0 10 0 10 0 0 154 40 2556 23664925 81600 857.80912780761719 5.851 1255.1396 120960 58908 1 0 5898240 4423680 4423680 4426524 4492800 175 150 155 166 1910 0 0 0 0 40 0 0 0 0 0 +508 1783752469829283100 DEPTH 10 1 0.75013233300491233 1 11 1 11 0 0 104 30 2566 23664802 81600 849.94854736328125 5.8898000000000001 1029.3641 120960 70533 1 0 5898240 4423680 4423680 4426402 4492800 152 156 158 157 1943 0 0 0 0 30 0 0 0 0 0 +509 1783752470963216900 DEPTH 50 1 0.74982251235652098 2 9 2 9 0 0 111 63 2552 23664822 81600 853.81939697265625 5.8602000000000007 1085.8064999999999 120960 59811 1 0 5898240 4423680 4423680 4426420 4492800 161 150 158 180 1903 0 0 0 4 59 0 0 0 0 0 +510 1783752472205998100 DEPTH 31 1 0.77035312278632262 2 6 2 6 0 0 108 27 2575 23664862 81600 842.77340698242188 5.8345000000000002 1241.6385 120960 48733 1 0 5898240 4423680 4423680 4426462 4492800 336 150 156 224 1709 0 0 0 1 26 0 0 0 0 0 +511 1783752473466524900 DEPTH 53 1 0.76568296809823932 0 8 0 8 0 0 118 43 2503 23664801 81600 846.72593688964844 6.3171000000000008 1229.0802000000001 120960 45565 1 0 5898240 4423680 4423680 4426400 4492800 162 156 150 161 1874 0 0 0 0 43 0 0 0 0 0 +512 1783752474524378700 DEPTH 37 1 0.74977090765979759 1 12 1 12 0 0 119 37 2609 23664838 81600 852.681640625 5.9237000000000002 1023.8869999999999 120960 67800 1 0 5898240 4423680 4423680 4426438 4492800 150 156 150 158 1995 0 0 0 0 37 0 0 0 0 0 +513 1783752475568091400 DEPTH 30 1 0.74895037229151129 2 12 2 12 1 0 96 77 2531 23664918 81600 854.41403198242188 5.8922999999999996 1026.4347 120960 68951 1 0 5898240 4423680 4423680 4426515 4492800 152 150 151 160 1918 0 0 0 1 76 0 0 0 0 2 +514 1783752476629093100 DEPTH 19 1 0.74898013825824195 3 11 2 11 1 0 103 50 2555 23664803 81600 862.72627258300781 5.8511000000000006 1032.4363000000001 120960 69222 1 0 5898240 4423680 4423680 4426401 4492800 152 150 150 161 1942 1 0 0 0 49 0 0 0 0 3 +515 1783752477711140900 DEPTH 2 1 0.74901164014809674 2 12 2 12 0 0 96 52 2562 23664825 81600 863.06095886230469 5.8774999999999995 1039.0911000000001 120960 69890 1 0 5898240 4423680 4423680 4426416 4492800 160 156 155 156 1935 2 0 1 0 49 0 0 0 0 0 +516 1783752478758738700 DEPTH 58 1 0.74885926242715861 2 13 2 13 1 0 105 40 2592 23664817 81600 855.41963195800781 5.8675999999999995 1022.2578999999999 120960 70635 1 0 5898240 4423680 4423680 4426416 4492800 150 156 151 156 1979 1 0 1 0 38 0 0 0 0 3 +517 1783752480074583500 DEPTH 56 1 0.81877341055383901 2 5 2 5 0 0 157 39 2561 23664846 81600 839.09461975097656 5.8450000000000006 1273.4871000000001 120960 36610 1 0 5898240 4423680 4423680 4426444 4492800 280 156 150 235 1740 0 1 0 0 38 0 0 0 0 0 +518 1783752480266375400 REFRESH 38 0 0.73853439177967806 4 14 4 14 0 0 76 15 418 3943912 55200 148.74214172363281 0.97270000000000001 176.45529999999999 20160 14428 0 0 983040 737280 737280 737512 748800 35 26 35 32 290 0 0 0 0 15 0 0 0 0 0 +519 1783752480459408700 REFRESH 32 0 0.74757595662170806 2 14 2 14 1 0 107 15 417 3943924 55200 149.23674011230469 0.97929999999999995 177.57929999999999 20160 14485 0 0 983040 737280 737280 737524 748800 74 25 31 31 256 0 0 0 0 15 0 0 0 0 1 +520 1783752480699409700 REFRESH 52 0 0.70471375106779122 1 8 1 8 0 0 92 5 421 3943895 55200 149.36166381835938 0.97489999999999999 219.61279999999999 20160 12104 0 0 983040 737280 737280 737495 748800 77 25 29 156 134 0 0 0 0 5 0 0 0 0 0 +521 1783752480896474200 REFRESH 1 0 0.80349596550259017 1 7 1 7 0 0 111 5 417 3943937 55200 149.55007934570312 0.97529999999999994 195.95230000000001 20160 12003 0 0 983040 737280 737280 737537 748800 106 26 52 43 190 0 0 0 0 5 0 0 0 0 0 +522 1783752481099171000 REFRESH 36 0 0.74622532075393111 3 10 3 10 0 0 92 17 420 3943918 55200 150.41804504394531 0.97789999999999999 178.9563 20160 14385 0 0 983040 737280 737280 737517 748800 43 26 34 44 273 1 0 0 0 16 0 0 0 0 0 +523 1783752481277953000 REFRESH 30 0 0.59101247050177497 2 12 2 12 0 0 96 11 405 3943909 55200 148.88447570800781 0.97709999999999997 177.58330000000001 20160 14478 0 0 983040 737280 737280 737509 748800 32 25 51 33 264 0 0 0 0 11 0 0 0 0 0 +524 1783752481460464600 REFRESH 16 0 0.7894228791570328 2 7 2 7 0 0 152 7 416 3943912 55200 150.42140197753906 0.97350000000000003 181.39769999999999 20160 12020 0 0 983040 737280 737280 737512 748800 27 26 26 180 157 0 0 0 0 7 0 0 0 0 0 +525 1783752481686116900 REFRESH 17 0 0.87487067929472184 0 7 0 7 0 0 153 8 411 3943942 55200 150.07321166992188 0.97350000000000003 223.75030000000001 20160 12615 0 0 983040 737280 737280 737541 748800 137 26 32 96 120 0 0 0 0 8 0 0 0 0 0 +526 1783752481886370700 REFRESH 9 0 0.80418800541221203 2 6 2 6 0 0 108 7 419 3943901 55200 150.04672241210938 0.97299999999999998 199.13 20160 12253 0 0 983040 737280 737280 737501 748800 79 25 62 58 195 0 0 0 0 7 0 0 0 0 0 +527 1783752482078106900 REFRESH 12 0 0.74423887628965768 3 8 3 8 0 0 134 16 413 3943915 55200 149.83987426757812 0.97889999999999999 179.08629999999999 20160 13347 0 0 983040 737280 737280 737515 748800 43 26 40 87 217 0 0 0 0 16 0 0 0 0 0 +528 1783752482266430900 REFRESH 0 0 0.74460777188087568 1 12 1 12 0 0 74 11 422 3943920 55200 149.19679260253906 0.97170000000000001 176.4836 20160 14433 0 0 983040 737280 737280 737520 748800 35 25 36 40 286 0 0 2 0 9 0 0 0 0 0 +529 1783752482453357600 REFRESH 34 0 0.74420872626363277 1 13 1 13 0 0 92 11 419 3943916 55200 148.24345397949219 0.97699999999999998 175.4949 20160 13394 0 0 983040 737280 737280 737516 748800 37 25 43 51 263 0 0 0 0 11 0 0 0 0 0 +530 1783752482635737200 REFRESH 50 0 0.70382046394927877 2 9 2 9 0 0 111 4 417 3943907 55200 149.59001159667969 0.97740000000000005 181.1756 20160 13242 0 0 983040 737280 737280 737506 748800 104 26 39 55 193 0 0 0 0 4 0 0 0 0 0 +531 1783752482823343900 REFRESH 45 0 0.76001658438060138 2 7 2 7 0 0 112 7 417 3943915 55200 150.95773315429688 0.97889999999999999 186.4068 20160 12121 0 0 983040 737280 737280 737515 748800 91 25 33 37 231 0 0 0 0 7 0 0 0 0 0 +532 1783752483049024400 REFRESH 41 0 0.74055573914298956 1 10 1 10 0 0 94 8 413 3943919 55200 149.48249816894531 0.97899999999999998 189.803 20160 13203 0 0 983040 737280 737280 737518 748800 36 26 35 33 283 0 0 0 0 8 0 0 0 0 0 +533 1783752483227353000 REFRESH 10 0 0.74356468130654108 1 11 1 11 0 0 104 8 420 3943894 55200 148.06425476074219 0.97519999999999996 177.2302 20160 13326 0 0 983040 737280 737280 737494 748800 72 26 60 39 223 0 0 0 0 8 0 0 0 0 0 +534 1783752483407491600 REFRESH 43 0 0.74247088669112959 2 13 2 13 0 0 105 19 410 3943905 55200 150.12956237792969 0.97840000000000005 178.9725 20160 13375 0 0 983040 737280 737280 737505 748800 39 26 31 54 260 0 0 0 0 19 0 0 0 0 0 +535 1783752483608514900 REFRESH 25 0 0.74896496106708343 3 11 3 11 0 0 89 9 421 3943911 55200 150.90553283691406 0.97350000000000003 180.09870000000001 20160 14677 0 0 983040 737280 737280 737511 748800 27 25 37 46 286 0 0 0 0 9 0 0 0 0 0 +536 1783752483786703500 REFRESH 48 0 0.73618488984129238 2 11 2 11 0 0 68 4 422 3943902 55200 149.22956848144531 0.97860000000000003 176.9794 20160 13901 0 0 983040 737280 737280 737502 748800 141 25 51 54 151 0 0 0 0 4 0 0 0 0 0 +537 1783752483987751600 REFRESH 28 0 0.74487324509322361 2 13 2 13 0 0 110 13 406 3943905 55200 150.44502258300781 0.97599999999999998 179.87110000000001 20160 14739 0 0 983040 737280 737280 737505 748800 31 26 29 28 292 0 0 0 0 13 0 0 0 0 0 +538 1783752484167321600 REFRESH 49 0 0.74330016222115702 3 10 3 10 0 0 120 9 418 3943926 55200 149.79890441894531 0.97870000000000001 178.34049999999999 20160 12371 0 0 983040 737280 737280 737526 748800 29 26 54 40 269 0 0 0 0 9 0 0 0 0 0 +539 1783752484346606000 REFRESH 6 0 0.81369195658951343 3 12 3 12 1 0 102 15 407 3943911 55200 149.68730163574219 0.97060000000000002 178.1678 20160 11975 0 0 983040 737280 737280 737511 748800 43 25 94 48 197 2 0 1 0 12 0 0 0 0 1 +540 1783752484544762600 REFRESH 3 0 0.74576713831639907 2 11 2 11 0 0 111 11 417 3943903 55200 149.10531616210938 0.97729999999999995 176.9742 20160 14440 0 0 983040 737280 737280 737503 748800 53 25 39 50 250 0 0 0 0 11 0 0 0 0 0 +541 1783752484735002100 REFRESH 35 0 0.74589291030219851 2 11 2 11 0 0 120 13 417 3943926 55200 149.14866638183594 0.98019999999999996 178.1403 20160 14423 0 0 983040 737280 737280 737526 748800 32 25 28 76 256 0 0 0 1 12 0 0 0 0 0 +542 1783752484926161900 REFRESH 24 0 0.742523616219533 4 11 4 11 0 0 121 11 411 3943898 55200 150.54847717285156 0.97109999999999996 179.42840000000001 20160 14769 0 0 983040 737280 737280 737498 748800 27 26 28 29 301 0 0 0 0 11 0 0 0 0 0 +543 1783752485116217200 REFRESH 23 0 0.73975323673975346 3 14 3 14 0 0 89 15 418 3943905 55200 149.92076110839844 0.97670000000000001 178.41550000000001 20160 14684 0 0 983040 737280 737280 737505 748800 27 25 34 32 300 1 0 0 0 14 0 0 0 0 0 +544 1783752485309630100 REFRESH 51 0 0.74063081458572966 3 12 3 12 1 0 86 7 419 3943886 55200 148.98789978027344 0.97360000000000002 177.32390000000001 20160 14322 0 0 983040 737280 737280 737486 748800 31 26 106 95 161 0 0 0 0 7 0 0 0 0 1 +545 1783752485533644700 REFRESH 47 0 0.74920483626989121 2 11 2 11 1 0 104 11 420 3943929 55200 148.99302673339844 0.98240000000000005 177.45050000000001 20160 13476 0 0 983040 737280 737280 737528 748800 39 26 35 29 291 0 0 0 0 11 0 0 0 0 1 +546 1783752485728277100 REFRESH 18 0 0.73556197258435718 4 15 4 15 0 0 84 17 422 3943912 55200 150.15628051757812 0.97209999999999996 180.05799999999999 20160 14783 0 0 983040 737280 737280 737512 748800 29 25 25 31 312 0 0 0 0 17 0 0 0 0 0 +547 1783752485928236100 REFRESH 31 0 0.80637840202556921 2 6 2 6 0 0 108 9 420 3943900 55200 149.52243041992188 0.97860000000000003 198.81039999999999 20160 12219 0 0 983040 737280 737280 737499 748800 156 25 27 57 155 0 0 0 0 9 0 0 0 0 0 +548 1783752486121627400 REFRESH 46 0 0.74571265963183841 2 15 2 15 0 0 92 17 414 3943903 55200 149.7548828125 0.97719999999999996 178.87860000000001 20160 14273 0 0 983040 737280 737280 737503 748800 30 26 35 31 292 1 0 0 0 16 0 0 0 0 0 +549 1783752486299520200 REFRESH 58 0 0.74118820917054129 2 13 2 13 1 0 105 10 419 3943917 55200 149.06982421875 0.97840000000000005 176.69329999999999 20160 13304 0 0 983040 737280 737280 737517 748800 28 26 33 36 296 1 0 0 0 9 0 0 0 0 1 +550 1783752486487839900 REFRESH 53 0 0.80222360460576081 0 8 0 8 0 0 118 9 415 3943888 55200 150.50956726074219 0.97319999999999995 187.0975 20160 11968 0 0 983040 737280 737280 737488 748800 103 27 27 47 211 0 0 0 0 9 0 0 0 0 0 +551 1783752486670862800 REFRESH 8 0 0.91997822167932974 2 5 2 5 0 0 201 9 414 3943918 55200 151.4649658203125 0.97270000000000001 181.83879999999999 20160 12496 0 0 983040 737280 737280 737518 748800 109 26 45 50 184 1 0 0 0 8 0 0 0 0 0 +552 1783752486863736300 REFRESH 57 0 0.74851592354741203 2 13 2 13 0 0 94 8 415 3943935 55200 149.29910278320312 0.97889999999999999 178.0805 20160 14426 0 0 983040 737280 737280 737535 748800 27 26 67 48 247 0 0 0 0 8 0 0 0 0 0 +553 1783752487058388300 REFRESH 22 0 0.7460169337303908 3 12 3 12 0 0 104 13 414 3943904 55200 149.87469482421875 0.97599999999999998 179.4659 20160 14831 0 0 983040 737280 737280 737504 748800 29 26 27 26 306 0 0 1 0 12 0 0 0 0 0 +554 1783752487236989900 REFRESH 40 0 0.75481271396647054 3 11 3 11 0 0 102 8 419 3943926 55200 149.66886901855469 0.97299999999999998 177.45590000000001 20160 11916 0 0 983040 737280 737280 737526 748800 113 25 31 88 162 0 0 0 0 8 0 0 0 0 0 +555 1783752487431269800 REFRESH 29 0 0.74943396536565776 2 12 2 12 0 0 95 9 417 3943914 55200 150.58738708496094 0.99950000000000006 179.548 20160 14758 0 0 983040 737280 737280 737514 748800 28 25 33 29 302 0 0 1 0 8 0 0 0 0 0 +556 1783752487652308400 REFRESH 54 0 0.76205995376924585 1 8 1 8 0 0 104 7 424 3943945 55200 149.72518920898438 0.98180000000000001 219.83109999999999 20160 12660 0 0 983040 737280 737280 737545 748800 137 26 57 110 94 0 0 0 0 7 0 0 0 0 0 +557 1783752487856573400 REFRESH 39 0 0.7477139176050851 2 12 2 12 1 0 134 12 407 3943896 55200 149.68106079101562 0.97650000000000003 179.0762 20160 13408 0 0 983040 737280 737280 737496 748800 27 26 29 30 295 0 0 0 0 12 0 0 0 0 1 +558 1783752488047348800 REFRESH 4 0 0.73790546334995244 1 13 1 13 0 0 45 4 421 3943896 55200 148.77183532714844 0.98070000000000002 176.23240000000001 20160 14748 0 0 983040 737280 737280 737496 748800 27 25 34 32 303 1 0 0 0 3 0 0 0 0 0 +559 1783752488233161500 REFRESH 14 0 0.74618186227292449 0 12 0 12 0 0 99 13 414 3943921 55200 149.13023376464844 0.97299999999999998 184.73570000000001 20160 13393 0 0 983040 737280 737280 737521 748800 28 26 27 29 304 0 0 0 0 13 0 0 0 0 0 +560 1783752488433776400 REFRESH 5 0 0.74879346296056615 2 11 2 11 0 0 87 11 411 3943927 55200 148.98789978027344 0.97719999999999996 176.3586 20160 14735 0 0 983040 737280 737280 737527 748800 29 26 33 37 286 0 0 0 0 11 0 0 0 0 0 +561 1783752488627411100 REFRESH 42 0 0.74171583699546739 4 12 4 12 0 0 109 10 419 3943892 55200 149.6575927734375 0.98419999999999996 178.9014 20160 11983 0 0 983040 737280 737280 737492 748800 97 25 27 44 226 0 0 0 0 10 0 0 0 0 0 +562 1783752488819346900 REFRESH 21 0 0.74611587420347325 0 10 0 10 0 0 154 9 417 3943906 55200 150.15321350097656 0.98509999999999998 190.80590000000001 20160 12432 0 0 983040 737280 737280 737506 748800 48 26 33 57 253 0 0 0 0 9 0 0 0 0 0 +563 1783752489036371200 REFRESH 20 0 0.74631748470215487 3 12 3 12 1 0 85 17 425 3943917 55200 150.21875 0.97770000000000001 178.37209999999999 20160 14606 0 0 983040 737280 737280 737517 748800 29 26 34 32 304 1 1 0 1 14 0 0 0 0 1 +564 1783752489230596400 REFRESH 27 0 0.74808403238296006 0 14 0 14 0 0 93 8 416 3943899 55200 150.03648376464844 0.97319999999999995 179.12899999999999 20160 14706 0 0 983040 737280 737280 737499 748800 26 26 25 28 311 1 0 0 0 7 0 0 0 0 0 +565 1783752489425134700 REFRESH 7 0 0.74973388200409152 2 12 2 12 0 0 93 14 415 3943916 55200 149.62380981445312 0.97940000000000005 178.69489999999999 20160 14752 0 0 983040 737280 737280 737515 748800 27 26 26 26 310 0 0 0 0 14 0 0 0 0 0 +566 1783752489604625400 REFRESH 37 0 0.74335126226376069 1 12 1 12 0 0 120 12 416 3943911 55200 149.42105102539062 0.97219999999999995 178.36150000000001 20160 12403 0 0 983040 737280 737280 737511 748800 61 26 64 39 226 0 0 0 0 12 0 0 0 0 0 +567 1783752489788710700 REFRESH 19 0 0.84755109206643253 2 11 2 11 1 0 103 10 424 3943916 55200 150.97103881835938 0.97440000000000004 182.95769999999999 20160 14491 0 0 983040 737280 737280 737516 748800 32 25 25 38 304 0 0 0 0 10 0 0 0 0 1 +568 1783752489991630700 REFRESH 55 0 0.74708946717788072 1 15 1 15 0 0 117 10 417 3943919 55200 150.09178161621094 0.98080000000000001 178.56909999999999 20160 14387 0 0 983040 737280 737280 737519 748800 28 26 28 39 296 0 0 0 0 10 0 0 0 0 0 +569 1783752490219356600 REFRESH 33 0 0.80565540401082447 1 7 1 7 0 0 163 6 420 3943930 55200 150.44813537597656 0.9829 183.79320000000001 20160 11903 0 0 983040 737280 737280 737530 748800 85 26 32 35 242 0 0 0 0 6 0 0 0 0 0 +570 1783752490399874200 REFRESH 2 0 0.74228009959783847 2 12 2 12 0 0 96 10 419 3943922 55200 149.88595581054688 0.97719999999999996 179.43729999999999 20160 14521 0 0 983040 737280 737280 737522 748800 29 26 47 37 280 1 0 2 0 7 0 0 0 0 0 +571 1783752490593728300 REFRESH 15 0 0.74266765738038321 3 12 3 12 0 0 73 9 417 3943932 55200 149.44972229003906 0.97360000000000002 177.66800000000001 20160 14785 0 0 983040 737280 737280 737532 748800 27 26 25 25 314 0 0 0 0 9 0 0 0 0 0 +572 1783752490814735700 REFRESH 56 0 0.91735507626498336 2 5 2 5 0 0 157 5 416 3943908 55200 149.39237976074219 0.97370000000000001 219.75569999999999 20160 12459 0 0 983040 737280 737280 737508 748800 165 26 40 47 138 0 0 0 0 5 0 0 0 0 0 +573 1783752491039629700 REFRESH 11 0 0.80360386401443007 0 8 0 8 0 0 94 7 430 3943902 55200 149.72723388671875 0.97430000000000005 223.8006 20160 12071 0 0 983040 737280 737280 737502 748800 139 25 57 74 135 0 0 0 0 7 0 0 0 0 0 +574 1783752491231940800 REFRESH 13 0 0.91672088949425934 1 6 1 6 0 0 158 4 413 3943920 55200 149.61970520019531 0.97289999999999999 191.18709999999999 20160 12627 0 0 983040 737280 737280 737520 748800 165 26 53 59 110 0 0 0 0 4 0 0 0 0 0 +575 1783752491447957800 REFRESH 44 0 0.75737534362839143 2 7 2 7 0 0 113 7 419 3943924 55200 150.18290710449219 0.97909999999999997 214.82749999999999 20160 12268 0 0 983040 737280 737280 737524 748800 46 26 44 28 275 0 0 0 0 7 0 0 0 0 0 +576 1783752491636435300 REFRESH 26 0 0.74681222545797854 1 13 1 13 0 0 65 5 419 3943920 55200 149.56748962402344 0.97709999999999997 177.4777 20160 14760 0 0 983040 737280 737280 737519 748800 26 25 27 30 311 0 0 0 0 5 0 0 0 0 0 +577 1783752492697270000 DEPTH 8 1 0.91662377917785265 2 5 2 5 1 0 201 44 2534 23664845 81600 865.84196472167969 5.8601999999999999 1059.711 120960 59563 1 0 5898240 4423680 4423680 4426443 4492800 338 153 150 205 1688 3 0 0 0 41 0 0 0 0 1 +578 1783752494031188500 DEPTH 17 1 0.91127401274821707 0 7 0 7 0 0 153 33 2525 23664787 81600 855.30873107910156 5.8449 1298.1656 120960 60674 1 0 5898240 4423680 4423680 4426385 4492800 193 156 150 206 1820 0 0 0 1 32 0 0 0 0 0 +579 1783752495308455600 DEPTH 31 1 0.8014354984408204 2 6 2 6 0 0 109 33 2583 23664804 81600 851.08522033691406 5.8361999999999998 1251.8193000000001 120960 58312 1 0 5898240 4423680 4423680 4426403 4492800 425 150 156 217 1635 0 0 0 0 33 0 0 0 0 0 +580 1783752496336000200 DEPTH 6 1 0.7987035748150767 3 12 3 12 1 0 102 55 2544 23664882 81600 857.54443359375 5.8575999999999997 1026.4505999999999 120960 57714 1 0 5898240 4423680 4423680 4426479 4492800 154 150 163 221 1856 0 0 0 1 54 0 0 0 0 1 +581 1783752497665781500 DEPTH 9 1 0.79826161495883086 2 6 2 6 0 0 108 10 2601 23664827 81600 857.91398620605469 5.8611000000000004 1305.1378999999999 120960 58788 1 0 5898240 4423680 4423680 4426427 4492800 217 150 180 208 1846 0 0 0 0 10 0 0 0 0 0 +582 1783752498922243600 DEPTH 53 1 0.79769949048502609 0 8 0 8 0 0 118 43 2507 23664864 81600 857.60716247558594 5.8872 1226.8931 120960 55928 1 0 5898240 4423680 4423680 4426463 4492800 162 156 150 156 1883 0 0 0 0 43 0 0 0 0 0 +583 1783752500258518700 DEPTH 1 1 0.79579648468743203 1 7 1 7 0 0 112 25 2566 23664756 81600 856.87910461425781 5.9318 1279.3335999999999 120960 57555 1 0 5898240 4423680 4423680 4426356 4492800 224 156 183 187 1816 0 0 0 0 25 0 0 0 0 0 +584 1783752501343231600 DEPTH 16 1 0.78008628360008003 2 7 2 7 0 0 152 60 2525 23664860 81600 861.55979919433594 5.8808999999999996 1055.3495 120960 56692 1 0 5898240 4423680 4423680 4426460 4492800 156 156 156 433 1624 0 0 0 0 60 0 0 0 0 0 +585 1783752502639394000 DEPTH 56 1 0.79003406307840407 2 5 2 5 0 0 157 25 2574 23664964 81600 853.5653076171875 6.1840000000000002 1294.9842000000001 120960 59428 1 0 5898240 4423680 4423680 4426564 4492800 345 156 150 185 1738 0 0 0 0 25 0 0 0 0 0 +586 1783752503916396500 DEPTH 13 1 0.77844654211778297 1 6 1 6 0 0 160 23 2499 23664818 81600 855.84075927734375 5.8378999999999994 1257.3859 120960 59914 1 0 5898240 4423680 4423680 4426418 4492800 190 155 161 185 1808 0 0 0 0 23 0 0 0 0 0 +587 1783752504980252600 DEPTH 19 1 0.78051920753077764 2 11 2 11 1 0 105 69 2552 23664851 81600 858.82838439941406 5.8449 1028.9767999999999 120960 69929 1 0 5898240 4423680 4423680 4426451 4492800 156 150 150 168 1928 0 1 2 0 66 0 0 0 0 1 +588 1783752506276948400 DEPTH 54 1 0.75513306265241831 1 8 1 8 0 0 105 29 2577 23664791 81600 849.72953796386719 5.8289999999999997 1272.1459 120960 60063 1 0 5898240 4423680 4423680 4426389 4492800 320 150 195 346 1566 0 0 2 0 27 0 0 0 0 0 +589 1783752507521644400 DEPTH 45 1 0.75387802471612031 2 7 2 7 0 0 113 29 2560 23664811 81600 853.83793640136719 5.8416999999999994 1205.5899999999999 120960 56523 1 0 5898240 4423680 4423680 4426410 4492800 170 150 169 165 1906 0 0 0 0 29 0 0 0 0 0 +590 1783752508844269000 DEPTH 52 1 0.74738025938778763 1 8 1 8 0 0 93 27 2588 23664879 81600 847.91737365722656 5.8443000000000005 1270.9023 120960 57339 1 0 5898240 4423680 4423680 4426479 4492800 239 150 151 559 1489 0 0 0 1 26 0 0 0 0 0 +591 1783752509903510500 DEPTH 8 1 0.80415071016708206 2 5 2 5 0 0 201 42 2532 23664816 81600 854.63932800292969 5.8502999999999998 1058.1568 120960 49356 1 0 5898240 4423680 4423680 4426416 4492800 357 154 150 236 1635 0 0 0 0 42 0 0 0 0 0 +592 1783752510988879500 DEPTH 40 1 0.74320829292473711 3 11 3 11 1 0 104 31 2574 23664843 81600 860.63008117675781 5.8436000000000003 1027.2940000000001 120960 59394 1 0 5898240 4423680 4423680 4426441 4492800 168 150 160 182 1914 0 0 0 0 31 0 0 0 0 1 +593 1783752512280751500 DEPTH 17 1 0.80910969463182891 0 7 0 7 0 0 154 33 2523 23664822 81600 845.19917297363281 5.8264999999999993 1290.7669000000001 120960 49287 1 0 5898240 4423680 4423680 4426420 4492800 189 156 150 221 1807 0 0 0 0 33 0 0 0 0 0 +594 1783752513400669500 DEPTH 33 1 0.79822220735605642 1 7 1 7 0 0 163 30 2540 23664878 81600 861.45625305175781 5.8347000000000007 1100.3092999999999 120960 56514 1 0 5898240 4423680 4423680 4426478 4492800 191 156 156 159 1878 0 0 0 0 30 0 0 0 0 0 +595 1783752514695988500 DEPTH 11 1 0.7670305031354302 0 8 0 8 1 0 94 14 2580 23664877 81600 847.37541198730469 5.8391999999999999 1294.2577000000001 120960 57803 1 0 5898240 4423680 4423680 4426474 4492800 417 150 232 272 1509 0 0 0 1 13 0 0 0 0 2 +596 1783752515782399400 DEPTH 47 1 0.74277509780005835 2 11 2 11 0 0 104 31 2566 23664787 81600 855.94064331054688 5.8609999999999998 1027.1152 120960 66421 1 0 5898240 4423680 4423680 4426387 4492800 150 150 156 155 1955 0 0 0 1 30 0 0 0 0 0 +597 1783752516811361800 DEPTH 7 1 0.74231451210882748 2 12 2 12 1 0 97 73 2555 23664804 81600 854.21635437011719 5.8946000000000005 1027.8563999999999 120960 69719 1 0 5898240 4423680 4423680 4426403 4492800 157 155 155 159 1929 0 2 0 0 71 0 0 0 0 1 +598 1783752517826315300 DEPTH 5 1 0.74216632588980114 2 11 2 11 1 0 87 46 2581 23664854 81600 848.8829345703125 5.8638999999999992 1013.8514 120960 69884 1 0 5898240 4423680 4423680 4426452 4492800 155 150 179 164 1933 0 0 0 0 46 0 0 0 0 1 +599 1783752518889876600 DEPTH 25 1 0.74149666491183019 3 11 3 11 0 0 92 31 2566 23664919 81600 860.05555725097656 5.8501999999999992 1033.7049 120960 69815 1 0 5898240 4423680 4423680 4426519 4492800 151 150 150 150 1965 0 1 0 0 30 0 0 0 0 0 +600 1783752519962556600 DEPTH 29 1 0.74139803785392067 2 12 2 12 0 0 97 72 2537 23664911 81600 861.09967041015625 5.8641999999999994 1031.7212999999999 120960 69495 1 0 5898240 4423680 4423680 4426510 4492800 152 150 157 159 1919 1 0 0 0 71 0 0 0 0 0 +601 1783752521253170000 DEPTH 56 1 0.81826905798981653 2 5 2 5 0 0 158 31 2564 23664824 81600 843.76473999023438 5.8334000000000001 1279.9707000000001 120960 48237 1 0 5898240 4423680 4423680 4426424 4492800 380 156 152 199 1677 0 0 0 0 31 0 0 0 0 0 +602 1783752522502384900 DEPTH 13 1 0.81684162955269313 1 6 1 6 0 0 161 28 2500 23664891 81600 844.52618408203125 5.8458999999999994 1247.9966999999999 120960 48527 1 0 5898240 4423680 4423680 4426491 4492800 193 156 160 190 1801 0 0 0 0 28 0 0 0 0 0 +603 1783752523749990600 DEPTH 31 1 0.78756331151583114 2 6 2 6 0 0 109 18 2595 23664987 81600 843.084716796875 5.8700000000000001 1246.4351999999999 120960 47380 1 0 5898240 4423680 4423680 4426585 4492800 492 150 156 214 1583 0 0 0 0 18 0 0 0 0 0 +604 1783752524831590500 DEPTH 8 1 0.79167895810068589 2 5 2 5 0 0 201 44 2546 23664820 81600 854.35385131835938 5.8399000000000001 1049.9818 120960 39180 1 0 5898240 4423680 4423680 4426420 4492800 256 153 150 203 1784 1 0 0 1 42 0 0 0 0 0 +605 1783752526151882000 DEPTH 44 1 0.75089220469345397 2 7 2 7 0 0 113 19 2590 23664931 81600 854.74203491210938 5.8623000000000003 1293.8831 120960 57593 1 0 5898240 4423680 4423680 4426527 4492800 158 150 170 165 1947 0 0 0 0 19 0 0 0 0 0 +606 1783752527173469100 DEPTH 6 1 0.78555015671699302 3 12 3 12 1 0 102 47 2549 23664883 81600 849.8199462890625 5.8507000000000007 1020.5058 120960 47214 1 0 5898240 4423680 4423680 4426482 4492800 163 150 168 253 1815 2 0 0 0 45 0 0 0 0 1 +607 1783752528478444900 DEPTH 9 1 0.79503712991313513 2 6 2 6 0 0 108 16 2608 23664909 81600 849.0135498046875 5.9222999999999999 1289.4562000000001 120960 48083 1 0 5898240 4423680 4423680 4426506 4492800 244 150 185 243 1786 0 0 0 0 16 0 0 0 0 0 +608 1783752529552586600 DEPTH 32 1 0.741196739510396 2 14 2 14 1 0 108 35 2561 23664895 81600 855.03382873535156 5.9060999999999995 1032.2103 120960 70564 1 0 5898240 4423680 4423680 4426493 4492800 190 150 173 166 1882 0 0 0 0 35 0 0 0 0 1 +609 1783752529745204600 REFRESH 49 0 0.7368028076640869 3 10 3 10 0 0 120 9 413 3943936 55200 148.65408325195312 0.99839999999999995 177.608 20160 12460 0 0 983040 737280 737280 737536 748800 31 26 62 46 248 0 0 0 0 9 0 0 0 0 0 +610 1783752529925085600 REFRESH 29 0 0.58417297281977432 2 12 2 12 0 0 97 6 418 3943897 55200 150.07743835449219 0.9788 178.7859 20160 14406 0 0 983040 737280 737280 737497 748800 33 25 39 33 288 0 0 0 0 6 0 0 0 0 0 +611 1783752530147996400 REFRESH 56 0 0.7563436804049376 2 5 2 5 0 0 158 7 420 3943906 55200 150.64064025878906 0.97789999999999999 221.7176 20160 12322 0 0 983040 737280 737280 737506 748800 177 26 43 49 125 0 0 0 0 7 0 0 0 0 0 +612 1783752530371008300 REFRESH 58 0 0.73493087165897175 2 13 2 13 0 0 106 10 412 3943934 55200 150.508544921875 0.97670000000000001 178.33670000000001 20160 13305 0 0 983040 737280 737280 737531 748800 31 26 36 38 281 0 0 1 0 9 0 0 0 0 0 +613 1783752530550277200 REFRESH 7 0 0.64520543667364061 2 12 2 12 0 0 97 13 418 3943884 55200 149.26541137695312 0.97840000000000005 178.1653 20160 14264 0 0 983040 737280 737280 737484 748800 27 26 28 27 310 0 0 0 0 13 0 0 0 0 0 +614 1783752530747968300 REFRESH 48 0 0.72478156267917071 2 11 2 11 0 0 68 0 427 3943929 55200 149.43437194824219 0.97519999999999996 177.953 20160 13796 0 0 983040 737280 737280 737529 748800 132 25 51 52 167 0 0 0 0 0 0 0 0 0 0 +615 1783752530927973200 REFRESH 2 0 0.73586197016597865 2 12 2 12 0 0 97 10 420 3943895 55200 149.01657104492188 0.97399999999999998 178.8955 20160 14285 0 0 983040 737280 737280 737495 748800 29 26 40 32 293 1 0 0 0 9 0 0 0 0 0 +616 1783752531121501200 REFRESH 15 0 0.73490238920634199 3 12 3 12 0 0 73 6 419 3943924 55200 149.97605895996094 0.98009999999999997 178.88120000000001 20160 14742 0 0 983040 737280 737280 737524 748800 27 26 25 25 316 0 0 0 0 6 0 0 0 0 0 +617 1783752531314753900 REFRESH 26 0 0.73494344353111207 1 13 1 13 0 0 66 18 418 3943918 55200 149.33424377441406 0.97470000000000001 177.45230000000001 20160 14780 0 0 983040 737280 737280 737518 748800 26 25 28 30 309 0 0 0 0 18 0 0 0 0 0 +618 1783752531526136600 REFRESH 36 0 0.7412985326611683 3 10 3 10 0 0 92 9 420 3943933 55200 149.70573425292969 0.97360000000000002 179.91139999999999 20160 14265 0 0 983040 737280 737280 737533 748800 54 26 36 48 256 0 0 0 0 9 0 0 0 0 0 +619 1783752531719849000 REFRESH 35 0 0.74051495305445636 2 11 2 11 0 0 120 13 416 3943911 55200 149.08927917480469 0.97399999999999998 178.48070000000001 20160 14415 0 0 983040 737280 737280 737511 748800 31 25 28 79 253 0 0 0 0 13 0 0 0 0 0 +620 1783752531896239800 REFRESH 5 0 0.70615625745137434 2 11 2 11 0 0 87 9 403 3943887 55200 148.57830810546875 0.97370000000000001 175.29820000000001 20160 14291 0 0 983040 737280 737280 737487 748800 30 26 48 57 242 0 0 0 0 9 0 0 0 0 0 +621 1783752532101080100 REFRESH 55 0 0.73976529208749542 1 15 1 15 0 0 118 8 411 3943933 55200 150.65087890625 0.97609999999999997 179.5881 20160 14442 0 0 983040 737280 737280 737532 748800 28 26 28 40 289 0 0 0 0 8 0 0 0 0 0 +622 1783752532294763800 REFRESH 51 0 0.73196999773010729 3 12 3 12 0 0 86 13 425 3943912 55200 149.19987487792969 0.97760000000000002 177.75620000000001 20160 14391 0 0 983040 737280 737280 737512 748800 31 26 113 92 163 0 0 0 0 13 0 0 0 0 0 +623 1783752532488462100 REFRESH 27 0 0.73957207434797101 0 14 0 14 1 0 93 10 419 3943882 55200 150.22694396972656 0.97309999999999997 179.13509999999999 20160 14608 0 0 983040 737280 737280 737482 748800 26 26 25 29 313 0 0 0 0 10 0 0 0 0 1 +624 1783752532682174600 REFRESH 43 0 0.73680143542548726 2 13 2 13 0 0 106 13 412 3943919 55200 149.79583740234375 0.97589999999999999 178.34530000000001 20160 13324 0 0 983040 737280 737280 737519 748800 34 26 31 49 272 0 0 0 0 13 0 0 0 0 0 +625 1783752532873423900 REFRESH 12 0 0.74105869933516355 3 8 3 8 0 0 134 11 413 3943931 55200 148.80665588378906 0.97260000000000002 178.34639999999999 20160 13218 0 0 983040 737280 737280 737530 748800 36 26 31 77 243 0 0 0 0 11 0 0 0 0 0 +626 1783752533057630300 REFRESH 8 0 0.87939383405334426 2 5 2 5 0 0 201 6 417 3943917 55200 151.82438659667969 0.9728 183.14429999999999 20160 12703 0 0 983040 737280 737280 737517 748800 117 26 77 57 140 0 0 0 0 6 0 0 0 0 0 +627 1783752533279970100 REFRESH 54 0 0.75180116270039554 1 8 1 8 0 0 105 2 424 3943911 55200 150.30061340332031 0.97529999999999994 221.1311 20160 12067 0 0 983040 737280 737280 737510 748800 146 26 52 103 97 0 0 0 0 2 0 0 0 0 0 +628 1783752533504168900 REFRESH 17 0 0.90730327542965572 0 7 0 7 0 0 154 6 411 3943929 55200 149.19375610351562 0.97470000000000001 223.03749999999999 20160 12343 0 0 983040 737280 737280 737529 748800 131 26 32 91 131 0 0 0 0 6 0 0 0 0 0 +629 1783752533708103100 REFRESH 46 0 0.73901133417736742 2 15 2 15 0 0 93 18 412 3943920 55200 149.61357116699219 0.97550000000000003 178.80969999999999 20160 14364 0 0 983040 737280 737280 737520 748800 28 26 32 32 294 1 0 0 0 17 0 0 0 0 0 +630 1783752533894780000 REFRESH 45 0 0.75071618087075731 2 7 2 7 0 0 113 8 420 3943924 55200 149.79379272460938 0.97889999999999999 185.5472 20160 12029 0 0 983040 737280 737280 737523 748800 101 25 34 38 222 0 0 0 0 8 0 0 0 0 0 +631 1783752534102197100 REFRESH 19 0 0.81582503032276565 2 11 2 11 0 0 106 11 421 3943921 55200 150.23513793945312 0.97789999999999999 179.29570000000001 20160 13145 0 0 983040 737280 737280 737521 748800 51 25 25 47 273 0 0 0 0 11 0 0 0 0 0 +632 1783752534293387300 REFRESH 21 0 0.74145291341208042 0 10 0 10 0 0 154 6 415 3943894 55200 149.8603515625 0.97430000000000005 190.1173 20160 12309 0 0 983040 737280 737280 737494 748800 48 26 34 58 249 0 0 0 0 6 0 0 0 0 0 +633 1783752534473476300 REFRESH 30 0 0.73643766772300423 2 12 2 12 0 0 97 9 411 3943913 55200 149.8787841796875 0.97289999999999999 178.94200000000001 20160 14367 0 0 983040 737280 737280 737512 748800 32 25 56 40 258 0 0 0 0 9 0 0 0 0 0 +634 1783752534670698800 REFRESH 1 0 0.79335867354737377 1 7 1 7 0 0 112 10 415 3943926 55200 150.18392944335938 1.0007999999999999 196.15369999999999 20160 12060 0 0 983040 737280 737280 737526 748800 126 26 60 47 156 0 0 0 0 10 0 0 0 0 0 +635 1783752534877719400 REFRESH 9 0 0.79192302974646711 2 6 2 6 0 0 108 6 426 3943903 55200 149.69830322265625 0.97529999999999994 205.87370000000001 20160 12776 0 0 983040 737280 737280 737503 748800 88 25 60 58 195 0 0 0 0 6 0 0 0 0 0 +636 1783752535084153100 REFRESH 3 0 0.7408735429613611 2 11 2 11 0 0 111 10 417 3943882 55200 148.75648498535156 0.98060000000000003 177.22890000000001 20160 14404 0 0 983040 737280 737280 737482 748800 66 25 48 62 216 1 0 0 0 9 0 0 0 0 0 +637 1783752535275822900 REFRESH 50 0 0.73435683191697865 2 9 2 9 0 0 112 5 416 3943903 55200 148.32025146484375 0.97570000000000001 179.11439999999999 20160 13162 0 0 983040 737280 737280 737503 748800 102 26 38 54 196 0 0 0 0 5 0 0 0 0 0 +638 1783752535466943100 REFRESH 34 0 0.7392819175196883 1 13 1 13 1 0 93 10 421 3943906 55200 149.10566711425781 0.97619999999999996 176.13079999999999 20160 13362 0 0 983040 737280 737280 737506 748800 37 25 36 40 283 0 0 0 0 10 0 0 0 0 1 +639 1783752535660798800 REFRESH 22 0 0.74002362844191183 3 12 3 12 1 0 104 15 418 3943897 55200 149.72927856445312 0.97360000000000002 178.4529 20160 14711 0 0 983040 737280 737280 737497 748800 28 26 26 25 313 0 0 1 0 14 0 0 0 0 1 +640 1783752535866609600 REFRESH 41 0 0.73599261972921304 1 10 1 10 0 0 95 6 412 3943908 55200 148.80050659179688 0.97570000000000001 190.78380000000001 20160 13135 0 0 983040 737280 737280 737508 748800 36 26 32 27 291 0 0 1 0 5 0 0 0 0 0 +641 1783752536060167800 REFRESH 39 0 0.74177078297313548 2 12 2 12 1 0 135 11 408 3943910 55200 149.20498657226562 0.97360000000000002 178.32220000000001 20160 13163 0 0 983040 737280 737280 737510 748800 28 26 29 30 295 0 0 1 0 10 0 0 0 0 1 +642 1783752536255654200 REFRESH 24 0 0.73726063042957835 4 11 4 11 0 0 121 12 408 3943912 55200 149.89004516601562 0.97660000000000002 179.46780000000001 20160 14719 0 0 983040 737280 737280 737512 748800 27 26 32 34 289 0 0 1 0 11 0 0 0 0 0 +643 1783752536496599600 REFRESH 11 0 0.79441826879482558 0 8 0 8 0 0 94 5 424 3943935 55200 149.25106811523438 0.9738 222.98759999999999 20160 11994 0 0 983040 737280 737280 737535 748800 139 25 60 68 132 0 0 0 1 4 0 0 0 0 0 +644 1783752536674811000 REFRESH 32 0 0.73398583599696177 2 14 2 14 1 0 109 18 417 3943888 55200 148.83839416503906 0.98080000000000001 177.0684 20160 13187 0 0 983040 737280 737280 737488 748800 126 25 35 31 200 0 0 0 0 18 0 0 0 0 1 +645 1783752536858419300 REFRESH 16 0 0.77443136859911765 2 7 2 7 0 0 152 7 415 3943959 55200 150.29656982421875 0.97570000000000001 182.45500000000001 20160 12010 0 0 983040 737280 737280 737559 748800 28 26 26 215 120 0 0 0 0 7 0 0 0 0 0 +646 1783752537039067400 REFRESH 6 0 0.77284178119202795 3 12 3 12 0 0 102 15 413 3943941 55200 150.32524108886719 0.97789999999999999 179.56319999999999 20160 12170 0 0 983040 737280 737280 737540 748800 65 25 104 48 171 1 0 2 0 12 0 0 0 0 0 +647 1783752537242538100 REFRESH 10 0 0.73784971840747593 1 11 1 11 0 0 104 15 423 3943900 55200 149.53266906738281 0.98140000000000005 178.49029999999999 20160 13229 0 0 983040 737280 737280 737500 748800 61 26 48 36 252 0 0 0 0 15 0 0 0 0 0 +648 1783752537437936200 REFRESH 18 0 0.73001919034877494 4 15 4 15 0 0 84 11 424 3943919 55200 151.05126953125 0.98399999999999999 179.65110000000001 20160 14775 0 0 983040 737280 737280 737519 748800 27 25 25 30 317 0 0 0 0 11 0 0 0 0 0 +649 1783752537661890900 REFRESH 13 0 0.90573311847884341 1 6 1 6 0 0 161 7 414 3943898 55200 149.51014709472656 0.99850000000000005 192.374 20160 12478 0 0 983040 737280 737280 737497 748800 150 26 53 62 123 0 0 0 0 7 0 0 0 0 0 +650 1783752537846742300 REFRESH 33 0 0.79595322868582541 1 7 1 7 0 0 165 8 419 3943916 55200 150.40818786621094 0.97350000000000003 183.74590000000001 20160 11977 0 0 983040 737280 737280 737516 748800 87 26 33 33 240 0 0 0 0 8 0 0 0 0 0 +651 1783752538026908500 REFRESH 25 0 0.73535733188011176 3 11 3 11 0 0 93 13 423 3943920 55200 150.07603454589844 0.97509999999999997 179.02510000000001 20160 14339 0 0 983040 737280 737280 737520 748800 32 25 48 57 261 0 0 0 0 13 0 0 0 0 0 +652 1783752538207168600 REFRESH 47 0 0.73696539334504463 2 11 2 11 0 0 104 10 420 3943921 55200 149.86239624023438 0.96789999999999998 179.06989999999999 20160 12161 0 0 983040 737280 737280 737520 748800 50 26 37 28 279 0 0 0 0 10 0 0 0 0 0 +653 1783752538408971700 REFRESH 0 0 0.74058965841299984 1 12 1 12 0 0 74 11 426 3943920 55200 149.28553771972656 0.97350000000000003 177.6121 20160 14260 0 0 983040 737280 737280 737520 748800 45 25 43 44 269 0 0 0 0 11 0 0 0 0 0 +654 1783752538614172400 REFRESH 31 0 0.7943734529679346 2 6 2 6 0 0 109 5 420 3943911 55200 149.01145935058594 0.9738 204.0592 20160 12664 0 0 983040 737280 737280 737511 748800 186 25 27 56 126 0 0 0 0 5 0 0 0 0 0 +655 1783752538837217200 REFRESH 40 0 0.73506500164765742 3 11 3 11 0 0 104 10 418 3943926 55200 150.408447265625 0.99880000000000002 179.66730000000001 20160 13188 0 0 983040 737280 737280 737526 748800 144 25 33 107 109 0 0 0 0 10 0 0 0 0 0 +656 1783752539033615600 REFRESH 28 0 0.7398839750873567 2 13 2 13 0 0 112 19 406 3943915 55200 149.83680725097656 0.9839 180.3133 20160 14772 0 0 983040 737280 737280 737515 748800 29 26 27 28 296 0 0 1 0 18 0 0 0 0 0 +657 1783752539223674800 REFRESH 57 0 0.74077705292431983 2 13 2 13 1 0 94 9 416 3943897 55200 149.18963623046875 0.97270000000000001 178.9426 20160 14437 0 0 983040 737280 737280 737497 748800 27 26 71 50 242 0 0 0 0 9 0 0 0 0 1 +658 1783752539434110700 REFRESH 44 0 0.74829911299921037 2 7 2 7 0 0 114 8 412 3943908 55200 150.29554748535156 0.97340000000000004 209.26939999999999 20160 12033 0 0 983040 737280 737280 737508 748800 69 26 61 29 227 0 0 0 0 8 0 0 0 0 0 +659 1783752539654835500 REFRESH 52 0 0.74547023446445559 1 8 1 8 0 0 93 5 428 3943913 55200 148.81074523925781 0.97850000000000004 219.53899999999999 20160 12077 0 0 983040 737280 737280 737512 748800 79 25 29 149 146 0 0 0 0 5 0 0 0 0 0 +660 1783752539848149600 REFRESH 42 0 0.73553649831072165 4 12 4 12 0 0 109 11 419 3943887 55200 149.1251220703125 0.9738 177.7724 20160 11880 0 0 983040 737280 737280 737487 748800 102 25 26 43 223 1 0 0 0 10 0 0 0 0 0 +661 1783752540040062500 REFRESH 37 0 0.73844728703716322 1 12 1 12 0 0 120 9 411 3943909 55200 148.33970642089844 0.97850000000000004 176.80629999999999 20160 12180 0 0 983040 737280 737280 737509 748800 38 26 35 29 283 0 0 0 0 9 0 0 0 0 0 +662 1783752540231130400 REFRESH 38 0 0.73403409892386962 4 14 4 14 0 0 78 9 418 3943930 55200 148.90188598632812 0.98780000000000001 176.79040000000001 20160 14353 0 0 983040 737280 737280 737530 748800 37 26 36 32 287 0 0 0 0 9 0 0 0 0 0 +663 1783752540423001000 REFRESH 4 0 0.7276386995861216 1 13 1 13 0 0 45 5 422 3943935 55200 148.83430480957031 0.97889999999999999 176.08799999999999 20160 14770 0 0 983040 737280 737280 737535 748800 25 25 31 32 309 0 0 0 0 5 0 0 0 0 0 +664 1783752540617109000 REFRESH 20 0 0.74070370170916711 3 12 3 12 0 0 86 16 425 3943912 55200 150.71539306640625 0.97360000000000002 179.33949999999999 20160 14651 0 0 983040 737280 737280 737511 748800 31 26 35 36 297 1 0 0 0 15 0 0 0 0 0 +665 1783752540806091700 REFRESH 53 0 0.79543124905267426 0 8 0 8 0 0 118 4 414 3943905 55200 150.45120239257812 0.98209999999999997 187.78440000000001 20160 12089 0 0 983040 737280 737280 737504 748800 91 26 27 41 229 0 0 0 0 4 0 0 0 0 0 +666 1783752541060165000 REFRESH 14 0 0.7420080375343352 0 12 0 12 0 0 99 10 415 3943885 55200 150.06509399414062 0.9798 184.29769999999999 20160 13252 0 0 983040 737280 737280 737485 748800 31 26 27 34 297 0 0 0 0 10 0 0 0 0 0 +667 1783752541253231400 REFRESH 23 0 0.7347922637133707 3 14 3 14 0 0 89 11 419 3943927 55200 148.85478210449219 0.98160000000000003 177.9451 20160 14731 0 0 983040 737280 737280 737527 748800 26 25 31 31 306 1 0 0 0 10 0 0 0 0 0 +668 1783752542321603900 DEPTH 8 1 0.90346883594521255 2 5 2 5 0 0 201 44 2548 23664823 81600 864.79026794433594 5.8544 1067.2585999999999 120960 60992 1 0 5898240 4423680 4423680 4426423 4492800 289 152 150 186 1771 0 0 0 0 44 0 0 0 0 0 +669 1783752543632074300 DEPTH 56 1 0.90223242299614392 2 5 2 5 0 0 159 37 2569 23664847 81600 854.38563537597656 5.8467000000000002 1286.3469 120960 59321 1 0 5898240 4423680 4423680 4426447 4492800 333 156 156 182 1742 0 0 0 0 37 0 0 0 0 0 +670 1783752544938712100 DEPTH 17 1 0.90158899528837833 0 7 0 7 1 0 154 40 2536 23664833 81600 854.38304138183594 6.0742000000000003 1305.5012999999999 120960 59536 1 0 5898240 4423680 4423680 4426432 4492800 188 156 150 192 1850 0 0 0 0 40 0 0 0 0 1 +671 1783752546238048300 DEPTH 13 1 0.87109528780798495 1 6 1 6 0 0 161 23 2499 23664831 81600 856.99734497070312 5.8463000000000003 1256.1557 120960 59842 1 0 5898240 4423680 4423680 4426430 4492800 194 155 163 175 1812 0 0 0 0 23 0 0 0 0 0 +672 1783752547267747800 DEPTH 19 1 0.8021533542244117 2 11 2 11 1 0 107 64 2546 23664833 81600 856.90815734863281 5.8308 1028.5625 120960 65828 1 0 5898240 4423680 4423680 4426433 4492800 159 150 150 177 1910 0 1 1 0 62 0 0 0 0 2 +673 1783752548545006800 DEPTH 1 1 0.79066500149747587 1 7 1 7 0 0 113 24 2567 23664929 81600 859.25785827636719 5.8344999999999994 1276.1844000000001 120960 57434 1 0 5898240 4423680 4423680 4426528 4492800 253 163 192 213 1746 0 0 0 0 24 0 0 0 0 0 +674 1783752549873115400 DEPTH 11 1 0.78646735637358656 0 8 0 8 1 0 94 13 2576 23664827 81600 848.71575927734375 5.8651999999999997 1299.1143 120960 57177 1 0 5898240 4423680 4423680 4426424 4492800 343 150 196 227 1660 0 0 0 0 13 0 0 0 0 2 +675 1783752551207376700 DEPTH 9 1 0.78510486765836407 2 6 2 6 0 0 109 8 2606 23664841 81600 856.39840698242188 5.8384 1295.5174 120960 59723 1 0 5898240 4423680 4423680 4426440 4492800 315 150 190 233 1718 1 0 0 0 7 0 0 0 0 0 +676 1783752552306603900 DEPTH 33 1 0.79104211694834026 1 7 1 7 0 0 166 35 2541 23664863 81600 862.69279479980469 5.8506999999999998 1098.0134 120960 56616 1 0 5898240 4423680 4423680 4426463 4492800 192 156 156 162 1875 0 0 0 0 35 0 0 0 0 0 +677 1783752553367243100 DEPTH 16 1 0.76550127299721049 2 7 2 7 0 0 152 37 2528 23664909 81600 862.45561218261719 5.8403999999999989 1059.5208 120960 57258 1 0 5898240 4423680 4423680 4426509 4492800 162 156 156 430 1624 0 0 0 0 37 0 0 0 0 0 +678 1783752554399136000 DEPTH 6 1 0.76098128514521912 3 12 3 11 1 0 102 61 2545 23664826 81600 858.45848083496094 5.843 1030.8051 120960 57356 1 0 5898240 4423680 4423680 4426425 4492800 170 150 162 214 1849 3 0 0 6 52 2 0 0 0 2 +679 1783752555683881400 DEPTH 31 1 0.78575603168442953 2 6 2 6 0 0 110 24 2597 23664875 81600 854.56465148925781 5.8314000000000004 1258.5056 120960 59971 1 0 5898240 4423680 4423680 4426473 4492800 545 150 156 215 1531 0 0 0 0 24 0 0 0 0 0 +680 1783752556923470500 DEPTH 45 1 0.74579855190148669 2 7 2 7 0 0 113 33 2557 23664796 81600 856.86549377441406 5.8404000000000007 1212.924 120960 56543 1 0 5898240 4423680 4423680 4426394 4492800 190 150 171 167 1879 0 0 0 0 33 0 0 0 0 0 +681 1783752558200841000 DEPTH 54 1 0.74085425929449777 1 8 1 8 0 0 107 27 2576 23664914 81600 851.68316650390625 5.8419999999999996 1276.0093999999999 120960 58078 1 0 5898240 4423680 4423680 4426513 4492800 340 150 203 362 1521 1 0 0 0 26 0 0 0 0 0 +682 1783752559252880200 DEPTH 12 1 0.73695039538799068 3 8 3 8 0 0 138 70 2524 23664926 81600 851.8765869140625 5.8730999999999991 1027.421 120960 66066 1 0 5898240 4423680 4423680 4426524 4492800 168 150 162 185 1859 0 0 0 0 70 0 0 0 0 0 +683 1783752560325119200 DEPTH 39 1 0.73521474480476079 2 12 2 12 1 0 136 65 2535 23664821 81600 853.56304931640625 5.8513999999999999 1027.3224 120960 65620 1 0 5898240 4423680 4423680 4426421 4492800 155 152 152 157 1919 0 0 1 0 64 0 0 0 0 1 +684 1783752561423278700 DEPTH 8 1 0.81150885558548025 2 5 2 5 0 0 202 43 2539 23664852 81600 858.04893493652344 5.8399999999999999 1055.5234 120960 50365 1 0 5898240 4423680 4423680 4426450 4492800 352 154 150 245 1638 0 0 0 0 43 0 0 0 0 0 +685 1783752562732318800 DEPTH 56 1 0.81062884697348603 2 5 2 5 0 0 159 37 2555 23664889 81600 845.12358093261719 5.8517999999999999 1278.3205 120960 47972 1 0 5898240 4423680 4423680 4426489 4492800 347 156 156 224 1672 0 0 0 0 37 0 0 0 0 0 +686 1783752564048827100 DEPTH 17 1 0.8098197674644817 0 7 0 7 1 0 154 29 2537 23664853 81600 845.65788269042969 5.8587999999999996 1290.4681 120960 49013 1 0 5898240 4423680 4423680 4426452 4492800 193 156 150 210 1828 0 0 0 0 29 0 0 0 0 2 +687 1783752565338319200 DEPTH 13 1 0.80960786709641519 1 6 1 6 0 0 161 35 2495 23665007 81600 847.57565307617188 5.8445 1249.4443000000001 120960 48334 1 0 5898240 4423680 4423680 4426606 4492800 201 155 164 185 1790 0 0 0 0 35 0 0 0 0 0 +688 1783752566651194400 DEPTH 44 1 0.74324360721516425 2 7 2 7 0 0 114 26 2585 23664911 81600 855.48515319824219 5.8342000000000009 1296.7688000000001 120960 56906 1 0 5898240 4423680 4423680 4426509 4492800 162 150 168 157 1948 0 0 0 0 26 0 0 0 0 0 +689 1783752567949898800 DEPTH 52 1 0.73769870749681099 1 8 1 8 0 0 95 32 2583 23664906 81600 848.71818542480469 5.8497000000000003 1269.1070999999999 120960 57263 1 0 5898240 4423680 4423680 4426505 4492800 288 150 153 629 1363 0 0 0 0 32 0 0 0 0 0 +690 1783752569027480100 DEPTH 35 1 0.73530383895860951 2 11 2 11 0 0 125 84 2536 23664835 81600 857.80146789550781 5.8434999999999997 1034.1900000000001 120960 70143 1 0 5898240 4423680 4423680 4426433 4492800 165 150 156 190 1875 0 0 2 0 82 0 0 0 0 0 +691 1783752570066884400 DEPTH 3 1 0.73524983681456701 2 11 2 11 1 0 111 50 2585 23664833 81600 845.53874206542969 5.8718000000000004 1013.4462 120960 70256 1 0 5898240 4423680 4423680 4426432 4492800 168 150 160 171 1936 0 0 2 1 47 0 0 0 0 1 +692 1783752571343142500 DEPTH 53 1 0.78603980333501999 0 8 0 8 0 0 120 43 2508 23664867 81600 857.76071166992188 5.8217999999999996 1235.8832 120960 56650 1 0 5898240 4423680 4423680 4426466 4492800 162 156 150 160 1880 0 0 0 0 43 0 0 0 0 0 +693 1783752572371989500 DEPTH 6 1 0.75388020725867944 3 11 3 11 1 0 105 101 2566 23664785 81600 853.91386413574219 5.8598999999999997 1027.7735 120960 46398 1 0 5898240 4423680 4423680 4426382 4492800 166 150 157 197 1896 0 0 0 3 98 0 0 0 0 4 +694 1783752573397077700 DEPTH 19 1 0.76021873240611637 2 11 2 11 1 0 109 71 2549 23664889 81600 849.80096435546875 5.8355999999999995 1023.9622000000001 120960 53869 1 0 5898240 4423680 4423680 4426489 4492800 169 150 150 193 1887 0 0 0 0 71 0 0 0 0 5 +695 1783752574673770000 DEPTH 14 1 0.73618635144095279 0 12 0 12 1 0 99 26 2568 23664817 81600 856.66717529296875 5.8282999999999996 1235.2373 120960 65637 1 0 5898240 4423680 4423680 4426415 4492800 157 151 156 156 1948 0 0 0 0 26 0 0 0 0 3 +696 1783752575723542000 DEPTH 36 1 0.73517597132400392 3 10 3 10 1 0 93 34 2590 23664746 81600 853.89715576171875 5.8731 1024.8036 120960 69987 1 0 5898240 4423680 4423680 4426345 4492800 185 150 169 195 1891 0 0 0 1 33 0 0 0 0 1 +697 1783752576799890000 DEPTH 0 1 0.7347433235845322 1 12 1 12 1 0 74 33 2564 23664833 81600 851.49351501464844 5.9204999999999997 1020.8962 120960 70407 1 0 5898240 4423680 4423680 4426432 4492800 156 150 168 170 1920 0 0 0 2 31 0 0 0 0 1 +698 1783752577855936800 DEPTH 27 1 0.73422395123113304 0 14 0 14 1 0 97 77 2567 23664871 81600 858.19084167480469 5.835 1029.9245000000001 120960 70079 1 0 5898240 4423680 4423680 4426470 4492800 156 156 150 158 1947 1 0 0 0 76 0 0 0 0 2 +699 1783752579149882100 DEPTH 21 1 0.7339114582172247 0 10 0 10 0 0 156 61 2543 23664844 81600 856.8564453125 5.8869999999999996 1261.7763 120960 58876 1 0 5898240 4423680 4423680 4426442 4492800 183 150 155 195 1860 0 0 1 0 60 0 0 0 0 0 +700 1783752579370852300 REFRESH 56 0 0.79895705548431917 2 5 2 5 0 0 159 8 418 3943909 55200 149.00019836425781 0.98370000000000002 219.73869999999999 20160 12839 0 0 983040 737280 737280 737509 748800 182 26 45 52 113 0 0 0 0 8 0 0 0 0 0 +701 1783752579573562900 REFRESH 30 0 0.73002993873166577 2 12 2 12 0 0 97 10 410 3943887 55200 149.27174377441406 0.97299999999999998 178.40180000000001 20160 14193 0 0 983040 737280 737280 737487 748800 32 25 62 38 253 0 0 0 0 10 0 0 0 0 0 +702 1783752579766627400 REFRESH 58 0 0.72977820193280118 2 13 2 13 0 0 106 11 409 3943916 55200 149.78256225585938 0.98809999999999998 177.9161 20160 13044 0 0 983040 737280 737280 737516 748800 32 26 39 50 262 0 0 1 0 10 0 0 0 0 0 +703 1783752579946233500 REFRESH 12 0 0.69223894705491584 3 8 3 8 0 0 140 11 411 3943900 55200 148.78105163574219 0.98340000000000005 178.54730000000001 20160 12191 0 0 983040 737280 737280 737500 748800 66 26 42 106 171 0 0 0 1 10 0 0 0 0 0 +704 1783752580143115100 REFRESH 43 0 0.7312234933981232 2 13 2 13 0 0 107 14 414 3943928 55200 151.03590393066406 0.99870000000000003 181.5669 20160 13176 0 0 983040 737280 737280 737527 748800 44 26 31 56 257 0 0 0 0 14 0 0 0 0 0 +705 1783752580336333300 REFRESH 25 0 0.72973396388342682 3 11 3 11 0 0 94 7 418 3943904 55200 149.50810241699219 0.97599999999999998 178.32650000000001 20160 14143 0 0 983040 737280 737280 737504 748800 33 25 54 65 241 0 0 0 0 7 0 0 0 0 0 +706 1783752580531446500 REFRESH 28 0 0.73347277145685008 2 13 2 13 0 0 113 15 403 3943920 55200 149.90438842773438 0.97419999999999995 179.61699999999999 20160 14635 0 0 983040 737280 737280 737520 748800 30 26 27 28 292 0 0 0 0 15 0 0 0 0 0 +707 1783752580711722300 REFRESH 36 0 0.58895197553340461 3 10 3 10 0 0 94 13 423 3943933 55200 149.7733154296875 0.97670000000000001 179.11009999999999 20160 13147 0 0 983040 737280 737280 737533 748800 61 25 40 50 247 0 0 0 0 13 0 0 0 0 0 +708 1783752580891841300 REFRESH 6 0 0.73640820025516873 3 11 3 11 0 0 105 14 416 3943912 55200 150.66213989257812 0.98260000000000003 179.012 20160 12069 0 0 983040 737280 737280 737511 748800 50 25 60 43 238 0 0 0 0 14 0 0 0 0 0 +709 1783752581072619800 REFRESH 32 0 0.72801741966810152 2 14 2 14 0 0 110 12 417 3943909 55200 149.90130615234375 0.97729999999999995 179.61510000000001 20160 12962 0 0 983040 737280 737280 737508 748800 101 25 36 32 223 0 0 0 0 12 0 0 0 0 0 +710 1783752581275440100 REFRESH 15 0 0.72605193389226796 3 12 3 12 0 0 74 9 419 3943918 55200 150.21250915527344 1.0002 178.67519999999999 20160 14788 0 0 983040 737280 737280 737517 748800 27 26 25 25 316 0 0 1 0 8 0 0 0 0 0 +711 1783752581469772500 REFRESH 57 0 0.73351662976776577 2 13 2 13 1 0 94 11 410 3943914 55200 148.10441589355469 0.98199999999999998 176.7484 20160 14030 0 0 983040 737280 737280 737514 748800 27 26 63 48 246 0 0 0 0 11 0 0 0 0 1 +712 1783752581655162300 REFRESH 33 0 0.78856087122458041 1 7 1 7 0 0 166 10 420 3943912 55200 150.32730102539062 0.97770000000000001 184.27090000000001 20160 12045 0 0 983040 737280 737280 737512 748800 108 26 39 39 208 0 0 0 0 10 0 0 0 0 0 +713 1783752581840288600 REFRESH 16 0 0.76028746178582907 2 7 2 7 0 0 154 15 415 3943904 55200 150.94271850585938 0.98529999999999995 184.02959999999999 20160 12168 0 0 983040 737280 737280 737504 748800 29 26 26 224 110 0 0 0 1 14 0 0 0 0 0 +714 1783752582044255500 REFRESH 10 0 0.73330197307095701 1 11 1 11 0 0 104 12 422 3943901 55200 149.80397033691406 0.97860000000000003 178.83500000000001 20160 13082 0 0 983040 737280 737280 737500 748800 69 26 56 36 235 0 0 0 1 11 0 0 0 0 0 +715 1783752582237568900 REFRESH 46 0 0.73294668380221728 2 15 2 15 1 0 93 7 416 3943884 55200 149.02578735351562 0.97450000000000003 177.89580000000001 20160 14236 0 0 983040 737280 737280 737484 748800 28 26 33 31 298 0 0 0 0 7 0 0 0 0 1 +716 1783752582431863200 REFRESH 55 0 0.73211725807266881 1 15 1 15 0 0 118 11 417 3943885 55200 149.38937377929688 0.98180000000000001 178.15469999999999 20160 14194 0 0 983040 737280 737280 737485 748800 28 26 28 41 294 0 0 0 0 11 0 0 0 0 0 +717 1783752582624559100 REFRESH 51 0 0.72743440370687085 3 12 3 12 0 0 86 3 417 3943947 55200 148.853759765625 0.97409999999999997 177.16159999999999 20160 14233 0 0 983040 737280 737280 737547 748800 31 26 114 98 148 0 0 0 0 3 0 0 0 0 0 +718 1783752582850410800 REFRESH 17 0 0.89851999231300606 0 7 0 7 0 0 154 9 413 3943911 55200 150.36006164550781 0.99770000000000003 224.80969999999999 20160 13018 0 0 983040 737280 737280 737511 748800 141 26 33 92 121 0 0 0 0 9 0 0 0 0 0 +719 1783752583045467500 REFRESH 49 0 0.73162736607751389 3 10 3 10 0 0 120 8 413 3943894 55200 149.19474792480469 0.97409999999999997 177.98609999999999 20160 12226 0 0 983040 737280 737280 737494 748800 30 26 59 41 257 0 0 0 0 8 0 0 0 0 0 +720 1783752583266697700 REFRESH 52 0 0.73546864361421893 1 8 1 8 0 0 96 9 425 3943876 55200 149.68832397460938 0.97589999999999999 220.04910000000001 20160 11934 0 0 983040 737280 737280 737476 748800 91 25 29 148 132 0 1 0 0 8 0 0 0 0 0 +721 1783752583452259400 REFRESH 14 0 0.73069237557913247 0 12 0 12 0 0 100 12 411 3943914 55200 149.53984069824219 0.97640000000000005 184.47020000000001 20160 12107 0 0 983040 737280 737280 737514 748800 34 26 28 31 292 0 0 0 0 12 0 0 0 0 0 +722 1783752583653611700 REFRESH 26 0 0.73076982251224942 1 13 1 13 0 0 66 5 415 3943927 55200 149.96275329589844 0.97640000000000005 177.1944 20160 14739 0 0 983040 737280 737280 737527 748800 26 25 28 30 306 0 0 0 0 5 0 0 0 0 0 +723 1783752583848571300 REFRESH 21 0 0.72000733771234393 0 10 0 10 0 0 156 6 416 3943906 55200 149.91154479980469 1.2304999999999999 193.8306 20160 12264 0 0 983040 737280 737280 737506 748800 57 26 33 65 235 0 0 0 0 6 0 0 0 0 0 +724 1783752584054645100 REFRESH 42 0 0.72890007506285071 4 12 4 12 1 0 109 16 419 3943910 55200 151.60421752929688 0.97570000000000001 181.3724 20160 11957 0 0 983040 737280 737280 737509 748800 108 25 26 44 216 0 0 0 0 16 0 0 0 0 1 +725 1783752584249482800 REFRESH 2 0 0.73149956395303262 2 12 2 12 0 0 97 11 419 3943896 55200 149.50399780273438 0.99950000000000006 179.72200000000001 20160 14155 0 0 983040 737280 737280 737496 748800 29 26 50 39 275 1 0 1 0 9 0 0 0 0 0 +726 1783752584443008000 REFRESH 20 0 0.7345033519046229 3 12 3 12 0 0 87 20 421 3943900 55200 149.83885192871094 0.97909999999999997 178.0641 20160 14632 0 0 983040 737280 737280 737499 748800 33 26 36 38 288 0 0 0 0 20 0 0 0 0 0 +727 1783752584631129000 REFRESH 34 0 0.73408465428237091 1 13 1 13 0 0 93 4 421 3943911 55200 148.15846252441406 0.97460000000000002 175.57669999999999 20160 12914 0 0 983040 737280 737280 737511 748800 39 25 45 52 260 0 0 0 0 4 0 0 0 0 0 +728 1783752584827726400 REFRESH 22 0 0.73456373794618335 3 12 3 12 0 0 104 15 417 3943895 55200 150.28633117675781 0.97719999999999996 181.3553 20160 14682 0 0 983040 737280 737280 737495 748800 30 26 27 29 305 0 0 0 0 15 0 0 0 0 0 +729 1783752585032849200 REFRESH 31 0 0.78320745015120263 2 6 2 6 0 0 110 7 425 3943926 55200 148.89573669433594 0.97709999999999997 203.98949999999999 20160 12525 0 0 983040 737280 737280 737526 748800 203 25 28 59 110 0 0 0 0 7 0 0 0 0 0 +730 1783752585232481300 REFRESH 4 0 0.71828026675092049 1 13 1 13 0 0 45 2 422 3943895 55200 148.64895629882812 0.97199999999999998 175.61660000000001 20160 14809 0 0 983040 737280 737280 737495 748800 26 25 31 31 309 0 0 0 0 2 0 0 0 0 0 +731 1783752585425421700 REFRESH 23 0 0.72862563189335505 3 14 3 14 1 0 89 11 420 3943913 55200 149.62278747558594 0.99950000000000006 178.52189999999999 20160 14677 0 0 983040 737280 737280 737513 748800 27 25 40 32 296 0 0 0 0 11 0 0 0 0 1 +732 1783752585616539500 REFRESH 48 0 0.71106701610015388 2 11 2 11 0 0 68 4 421 3943917 55200 149.03910827636719 0.97289999999999999 176.73660000000001 20160 13742 0 0 983040 737280 737280 737517 748800 137 25 52 51 156 0 0 0 0 4 0 0 0 0 0 +733 1783752585829981000 REFRESH 0 0 0.72912532902564298 1 12 1 12 0 0 75 11 423 3943891 55200 148.90803527832031 0.98070000000000002 177.15530000000001 20160 12982 0 0 983040 737280 737280 737491 748800 39 25 35 34 290 0 0 0 0 11 0 0 0 0 0 +734 1783752586010222200 REFRESH 35 0 0.72980215082612521 2 11 2 11 0 0 127 18 418 3943916 55200 149.80607604980469 0.97899999999999998 179.13149999999999 20160 12887 0 0 983040 737280 737280 737515 748800 40 25 29 87 237 0 0 0 0 18 0 0 0 0 0 +735 1783752586204657400 REFRESH 47 0 0.73215287858500377 2 11 2 11 0 0 104 13 418 3943915 55200 150.14093017578125 0.97350000000000003 179.21690000000001 20160 12200 0 0 983040 737280 737280 737514 748800 73 26 53 33 233 0 0 0 0 13 0 0 0 0 0 +736 1783752586398015100 REFRESH 37 0 0.73230885405144575 1 12 1 12 0 0 121 6 412 3943917 55200 149.23365783691406 0.97640000000000005 177.57409999999999 20160 12219 0 0 983040 737280 737280 737517 748800 48 26 43 32 263 0 0 0 0 6 0 0 0 0 0 +737 1783752586576794400 REFRESH 40 0 0.72779868635882394 3 11 3 11 0 0 104 7 420 3943921 55200 149.6575927734375 0.99890000000000001 177.55799999999999 20160 13180 0 0 983040 737280 737280 737521 748800 130 25 32 91 142 0 0 0 0 7 0 0 0 0 0 +738 1783752586760533200 REFRESH 8 0 0.90013782200273562 2 5 2 5 0 0 202 5 414 3943932 55200 151.35232543945312 0.97799999999999998 182.6679 20160 12850 0 0 983040 737280 737280 737532 748800 120 26 32 57 179 0 0 0 0 5 0 0 0 0 0 +739 1783752586969259500 REFRESH 29 0 0.72642132663731473 2 12 2 12 0 0 97 12 416 3943907 55200 150.70002746582031 0.98160000000000003 179.58170000000001 20160 14116 0 0 983040 737280 737280 737507 748800 38 25 58 37 258 0 0 0 0 12 0 0 0 0 0 +740 1783752587147581600 REFRESH 3 0 0.72989066622945264 2 11 2 11 0 0 111 10 417 3943885 55200 149.38726806640625 0.97919999999999996 177.2089 20160 13067 0 0 983040 737280 737280 737485 748800 104 25 58 60 170 0 0 0 0 10 0 0 0 0 0 +741 1783752587327737300 REFRESH 19 0 0.78118835112820206 2 11 2 11 0 0 110 15 424 3943879 55200 150.09075927734375 0.97170000000000001 179.0615 20160 11971 0 0 983040 737280 737280 737479 748800 73 25 25 47 254 0 0 0 0 15 0 0 0 0 0 +742 1783752587528162600 REFRESH 5 0 0.73157190703415409 2 11 2 11 0 0 87 11 404 3943952 55200 148.62745666503906 0.97130000000000005 175.82239999999999 20160 14185 0 0 983040 737280 737280 737552 748800 29 26 47 55 247 0 0 0 0 11 0 0 0 0 0 +743 1783752587706738800 REFRESH 39 0 0.72959960436927074 2 12 2 12 0 0 136 10 406 3943908 55200 149.00735473632812 0.97640000000000005 177.46879999999999 20160 11996 0 0 983040 737280 737280 737508 748800 28 26 28 32 292 0 0 0 0 10 0 0 0 0 0 +744 1783752587919032400 REFRESH 41 0 0.72946106871695326 1 10 1 10 0 0 96 3 412 3943914 55200 149.501953125 0.97319999999999995 188.13030000000001 20160 13043 0 0 983040 737280 737280 737514 748800 37 26 38 35 276 0 0 0 0 3 0 0 0 0 0 +745 1783752588114378200 REFRESH 50 0 0.72649361845443361 2 9 2 9 0 0 112 9 419 3943925 55200 149.29203796386719 0.97929999999999995 179.48589999999999 20160 13199 0 0 983040 737280 737280 737525 748800 120 26 44 68 161 0 0 0 0 9 0 0 0 0 0 +746 1783752588294434700 REFRESH 27 0 0.72862431968111796 0 14 0 14 0 0 97 11 414 3943915 55200 149.80618286132812 0.97509999999999997 178.45650000000001 20160 14136 0 0 983040 737280 737280 737514 748800 26 26 25 29 308 0 0 0 0 11 0 0 0 0 0 +747 1783752588505268400 REFRESH 44 0 0.74098901656253791 2 7 2 7 0 0 114 9 417 3943930 55200 150.12351989746094 0.99809999999999999 209.61070000000001 20160 11959 0 0 983040 737280 737280 737530 748800 82 26 64 29 216 0 0 0 0 9 0 0 0 0 0 +748 1783752588708667400 REFRESH 38 0 0.72723405274528186 4 14 4 14 0 0 78 9 416 3943904 55200 149.928955078125 0.97650000000000003 177.93799999999999 20160 14226 0 0 983040 737280 737280 737504 748800 37 26 36 31 286 0 0 0 0 9 0 0 0 0 0 +749 1783752588901798000 REFRESH 24 0 0.73246992643051323 4 11 4 11 0 0 121 11 412 3943922 55200 149.98847961425781 0.98570000000000002 180.01050000000001 20160 14692 0 0 983040 737280 737280 737521 748800 27 26 32 35 292 1 0 0 0 10 0 0 0 0 0 +750 1783752589114073500 REFRESH 9 0 0.78135777042581234 2 6 2 6 0 0 109 6 426 3943909 55200 150.8167724609375 0.98229999999999995 211.1857 20160 12708 0 0 983040 737280 737280 737509 748800 101 25 67 64 169 0 0 0 0 6 0 0 0 0 0 +751 1783752589334090400 REFRESH 13 0 0.89881963318850988 1 6 1 6 0 0 161 7 413 3943910 55200 149.78787231445312 0.98609999999999998 195.1687 20160 12854 0 0 983040 737280 737280 737510 748800 145 26 56 60 126 0 0 0 0 7 0 0 0 0 0 +752 1783752589521048200 REFRESH 45 0 0.74352767690649102 2 7 2 7 0 0 113 6 418 3943898 55200 149.30943298339844 0.98450000000000004 185.77209999999999 20160 12026 0 0 983040 737280 737280 737498 748800 107 25 37 37 212 0 0 0 0 6 0 0 0 0 0 +753 1783752589713898000 REFRESH 18 0 0.72487674303727745 4 15 4 15 0 0 85 15 422 3943906 55200 150.72256469726562 0.97499999999999998 180.3638 20160 14662 0 0 983040 737280 737280 737506 748800 30 25 25 33 309 0 0 0 1 14 0 0 0 0 0 +754 1783752589935962700 REFRESH 54 0 0.73909678749029806 1 8 1 8 0 0 107 9 427 3943926 55200 150.0211181640625 0.97419999999999995 220.8793 20160 11921 0 0 983040 737280 737280 737526 748800 157 25 52 101 92 0 0 0 0 9 0 0 0 0 0 +755 1783752590138821300 REFRESH 1 0 0.78878724461998539 1 7 1 7 0 0 113 7 417 3943906 55200 150.75840759277344 0.98839999999999995 201.7851 20160 12279 0 0 983040 737280 737280 737506 748800 119 26 45 44 183 0 0 0 0 7 0 0 0 0 0 +756 1783752590354725100 REFRESH 53 0 0.78400898966157784 0 8 0 8 0 0 120 10 416 3943925 55200 150.34471130371094 0.97119999999999995 188.36170000000001 20160 12050 0 0 983040 737280 737280 737525 748800 96 27 27 41 225 0 0 0 0 10 0 0 0 0 0 +757 1783752590543958200 REFRESH 7 0 0.73168714399284029 2 12 2 12 0 0 98 13 415 3943923 55200 148.6878662109375 0.97540000000000004 177.8073 20160 14115 0 0 983040 737280 737280 737523 748800 29 26 28 29 303 0 0 0 0 13 0 0 0 0 0 +758 1783752590769838300 REFRESH 11 0 0.78504620518601864 0 8 0 8 0 0 94 9 422 3943924 55200 149.27973937988281 0.97230000000000005 224.82320000000001 20160 12403 0 0 983040 737280 737280 737523 748800 133 25 57 57 150 1 0 0 0 8 0 0 0 0 0 +759 1783752592108438000 DEPTH 17 1 0.89604633458950378 0 7 0 7 0 0 155 41 2530 23664907 81600 855.57077026367188 5.8487 1298.3262999999999 120960 61777 1 0 5898240 4423680 4423680 4426504 4492800 190 156 150 206 1828 0 0 0 0 41 0 0 0 0 0 +760 1783752593413760800 DEPTH 56 1 0.89594299589616111 2 5 2 5 0 0 160 27 2565 23664772 81600 853.17425537109375 5.8677999999999999 1284.4757 120960 60384 1 0 5898240 4423680 4423680 4426370 4492800 367 156 157 201 1684 0 0 0 0 27 0 0 0 0 0 +761 1783752594500804300 DEPTH 8 1 0.87325055064832835 2 5 2 5 0 0 203 46 2537 23664924 81600 866.71319580078125 5.8878000000000004 1065.9976999999999 120960 61824 1 0 5898240 4423680 4423680 4426521 4492800 262 153 150 192 1780 1 0 0 0 45 0 0 0 0 0 +762 1783752595565333400 DEPTH 6 1 0.81821221257132992 3 11 3 11 1 0 105 81 2623 23664965 81600 857.57208251953125 5.8635999999999999 1031.9949999999999 120960 57268 1 0 5898240 4423680 4423680 4426565 4492800 152 150 150 150 2021 0 0 0 0 81 0 0 0 0 3 +763 1783752596669491200 DEPTH 33 1 0.78634801773158802 1 7 1 7 0 0 166 41 2534 23664857 81600 861.80819702148438 5.8360000000000003 1092.6235999999999 120960 56561 1 0 5898240 4423680 4423680 4426456 4492800 194 156 161 165 1858 0 0 0 0 41 0 0 0 0 0 +764 1783752597946451900 DEPTH 31 1 0.77741462783601634 2 6 2 6 0 0 110 18 2595 23664836 81600 850.99600219726562 5.8550000000000004 1254.2071000000001 120960 59727 1 0 5898240 4423680 4423680 4426436 4492800 586 150 156 213 1490 0 0 0 0 18 0 0 0 0 0 +765 1783752599041747500 DEPTH 16 1 0.75563075971807581 2 7 2 7 0 0 154 47 2521 23664973 81600 863.5684814453125 5.8538999999999994 1059.9912999999999 120960 57211 1 0 5898240 4423680 4423680 4426570 4492800 165 156 156 543 1501 0 0 0 0 47 0 0 0 0 0 +766 1783752600094830800 DEPTH 42 1 0.73643552285729996 4 12 4 12 1 0 111 85 2624 23664918 81600 856.82118225097656 5.8658999999999999 1032.2376999999999 120960 57171 1 0 5898240 4423680 4423680 4426518 4492800 160 150 150 151 2013 1 0 0 0 84 0 0 0 0 5 +767 1783752601389135300 DEPTH 13 1 0.80419509069223805 1 6 1 6 0 0 162 33 2499 23664826 81600 854.29043579101562 5.8528000000000002 1256.4132999999999 120960 60805 1 0 5898240 4423680 4423680 4426425 4492800 194 155 161 165 1824 0 0 0 0 33 0 0 0 0 0 +768 1783752602412335000 DEPTH 19 1 0.77001316123527586 2 11 2 11 1 0 112 54 2540 23664822 81600 854.01762390136719 5.8437999999999999 1022.03 120960 56769 1 0 5898240 4423680 4423680 4426422 4492800 174 150 150 188 1878 0 0 0 0 54 0 0 0 0 1 +769 1783752603685378900 DEPTH 52 1 0.73253470245353081 1 8 1 8 0 0 99 27 2584 23664838 81600 848.91374206542969 5.8659999999999997 1271.6833999999999 120960 57111 1 0 5898240 4423680 4423680 4426438 4492800 338 150 155 624 1317 0 0 0 0 27 0 0 0 0 0 +770 1783752604741961000 DEPTH 10 1 0.72874403869327342 1 11 1 11 0 0 104 17 2566 23664894 81600 851.50303649902344 5.8454000000000006 1027.3729000000001 120960 65359 1 0 5898240 4423680 4423680 4426494 4492800 196 156 162 162 1890 0 0 1 1 15 0 0 0 0 0 +771 1783752605791728100 DEPTH 12 1 0.72875652230655363 3 8 3 8 0 0 145 67 2527 23664746 81600 854.04873657226562 5.8461999999999996 1028.5789 120960 60091 1 0 5898240 4423680 4423680 4426343 4492800 177 150 166 213 1821 0 0 0 0 67 0 0 0 0 0 +772 1783752606874788300 DEPTH 22 1 0.72842636931808502 3 12 3 12 0 0 108 100 2606 23664800 81600 861.1263427734375 5.8657000000000004 1035.9142999999999 120960 70738 1 0 5898240 4423680 4423680 4426398 4492800 150 150 150 150 2006 0 0 1 2 97 0 0 0 0 0 +773 1783752607925345700 DEPTH 20 1 0.72843712867305899 3 12 3 12 1 0 90 75 2580 23664805 81600 856.20509338378906 5.8602000000000007 1025.7063000000001 120960 70501 1 0 5898240 4423680 4423680 4426403 4492800 170 156 204 215 1835 1 0 2 2 70 0 0 0 0 1 +774 1783752608960048600 DEPTH 28 1 0.72796512133193847 2 13 1 12 1 0 118 81 2522 23664835 81600 858.98344421386719 5.8306000000000004 1033.5559000000001 120960 70343 1 0 5898240 4423680 4423680 4426434 4492800 152 150 152 150 1918 0 1 0 1 79 0 0 0 0 2 +775 1783752610266127600 DEPTH 17 1 0.80426992109867046 0 7 0 7 0 0 157 33 2526 23664844 81600 848.06025695800781 5.8689999999999998 1291.0346999999999 120960 51018 1 0 5898240 4423680 4423680 4426440 4492800 195 156 150 236 1789 0 0 0 0 33 0 0 0 0 0 +776 1783752611561946000 DEPTH 56 1 0.80439451270327966 2 5 2 5 0 0 163 38 2564 23664751 81600 845.2474365234375 5.8278999999999996 1279.8081 120960 50057 1 0 5898240 4423680 4423680 4426350 4492800 363 156 157 219 1669 0 0 0 0 38 0 0 0 0 0 +777 1783752612654119200 DEPTH 8 1 0.80175591940237056 2 5 2 5 0 0 203 40 2552 23664796 81600 857.34913635253906 5.8426 1067.1659 120960 51463 1 0 5898240 4423680 4423680 4426395 4492800 258 151 152 215 1776 0 0 0 0 40 0 0 0 0 0 +778 1783752613962147300 DEPTH 9 1 0.77492506908313297 2 6 2 6 0 0 112 14 2612 23664837 81600 863.73478698730469 5.8472 1306.894 120960 60130 1 0 5898240 4423680 4423680 4426437 4492800 364 150 207 260 1631 0 1 0 0 13 0 0 0 0 0 +779 1783752615307627500 DEPTH 44 1 0.73722173178400441 2 7 2 7 0 0 114 20 2592 23664763 81600 855.75254821777344 5.8353999999999999 1293.4758999999999 120960 57051 1 0 5898240 4423680 4423680 4426363 4492800 161 150 172 156 1953 0 0 0 0 20 0 0 0 0 0 +780 1783752616627461900 DEPTH 1 1 0.78284251580281872 1 7 1 7 0 0 113 22 2568 23664792 81600 858.68962097167969 5.8690999999999995 1280.8467000000001 120960 57745 1 0 5898240 4423680 4423680 4426390 4492800 262 156 201 208 1741 0 0 0 0 22 0 0 0 0 0 +781 1783752617684047700 DEPTH 57 1 0.72810258100849401 2 13 2 13 1 0 95 72 2509 23664832 81600 848.86285400390625 5.8907000000000007 1016.9325 120960 69328 1 0 5898240 4423680 4423680 4426432 4492800 162 156 150 150 1891 0 0 0 0 72 0 0 0 0 3 +782 1783752618734800300 DEPTH 47 1 0.72682119835522041 2 11 2 11 1 0 107 25 2566 23664894 81600 857.67073059082031 5.8712999999999997 1026.0719999999999 120960 59759 1 0 5898240 4423680 4423680 4426493 4492800 154 150 158 156 1948 0 0 0 0 25 0 0 0 0 1 +783 1783752619998958000 DEPTH 13 1 0.80282915940239896 1 6 1 6 0 0 162 32 2495 23664816 81600 849.78871154785156 5.8964000000000008 1263.0117 120960 50134 1 0 5898240 4423680 4423680 4426415 4492800 184 155 160 166 1830 1 0 0 0 31 0 0 0 0 0 +784 1783752621326695000 DEPTH 11 1 0.78149631708033174 0 8 0 8 0 0 95 9 2554 23664883 81600 849.94082641601562 5.8433000000000002 1294.5861 120960 58580 1 0 5898240 4423680 4423680 4426481 4492800 317 150 187 196 1704 0 0 0 0 9 0 0 0 0 0 +785 1783752622597096600 DEPTH 53 1 0.78133455076441782 0 8 0 8 0 0 120 34 2508 23664856 81600 857.48939514160156 5.8362999999999996 1235.4594 120960 56578 1 0 5898240 4423680 4423680 4426454 4492800 167 156 150 156 1879 0 0 0 0 34 0 0 0 0 0 +786 1783752623640654800 DEPTH 28 1 0.8011625270934658 1 12 1 12 0 0 124 70 2498 23664791 81600 849.78524780273438 5.8451000000000004 1024.1931999999999 120960 57670 1 0 5898240 4423680 4423680 4426390 4492800 155 150 151 150 1892 0 1 0 0 69 0 0 0 0 0 +787 1783752624687073700 DEPTH 6 1 0.80157296490699437 3 11 3 11 1 0 105 38 2625 23664833 81600 850.96044921875 5.8628999999999998 1022.5036 120960 46609 1 0 5898240 4423680 4423680 4426428 4492800 151 150 150 150 2024 0 0 0 0 38 0 0 0 0 3 +788 1783752625926756800 DEPTH 45 1 0.73658251134157471 2 7 2 7 0 0 113 23 2549 23664870 81600 856.412841796875 5.8389999999999995 1195.7083 120960 56718 1 0 5898240 4423680 4423680 4426470 4492800 217 150 172 181 1829 0 0 0 0 23 0 0 0 0 0 +789 1783752627209899400 DEPTH 54 1 0.73557888942940586 1 8 1 8 1 0 107 21 2577 23664721 81600 854.41081237792969 5.8370999999999995 1281.9802 120960 58472 1 0 5898240 4423680 4423680 4426320 4492800 372 150 203 333 1519 0 0 0 0 21 0 0 0 0 1 +790 1783752628346045400 DEPTH 33 1 0.7836906961108655 1 7 1 7 0 0 166 41 2524 23664861 81600 854.60643005371094 5.8383000000000003 1099.4492 120960 45623 1 0 5898240 4423680 4423680 4426460 4492800 203 156 161 169 1835 0 0 0 0 41 0 0 0 0 0 +791 1783752628536456900 REFRESH 34 0 0.72262719548825438 1 13 1 13 0 0 94 14 427 3943887 55200 148.12467956542969 0.97519999999999996 175.01179999999999 20160 13076 0 0 983040 737280 737280 737487 748800 38 25 39 41 284 0 0 0 0 14 0 0 0 0 0 +792 1783752628745686500 REFRESH 9 0 0.66265827485460915 2 6 2 6 0 0 112 6 432 3943931 55200 151.22738647460938 0.98119999999999996 208.1001 20160 12321 0 0 983040 737280 737280 737531 748800 102 25 65 67 173 0 0 0 0 6 0 0 0 0 0 +793 1783752628946630900 REFRESH 4 0 0.70660740742297334 1 13 1 13 0 0 45 4 418 3943908 55200 148.79539489746094 0.97409999999999997 176.37540000000001 20160 14615 0 0 983040 737280 737280 737508 748800 26 25 33 29 305 0 0 0 0 4 0 0 0 0 0 +794 1783752629158344200 REFRESH 13 0 0.75132889621852195 1 6 1 6 1 0 162 4 413 3943903 55200 150.63655090332031 0.97330000000000005 193.9862 20160 12796 0 0 983040 737280 737280 737503 748800 150 26 58 65 114 0 0 0 0 4 0 0 0 0 1 +795 1783752629354039200 REFRESH 35 0 0.72499494477037163 2 11 2 11 0 0 127 15 418 3943893 55200 150.06515502929688 0.97330000000000005 179.79480000000001 20160 12856 0 0 983040 737280 737280 737493 748800 43 25 29 93 228 0 0 0 1 14 0 0 0 0 0 +796 1783752629579369800 REFRESH 11 0 0.64781551069900156 0 8 0 8 0 0 95 6 418 3943892 55200 149.32275390625 0.97799999999999998 224.2235 20160 12548 0 0 983040 737280 737280 737492 748800 127 25 52 54 160 0 0 0 0 6 0 0 0 0 0 +797 1783752629778783200 REFRESH 43 0 0.72624626033947803 2 13 2 13 0 0 107 8 415 3943903 55200 149.81613159179688 0.97750000000000004 178.5754 20160 12933 0 0 983040 737280 737280 737502 748800 49 26 31 62 247 0 0 0 0 8 0 0 0 0 0 +798 1783752629970323000 REFRESH 5 0 0.72673961482939431 2 11 2 11 0 0 88 7 405 3943898 55200 148.78515625 0.97750000000000004 175.93260000000001 20160 14012 0 0 983040 737280 737280 737498 748800 31 26 44 56 248 0 0 0 0 7 0 0 0 0 0 +799 1783752630150724400 REFRESH 22 0 0.72236954051792335 3 12 3 12 0 0 108 16 419 3943916 55200 150.25868225097656 0.99819999999999998 179.2749 20160 14036 0 0 983040 737280 737280 737515 748800 28 26 26 25 314 0 0 1 1 14 0 0 0 0 0 +800 1783752630352604200 REFRESH 26 0 0.7211720250832071 1 13 1 13 0 0 66 11 418 3943914 55200 150.18182373046875 0.97130000000000005 177.5703 20160 14640 0 0 983040 737280 737280 737513 748800 27 25 29 32 305 0 0 0 0 11 0 0 0 0 0 +801 1783752630543499300 REFRESH 25 0 0.7223854822795559 3 11 3 11 0 0 94 8 423 3943896 55200 150.4716796875 0.97570000000000001 179.49010000000001 20160 13948 0 0 983040 737280 737280 737495 748800 34 25 45 54 265 0 0 0 1 7 0 0 0 0 0 +802 1783752630764842900 REFRESH 52 0 0.73036840061803443 1 8 1 8 0 0 99 7 425 3943938 55200 149.89129638671875 1.0004 220.1602 20160 12255 0 0 983040 737280 737280 737537 748800 111 25 29 162 98 0 0 0 0 7 0 0 0 0 0 +803 1783752630957404000 REFRESH 37 0 0.72337506908310156 1 12 1 12 0 0 122 11 410 3943907 55200 148.73907470703125 0.9748 177.0702 20160 12192 0 0 983040 737280 737280 737507 748800 51 26 47 31 255 0 0 0 0 11 0 0 0 0 0 +804 1783752631151250200 REFRESH 21 0 0.72329916853246901 0 10 0 10 0 0 156 5 413 3943890 55200 151.43423461914062 0.97089999999999999 192.75059999999999 20160 12199 0 0 983040 737280 737280 737489 748800 52 26 32 55 248 0 0 0 0 5 0 0 0 0 0 +805 1783752631339261500 REFRESH 53 0 0.72853477812492096 0 8 0 8 0 0 120 6 418 3943896 55200 150.67852783203125 0.9698 186.79910000000001 20160 12086 0 0 983040 737280 737280 737495 748800 120 27 27 45 199 0 1 0 0 5 0 0 0 0 0 +806 1783752631555783700 REFRESH 20 0 0.72254734395053366 3 12 3 12 0 0 91 6 421 3943935 55200 149.75590515136719 0.97699999999999998 177.3229 20160 14017 0 0 983040 737280 737280 737534 748800 62 26 48 61 224 0 0 0 0 6 0 0 0 0 0 +807 1783752631745656900 REFRESH 49 0 0.72518708465575243 3 10 3 10 0 0 120 12 415 3943903 55200 149.0513916015625 0.97789999999999999 177.6078 20160 12232 0 0 983040 737280 737280 737503 748800 35 26 74 49 231 0 0 0 0 12 0 0 0 0 0 +808 1783752631938496800 REFRESH 55 0 0.72693726020338112 1 15 1 15 0 0 118 6 417 3943901 55200 150.12760925292969 0.97170000000000001 179.46129999999999 20160 14074 0 0 983040 737280 737280 737501 748800 28 26 28 43 292 0 0 0 0 6 0 0 0 0 0 +809 1783752632148073000 REFRESH 31 0 0.77512600480331439 2 6 2 6 0 0 110 6 421 3943902 55200 150.97651672363281 0.97440000000000004 208.41210000000001 20160 12163 0 0 983040 737280 737280 737502 748800 209 25 27 59 101 0 0 0 0 6 0 0 0 0 0 +810 1783752632349091000 REFRESH 38 0 0.72040205898740051 4 14 4 14 0 0 78 13 417 3943929 55200 149.396484375 0.9698 176.7362 20160 14086 0 0 983040 737280 737280 737529 748800 44 26 37 38 272 0 0 0 0 13 0 0 0 0 0 +811 1783752632549436700 REFRESH 41 0 0.71952957640146864 1 10 1 10 0 0 96 7 416 3943939 55200 147.8656005859375 0.97230000000000005 188.13339999999999 20160 12874 0 0 983040 737280 737280 737539 748800 37 26 36 31 286 0 0 0 0 7 0 0 0 0 0 +812 1783752632745708000 REFRESH 46 0 0.72451876542389226 2 15 2 15 0 0 93 15 416 3943913 55200 150.16038513183594 0.97919999999999996 179.12110000000001 20160 14006 0 0 983040 737280 737280 737513 748800 30 26 39 32 289 1 0 0 0 14 0 0 0 0 0 +813 1783752632924176500 REFRESH 10 0 0.72414873293233661 1 11 1 11 0 0 104 8 423 3943903 55200 148.21900939941406 0.9738 177.40219999999999 20160 12052 0 0 983040 737280 737280 737503 748800 91 26 49 36 221 1 0 0 0 7 0 0 0 0 0 +814 1783752633105776500 REFRESH 12 0 0.72488253586641171 3 8 3 8 0 0 146 11 411 3943915 55200 150.98265075683594 0.97499999999999998 180.48249999999999 20160 12224 0 0 983040 737280 737280 737514 748800 78 26 39 93 175 0 0 0 0 11 0 0 0 0 0 +815 1783752633293594500 REFRESH 48 0 0.70169406076865926 2 11 2 11 0 0 69 7 426 3943913 55200 148.72370910644531 0.97499999999999998 176.5658 20160 13662 0 0 983040 737280 737280 737513 748800 151 25 54 59 137 0 0 0 0 7 0 0 0 0 0 +816 1783752633487426600 REFRESH 24 0 0.72705533149960067 4 11 4 11 0 0 122 13 409 3943916 55200 150.14399719238281 0.9738 179.1148 20160 14761 0 0 983040 737280 737280 737515 748800 28 26 28 31 296 1 0 1 0 11 0 0 0 0 0 +817 1783752633700609000 REFRESH 44 0 0.73468138180996867 2 7 2 7 0 0 114 8 414 3943907 55200 150.30374145507812 1.002 212.03380000000001 20160 12365 0 0 983040 737280 737280 737507 748800 77 26 55 28 228 0 0 0 0 8 0 0 0 0 0 +818 1783752633880512100 REFRESH 27 0 0.72388776003745869 0 14 0 14 0 0 97 11 420 3943923 55200 149.99346923828125 0.98860000000000003 178.74799999999999 20160 13914 0 0 983040 737280 737280 737522 748800 27 26 27 29 311 0 0 0 0 11 0 0 0 0 0 +819 1783752634083032500 REFRESH 58 0 0.72544857507043214 2 13 2 12 1 0 106 11 419 3943896 55200 150.22796630859375 0.9768 178.53370000000001 20160 12962 0 0 983040 737280 737280 737496 748800 36 26 39 55 263 0 0 0 0 11 0 0 0 0 1 +820 1783752634284222300 REFRESH 1 0 0.78049282193654212 1 7 1 7 0 0 113 6 417 3943908 55200 150.11328125 0.97689999999999999 200.12219999999999 20160 12410 0 0 983040 737280 737280 737508 748800 127 26 52 48 164 0 0 0 0 6 0 0 0 0 0 +821 1783752634467597900 REFRESH 8 0 0.89061026168232438 2 5 2 5 0 0 203 5 415 3943943 55200 151.46188354492188 0.97270000000000001 182.20310000000001 20160 13049 0 0 983040 737280 737280 737542 748800 123 27 65 62 138 1 0 0 0 4 0 0 0 0 0 +822 1783752634647910600 REFRESH 36 0 0.72532897820143583 3 10 3 10 1 0 94 12 415 3943908 55200 150.65673828125 0.97360000000000002 179.21289999999999 20160 12878 0 0 983040 737280 737280 737508 748800 84 26 41 52 212 0 0 0 0 12 0 0 0 0 1 +823 1783752634840000300 REFRESH 51 0 0.71635542887630244 3 12 3 12 0 0 86 8 421 3943904 55200 148.70425415039062 0.9768 177.1825 20160 14008 0 0 983040 737280 737280 737504 748800 31 26 117 98 149 0 0 0 0 8 0 0 0 0 0 +824 1783752635019915100 REFRESH 47 0 0.72228440080838974 2 11 2 11 0 0 108 8 424 3943924 55200 150.15628051757812 0.97389999999999999 178.7302 20160 12394 0 0 983040 737280 737280 737523 748800 81 26 49 33 235 0 0 0 0 8 0 0 0 0 0 +825 1783752635242883400 REFRESH 54 0 0.73317830965713626 1 8 1 8 0 0 107 6 421 3943899 55200 150.2607421875 0.97470000000000001 220.95859999999999 20160 12805 0 0 983040 737280 737280 737499 748800 162 25 53 100 81 0 0 0 0 6 0 0 0 0 0 +826 1783752635441986500 REFRESH 3 0 0.72558466608141692 2 11 2 11 0 0 111 7 418 3943913 55200 148.10499572753906 0.97350000000000003 175.38399999999999 20160 13026 0 0 983040 737280 737280 737513 748800 69 25 44 45 235 0 0 0 0 7 0 0 0 0 0 +827 1783752635633321700 REFRESH 18 0 0.7193461095573791 4 15 4 15 0 0 86 15 426 3943891 55200 149.88185119628906 0.99880000000000002 178.76599999999999 20160 14678 0 0 983040 737280 737280 737491 748800 31 25 25 32 313 0 0 0 1 14 0 0 0 0 0 +828 1783752635836985000 REFRESH 23 0 0.7236758067134399 3 14 3 14 0 0 89 20 415 3943914 55200 149.9105224609375 0.97640000000000005 178.4837 20160 14684 0 0 983040 737280 737280 737514 748800 27 25 41 32 290 0 0 0 0 20 0 0 0 0 0 +829 1783752636034599100 REFRESH 16 0 0.75138909418573097 2 7 2 7 0 0 154 9 416 3943914 55200 150.0631103515625 0.97560000000000002 181.90199999999999 20160 12125 0 0 983040 737280 737280 737514 748800 29 26 26 248 87 0 0 0 0 9 0 0 0 0 0 +830 1783752636213090000 REFRESH 6 0 0.78639397262305155 3 11 3 11 0 0 105 13 413 3943912 55200 150.03852844238281 0.97189999999999999 177.39959999999999 20160 12204 0 0 983040 737280 737280 737512 748800 26 25 25 25 312 0 0 0 0 13 0 0 0 0 0 +831 1783752636415964500 REFRESH 40 0 0.71817787731802107 3 11 3 11 0 0 104 13 416 3943924 55200 150.31500244140625 0.97640000000000005 177.9682 20160 13143 0 0 983040 737280 737280 737524 748800 142 25 33 97 119 0 0 0 0 13 0 0 0 0 0 +832 1783752636605495400 REFRESH 39 0 0.72484722275666835 2 12 2 12 0 0 136 8 397 3943918 55200 148.71160888671875 0.97430000000000005 177.08260000000001 20160 12127 0 0 983040 737280 737280 737518 748800 30 26 28 32 281 0 0 0 0 8 0 0 0 0 0 +833 1783752636795620700 REFRESH 32 0 0.72367064178618346 2 14 2 14 0 0 110 13 421 3943911 55200 148.6929931640625 0.97709999999999997 176.756 20160 12980 0 0 983040 737280 737280 737511 748800 122 25 37 32 205 0 0 0 0 13 0 0 0 0 0 +834 1783752637022967000 REFRESH 14 0 0.72726264705617027 0 12 0 12 0 0 100 13 414 3943898 55200 149.69651794433594 0.97950000000000004 186.3006 20160 12018 0 0 983040 737280 737280 737498 748800 33 26 28 29 298 0 0 0 0 13 0 0 0 0 0 +835 1783752637211151700 REFRESH 45 0 0.73426505181451063 2 7 2 7 0 0 113 4 416 3943905 55200 149.75692749023438 0.9758 187.00890000000001 20160 12133 0 0 983040 737280 737280 737505 748800 110 25 33 38 210 0 0 0 0 4 0 0 0 0 0 +836 1783752637391621300 REFRESH 42 0 0.73051215755832732 4 12 4 12 1 0 111 11 422 3943906 55200 150.59251403808594 0.98109999999999997 179.30840000000001 20160 12009 0 0 983040 737280 737280 737506 748800 123 25 26 33 215 0 0 0 0 11 0 0 0 0 1 +837 1783752637592118500 REFRESH 29 0 0.72243998800101061 2 12 2 12 0 0 97 9 419 3943919 55200 150.64460754394531 0.97240000000000004 178.83779999999999 20160 14029 0 0 983040 737280 737280 737519 748800 35 25 42 35 282 0 0 0 0 9 0 0 0 0 0 +838 1783752637782514700 REFRESH 7 0 0.72683205327445366 2 12 2 12 0 0 98 8 416 3943923 55200 149.15277099609375 0.97870000000000001 177.5427 20160 13888 0 0 983040 737280 737280 737523 748800 29 26 28 32 301 0 0 0 0 8 0 0 0 0 0 +839 1783752637973497200 REFRESH 19 0 0.76066599602949958 2 11 2 11 0 0 112 9 417 3943930 55200 148.80767822265625 0.98240000000000005 177.20959999999999 20160 11985 0 0 983040 737280 737280 737530 748800 77 25 26 48 241 0 0 0 0 9 0 0 0 0 0 +840 1783752638160105700 REFRESH 33 0 0.78142884503921939 1 7 1 7 0 0 166 7 423 3943898 55200 151.93087768554688 0.97389999999999999 185.50139999999999 20160 12109 0 0 983040 737280 737280 737498 748800 115 26 40 41 201 0 0 0 0 7 0 0 0 0 0 +841 1783752638340001600 REFRESH 28 0 0.90612748314978886 1 12 1 12 0 0 124 12 401 3943919 55200 149.85830688476562 0.97499999999999998 178.77359999999999 20160 12784 0 0 983040 737280 737280 737519 748800 55 26 29 28 263 0 0 0 0 12 0 0 0 0 0 +842 1783752638518638600 REFRESH 57 0 0.7230171243554786 2 13 2 12 1 0 95 8 414 3943910 55200 149.07308959960938 0.97529999999999994 177.45480000000001 20160 12866 0 0 983040 737280 737280 737510 748800 28 26 85 61 214 0 0 0 0 8 0 0 0 0 1 +843 1783752638741045700 REFRESH 56 0 0.89352150444092082 2 5 2 5 0 0 163 4 415 3943907 55200 150.36927795410156 0.97599999999999998 221.26089999999999 20160 12877 0 0 983040 737280 737280 737507 748800 175 26 46 49 119 0 0 0 0 4 0 0 0 0 0 +844 1783752638932664900 REFRESH 15 0 0.7217059943733285 3 12 3 12 0 0 76 14 416 3943894 55200 149.52140808105469 0.97440000000000004 177.92339999999999 20160 14527 0 0 983040 737280 737280 737494 748800 27 26 25 25 313 0 0 1 1 12 0 0 0 0 0 +845 1783752639126350400 REFRESH 2 0 0.72746333734404334 2 12 2 12 0 0 99 9 419 3943935 55200 150.4532470703125 0.97430000000000005 180.392 20160 14026 0 0 983040 737280 737280 737535 748800 29 26 40 33 291 0 0 1 0 8 0 0 0 0 0 +846 1783752639318889700 REFRESH 30 0 0.72666682314692888 2 12 2 12 0 0 97 9 401 3943904 55200 149.36883544921875 0.97899999999999998 177.89439999999999 20160 14053 0 0 983040 737280 737280 737503 748800 30 25 56 35 255 0 0 0 0 9 0 0 0 0 0 +847 1783752639508339500 REFRESH 0 0 0.72545400791713832 1 12 1 12 0 0 75 9 424 3943907 55200 148.95718383789062 0.98499999999999999 176.7954 20160 12830 0 0 983040 737280 737280 737507 748800 40 25 37 37 285 0 0 0 0 9 0 0 0 0 0 +848 1783752639703574000 REFRESH 50 0 0.72297751590894055 2 9 2 9 0 0 112 8 417 3943891 55200 150.21875 1.0006999999999999 181.48060000000001 20160 13193 0 0 983040 737280 737280 737491 748800 113 26 38 60 180 0 0 0 0 8 0 0 0 0 0 +849 1783752639928500000 REFRESH 17 0 0.89328357843147699 0 7 0 7 0 0 158 9 416 3943909 55200 149.84294128417969 0.99750000000000005 223.8312 20160 12932 0 0 983040 737280 737280 737509 748800 144 26 36 96 114 0 0 0 0 9 0 0 0 0 0 +850 1783752641207875600 DEPTH 13 1 0.88446002746537999 1 6 1 6 0 0 163 32 2500 23664740 81600 855.01225280761719 5.8497000000000003 1257.3516999999999 120960 61606 1 0 5898240 4423680 4423680 4426339 4492800 198 156 162 173 1811 0 0 0 0 32 0 0 0 0 0 +851 1783752642285661600 DEPTH 8 1 0.88421387249176875 2 5 2 5 0 0 205 30 2547 23664806 81600 867.21066284179688 5.8456000000000001 1061.7784999999999 120960 62962 1 0 5898240 4423680 4423680 4426405 4492800 299 152 153 190 1753 0 0 0 0 30 0 0 0 0 0 +852 1783752643331121700 DEPTH 58 1 0.82379160150778541 2 12 2 12 0 0 108 28 2593 23664845 81600 855.78286743164062 5.8550000000000004 1024.7170000000001 120960 64506 1 0 5898240 4423680 4423680 4426444 4492800 151 156 163 165 1958 0 0 0 0 28 0 0 0 0 0 +853 1783752644610680600 DEPTH 1 1 0.77402389577185338 1 7 1 7 0 0 113 17 2582 23664766 81600 857.01017761230469 5.8245000000000005 1278.4955 120960 58660 1 0 5898240 4423680 4423680 4426366 4492800 286 156 203 226 1711 0 0 0 0 17 0 0 0 0 0 +854 1783752645884700800 DEPTH 53 1 0.77222868259158939 0 8 0 8 0 0 120 38 2509 23664899 81600 855.84573364257812 5.8377999999999997 1232.2934 120960 56789 1 0 5898240 4423680 4423680 4426498 4492800 174 156 150 156 1873 0 0 0 0 38 0 0 0 0 0 +855 1783752647209787000 DEPTH 11 1 0.77200859848016823 0 8 0 8 0 0 95 19 2554 23664824 81600 849.28373718261719 5.8448000000000002 1297.9773 120960 58924 1 0 5898240 4423680 4423680 4426420 4492800 431 150 211 230 1532 0 0 1 0 18 0 0 0 0 0 +856 1783752648490866700 DEPTH 31 1 0.76886408667249406 2 6 2 6 0 0 111 10 2606 23664894 81600 852.25555419921875 5.8495000000000008 1258.5922 120960 58887 1 0 5898240 4423680 4423680 4426489 4492800 638 150 153 224 1441 0 0 0 0 10 0 0 0 0 0 +857 1783752649800405900 DEPTH 9 1 0.7671811088722772 2 6 2 6 0 0 113 14 2611 23664757 81600 859.44673156738281 5.8906999999999998 1298.2765999999999 120960 59441 1 0 5898240 4423680 4423680 4426357 4492800 438 150 236 311 1476 0 0 0 0 14 0 0 0 0 0 +858 1783752650833678400 DEPTH 28 1 0.80264786539798205 1 12 1 12 1 0 126 77 2516 23664779 81600 858.10594177246094 5.8689999999999998 1032.1126999999999 120960 64134 1 0 5898240 4423680 4423680 4426378 4492800 151 150 150 150 1915 1 0 0 1 75 0 0 0 0 1 +859 1783752652142682300 DEPTH 56 1 0.79587533340249517 2 5 2 5 0 0 163 38 2560 23664980 81600 854.92408752441406 5.8376000000000001 1287.0976000000001 120960 61366 1 0 5898240 4423680 4423680 4426576 4492800 423 156 162 192 1627 0 0 0 0 38 0 0 0 0 0 +860 1783752653209842400 DEPTH 6 1 0.77204690640353046 3 11 3 11 1 0 106 37 2596 23664845 81600 857.87864685058594 6.2256000000000009 1031.4099000000001 120960 57800 1 0 5898240 4423680 4423680 4426444 4492800 153 150 150 150 1993 1 0 0 0 36 0 0 0 0 2 +861 1783752654292270000 DEPTH 16 1 0.7458231399461569 2 7 2 7 0 0 156 51 2541 23664897 81600 862.18464660644531 5.8584999999999994 1059.5009 120960 57826 1 0 5898240 4423680 4423680 4426497 4492800 168 156 156 473 1588 0 0 0 0 51 0 0 0 0 0 +862 1783752655613155600 DEPTH 17 1 0.77042043844138075 0 7 0 7 0 0 158 35 2536 23664785 81600 856.64627075195312 5.8333000000000004 1299.6222 120960 61913 1 0 5898240 4423680 4423680 4426384 4492800 195 156 150 217 1818 0 0 0 0 35 0 0 0 0 0 +863 1783752656945613000 DEPTH 44 1 0.7302758408741441 2 7 2 7 0 0 114 24 2584 23664803 81600 855.30760192871094 5.8295000000000003 1295.8526999999999 120960 57827 1 0 5898240 4423680 4423680 4426402 4492800 162 150 173 156 1943 0 0 0 0 24 0 0 0 0 0 +864 1783752657964894900 DEPTH 57 1 0.7894126337915518 2 12 2 12 1 0 100 81 2511 23664845 81600 850.57203674316406 5.8593999999999999 1018.0933 120960 64285 1 0 5898240 4423680 4423680 4426445 4492800 164 156 155 167 1869 0 0 0 0 81 0 0 0 0 1 +865 1783752659281182100 DEPTH 54 1 0.7268334022651457 1 8 1 8 0 0 107 20 2590 23664851 81600 853.75848388671875 5.8501000000000003 1282.4627 120960 59871 1 0 5898240 4423680 4423680 4426450 4492800 409 150 207 404 1420 0 0 0 0 20 0 0 0 0 0 +866 1783752660534986500 DEPTH 13 1 0.79351999917794436 1 6 1 6 0 0 163 27 2496 23664836 81600 846.42250061035156 5.8487999999999998 1252.7710999999999 120960 50976 1 0 5898240 4423680 4423680 4426435 4492800 199 154 166 173 1804 0 0 0 0 27 0 0 0 0 0 +867 1783752661644419600 DEPTH 8 1 0.79309714499963435 2 5 2 5 0 0 205 28 2559 23664841 81600 861.43800354003906 5.8563000000000001 1073.4188999999999 120960 52345 1 0 5898240 4423680 4423680 4426439 4492800 272 152 152 202 1781 0 0 0 0 28 0 0 0 0 0 +868 1783752662756962200 DEPTH 33 1 0.77580657095193117 1 7 1 7 0 0 167 43 2529 23664763 81600 862.16465759277344 5.8327999999999998 1111.4126000000001 120960 57176 1 0 5898240 4423680 4423680 4426363 4492800 213 156 161 169 1830 2 0 0 0 41 0 0 0 0 0 +869 1783752663784201500 DEPTH 19 1 0.75013688194048755 2 11 2 11 1 0 112 60 2538 23664845 81600 857.4854736328125 5.8503999999999996 1026.1452999999999 120960 56154 1 0 5898240 4423680 4423680 4426445 4492800 183 150 150 191 1864 0 0 0 0 60 0 0 0 0 2 +870 1783752665014459200 DEPTH 45 1 0.72574034771156071 2 7 2 7 0 0 114 26 2551 23664789 81600 858.4598388671875 5.8529999999999998 1208.7473 120960 57364 1 0 5898240 4423680 4423680 4426386 4492800 205 150 171 186 1839 0 0 0 0 26 0 0 0 0 0 +871 1783752666311031100 DEPTH 52 1 0.7257524773932662 1 8 1 8 0 0 99 27 2584 23664899 81600 851.69880676269531 5.8480999999999996 1272.4319 120960 57372 1 0 5898240 4423680 4423680 4426494 4492800 382 150 156 645 1251 0 0 0 0 27 0 0 0 0 0 +872 1783752667371860300 DEPTH 42 1 0.72314141188704217 4 12 4 12 1 0 113 44 2617 23664820 81600 858.9715576171875 6.0522 1034.6531 120960 56968 1 0 5898240 4423680 4423680 4426418 4492800 167 150 150 150 2000 0 0 0 1 43 0 0 0 0 2 +873 1783752668625209900 DEPTH 14 1 0.72251678242052897 0 12 0 12 1 0 100 30 2568 23664916 81600 857.25247192382812 5.8327000000000009 1229.4472000000001 120960 59270 1 0 5898240 4423680 4423680 4426514 4492800 160 153 156 156 1943 0 0 0 0 30 0 0 0 0 1 +874 1783752669907342000 DEPTH 56 1 0.78478976310342652 2 5 2 5 0 0 165 40 2569 23664827 81600 845.06486511230469 5.8554000000000004 1280.8717999999999 120960 50504 1 0 5898240 4423680 4423680 4426426 4492800 400 156 162 203 1648 0 0 0 3 37 0 0 0 0 0 +875 1783752670927737000 DEPTH 58 1 0.78813617137626257 2 12 2 12 0 0 108 21 2576 23664747 81600 849.53462219238281 5.8365999999999998 1019.1704999999999 120960 52695 1 0 5898240 4423680 4423680 4426347 4492800 153 156 162 170 1935 0 0 0 0 21 0 0 0 0 0 +876 1783752671954641700 DEPTH 28 1 0.79129172486139088 1 12 1 12 0 0 126 63 2495 23664836 81600 849.78471374511719 5.8610999999999995 1025.8318999999999 120960 53161 1 0 5898240 4423680 4423680 4426436 4492800 152 150 153 150 1890 2 0 3 1 57 0 0 0 0 0 +877 1783752673272394400 DEPTH 17 1 0.78868114832729252 0 7 0 7 0 0 160 41 2529 23664802 81600 848.19638061523438 5.8345000000000002 1290.2168999999999 120960 50776 1 0 5898240 4423680 4423680 4426400 4492800 193 156 150 240 1790 0 0 0 0 41 0 0 0 0 0 +878 1783752674553218300 DEPTH 1 1 0.77183973079532853 1 7 1 7 0 0 113 13 2596 23664843 81600 849.65940856933594 5.8233000000000006 1279.7462 120960 47165 1 0 5898240 4423680 4423680 4426442 4492800 299 156 217 244 1680 0 0 0 0 13 0 0 0 0 0 +879 1783752675599261800 DEPTH 24 1 0.72190465718025099 4 11 4 11 0 0 122 76 2521 23664813 81600 857.61299133300781 5.8321999999999994 1029.3203000000001 120960 70438 1 0 5898240 4423680 4423680 4426410 4492800 162 154 153 152 1900 0 0 1 0 75 0 0 0 0 0 +880 1783752676655406900 DEPTH 12 1 0.72155898436003629 3 8 3 8 0 0 149 54 2518 23664799 81600 854.10687255859375 5.8618000000000006 1029.4013 120960 58020 1 0 5898240 4423680 4423680 4426396 4492800 177 151 170 212 1808 0 0 0 0 54 0 0 0 0 0 +881 1783752677749044100 DEPTH 2 1 0.72093776953753475 2 12 2 12 0 0 100 47 2574 23664882 81600 860.24708557128906 5.8618999999999994 1039.213 120960 68930 1 0 5898240 4423680 4423680 4426479 4492800 161 156 183 193 1881 1 1 1 1 43 0 0 0 0 0 +882 1783752677942567300 REFRESH 23 0 0.71808628096490368 3 14 3 14 1 0 90 15 416 3943887 55200 149.21113586425781 0.98080000000000001 177.95009999999999 20160 14690 0 0 983040 737280 737280 737487 748800 28 25 55 32 276 2 1 0 0 12 0 0 0 0 1 +883 1783752678134315500 REFRESH 39 0 0.71759255828786372 2 12 2 12 0 0 136 10 403 3943916 55200 149.66476440429688 0.97909999999999997 178.27699999999999 20160 12108 0 0 983040 737280 737280 737516 748800 30 26 28 31 288 0 0 0 0 10 0 0 0 0 0 +884 1783752678314745800 REFRESH 24 0 0.51596323627729579 4 11 4 11 0 0 123 10 408 3943918 55200 149.87059020996094 0.9728 179.20859999999999 20160 13763 0 0 983040 737280 737280 737518 748800 31 26 32 37 282 0 0 0 0 10 0 0 0 0 0 +885 1783752678563267300 REFRESH 21 0 0.71597736389049182 0 10 0 10 0 0 157 13 415 3943892 55200 150.24742126464844 0.97330000000000005 191.36019999999999 20160 12112 0 0 983040 737280 737280 737492 748800 56 26 33 59 241 0 0 0 0 13 0 0 0 0 0 +886 1783752678758227900 REFRESH 7 0 0.71959359364412578 2 12 2 12 0 0 98 14 417 3943900 55200 149.05548095703125 0.97370000000000001 179.8159 20160 13783 0 0 983040 737280 737280 737500 748800 32 26 29 47 283 0 0 0 0 14 0 0 0 0 0 +887 1783752678952118100 REFRESH 27 0 0.7193333548020453 0 14 0 14 1 0 97 9 412 3943929 55200 149.49478149414062 0.98529999999999995 179.7201 20160 13907 0 0 983040 737280 737280 737528 748800 27 26 27 29 303 0 0 0 0 9 0 0 0 0 1 +888 1783752679146598400 REFRESH 40 0 0.71164430757204289 3 11 3 11 1 0 104 8 419 3943926 55200 149.92921447753906 0.98370000000000002 179.47669999999999 20160 13086 0 0 983040 737280 737280 737526 748800 143 25 33 99 119 0 0 0 0 8 0 0 0 0 1 +889 1783752679333808300 REFRESH 33 0 0.73339861103272896 1 7 1 7 0 0 167 10 419 3943869 55200 149.59616088867188 0.98619999999999997 186.10120000000001 20160 12214 0 0 983040 737280 737280 737469 748800 111 26 41 36 205 1 0 0 0 9 0 0 0 0 0 +890 1783752679514822100 REFRESH 12 0 0.56735199985151707 3 8 3 8 0 0 149 9 411 3943883 55200 150.06809997558594 0.99919999999999998 179.89750000000001 20160 12336 0 0 983040 737280 737280 737483 748800 90 26 45 92 158 0 0 0 1 8 0 0 0 0 0 +891 1783752679709258500 REFRESH 18 0 0.71396568005895222 4 15 4 15 0 0 87 10 425 3943902 55200 150.98979187011719 0.98580000000000001 180.4736 20160 14704 0 0 983040 737280 737280 737500 748800 32 25 25 32 311 0 0 0 1 9 0 0 0 0 0 +892 1783752679904980800 REFRESH 50 0 0.71747584990859492 2 9 2 9 0 0 112 7 417 3943920 55200 149.20498657226562 0.97299999999999998 179.40559999999999 20160 13264 0 0 983040 737280 737280 737520 748800 105 26 37 53 196 0 0 0 0 7 0 0 0 0 0 +893 1783752680089582500 REFRESH 8 0 0.88203721992189854 2 5 2 5 0 0 205 7 416 3943910 55200 150.97549438476562 0.97409999999999997 183.47970000000001 20160 13248 0 0 983040 737280 737280 737510 748800 125 26 46 58 161 0 0 0 0 7 0 0 0 0 0 +894 1783752680269927500 REFRESH 42 0 0.68631390892380451 4 12 4 12 0 0 113 9 411 3943909 55200 150.30476379394531 0.97270000000000001 179.18469999999999 20160 12088 0 0 983040 737280 737280 737508 748800 116 25 25 33 212 0 0 0 1 8 0 0 0 0 0 +895 1783752680473549200 REFRESH 46 0 0.71940673574653902 2 15 2 15 1 0 94 18 414 3943932 55200 149.90130615234375 0.97160000000000002 179.32759999999999 20160 13759 0 0 983040 737280 737280 737531 748800 28 26 39 33 288 1 0 0 0 17 0 0 0 0 1 +896 1783752680668111200 REFRESH 55 0 0.71795300650515848 1 15 1 15 0 0 119 19 417 3943906 55200 149.56953430175781 0.97499999999999998 178.89349999999999 20160 13970 0 0 983040 737280 737280 737506 748800 28 26 28 43 292 0 0 0 0 19 0 0 0 0 0 +897 1783752680887466400 REFRESH 31 0 0.76691297576315054 2 6 2 6 0 0 111 8 422 3943915 55200 150.2310791015625 0.97430000000000005 217.0538 20160 12255 0 0 983040 737280 737280 737515 748800 217 25 27 58 95 0 0 0 0 8 0 0 0 0 0 +898 1783752681109804200 REFRESH 56 0 0.87374060204441384 2 5 2 5 0 0 166 8 416 3943931 55200 150.20953369140625 0.97950000000000004 221.15219999999999 20160 13009 0 0 983040 737280 737280 737531 748800 189 26 49 56 96 0 0 0 0 8 0 0 0 0 0 +899 1783752681289096800 REFRESH 19 0 0.74151556354117587 2 11 2 11 0 0 112 13 415 3943893 55200 150.35066223144531 0.97489999999999999 178.18799999999999 20160 11921 0 0 983040 737280 737280 737492 748800 78 25 26 44 242 0 0 0 0 13 0 0 0 0 0 +900 1783752681494518700 REFRESH 25 0 0.71654813553205843 3 11 3 11 0 0 94 14 421 3943894 55200 150.58636474609375 0.97150000000000003 180.43530000000001 20160 13748 0 0 983040 737280 737280 737494 748800 35 25 52 59 250 0 0 0 0 14 0 0 0 0 0 +901 1783752681688109200 REFRESH 36 0 0.7210843302956893 3 10 3 10 1 0 95 13 418 3943919 55200 149.50399780273438 0.97370000000000001 178.6927 20160 12862 0 0 983040 737280 737280 737518 748800 76 26 41 48 227 1 0 0 0 12 0 0 0 0 1 +902 1783752681882061300 REFRESH 5 0 0.72009726621117642 2 11 2 11 1 0 88 12 408 3943896 55200 148.69010925292969 0.97270000000000001 178.1833 20160 13843 0 0 983040 737280 737280 737496 748800 31 26 64 67 220 0 0 0 0 12 0 0 0 0 1 +903 1783752682075390900 REFRESH 49 0 0.7212586384424029 3 10 3 10 0 0 120 12 416 3943913 55200 149.54803466796875 0.97550000000000003 177.90629999999999 20160 11974 0 0 983040 737280 737280 737511 748800 37 26 72 48 233 0 0 0 0 12 0 0 0 0 0 +904 1783752682320542900 REFRESH 54 0 0.72486365294597843 1 8 1 8 0 0 108 2 425 3943916 55200 149.41389465332031 0.98129999999999995 219.928 20160 12602 0 0 983040 737280 737280 737516 748800 169 25 51 98 82 0 0 0 0 2 0 0 0 0 0 +905 1783752682513166000 REFRESH 32 0 0.71845075048832163 2 14 2 14 0 0 110 14 417 3943926 55200 149.0894775390625 0.97370000000000001 177.57149999999999 20160 12686 0 0 983040 737280 737280 737526 748800 131 25 36 31 194 0 0 0 0 14 0 0 0 0 0 +906 1783752682734892200 REFRESH 52 0 0.72383505108657997 1 8 1 8 0 0 101 9 428 3943885 55200 149.14151000976562 0.97409999999999997 220.57249999999999 20160 12291 0 0 983040 737280 737280 737485 748800 102 25 31 145 125 0 0 0 1 8 0 0 0 0 0 +907 1783752682921455000 REFRESH 14 0 0.71795207135434957 0 12 0 12 0 0 100 10 417 3943960 55200 150.61299133300781 0.97330000000000005 185.46789999999999 20160 12049 0 0 983040 737280 737280 737560 748800 36 26 28 33 294 0 0 0 0 10 0 0 0 0 0 +908 1783752683148039800 REFRESH 17 0 0.88713420809218291 0 7 0 7 0 0 161 8 417 3943910 55200 150.79219055175781 0.97340000000000004 225.49529999999999 20160 13284 0 0 983040 737280 737280 737510 748800 143 26 33 96 119 0 0 0 0 8 0 0 0 0 0 +909 1783752683392858300 REFRESH 1 0 0.76972393942449768 1 7 1 7 0 0 113 8 419 3943905 55200 149.83885192871094 1.0006999999999999 200.83269999999999 20160 12104 0 0 983040 737280 737280 737504 748800 137 26 55 58 143 0 0 0 0 8 0 0 0 0 0 +910 1783752683585684600 REFRESH 0 0 0.71990522776465427 1 12 1 12 0 0 75 7 422 3943905 55200 149.391357421875 0.97270000000000001 177.4059 20160 12844 0 0 983040 737280 737280 737504 748800 40 25 36 36 285 0 0 0 0 7 0 0 0 0 0 +911 1783752683791347400 REFRESH 41 0 0.71495443878902498 1 10 1 10 0 0 96 12 414 3943913 55200 148.7667236328125 0.99609999999999999 189.60390000000001 20160 12797 0 0 983040 737280 737280 737511 748800 37 26 36 30 285 0 0 0 0 12 0 0 0 0 0 +912 1783752683983016000 REFRESH 37 0 0.71986617277439024 1 12 1 12 0 0 122 12 408 3943906 55200 148.75442504882812 0.97640000000000005 176.66499999999999 20160 12147 0 0 983040 737280 737280 737506 748800 55 26 50 31 246 0 0 0 0 12 0 0 0 0 0 +913 1783752684161500900 REFRESH 58 0 0.79407101702911864 2 12 2 12 0 0 108 7 414 3943898 55200 149.39750671386719 0.98250000000000004 177.2732 20160 12747 0 0 983040 737280 737280 737498 748800 48 26 39 42 259 0 0 0 0 7 0 0 0 0 0 +914 1783752684381260700 REFRESH 10 0 0.71882564718069286 1 11 1 11 0 0 104 5 424 3943905 55200 149.51116943359375 0.9738 179.07550000000001 20160 12011 0 0 983040 737280 737280 737504 748800 79 26 47 38 234 0 0 0 0 5 0 0 0 0 0 +915 1783752684570741900 REFRESH 34 0 0.71923783347887893 1 13 1 13 0 0 94 5 423 3943905 55200 148.95103454589844 0.97399999999999998 176.18530000000001 20160 12677 0 0 983040 737280 737280 737504 748800 39 25 40 54 265 0 0 0 0 5 0 0 0 0 0 +916 1783752684795848700 REFRESH 44 0 0.72817282601547639 2 7 2 7 0 0 114 2 419 3943898 55200 150.55462646484375 0.97509999999999997 223.95099999999999 20160 12318 0 0 983040 737280 737280 737498 748800 63 26 52 28 250 0 0 0 0 2 0 0 0 0 0 +917 1783752685021246200 REFRESH 11 0 0.77058517799910142 0 8 0 8 0 0 95 6 424 3943909 55200 149.33164978027344 0.98080000000000001 224.32089999999999 20160 12240 0 0 983040 737280 737280 737509 748800 131 25 57 54 157 0 0 0 0 6 0 0 0 0 0 +918 1783752685209116200 REFRESH 53 0 0.77053958732065375 0 8 0 8 0 0 120 4 415 3943887 55200 149.8603515625 0.97729999999999995 186.6756 20160 12078 0 0 983040 737280 737280 737487 748800 121 27 27 44 196 0 0 0 0 4 0 0 0 0 0 +919 1783752685413752300 REFRESH 29 0 0.7172816021081323 2 12 2 12 0 0 97 14 416 3943909 55200 150.58819580078125 0.97440000000000004 179.36609999999999 20160 13862 0 0 983040 737280 737280 737509 748800 36 25 51 37 267 0 0 0 0 14 0 0 0 0 0 +920 1783752685608524900 REFRESH 57 0 0.80785341176559544 2 12 2 12 0 0 100 15 412 3943897 55200 149.36268615722656 0.97499999999999998 178.32140000000001 20160 11981 0 0 983040 737280 737280 737497 748800 31 26 92 69 194 0 0 0 0 15 0 0 0 0 0 +921 1783752685821656700 REFRESH 9 0 0.76599840151173726 2 6 2 6 0 0 114 9 434 3943912 55200 150.23207092285156 0.97299999999999998 212.0908 20160 12249 0 0 983040 737280 737280 737511 748800 110 25 66 61 172 0 0 0 0 9 0 0 0 0 0 +922 1783752686015616600 REFRESH 13 0 0.88299539031605412 1 6 1 6 1 0 163 6 415 3943946 55200 150.03750610351562 0.97240000000000004 192.88050000000001 20160 12901 0 0 983040 737280 737280 737546 748800 151 26 55 63 120 0 0 0 0 6 0 0 0 0 1 +923 1783752686219459900 REFRESH 47 0 0.71639805931547551 2 11 2 11 0 0 108 8 420 3943929 55200 149.67500305175781 0.97689999999999999 178.26159999999999 20160 12388 0 0 983040 737280 737280 737527 748800 80 26 49 29 236 0 0 0 0 8 0 0 0 0 0 +924 1783752686412542700 REFRESH 51 0 0.71101318772097333 3 12 3 12 0 0 86 10 420 3943902 55200 148.83226013183594 0.98419999999999996 177.32339999999999 20160 14002 0 0 983040 737280 737280 737502 748800 31 26 119 106 138 0 0 2 0 8 0 0 0 0 0 +925 1783752686598727800 REFRESH 45 0 0.72412562967557026 2 7 2 7 0 0 114 5 418 3943910 55200 150.03955078125 0.97899999999999998 184.8783 20160 12069 0 0 983040 737280 737280 737510 748800 141 25 42 44 166 0 0 0 0 5 0 0 0 0 0 +926 1783752686778200000 REFRESH 6 0 0.75967365793403163 3 11 3 11 1 0 106 11 414 3943909 55200 150.49497985839844 0.97599999999999998 178.37950000000001 20160 12176 0 0 983040 737280 737280 737509 748800 26 25 25 25 313 0 0 0 0 11 0 0 0 0 1 +927 1783752687015021900 REFRESH 38 0 0.71612914003091777 4 14 4 14 0 0 78 13 419 3943878 55200 149.67193603515625 1.0164 182.86500000000001 20160 13909 0 0 983040 737280 737280 737478 748800 39 26 38 37 279 0 0 0 0 13 0 0 0 0 0 +928 1783752687204486300 REFRESH 35 0 0.72176204267555732 2 11 2 11 0 0 127 11 418 3943903 55200 149.30738830566406 0.97760000000000002 178.6438 20160 12760 0 0 983040 737280 737280 737503 748800 47 25 29 96 221 0 0 0 0 11 0 0 0 0 0 +929 1783752687397395400 REFRESH 15 0 0.71752529277730859 3 12 3 12 0 0 76 13 419 3943878 55200 148.97152709960938 0.99970000000000003 177.55539999999999 20160 14552 0 0 983040 737280 737280 737478 748800 27 26 25 25 316 0 0 0 0 13 0 0 0 0 0 +930 1783752687592504400 REFRESH 22 0 0.71871543351855416 3 12 3 12 0 0 108 13 419 3943896 55200 150.03340148925781 0.9758 179.8433 20160 13696 0 0 983040 737280 737280 737496 748800 31 26 27 25 310 0 0 0 0 13 0 0 0 0 0 +931 1783752687786910600 REFRESH 4 0 0.69937127063580884 1 13 1 13 0 0 46 1 412 3943912 55200 148.68479919433594 0.97619999999999996 175.91390000000001 20160 14647 0 0 983040 737280 737280 737512 748800 26 25 34 34 293 0 0 0 0 1 0 0 0 0 0 +932 1783752687970024800 REFRESH 28 0 0.84247334348252523 1 12 1 12 0 0 127 18 400 3943883 55200 150.14810180664062 0.97689999999999999 181.9332 20160 11932 0 0 983040 737280 737280 737483 748800 63 25 29 27 256 2 0 0 1 15 0 0 0 0 0 +933 1783752688172738000 REFRESH 20 0 0.71479828594495565 3 12 3 12 0 0 91 11 421 3943914 55200 149.876708984375 0.9738 177.86969999999999 20160 13810 0 0 983040 737280 737280 737513 748800 60 26 46 52 237 0 0 0 0 11 0 0 0 0 0 +934 1783752688366580600 REFRESH 30 0 0.72119856458461462 2 12 2 12 1 0 97 13 403 3943905 55200 149.23674011230469 0.97540000000000004 178.12739999999999 20160 13924 0 0 983040 737280 737280 737505 748800 32 25 61 44 241 0 0 0 0 13 0 0 0 0 1 +935 1783752688561946800 REFRESH 43 0 0.72033461608514404 2 13 2 13 1 0 107 12 413 3943882 55200 149.54290771484375 0.97819999999999996 179.42250000000001 20160 12779 0 0 983040 737280 737280 737482 748800 53 26 36 65 233 0 0 0 0 12 0 0 0 0 1 +936 1783752688745584100 REFRESH 16 0 0.74221275328859559 2 7 2 7 0 0 157 10 417 3943925 55200 150.78604125976562 0.97319999999999995 182.5324 20160 12210 0 0 983040 737280 737280 737525 748800 31 26 26 199 135 0 0 0 0 10 0 0 0 0 0 +937 1783752688947648500 REFRESH 26 0 0.71845585224152164 1 13 1 13 0 0 66 6 418 3943911 55200 149.17018127441406 0.97230000000000005 177.35900000000001 20160 14624 0 0 983040 737280 737280 737511 748800 28 25 29 36 300 0 0 0 0 6 0 0 0 0 0 +938 1783752689139916400 REFRESH 3 0 0.71890504711896686 2 11 2 11 0 0 111 7 417 3943929 55200 149.1199951171875 0.97299999999999998 176.5386 20160 12846 0 0 983040 737280 737280 737529 748800 83 25 49 53 207 0 0 0 0 7 0 0 0 0 0 +939 1783752689377208600 REFRESH 48 0 0.69666360023038143 2 11 2 11 0 0 69 3 430 3943894 55200 148.76261901855469 0.9768 176.773 20160 13478 0 0 983040 737280 737280 737494 748800 158 25 55 60 132 0 0 0 0 3 0 0 0 0 0 +940 1783752689558554300 REFRESH 2 0 0.7162516163357151 2 12 2 12 0 0 102 12 423 3943918 55200 150.53312683105469 0.97260000000000002 180.24590000000001 20160 12648 0 0 983040 737280 737280 737517 748800 29 26 43 47 278 0 2 1 0 9 0 0 0 0 0 +941 1783752690862498500 DEPTH 17 1 0.88359609094466718 0 7 0 7 0 0 162 43 2529 23664947 81600 857.05680847167969 5.8858999999999995 1302.8253 120960 63670 1 0 5898240 4423680 4423680 4426546 4492800 204 156 150 227 1792 0 0 0 0 43 0 0 0 0 0 +942 1783752692198738900 DEPTH 56 1 0.88086397080164158 2 5 2 5 0 0 167 28 2561 23664789 81600 856.34872436523438 5.8364999999999991 1290.8371 120960 61797 1 0 5898240 4423680 4423680 4426388 4492800 406 156 162 222 1615 0 0 0 0 28 0 0 0 0 0 +943 1783752693267939300 DEPTH 8 1 0.87820237776202958 2 5 2 5 0 0 206 37 2550 23664915 81600 865.64443969726562 5.8685 1068.1421 120960 64143 1 0 5898240 4423680 4423680 4426513 4492800 273 151 152 188 1786 0 0 0 0 37 0 0 0 0 0 +944 1783752694527988900 DEPTH 13 1 0.84878692782915488 1 6 1 6 0 0 163 28 2497 23664883 81600 859.553466796875 5.8481000000000005 1258.9450999999999 120960 62149 1 0 5898240 4423680 4423680 4426483 4492800 188 156 160 160 1833 0 0 0 0 28 0 0 0 0 0 +945 1783752695581388000 DEPTH 58 1 0.77805930678393909 2 12 2 12 0 0 108 16 2585 23664822 81600 857.73243713378906 5.8437000000000001 1027.7994000000001 120960 59905 1 0 5898240 4423680 4423680 4426422 4492800 154 156 162 169 1944 0 0 0 0 16 0 0 0 0 0 +946 1783752696734765200 DEPTH 33 1 0.77151192682451808 1 7 1 7 0 0 167 50 2537 23664830 81600 863.91693115234375 5.8436000000000003 1129.1501000000001 120960 57598 1 0 5898240 4423680 4423680 4426430 4492800 214 156 160 160 1847 3 0 0 0 47 0 0 0 0 0 +947 1783752698054723600 DEPTH 1 1 0.76568691089041396 1 7 1 7 0 0 114 24 2591 23664930 81600 857.16145324707031 5.8277000000000001 1284.9450999999999 120960 57569 1 0 5898240 4423680 4423680 4426529 4492800 349 156 225 218 1643 0 0 0 0 24 0 0 0 0 0 +948 1783752699328202200 DEPTH 31 1 0.76307238737905148 2 6 2 6 0 0 113 16 2604 23664858 81600 853.900390625 5.8370000000000006 1255.9602 120960 59734 1 0 5898240 4423680 4423680 4426455 4492800 699 150 157 227 1371 1 0 0 0 15 0 0 0 0 0 +949 1783752700350937400 DEPTH 57 1 0.79370069323985404 2 12 2 12 1 0 101 62 2513 23664837 81600 850.77699279785156 5.9051999999999998 1021.4754 120960 58763 1 0 5898240 4423680 4423680 4426437 4492800 168 156 166 197 1826 0 1 0 0 61 0 0 0 0 1 +950 1783752701650902300 DEPTH 11 1 0.7646587178231129 0 8 0 8 1 0 95 15 2566 23664947 81600 850.25892639160156 5.8708999999999998 1298.8615 120960 58269 1 0 5898240 4423680 4423680 4426545 4492800 387 150 200 244 1585 0 0 0 0 15 0 0 0 0 1 +951 1783752702944763000 DEPTH 9 1 0.76323208019557787 2 6 2 6 0 0 114 18 2618 23664858 81600 860.81910705566406 5.8591999999999995 1292.7619999999999 120960 58659 1 0 5898240 4423680 4423680 4426458 4492800 503 150 236 310 1419 0 0 0 0 18 0 0 0 0 0 +952 1783752704206762700 DEPTH 53 1 0.76237248533566548 0 8 0 8 0 0 121 29 2508 23664789 81600 857.77789306640625 6.2209000000000003 1247.213 120960 57113 1 0 5898240 4423680 4423680 4426388 4492800 172 156 150 160 1870 0 0 0 0 29 0 0 0 0 0 +953 1783752705236754100 DEPTH 28 1 0.78470676232700309 1 12 1 12 0 0 134 62 2493 23664848 81600 856.61907958984375 5.8690999999999995 1028.9213 120960 56871 1 0 5898240 4423680 4423680 4426446 4492800 152 150 162 150 1879 1 0 0 0 61 0 0 0 0 0 +954 1783752706286056900 DEPTH 19 1 0.73378212285760802 2 11 2 11 1 0 112 53 2541 23664883 81600 857.95399475097656 5.8972000000000007 1024.8240000000001 120960 56229 1 0 5898240 4423680 4423680 4426480 4492800 195 150 150 197 1849 1 0 0 0 52 1 0 0 0 3 +955 1783752707325305500 DEPTH 6 1 0.74761958512259552 3 11 3 11 1 0 106 27 2595 23664866 81600 857.536376953125 5.8612000000000002 1024.4091000000001 120960 57878 1 0 5898240 4423680 4423680 4426466 4492800 150 150 150 150 1995 0 0 0 0 27 0 0 0 0 4 +956 1783752708673232600 DEPTH 52 1 0.72108596310672768 1 8 1 8 0 0 101 25 2584 23664765 81600 850.94955444335938 5.8364000000000003 1270.9645 120960 57577 1 0 5898240 4423680 4423680 4426364 4492800 474 150 168 704 1088 0 0 0 0 25 0 0 0 0 0 +957 1783752709975800900 DEPTH 17 1 0.79204781285564019 0 7 0 7 0 0 163 32 2532 23664891 81600 847.09603881835938 5.8936999999999999 1301.4496999999999 120960 52719 1 0 5898240 4423680 4423680 4426491 4492800 212 156 150 250 1764 0 0 0 0 32 0 0 0 0 0 +958 1783752711259540900 DEPTH 56 1 0.78977905860064224 2 5 2 5 0 0 168 29 2560 23664790 81600 846.9449462890625 5.8429000000000002 1282.5297 120960 51198 1 0 5898240 4423680 4423680 4426389 4492800 408 156 162 236 1598 0 0 0 0 29 0 0 0 0 0 +959 1783752712343627500 DEPTH 8 1 0.78719531908278573 2 5 2 5 0 0 206 35 2550 23664846 81600 858.66423034667969 5.8641000000000005 1061.5420999999999 120960 52902 1 0 5898240 4423680 4423680 4426446 4492800 323 152 154 211 1710 1 0 0 0 34 0 0 0 0 0 +960 1783752713644627600 DEPTH 13 1 0.78791158202966616 1 6 1 6 0 0 165 36 2494 23664865 81600 848.23338317871094 5.8322000000000003 1252.7026000000001 120960 51343 1 0 5898240 4423680 4423680 4426463 4492800 204 156 164 166 1804 1 0 0 0 35 0 0 0 0 0 +961 1783752714967289200 DEPTH 44 1 0.71792534752556469 2 7 2 7 0 0 115 24 2581 23664803 81600 854.57662963867188 5.8589000000000002 1293.8145 120960 58454 1 0 5898240 4423680 4423680 4426401 4492800 164 150 173 156 1938 0 0 0 0 24 0 0 0 0 0 +962 1783752716172120600 DEPTH 45 1 0.71717527519626223 2 7 2 7 0 0 116 25 2563 23664877 81600 857.81784057617188 5.8365 1203.6137000000001 120960 57350 1 0 5898240 4423680 4423680 4426477 4492800 214 150 174 184 1841 0 0 0 1 24 0 0 0 0 0 +963 1783752717258551700 DEPTH 35 1 0.71686503186824091 2 11 2 11 0 0 131 79 2540 23664810 81600 857.35789489746094 5.8501000000000003 1030.1196 120960 63543 1 0 5898240 4423680 4423680 4426409 4492800 168 150 156 214 1852 0 3 0 0 76 0 0 0 0 0 +964 1783752718313003900 DEPTH 49 1 0.71683856182690286 3 10 3 10 1 0 122 56 2577 23664876 81600 856.43217468261719 5.8829000000000002 1028.5414000000001 120960 59963 1 0 5898240 4423680 4423680 4426475 4492800 156 151 162 168 1940 1 0 0 0 55 0 0 0 0 2 +965 1783752719435090700 DEPTH 16 1 0.73808390857051542 2 7 2 7 0 0 157 56 2526 23664811 81600 862.15754699707031 5.8383000000000003 1062.2978000000001 120960 57641 1 0 5898240 4423680 4423680 4426410 4492800 166 156 156 499 1549 0 0 0 0 56 0 0 0 0 0 +966 1783752720490713800 DEPTH 36 1 0.71674898830563105 3 10 3 10 1 0 97 24 2585 23664809 81600 855.96583557128906 5.8506 1030.4779000000001 120960 63928 1 0 5898240 4423680 4423680 4426409 4492800 254 150 174 223 1784 0 2 0 0 22 0 0 0 0 1 +967 1783752721515567200 DEPTH 58 1 0.73622858877860564 2 12 2 12 0 0 109 23 2588 23664852 81600 850.05419921875 5.8670999999999998 1023.5318 120960 48552 1 1 5898240 4423680 4423680 4426452 4492800 158 156 166 188 1920 0 0 0 0 22 0 0 0 0 0 +968 1783752722582758200 DEPTH 5 1 0.71619060306999038 2 11 2 11 1 0 89 32 2586 23664800 81600 847.07453918457031 5.844199999999999 1011.6194 120960 68917 1 0 5898240 4423680 4423680 4426399 4492800 163 150 203 201 1869 0 0 0 0 32 0 0 0 0 1 +969 1783752723632593800 DEPTH 30 1 0.71615522099232454 2 12 2 12 1 0 98 54 2530 23664812 81600 852.76963806152344 5.8532999999999999 1023.4518 120960 68469 1 0 5898240 4423680 4423680 4426408 4492800 157 150 160 162 1901 0 0 0 0 54 0 0 0 0 1 +970 1783752724672196800 DEPTH 37 1 0.71553945183931855 1 12 1 12 0 0 122 19 2604 23664815 81600 855.806884765625 5.8562999999999992 1024.4067 120960 59512 1 0 5898240 4423680 4423680 4426414 4492800 169 156 158 156 1965 0 0 0 0 19 0 0 0 0 0 +971 1783752725736768500 DEPTH 7 1 0.71550278809601875 2 12 2 12 1 0 99 76 2544 23664850 81600 853.71148681640625 5.8559999999999999 1024.8106 120960 68281 1 0 5898240 4423680 4423680 4426449 4492800 162 151 156 163 1912 0 0 0 0 76 0 0 0 0 3 +972 1783752727047632700 DEPTH 54 1 0.71526820686778958 1 8 1 8 0 0 108 22 2584 23664826 81600 855.32868957519531 5.8549999999999995 1283.1098 120960 59732 1 0 5898240 4423680 4423680 4426424 4492800 422 150 222 450 1340 0 0 0 0 22 0 0 0 0 0 +973 1783752727223686300 REFRESH 5 0 0.5113863915861413 2 11 2 11 0 0 89 10 409 3943900 55200 147.65785217285156 0.98109999999999997 174.94319999999999 20160 12544 0 0 983040 737280 737280 737500 748800 30 26 58 71 224 0 0 1 1 8 0 0 0 0 0 +974 1783752727403476200 REFRESH 24 0 0.71190549528864855 4 11 4 11 0 0 124 12 408 3943915 55200 149.68421936035156 0.98319999999999996 178.64959999999999 20160 13573 0 0 983040 737280 737280 737515 748800 34 26 42 49 257 0 0 0 0 12 0 0 0 0 0 +975 1783752727606766600 REFRESH 47 0 0.71003292590138956 2 11 2 11 0 0 108 11 422 3943922 55200 150.21055603027344 0.97209999999999996 178.50710000000001 20160 12306 0 0 983040 737280 737280 737522 748800 77 26 47 29 243 0 0 0 0 11 0 0 0 0 0 +976 1783752727792336800 REFRESH 45 0 0.60536549779599091 2 7 2 7 0 0 116 9 419 3943902 55200 150.56588745117188 0.98240000000000005 184.3416 20160 12225 0 0 983040 737280 737280 737502 748800 143 25 45 45 161 0 0 0 0 9 0 0 0 0 0 +977 1783752727991341500 REFRESH 0 0 0.71272640772245688 1 12 1 12 1 0 75 8 424 3943926 55200 149.596923828125 0.97809999999999997 178.26300000000001 20160 12499 0 0 983040 737280 737280 737526 748800 78 25 50 49 222 0 0 0 1 7 0 0 0 0 1 +978 1783752728254369900 REFRESH 52 0 0.68899061608913181 1 8 1 8 0 0 101 5 427 3943933 55200 149.57363891601562 0.97770000000000001 220.3954 20160 12130 0 0 983040 737280 737280 737533 748800 110 25 29 154 109 1 0 0 0 4 0 0 0 0 0 +979 1783752728444783500 REFRESH 48 0 0.68650237919777002 2 11 2 11 0 0 69 2 425 3943917 55200 148.07142639160156 0.98080000000000001 175.6087 20160 13425 0 0 983040 737280 737280 737517 748800 148 25 55 60 137 0 0 0 0 2 0 0 0 0 0 +980 1783752728624466300 REFRESH 19 0 0.72651096442607366 2 11 2 11 0 0 113 13 416 3943899 55200 150.03955078125 0.9748 178.56630000000001 20160 11925 0 0 983040 737280 737280 737499 748800 95 25 26 48 222 0 0 0 0 13 0 0 0 0 0 +981 1783752728822136500 REFRESH 50 0 0.71200653091163968 2 9 2 9 0 0 112 11 416 3943920 55200 149.791748046875 0.97829999999999995 181.30500000000001 20160 13109 0 0 983040 737280 737280 737520 748800 119 26 39 67 165 0 0 0 0 11 0 0 0 0 0 +982 1783752729002090800 REFRESH 42 0 0.70963619364500541 4 12 4 12 0 0 114 11 420 3943890 55200 149.94943237304688 0.97829999999999995 178.791 20160 12093 0 0 983040 737280 737280 737490 748800 114 25 25 25 231 0 0 0 0 11 0 0 0 0 0 +983 1783752729203204200 REFRESH 3 0 0.71147209938992573 2 11 2 11 0 0 111 7 412 3943918 55200 149.23869323730469 0.97299999999999998 176.6764 20160 12681 0 0 983040 737280 737280 737518 748800 72 25 44 49 222 0 0 0 0 7 0 0 0 0 0 +984 1783752729395070400 REFRESH 26 0 0.71011001944559582 1 13 1 13 0 0 66 6 422 3943915 55200 148.6510009765625 1.0197000000000001 176.74930000000001 20160 14687 0 0 983040 737280 737280 737515 748800 28 25 28 35 306 0 0 0 0 6 0 0 0 0 0 +985 1783752729574885800 REFRESH 30 0 0.62100225328539904 2 12 2 12 0 0 98 10 407 3943917 55200 148.62847900390625 0.97170000000000001 178.47149999999999 20160 12530 0 0 983040 737280 737280 737517 748800 33 25 65 43 241 0 0 0 0 10 0 0 0 0 0 +986 1783752729778024000 REFRESH 46 0 0.71473373549088459 2 15 2 15 0 0 95 16 413 3943923 55200 149.8101806640625 0.97450000000000003 178.3518 20160 13622 0 0 983040 737280 737280 737523 748800 30 26 34 31 292 0 0 0 0 16 0 0 0 0 0 +987 1783752729993891100 REFRESH 31 0 0.76123996246236603 2 6 2 6 0 0 113 2 427 3943907 55200 149.94227600097656 0.98380000000000001 214.72389999999999 20160 12797 0 0 983040 737280 737280 737506 748800 216 25 28 52 106 0 0 0 0 2 0 0 0 0 0 +988 1783752730174652900 REFRESH 58 0 0.71530162859193258 2 12 2 12 0 0 109 5 411 3943911 55200 149.90130615234375 0.97719999999999996 179.04390000000001 20160 12597 0 0 983040 737280 737280 737511 748800 68 26 49 52 216 0 0 0 0 5 0 0 0 0 0 +989 1783752730400291800 REFRESH 11 0 0.76318481953901129 0 8 0 8 0 0 95 7 422 3943951 55200 149.359619140625 0.97330000000000005 224.483 20160 12084 0 0 983040 737280 737280 737549 748800 147 25 65 62 123 0 0 0 0 7 0 0 0 0 0 +990 1783752730588442900 REFRESH 53 0 0.7608498715597739 0 8 0 8 0 0 123 8 417 3943913 55200 150.44813537597656 0.96999999999999997 186.92949999999999 20160 12271 0 0 983040 737280 737280 737513 748800 120 27 27 43 200 0 0 0 0 8 0 0 0 0 0 +991 1783752730804431000 REFRESH 9 0 0.76164948511940411 2 6 2 6 0 0 114 9 435 3943895 55200 151.86842346191406 0.98029999999999995 214.87569999999999 20160 12681 0 0 983040 737280 737280 737494 748800 120 25 64 58 168 0 0 0 0 9 0 0 0 0 0 +992 1783752730997386200 REFRESH 51 0 0.70735816605449708 3 12 3 12 0 0 86 9 426 3943907 55200 149.16403198242188 0.97960000000000003 177.81649999999999 20160 13652 0 0 983040 737280 737280 737507 748800 32 26 129 106 133 0 0 1 0 8 0 0 0 0 0 +993 1783752731192752500 REFRESH 12 0 0.71380572172217316 3 8 3 8 0 0 149 5 415 3943928 55200 150.37043762207031 0.9708 181.01169999999999 20160 12262 0 0 983040 737280 737280 737528 748800 103 26 48 102 136 0 0 0 1 4 0 0 0 0 0 +994 1783752731380147100 REFRESH 33 0 0.76946224878318459 1 7 1 7 0 0 167 3 418 3943902 55200 151.04920959472656 0.97399999999999998 186.19319999999999 20160 12148 0 0 983040 737280 737280 737502 748800 95 26 36 32 229 0 0 0 0 3 0 0 0 0 0 +995 1783752731581662700 REFRESH 14 0 0.71442277925993358 0 12 0 12 0 0 102 7 415 3943921 55200 150.27587890625 0.97529999999999994 185.2354 20160 12127 0 0 983040 737280 737280 737521 748800 51 26 28 44 266 0 1 0 0 6 0 0 0 0 0 +996 1783752731760303000 REFRESH 6 0 0.73683383177988848 3 11 3 11 0 0 106 10 413 3943896 55200 149.70880126953125 0.98280000000000001 177.36449999999999 20160 12221 0 0 983040 737280 737280 737496 748800 26 25 25 25 312 0 0 0 0 10 0 0 0 0 0 +997 1783752731939698300 REFRESH 37 0 0.71088842701552801 1 12 1 12 0 0 122 11 416 3943909 55200 150.26972961425781 0.97929999999999995 178.21600000000001 20160 12500 0 0 983040 737280 737280 737508 748800 52 26 42 28 268 0 0 0 0 11 0 0 0 0 0 +998 1783752732144352000 REFRESH 18 0 0.70966857967385866 4 15 4 15 0 0 89 17 418 3943920 55200 151.07781982421875 0.97430000000000005 179.91050000000001 20160 14471 0 0 983040 737280 737280 737520 748800 34 25 25 34 300 0 0 0 1 16 0 0 0 0 0 +999 1783752732332077900 REFRESH 4 0 0.6883003889882755 1 13 1 13 0 0 47 2 423 3943912 55200 148.07347106933594 0.9819 176.06190000000001 20160 14618 0 0 983040 737280 737280 737512 748800 26 25 34 50 288 0 0 0 0 2 0 0 0 0 0 +1000 1783752732510984200 REFRESH 36 0 0.71218892499355302 3 10 3 10 1 0 97 8 419 3943921 55200 149.44050598144531 0.97899999999999998 177.7022 20160 11873 0 0 983040 737280 737280 737521 748800 102 25 41 56 195 0 0 0 0 8 0 0 0 0 1 +1001 1783752732691450900 REFRESH 35 0 0.71225420951126117 2 11 2 11 0 0 131 8 415 3943887 55200 150.76760864257812 0.97840000000000005 179.29079999999999 20160 12004 0 0 983040 737280 737280 737486 748800 60 25 30 79 221 0 0 0 0 8 0 0 0 0 0 +1002 1783752732917523200 REFRESH 17 0 0.88081356724031701 0 7 0 7 0 0 163 4 415 3943910 55200 151.15469360351562 0.97989999999999999 224.99189999999999 20160 13144 0 0 983040 737280 737280 737510 748800 136 26 34 94 125 0 0 0 0 4 0 0 0 0 0 +1003 1783752733120015200 REFRESH 23 0 0.71410513810128728 3 14 3 14 0 0 90 12 420 3943919 55200 149.91871643066406 0.97489999999999999 179.05410000000001 20160 14530 0 0 983040 737280 737280 737519 748800 26 25 37 30 302 2 0 0 0 10 0 0 0 0 0 +1004 1783752733312782400 REFRESH 27 0 0.71491055608132648 0 14 0 14 0 0 98 8 416 3943906 55200 149.51219177246094 0.99870000000000003 178.40020000000001 20160 13644 0 0 983040 737280 737280 737506 748800 27 26 26 29 308 0 0 0 0 8 0 0 0 0 0 +1005 1783752733503401100 REFRESH 34 0 0.7102751267930576 1 13 1 13 0 0 94 12 422 3943916 55200 147.96902465820312 0.9748 174.74780000000001 20160 12618 0 0 983040 737280 737280 737516 748800 45 25 49 62 241 0 0 0 0 12 0 0 0 0 0 +1006 1783752733683405300 REFRESH 7 0 0.71084786231966257 2 12 2 12 0 0 99 9 415 3943919 55200 149.78970336914062 0.97970000000000002 178.88339999999999 20160 12606 0 0 983040 737280 737280 737519 748800 65 26 30 54 240 0 0 0 1 8 0 0 0 0 0 +1007 1783752733885784900 REFRESH 55 0 0.71401900155646358 1 15 1 15 0 0 119 9 415 3943907 55200 149.83885192871094 0.97470000000000001 178.03110000000001 20160 13620 0 0 983040 737280 737280 737507 748800 28 26 28 44 289 0 0 0 0 9 0 0 0 0 0 +1008 1783752734067355700 REFRESH 2 0 0.71193402799591043 2 12 2 12 0 0 102 14 421 3943913 55200 150.74815368652344 0.97340000000000004 180.5077 20160 12604 0 0 983040 737280 737280 737513 748800 29 26 55 66 245 0 1 0 0 13 0 0 0 0 0 +1009 1783752734289354400 REFRESH 41 0 0.71350444600832508 1 10 1 10 0 0 96 8 411 3943918 55200 149.66169738769531 0.98180000000000001 190.76840000000001 20160 12616 0 0 983040 737280 737280 737517 748800 36 26 35 28 286 0 0 0 0 8 0 0 0 0 0 +1010 1783752734509929800 REFRESH 54 0 0.71398922283883426 1 8 1 8 0 0 109 8 426 3943904 55200 149.32582092285156 0.97619999999999996 219.40960000000001 20160 12473 0 0 983040 737280 737280 737504 748800 172 25 53 96 80 1 0 0 1 6 0 0 0 0 0 +1011 1783752734691224200 REFRESH 28 0 0.80903292500359925 1 12 1 12 0 0 134 11 397 3943898 55200 150.38668823242188 0.97670000000000001 180.13560000000001 20160 11910 0 0 983040 737280 737280 737498 748800 92 26 29 26 224 0 0 0 0 11 0 0 0 0 0 +1012 1783752734913342000 REFRESH 56 0 0.87906285946113516 2 5 2 5 0 0 168 11 419 3943897 55200 150.03642272949219 0.97440000000000004 220.91650000000001 20160 13352 0 0 983040 737280 737280 737497 748800 181 26 49 54 109 0 0 0 0 11 0 0 0 0 0 +1013 1783752735093108400 REFRESH 57 0 0.78128419155666795 2 12 2 12 0 0 103 7 413 3943916 55200 150.16960144042969 0.97640000000000005 178.52289999999999 20160 12288 0 0 983040 737280 737280 737516 748800 33 26 90 73 191 0 0 0 1 6 0 0 0 0 0 +1014 1783752735294654000 REFRESH 25 0 0.71326062459414108 3 11 3 11 0 0 94 4 419 3943898 55200 150.37919616699219 0.97370000000000001 179.92939999999999 20160 13648 0 0 983040 737280 737280 737498 748800 35 25 47 59 253 0 0 0 0 4 0 0 0 0 0 +1015 1783752735515951700 REFRESH 44 0 0.71659006023752159 2 7 2 7 0 0 115 7 414 3943914 55200 149.34425354003906 0.97599999999999998 219.26259999999999 20160 12239 0 0 983040 737280 737280 737514 748800 77 26 59 28 224 0 0 0 0 7 0 0 0 0 0 +1016 1783752735719501500 REFRESH 1 0 0.76424072179182079 1 7 1 7 0 0 114 10 420 3943927 55200 150.4215087890625 0.97619999999999996 202.30789999999999 20160 12306 0 0 983040 737280 737280 737527 748800 140 26 59 63 132 0 0 0 0 10 0 0 0 0 0 +1017 1783752735919953800 REFRESH 20 0 0.71076560265275857 3 12 3 12 0 0 93 13 420 3943903 55200 149.06880187988281 0.97799999999999998 177.0522 20160 13472 0 0 983040 737280 737280 737503 748800 62 26 47 54 231 0 0 0 1 12 0 0 0 0 0 +1018 1783752736112549800 REFRESH 38 0 0.71153153978994355 4 14 4 14 0 0 78 8 419 3943909 55200 149.61766052246094 0.97409999999999997 177.42689999999999 20160 13664 0 0 983040 737280 737280 737508 748800 38 26 35 33 287 0 0 0 0 8 0 0 0 0 0 +1019 1783752736317631800 REFRESH 15 0 0.71360449544196913 3 12 3 12 0 0 77 11 412 3943901 55200 148.83328247070312 0.99980000000000002 177.1225 20160 14374 0 0 983040 737280 737280 737501 748800 27 26 26 25 308 0 0 0 0 11 0 0 0 0 0 +1020 1783752736511059400 REFRESH 32 0 0.71423926551049866 2 14 2 14 0 0 111 19 416 3943908 55200 149.59820556640625 0.9728 178.12049999999999 20160 12558 0 0 983040 737280 737280 737507 748800 114 25 35 31 211 0 0 1 0 18 0 0 0 0 0 +1021 1783752736705650400 REFRESH 10 0 0.71082548152597202 1 11 1 11 0 0 104 7 425 3943889 55200 149.00224304199219 0.98409999999999997 179.3612 20160 11893 0 0 983040 737280 737280 737488 748800 91 26 50 36 222 1 0 0 0 6 0 0 0 0 0 +1022 1783752736888275900 REFRESH 49 0 0.71260439739612047 3 10 3 10 1 0 122 12 415 3943920 55200 150.28224182128906 0.99170000000000003 181.1558 20160 12545 0 0 983040 737280 737280 737519 748800 37 26 64 48 240 0 0 0 0 12 0 0 0 0 1 +1023 1783752737084538200 REFRESH 39 0 0.71432461573364381 2 12 2 12 0 0 137 13 402 3943912 55200 150.43171691894531 0.97619999999999996 180.46340000000001 20160 12044 0 0 983040 737280 737280 737512 748800 31 26 28 31 286 0 0 0 0 13 0 0 0 0 0 +1024 1783752737268619500 REFRESH 8 0 0.87667049784871387 2 5 2 5 0 0 206 9 417 3943915 55200 151.77830505371094 0.97340000000000004 182.97540000000001 20160 13368 0 0 983040 737280 737280 737514 748800 128 26 37 59 167 1 0 0 0 8 0 0 0 0 0 +1025 1783752737495988500 REFRESH 21 0 0.71499792178704558 0 10 0 10 0 0 157 9 413 3943910 55200 150.45916748046875 0.9778 189.82990000000001 20160 12165 0 0 983040 737280 737280 737510 748800 62 26 33 59 233 0 0 0 0 9 0 0 0 0 0 +1026 1783752737689909400 REFRESH 43 0 0.71595543919377491 2 13 2 13 0 0 109 16 413 3943907 55200 149.57670593261719 0.98399999999999999 178.36529999999999 20160 12615 0 0 983040 737280 737280 737507 748800 52 26 36 65 234 0 0 0 0 16 0 0 0 0 0 +1027 1783752737883836900 REFRESH 29 0 0.71381860499800032 2 12 2 12 0 0 99 14 416 3943912 55200 149.90975952148438 1.0005999999999999 178.7106 20160 13715 0 0 983040 737280 737280 737512 748800 46 25 65 44 236 0 0 0 0 14 0 0 0 0 0 +1028 1783752738077991400 REFRESH 40 0 0.70472266730749722 3 11 3 11 0 0 104 11 419 3943906 55200 150.508544921875 0.97789999999999999 178.2903 20160 13166 0 0 983040 737280 737280 737506 748800 137 25 32 92 133 0 0 0 0 11 0 0 0 0 0 +1029 1783752738271730300 REFRESH 22 0 0.71454228518750884 3 12 3 12 0 0 108 9 419 3943923 55200 150.03750610351562 0.97499999999999998 179.71039999999999 20160 13619 0 0 983040 737280 737280 737522 748800 28 26 26 25 314 0 0 1 0 8 0 0 0 0 0 +1030 1783752738454888500 REFRESH 16 0 0.73461629084690427 2 7 2 7 0 0 157 5 416 3943878 55200 150.55667114257812 0.97489999999999999 182.00569999999999 20160 12237 0 0 983040 737280 737280 737478 748800 31 26 26 232 101 0 0 0 0 5 0 0 0 0 0 +1031 1783752738734747300 REFRESH 13 0 0.87757365463076675 1 6 1 6 0 0 165 2 414 3943924 55200 150.87309265136719 0.97070000000000001 194.44970000000001 20160 13131 0 0 983040 737280 737280 737524 748800 156 26 59 70 103 0 0 0 0 2 0 0 0 0 0 +1032 1783752740055437300 DEPTH 17 1 0.87338553040190581 0 7 0 7 0 0 164 31 2520 23664820 81600 858.5062255859375 5.9028 1319.6056000000001 120960 63932 1 0 5898240 4423680 4423680 4426419 4492800 204 156 150 217 1793 0 0 0 0 31 0 0 0 0 0 +1033 1783752741342421600 DEPTH 56 1 0.83790173202846385 2 5 2 5 0 0 169 34 2556 23664808 81600 855.10125732421875 5.8300000000000001 1285.7641000000001 120960 63359 1 0 5898240 4423680 4423680 4426407 4492800 408 156 162 219 1611 0 0 0 0 34 0 0 0 0 0 +1034 1783752742490060300 DEPTH 33 1 0.7602898607411499 1 7 1 7 0 0 167 43 2535 23664828 81600 863.83464050292969 6.0625000000000009 1127.8140000000001 120960 58074 1 0 5898240 4423680 4423680 4426428 4492800 221 156 162 161 1835 0 0 0 0 43 0 0 0 0 0 +1035 1783752743820847500 DEPTH 9 1 0.7590567117171757 2 6 2 6 0 0 115 13 2619 23664882 81600 864.39044189453125 5.8430999999999997 1297.3317999999999 120960 59839 1 0 5898240 4423680 4423680 4426482 4492800 550 150 257 302 1360 0 0 0 0 13 0 0 0 0 0 +1036 1783752745139018700 DEPTH 11 1 0.75872720367726099 0 8 0 8 1 0 95 22 2564 23664851 81600 850.10728454589844 5.8512000000000004 1295.3389 120960 57526 1 0 5898240 4423680 4423680 4426449 4492800 354 150 189 240 1631 0 0 0 0 22 0 0 0 0 1 +1037 1783752746374992200 DEPTH 53 1 0.75737461692273089 0 8 0 8 0 0 125 33 2522 23664990 81600 859.28231811523438 5.8426 1234.7660000000001 120960 57494 1 0 5898240 4423680 4423680 4426586 4492800 176 156 150 156 1884 0 0 0 0 33 0 0 0 0 0 +1038 1783752747448905100 DEPTH 28 1 0.79420910666550737 1 12 1 12 0 0 135 60 2494 23664870 81600 858.9775390625 5.8773000000000009 1031.7354 120960 55891 1 0 5898240 4423680 4423680 4426467 4492800 152 150 162 150 1880 0 0 0 0 60 0 0 0 0 0 +1039 1783752748742184700 DEPTH 31 1 0.75154046683877307 2 6 2 6 0 0 113 14 2616 23664795 81600 854.78376770019531 5.8865000000000007 1276.5362 120960 60668 1 0 5898240 4423680 4423680 4426394 4492800 757 150 159 238 1312 0 0 0 0 14 0 0 0 0 0 +1040 1783752749871129300 DEPTH 8 1 0.78452278300290557 2 5 2 5 0 0 206 34 2566 23664811 81600 868.706298828125 5.9116999999999997 1090.3506 120960 64347 1 0 5898240 4423680 4423680 4426410 4492800 240 150 152 177 1847 0 0 0 0 34 0 0 0 0 0 +1041 1783752750908179200 DEPTH 57 1 0.76629388998824333 2 12 2 12 0 0 104 61 2522 23664843 81600 852.43045043945312 5.8581000000000003 1023.9741 120960 57842 1 0 5898240 4423680 4423680 4426442 4492800 172 156 162 185 1847 0 0 1 0 60 0 0 0 0 0 +1042 1783752752200921900 DEPTH 1 1 0.76217968462063157 1 7 1 7 0 0 114 14 2597 23664844 81600 857.36634826660156 5.8588000000000005 1291.3639000000001 120960 58629 1 0 5898240 4423680 4423680 4426444 4492800 365 156 224 223 1629 0 0 0 0 14 0 0 0 0 0 +1043 1783752753272125800 DEPTH 58 1 0.74071208661416077 2 12 2 12 0 0 111 21 2582 23664883 81600 855.63746643066406 5.8488999999999995 1026.5387000000001 120960 59915 1 0 5898240 4423680 4423680 4426482 4492800 177 156 175 195 1879 0 0 0 0 21 0 0 0 0 0 +1044 1783752754327926700 DEPTH 6 1 0.72677910467440787 3 11 3 11 1 0 110 35 2562 23664837 81600 857.38992309570312 5.8561000000000005 1030.8906999999999 120960 57935 1 0 5898240 4423680 4423680 4426436 4492800 150 150 150 150 1962 0 1 0 0 34 0 0 0 0 1 +1045 1783752755377144100 DEPTH 19 1 0.71988779344238729 2 11 2 11 0 0 113 54 2533 23664766 81600 858.38615417480469 5.8452000000000002 1027.3424 120960 56444 1 0 5898240 4423680 4423680 4426365 4492800 221 150 150 205 1807 0 0 0 0 54 0 0 0 0 0 +1046 1783752756627931300 DEPTH 45 1 0.71324104621869888 2 7 2 7 1 0 117 37 2565 23664825 81600 858.27342224121094 5.8820000000000006 1210.9738 120960 57961 1 0 5898240 4423680 4423680 4426425 4492800 216 150 176 193 1830 1 1 4 0 31 0 0 0 0 1 +1047 1783752757928746500 DEPTH 52 1 0.71249159744043156 1 8 1 8 0 0 102 16 2587 23664904 81600 851.45591735839844 5.8495999999999997 1277.7238 120960 57828 1 0 5898240 4423680 4423680 4426502 4492800 520 150 177 766 974 0 0 0 0 16 0 0 0 0 0 +1048 1783752759223947000 DEPTH 13 1 0.78853382661108895 1 6 1 6 0 0 165 27 2498 23664844 81600 861.00164794921875 5.8422999999999998 1261.8991000000001 120960 63618 1 0 5898240 4423680 4423680 4426442 4492800 196 155 162 170 1815 0 0 0 0 27 0 0 0 0 0 +1049 1783752760526693400 DEPTH 17 1 0.79240663082404328 0 7 0 7 0 0 164 36 2529 23664868 81600 847.45803833007812 5.8544 1301.6696999999999 120960 52791 1 0 5898240 4423680 4423680 4426467 4492800 204 156 150 238 1781 0 0 0 0 36 0 0 0 0 0 +1050 1783752761820925000 DEPTH 56 1 0.79664938331202506 2 5 2 5 0 0 170 20 2566 23664780 81600 846.39582824707031 5.8787000000000003 1293.008 120960 52087 1 0 5898240 4423680 4423680 4426379 4492800 414 156 162 258 1576 0 0 0 0 20 0 0 0 0 0 +1051 1783752763127263700 DEPTH 44 1 0.71192538345280632 2 7 2 7 0 0 117 24 2598 23664807 81600 857.0455322265625 5.8872 1305.1631 120960 58250 1 0 5898240 4423680 4423680 4426405 4492800 164 150 173 162 1949 0 0 0 0 24 0 0 0 0 0 +1052 1783752764432824000 DEPTH 54 1 0.71065877841410008 1 8 1 8 0 0 110 28 2597 23664851 81600 853.93276977539062 5.8554000000000004 1293.0902000000001 120960 58780 1 0 5898240 4423680 4423680 4426450 4492800 467 150 249 469 1262 2 0 0 3 23 0 0 0 0 0 +1053 1783752765493403300 DEPTH 46 1 0.70983949724878559 2 15 2 15 1 0 96 73 2582 23664790 81600 855.76483154296875 5.8681999999999999 1032.5147999999999 120960 67574 1 0 5898240 4423680 4423680 4426389 4492800 150 150 155 159 1968 0 0 0 0 73 0 0 0 0 2 +1054 1783752766598136900 DEPTH 50 1 0.70956041768246814 2 9 2 9 0 0 113 44 2544 23664851 81600 853.49581909179688 5.8601999999999999 1085.7751000000001 120960 62598 1 0 5898240 4423680 4423680 4426450 4492800 170 150 159 177 1888 0 0 0 0 44 0 0 0 0 0 +1055 1783752767648343500 DEPTH 39 1 0.70938904305772321 2 12 2 12 1 0 140 47 2546 23664923 81600 854.49690246582031 5.8652000000000006 1034.8816999999999 120960 57953 1 0 5898240 4423680 4423680 4426522 4492800 155 151 151 159 1930 0 0 0 0 47 0 0 0 0 3 +1056 1783752768795820200 DEPTH 8 1 0.78342631507225857 2 5 2 5 0 0 206 32 2560 23664868 81600 861.60887145996094 5.8827000000000007 1072.3867 120960 53863 1 0 5898240 4423680 4423680 4426465 4492800 307 152 152 213 1736 0 0 0 0 32 0 0 0 0 0 +1057 1783752769931088400 DEPTH 33 1 0.7386019959949256 1 7 1 7 0 0 168 51 2527 23664808 81600 853.87342834472656 5.9100999999999999 1134.1674 120960 47018 1 0 5898240 4423680 4423680 4426408 4492800 208 156 158 154 1851 5 0 0 0 46 0 0 0 0 0 +1058 1783752771000161800 DEPTH 16 1 0.725803558836009 2 7 2 7 0 0 158 42 2526 23664854 81600 862.82925415039062 6.0021000000000004 1067.9463000000001 120960 57854 1 0 5898240 4423680 4423680 4426451 4492800 168 156 156 504 1542 0 0 0 0 42 0 0 0 0 0 +1059 1783752772316324700 DEPTH 9 1 0.74726351752008158 2 6 2 6 0 0 116 12 2628 23664835 81600 858.59051513671875 5.9049999999999994 1314.8903 120960 48631 1 0 5898240 4423680 4423680 4426435 4492800 566 150 267 385 1260 0 0 0 0 12 0 0 0 0 0 +1060 1783752773633203300 DEPTH 21 1 0.71134720813941266 0 10 0 10 1 0 158 55 2549 23664844 81600 858.79768371582031 5.9152000000000005 1279.5820000000001 120960 57863 1 0 5898240 4423680 4423680 4426443 4492800 194 150 156 185 1864 0 0 0 0 55 0 0 0 0 1 +1061 1783752774729846300 DEPTH 43 1 0.71077359454398781 2 13 2 13 0 0 115 64 2540 23664866 81600 855.89767456054688 5.9270000000000005 1035.3544999999999 120960 63106 1 0 5898240 4423680 4423680 4426464 4492800 156 156 150 173 1905 0 0 0 1 63 0 0 0 0 0 +1062 1783752775787349500 DEPTH 28 1 0.77056305347379539 1 12 1 12 0 0 136 58 2499 23664791 81600 852.284423828125 5.9123999999999999 1034.8026 120960 44478 1 0 5898240 4423680 4423680 4426388 4492800 153 150 162 150 1884 0 1 0 0 57 0 0 0 0 0 +1063 1783752776837384200 DEPTH 29 1 0.7092839077155656 2 12 2 12 0 0 102 59 2536 23664833 81600 860.29208374023438 5.8988999999999994 1032.8878 120960 67937 1 0 5898240 4423680 4423680 4426432 4492800 160 150 163 173 1890 0 0 0 0 59 0 0 0 0 0 +1064 1783752777017104600 REFRESH 46 0 0.56443253703743679 2 15 2 15 0 0 96 10 411 3943907 55200 149.24287414550781 0.98509999999999998 178.505 20160 12383 0 0 983040 737280 737280 737507 748800 39 26 40 31 275 0 0 0 0 10 0 0 0 0 0 +1065 1783752777197544800 REFRESH 43 0 0.49537959577585816 2 13 2 13 0 0 116 9 416 3943898 55200 149.87263488769531 0.9829 179.31739999999999 20160 11791 0 0 983040 737280 737280 737498 748800 61 26 38 58 233 0 0 1 0 8 0 0 0 0 0 +1066 1783752777461956300 REFRESH 11 0 0.7573003905311706 0 8 0 8 0 0 95 11 422 3943910 55200 149.69754028320312 0.98399999999999999 229.87350000000001 20160 12503 0 0 983040 737280 737280 737509 748800 121 25 52 58 166 0 0 0 0 11 0 0 0 0 0 +1067 1783752777674306100 REFRESH 41 0 0.70929532133385731 1 10 1 10 0 0 96 9 417 3943923 55200 148.03884887695312 0.98839999999999995 195.9152 20160 12484 0 0 983040 737280 737280 737523 748800 44 26 43 37 267 0 0 0 0 9 0 0 0 0 0 +1068 1783752777853063000 REFRESH 6 0 0.70722182258778821 3 11 3 11 0 0 110 11 411 3943931 55200 149.59001159667969 0.98180000000000001 177.62950000000001 20160 12305 0 0 983040 737280 737280 737531 748800 26 25 25 25 310 0 0 0 0 11 0 0 0 0 0 +1069 1783752778033657400 REFRESH 30 0 0.70718501749215146 2 12 2 12 1 0 99 9 410 3943903 55200 149.56915283203125 0.98750000000000004 179.42449999999999 20160 12481 0 0 983040 737280 737280 737503 748800 36 25 68 46 235 0 0 0 0 9 0 0 0 0 1 +1070 1783752778238208300 REFRESH 35 0 0.70632110593175423 2 11 2 11 0 0 132 9 416 3943907 55200 149.92588806152344 0.9849 179.61259999999999 20160 11969 0 0 983040 737280 737280 737507 748800 72 25 30 99 190 0 0 0 0 9 0 0 0 0 0 +1071 1783752778438387700 REFRESH 23 0 0.70929859116421912 3 14 3 14 0 0 91 16 416 3943916 55200 149.70469665527344 0.98350000000000004 183.94900000000001 20160 14489 0 0 983040 737280 737280 737515 748800 27 25 43 31 290 0 0 0 0 16 0 0 0 0 0 +1072 1783752778632814400 REFRESH 13 0 0.85830518412692558 1 6 1 6 0 0 165 3 414 3943921 55200 150.94989013671875 0.9788 193.31659999999999 20160 13143 0 0 983040 737280 737280 737520 748800 159 26 59 75 95 0 0 0 0 3 0 0 0 0 0 +1073 1783752778820014700 REFRESH 16 0 0.62248657644511085 2 7 2 7 0 0 158 5 416 3943896 55200 151.6441650390625 0.98540000000000005 185.73439999999999 20160 12326 0 0 983040 737280 737280 737496 748800 31 26 26 224 109 0 0 0 0 5 0 0 0 0 0 +1074 1783752779024186400 REFRESH 55 0 0.70847959533278548 1 15 1 15 0 0 119 6 415 3943914 55200 150.12991333007812 0.98250000000000004 179.0429 20160 13445 0 0 983040 737280 737280 737514 748800 29 26 28 45 287 0 0 0 0 6 0 0 0 0 0 +1075 1783752779214086100 REFRESH 34 0 0.70661915353340621 1 13 1 13 0 0 94 10 429 3943914 55200 147.84512329101562 0.98229999999999995 175.57210000000001 20160 12521 0 0 983040 737280 737280 737514 748800 41 25 40 49 274 0 0 0 0 10 0 0 0 0 0 +1076 1783752779395379800 REFRESH 29 0 0.58459709189154851 2 12 2 12 0 0 103 16 416 3943910 55200 150.22694396972656 1.0012000000000001 180.11859999999999 20160 12457 0 0 983040 737280 737280 737510 748800 64 25 67 46 214 0 0 0 0 16 0 0 0 0 0 +1077 1783752779619987000 REFRESH 56 0 0.87546387017996929 2 5 2 5 0 0 170 6 419 3943906 55200 151.29469299316406 0.99870000000000003 223.4529 20160 13272 0 0 983040 737280 737280 737506 748800 178 26 48 55 112 0 0 0 0 6 0 0 0 0 0 +1078 1783752779825405200 REFRESH 47 0 0.70682701829727745 2 11 2 11 0 0 108 8 420 3943916 55200 149.97708129882812 0.98380000000000001 179.6987 20160 12341 0 0 983040 737280 737280 737516 748800 92 26 53 33 216 0 0 0 0 8 0 0 0 0 0 +1079 1783752780054338600 REFRESH 39 0 0.69464668889536796 2 12 2 12 0 0 141 12 403 3943889 55200 148.99200439453125 0.98629999999999995 177.65549999999999 20160 11978 0 0 983040 737280 737280 737489 748800 33 26 28 31 285 1 0 0 0 11 0 0 0 0 0 +1080 1783752780237528300 REFRESH 50 0 0.70642374890981352 2 9 2 9 0 0 113 7 419 3943913 55200 149.2244873046875 0.9869 181.96860000000001 20160 12763 0 0 983040 737280 737280 737511 748800 126 26 38 63 166 0 0 0 0 7 0 0 0 0 0 +1081 1783752780436437600 REFRESH 32 0 0.70930304498529695 2 14 2 14 0 0 111 13 417 3943927 55200 150.44505310058594 0.99660000000000004 183.27010000000001 20160 12457 0 0 983040 737280 737280 737527 748800 118 25 37 31 206 0 0 0 0 13 0 0 0 0 0 +1082 1783752780629758600 REFRESH 48 0 0.67702564584360325 2 11 2 11 0 0 69 3 427 3943915 55200 149.27154541015625 0.98280000000000001 178.56790000000001 20160 13344 0 0 983040 737280 737280 737515 748800 124 25 50 45 183 0 0 0 0 3 0 0 0 0 0 +1083 1783752780820331000 REFRESH 10 0 0.70465482424860038 1 11 1 11 0 0 104 4 422 3943915 55200 148.07962036132812 0.98429999999999995 178.62309999999999 20160 11954 0 0 983040 737280 737280 737515 748800 97 26 51 35 213 1 0 0 0 3 0 0 0 0 0 +1084 1783752781042171300 REFRESH 44 0 0.71046244395804514 2 7 2 7 0 0 118 6 414 3943946 55200 150.21078491210938 0.98570000000000002 220.6756 20160 12139 0 0 983040 737280 737280 737546 748800 85 26 60 29 214 0 0 0 0 6 0 0 0 0 0 +1085 1783752781238216400 REFRESH 12 0 0.70615769725151178 3 8 3 8 0 0 149 12 413 3943886 55200 149.66578674316406 0.98140000000000005 180.40639999999999 20160 12202 0 0 983040 737280 737280 737486 748800 97 26 45 92 153 0 0 0 2 10 0 0 0 0 0 +1086 1783752781433234900 REFRESH 21 0 0.70868829052734661 0 10 0 10 0 0 158 8 413 3943880 55200 150.89971923828125 0.98399999999999999 193.94030000000001 20160 11840 0 0 983040 737280 737280 737480 748800 72 26 32 62 221 0 0 0 0 8 0 0 0 0 0 +1087 1783752781637497500 REFRESH 1 0 0.76033692187621049 1 7 1 7 0 0 114 8 416 3943920 55200 150.73484802246094 0.98529999999999995 203.21950000000001 20160 12457 0 0 983040 737280 737280 737520 748800 144 26 59 66 121 0 0 0 0 8 0 0 0 0 0 +1088 1783752781816063500 REFRESH 5 0 0.70854160163406066 2 11 2 11 0 0 90 10 410 3943903 55200 148.85862731933594 0.98670000000000002 177.50129999999999 20160 12612 0 0 983040 737280 737280 737503 748800 30 26 62 77 215 0 0 0 0 10 0 0 0 0 0 +1089 1783752782029222000 REFRESH 31 0 0.75057923954808048 2 6 2 6 0 0 113 6 422 3943923 55200 149.8419189453125 0.98399999999999999 212.05359999999999 20160 12688 0 0 983040 737280 737280 737523 748800 225 25 28 56 88 0 0 0 0 6 0 0 0 0 0 +1090 1783752782227871100 REFRESH 14 0 0.7080655341599329 0 12 0 12 0 0 102 4 414 3943926 55200 149.62483215332031 1 185.3783 20160 12034 0 0 983040 737280 737280 737526 748800 47 26 28 40 273 0 0 0 0 4 0 0 0 0 0 +1091 1783752782421345600 REFRESH 26 0 0.70334891122560594 1 13 1 13 1 0 67 9 421 3943927 55200 148.81689453125 0.98340000000000005 177.97730000000001 20160 14436 0 0 983040 737280 737280 737526 748800 28 25 29 38 301 0 0 1 0 8 0 0 0 0 1 +1092 1783752782610793900 REFRESH 33 0 0.75700698354830276 1 7 1 7 0 0 168 10 417 3943921 55200 151.02053833007812 0.98760000000000003 188.34899999999999 20160 12359 0 0 983040 737280 737280 737521 748800 83 26 32 31 245 1 0 0 0 9 0 0 0 0 0 +1093 1783752782805519500 REFRESH 51 0 0.70336032650848868 3 12 3 12 0 0 86 11 416 3943911 55200 149.223388671875 0.98150000000000004 179.1559 20160 13537 0 0 983040 737280 737280 737511 748800 33 26 125 106 126 0 0 1 0 10 0 0 0 0 0 +1094 1783752782999333600 REFRESH 40 0 0.69920812555743839 3 11 3 11 0 0 104 6 419 3943905 55200 150.00473022460938 0.98129999999999995 178.6823 20160 12988 0 0 983040 737280 737280 737505 748800 131 25 32 88 143 0 0 0 0 6 0 0 0 0 0 +1095 1783752783190813800 REFRESH 53 0 0.75616638514489787 0 8 0 8 0 0 125 13 420 3943886 55200 150.33856201171875 0.98880000000000001 190.30719999999999 20160 12339 0 0 983040 737280 737280 737486 748800 111 26 27 41 215 0 0 0 0 13 0 0 0 0 0 +1096 1783752783417559100 REFRESH 8 0 0.87252613312521765 2 5 2 5 0 0 206 8 416 3943908 55200 151.79685974121094 0.98529999999999995 183.6969 20160 13428 0 0 983040 737280 737280 737507 748800 130 27 61 62 136 0 0 0 0 8 0 0 0 0 0 +1097 1783752783604771200 REFRESH 45 0 0.71283749273161934 2 7 2 7 0 0 117 9 416 3943951 55200 149.44461059570312 0.98629999999999995 186.0515 20160 12111 0 0 983040 737280 737280 737551 748800 146 25 47 46 152 0 0 0 0 9 0 0 0 0 0 +1098 1783752783784672700 REFRESH 37 0 0.70757037282203772 1 12 1 12 0 0 122 8 413 3943908 55200 149.98422241210938 0.98319999999999996 178.79400000000001 20160 12273 0 0 983040 737280 737280 737507 748800 58 26 46 29 254 0 0 0 0 8 0 0 0 0 0 +1099 1783752783966749900 REFRESH 19 0 0.71352560867577886 2 11 2 11 0 0 113 12 418 3943886 55200 151.07174682617188 0.98819999999999997 180.8869 20160 11944 0 0 983040 737280 737280 737486 748800 118 25 26 52 197 0 0 0 0 12 0 0 0 0 0 +1100 1783752784147663700 REFRESH 58 0 0.73235031614307899 2 12 2 12 0 0 111 10 412 3943903 55200 150.39077758789062 0.98250000000000004 179.70240000000001 20160 12226 0 0 983040 737280 737280 737503 748800 73 26 51 51 211 0 0 0 0 10 0 0 0 0 0 +1101 1783752784382698700 REFRESH 54 0 0.70952234393811864 1 8 1 8 0 0 110 5 427 3943934 55200 149.91154479980469 0.99429999999999996 222.76949999999999 20160 12143 0 0 983040 737280 737280 737534 748800 168 25 55 98 81 1 0 0 0 4 0 0 0 0 0 +1102 1783752784564244500 REFRESH 7 0 0.70623553767970604 2 12 2 12 0 0 100 14 419 3943907 55200 149.39340209960938 0.99939999999999996 180.26480000000001 20160 12420 0 0 983040 737280 737280 737507 748800 54 26 30 40 269 0 0 0 0 14 0 0 0 0 0 +1103 1783752784746211400 REFRESH 28 0 0.76825448281753883 1 12 1 12 0 0 137 9 398 3943912 55200 150.46159362792969 0.99960000000000004 180.81819999999999 20160 11909 0 0 983040 737280 737280 737512 748800 111 25 29 26 207 5 0 0 0 4 0 0 0 0 0 +1104 1783752784940429700 REFRESH 18 0 0.70549423238277509 4 15 4 15 0 0 91 15 424 3943921 55200 149.8387451171875 0.97589999999999999 179.11949999999999 20160 14429 0 0 983040 737280 737280 737521 748800 35 25 25 32 307 0 0 0 0 15 0 0 0 0 0 +1105 1783752785137627500 REFRESH 49 0 0.70886239219032277 3 10 3 10 0 0 122 11 410 3943922 55200 150.09689331054688 0.99370000000000003 181.19560000000001 20160 12474 0 0 983040 737280 737280 737522 748800 57 26 72 56 199 0 0 0 0 11 0 0 0 0 0 +1106 1783752785319351500 REFRESH 57 0 0.75608159541427833 2 12 2 12 0 0 104 7 416 3943928 55200 150.38156127929688 0.97950000000000004 180.5351 20160 12301 0 0 983040 737280 737280 737528 748800 46 26 95 74 175 0 0 0 0 7 0 0 0 0 0 +1107 1783752785526808600 REFRESH 25 0 0.70366849033261514 3 11 3 11 0 0 95 9 422 3943921 55200 150.25776672363281 0.98480000000000001 179.98400000000001 20160 13497 0 0 983040 737280 737280 737521 748800 37 25 52 65 243 0 0 0 1 8 0 0 0 0 0 +1108 1783752785719631300 REFRESH 3 0 0.7057700001191427 2 11 2 11 1 0 111 10 423 3943912 55200 148.60800170898438 0.98780000000000001 178.19900000000001 20160 12467 0 0 983040 737280 737280 737512 748800 94 25 53 62 189 0 0 0 0 10 0 0 0 0 1 +1109 1783752785916628600 REFRESH 42 0 0.70490290719557613 4 12 4 12 0 0 115 14 411 3943911 55200 149.83782958984375 1.2424999999999999 181.74979999999999 20160 12045 0 0 983040 737280 737280 737511 748800 121 25 25 35 205 0 0 0 0 14 0 0 0 0 0 +1110 1783752786110670800 REFRESH 0 0 0.70802960118105229 1 12 1 12 0 0 76 10 424 3943954 55200 149.70780944824219 0.97960000000000003 178.6551 20160 12489 0 0 983040 737280 737280 737554 748800 64 25 48 47 240 0 0 0 0 10 0 0 0 0 0 +1111 1783752786302440700 REFRESH 24 0 0.708711244099274 4 11 4 11 0 0 124 11 413 3943947 55200 149.74873352050781 0.98629999999999995 179.52160000000001 20160 13489 0 0 983040 737280 737280 737547 748800 33 26 41 50 263 0 0 0 0 11 0 0 0 0 0 +1112 1783752786495483500 REFRESH 38 0 0.70517628914719943 4 14 4 14 0 0 79 9 420 3943891 55200 149.09542846679688 0.999 177.0599 20160 13447 0 0 983040 737280 737280 737491 748800 39 26 35 34 286 0 0 0 0 9 0 0 0 0 0 +1113 1783752786749300500 REFRESH 17 0 0.87184744524257352 0 7 0 7 0 0 164 8 411 3943919 55200 150.048828125 0.98299999999999998 223.70419999999999 20160 13089 0 0 983040 737280 737280 737518 748800 144 26 35 97 109 0 0 0 0 8 0 0 0 0 0 +1114 1783752786939749400 REFRESH 4 0 0.67984743334320819 1 13 1 13 0 0 47 5 419 3943890 55200 148.42588806152344 0.97370000000000001 175.50579999999999 20160 14419 0 0 983040 737280 737280 737490 748800 27 25 35 35 297 1 0 0 0 4 0 0 0 0 0 +1115 1783752787133883200 REFRESH 27 0 0.70942928730236487 0 14 0 14 1 0 100 10 416 3943923 55200 150.11123657226562 0.97489999999999999 178.69059999999999 20160 13335 0 0 983040 737280 737280 737523 748800 27 26 27 30 306 0 0 0 0 10 0 0 0 0 1 +1116 1783752787325561000 REFRESH 20 0 0.7070993057916225 3 12 3 12 0 0 94 11 422 3943916 55200 149.15481567382812 0.97399999999999998 177.47149999999999 20160 13504 0 0 983040 737280 737280 737516 748800 60 26 48 56 232 0 0 1 0 10 0 0 0 0 0 +1117 1783752787519868700 REFRESH 15 0 0.70993845738210126 3 12 3 12 0 0 78 14 422 3943894 55200 149.45074462890625 0.999 178.7543 20160 14362 0 0 983040 737280 737280 737494 748800 27 26 26 25 318 0 0 0 0 14 0 0 0 0 0 +1118 1783752787717280000 REFRESH 2 0 0.70842419401244561 2 12 2 12 0 0 102 12 421 3943899 55200 150.55564880371094 0.97560000000000002 181.09299999999999 20160 12499 0 0 983040 737280 737280 737499 748800 33 26 58 76 228 0 0 2 0 10 0 0 0 0 0 +1119 1783752787968326900 REFRESH 52 0 0.71145180375376882 1 8 1 8 0 0 102 4 425 3943925 55200 149.38726806640625 1.0141 221.0335 20160 12197 0 0 983040 737280 737280 737525 748800 118 25 32 153 97 0 0 0 0 4 0 0 0 0 0 +1120 1783752788164335000 REFRESH 36 0 0.70704752010456295 3 10 3 10 0 0 98 18 420 3943888 55200 149.87289428710938 0.97399999999999998 179.46539999999999 20160 11979 0 0 983040 737280 737280 737488 748800 108 25 42 55 190 0 0 0 0 18 0 0 0 0 0 +1121 1783752788378959100 REFRESH 9 0 0.75588377016246344 2 6 2 6 0 0 116 7 433 3943903 55200 151.03794860839844 0.97309999999999997 213.55019999999999 20160 12638 0 0 983040 737280 737280 737503 748800 128 25 78 65 137 0 0 0 0 7 0 0 0 0 0 +1122 1783752788575170500 REFRESH 22 0 0.70940892160573876 3 12 3 12 0 0 109 19 420 3943923 55200 149.98835754394531 0.97640000000000005 179.8897 20160 13408 0 0 983040 737280 737280 737523 748800 28 26 26 26 314 0 0 2 0 17 0 0 0 0 0 +1123 1783752789909338500 DEPTH 56 1 0.8704338986933069 2 5 2 5 0 0 170 19 2567 23664884 81600 855.70559692382812 5.8930000000000007 1292.7456 120960 63438 1 0 5898240 4423680 4423680 4426484 4492800 420 156 163 212 1616 0 0 0 0 19 0 0 0 0 0 +1124 1783752790985477900 DEPTH 8 1 0.86945174926644353 2 5 2 5 0 0 207 29 2552 23664830 81600 867.8603515625 5.8634000000000004 1075.0092 120960 64934 1 0 5898240 4423680 4423680 4426430 4492800 307 152 152 187 1754 0 0 0 0 29 0 0 0 0 0 +1125 1783752792248091900 DEPTH 13 1 0.86123546393634176 1 6 1 6 0 0 165 24 2493 23664776 81600 858.55813598632812 5.8653000000000004 1261.4970000000001 120960 63343 1 0 5898240 4423680 4423680 4426374 4492800 197 156 164 163 1813 0 0 0 0 24 0 0 0 0 0 +1126 1783752793546170600 DEPTH 1 1 0.75639950311898618 1 7 1 7 0 0 114 22 2598 23664844 81600 858.23231506347656 5.8395000000000001 1287.5898999999999 120960 58916 1 0 5898240 4423680 4423680 4426444 4492800 368 156 228 246 1600 0 0 0 0 22 0 0 0 0 0 +1127 1783752794858234700 DEPTH 11 1 0.75615209313864962 0 8 0 8 0 0 95 21 2568 23664771 81600 847.679443359375 5.8449 1295.1513 120960 58594 1 0 5898240 4423680 4423680 4426367 4492800 317 150 184 230 1687 0 0 0 0 21 0 0 0 0 0 +1128 1783752796022714600 DEPTH 33 1 0.7553713458448974 1 7 1 7 0 0 169 55 2533 23664969 81600 864.257568359375 5.8433999999999999 1139.2869000000001 120960 58881 1 0 5898240 4423680 4423680 4426565 4492800 217 156 160 160 1840 4 0 0 0 51 0 0 0 0 0 +1129 1783752797295659600 DEPTH 53 1 0.75459383059840968 0 8 0 8 0 0 125 37 2527 23664902 81600 857.54470825195312 5.9089 1246.4281000000001 120960 58026 1 0 5898240 4423680 4423680 4426501 4492800 174 156 150 162 1885 0 0 0 0 37 0 0 0 0 0 +1130 1783752798581557700 DEPTH 31 1 0.74540823984967508 2 6 2 6 0 0 113 9 2610 23664822 81600 854.26168823242188 5.8677999999999999 1261.0381 120960 60545 1 0 5898240 4423680 4423680 4426421 4492800 805 150 159 240 1256 0 1 0 0 8 0 0 0 0 0 +1131 1783752799951359900 DEPTH 17 1 0.79875506346687608 0 7 0 7 0 0 165 36 2526 23664872 81600 856.72785949707031 5.8985000000000003 1314.806 120960 63857 1 0 5898240 4423680 4423680 4426471 4492800 208 158 150 231 1779 0 0 0 0 36 0 0 0 0 0 +1132 1783752800984591800 DEPTH 28 1 0.75576698730625858 1 12 1 12 0 0 139 51 2512 23664756 81600 858.68637084960938 5.8372999999999999 1032.0834 120960 56431 1 0 5898240 4423680 4423680 4426356 4492800 156 150 162 150 1894 0 0 0 0 51 0 0 0 0 0 +1133 1783752802009985000 DEPTH 57 1 0.74310447286146963 2 12 2 12 0 0 109 56 2518 23664824 81600 855.43597412109375 5.8493999999999993 1024.1641 120960 57908 1 0 5898240 4423680 4423680 4426422 4492800 177 156 170 198 1817 3 0 0 0 53 0 0 0 0 0 +1134 1783752803042019100 DEPTH 58 1 0.72426295710573219 2 12 2 12 1 0 112 18 2584 23664797 81600 859.66084289550781 5.8783000000000003 1030.8081999999999 120960 58629 1 0 5898240 4423680 4423680 4426397 4492800 191 156 172 207 1858 0 0 0 0 18 0 0 0 0 1 +1135 1783752804159486500 DEPTH 16 1 0.71483534366984847 2 7 2 7 0 0 158 39 2522 23664907 81600 863.20759582519531 5.8689 1069.9434000000001 120960 58360 1 0 5898240 4423680 4423680 4426507 4492800 163 156 156 530 1517 0 0 0 0 39 0 0 0 0 0 +1136 1783752805407840000 DEPTH 45 1 0.71014186877586771 2 7 2 7 0 0 117 43 2569 23664841 81600 859.03819274902344 5.8442999999999996 1200.4507000000001 120960 57856 1 0 5898240 4423680 4423680 4426440 4492800 240 150 180 209 1790 0 0 1 0 42 0 0 0 0 0 +1137 1783752806448983000 DEPTH 6 1 0.70892654447015258 3 11 3 11 0 0 112 26 2550 23664899 81600 856.07701110839844 5.8373999999999997 1022.4422 120960 58368 1 0 5898240 4423680 4423680 4426498 4492800 150 150 150 150 1950 0 0 0 0 26 0 0 0 0 0 +1138 1783752807541432400 DEPTH 19 1 0.70736024679561016 2 11 2 11 1 0 113 43 2525 23664818 81600 858.53263854980469 5.8680999999999992 1033.1747 120960 56442 1 0 5898240 4423680 4423680 4426417 4492800 250 150 150 212 1763 0 0 0 0 43 0 0 0 0 1 +1139 1783752808826842000 DEPTH 56 1 0.77947112249468697 2 5 2 5 0 0 170 22 2567 23664804 81600 847.88714599609375 5.8549000000000007 1284.2257 120960 52291 1 0 5898240 4423680 4423680 4426402 4492800 420 156 163 254 1574 0 0 0 0 22 0 0 0 0 0 +1140 1783752809899773800 DEPTH 8 1 0.77842174073440773 2 5 2 5 0 0 208 29 2569 23664876 81600 859.69671630859375 5.8415999999999997 1071.8471 120960 53888 1 0 5898240 4423680 4423680 4426475 4492800 227 150 150 171 1871 0 0 0 0 29 0 0 0 0 0 +1141 1783752811215014800 DEPTH 13 1 0.77136409932344729 1 6 1 6 0 0 165 24 2490 23664792 81600 850.97854614257812 5.8630000000000004 1253.7699 120960 52164 1 0 5898240 4423680 4423680 4426388 4492800 205 155 163 169 1798 0 0 0 0 24 0 0 0 0 0 +1142 1783752812472096200 DEPTH 41 1 0.70649241834398224 1 10 1 10 1 0 98 26 2562 23664821 81600 847.29942321777344 5.9043999999999999 1229.1592000000001 120960 61701 1 0 5898240 4423680 4423680 4426419 4492800 168 156 168 167 1903 0 0 3 0 23 0 0 0 0 1 +1143 1783752813811203300 DEPTH 44 1 0.70523324018126632 2 7 2 7 0 0 119 30 2587 23664834 81600 856.63844299316406 5.8569000000000004 1294.0182 120960 58006 1 0 5898240 4423680 4423680 4426434 4492800 172 150 180 157 1928 0 0 0 0 30 0 0 0 0 0 +1144 1783752814842509700 DEPTH 5 1 0.70483752918235554 2 11 2 11 0 0 90 22 2551 23664895 81600 849.22761535644531 5.8708 1016.0859 120960 62641 1 0 5898240 4423680 4423680 4426494 4492800 167 150 229 225 1780 0 0 1 0 21 0 0 0 0 0 +1145 1783752815890647400 DEPTH 23 1 0.70480996210898816 3 14 3 14 1 0 93 92 2573 23664789 81600 855.07737731933594 5.8444999999999991 1024.7456 120960 70603 1 0 5898240 4423680 4423680 4426387 4492800 155 150 152 154 1962 0 0 0 0 92 0 0 0 0 2 +1146 1783752816941642000 DEPTH 32 1 0.70466157020628895 2 14 2 14 0 0 111 18 2562 23664760 81600 854.36502075195312 5.8877000000000006 1024.6207999999999 120960 62339 1 0 5898240 4423680 4423680 4426360 4492800 275 150 187 174 1776 1 0 0 0 17 0 0 0 0 0 +1147 1783752818263333900 DEPTH 17 1 0.77780022190647113 0 7 0 7 0 0 166 28 2531 23664905 81600 847.46240234375 5.8439000000000005 1293.9491 120960 52631 1 0 5898240 4423680 4423680 4426505 4492800 207 156 150 240 1778 0 0 0 0 28 0 0 0 0 0 +1148 1783752819561212300 DEPTH 9 1 0.75104707068368193 2 6 2 6 0 0 118 13 2620 23664936 81600 862.83232116699219 5.8669000000000002 1296.7433000000001 120960 60953 1 0 5898240 4423680 4423680 4426536 4492800 582 150 273 317 1298 0 0 0 0 13 0 0 0 0 0 +1149 1783752820892576800 DEPTH 1 1 0.73447005432881141 1 7 1 7 0 0 114 11 2598 23664812 81600 849.86370849609375 5.8868 1287.7166 120960 48113 1 0 5898240 4423680 4423680 4426412 4492800 376 156 231 280 1555 0 0 0 0 11 0 0 0 0 0 +1150 1783752821945090900 DEPTH 15 1 0.70540591857422852 3 12 3 12 0 0 78 54 2540 23664869 81600 857.58848571777344 5.8567 1027.6575 120960 70355 1 0 5898240 4423680 4423680 4426469 4492800 162 150 150 150 1928 0 0 0 0 54 0 0 0 0 0 +1151 1783752822996127400 DEPTH 27 1 0.70512300139001671 0 14 0 14 1 0 102 72 2560 23664833 81600 856.6094970703125 5.8584999999999994 1026.4315999999999 120960 66604 1 0 5898240 4423680 4423680 4426431 4492800 156 156 150 170 1928 0 1 2 0 69 0 0 0 0 1 +1152 1783752824050983000 DEPTH 49 1 0.70471333503761047 3 10 3 10 1 0 122 53 2583 23664784 81600 857.00148010253906 5.8602999999999996 1029.0604000000001 120960 59577 1 0 5898240 4423680 4423680 4426384 4492800 156 151 167 163 1946 0 0 0 0 53 0 0 0 0 1 +1153 1783752825129173900 DEPTH 22 1 0.70462074033373456 3 12 3 11 1 0 109 40 2610 23664863 81600 860.44015502929688 5.8800999999999997 1037.0811000000001 120960 66905 1 0 5898240 4423680 4423680 4426462 4492800 150 150 150 150 2010 0 0 1 0 39 0 0 0 0 1 +1154 1783752826410291600 DEPTH 21 1 0.70458383223006105 0 10 0 10 1 0 159 52 2556 23664896 81600 857.25666809082031 5.8308 1280.0473 120960 57729 1 0 5898240 4423680 4423680 4426496 4492800 211 150 156 192 1847 0 0 0 0 52 0 0 0 0 1 +1155 1783752826590326500 REFRESH 22 0 0.57380598299917163 3 11 3 11 1 0 109 12 421 3943900 55200 149.65043640136719 0.97340000000000004 178.8672 20160 12124 0 0 983040 737280 737280 737500 748800 31 26 28 28 308 0 0 0 0 12 0 0 0 0 1 +1156 1783752826796148800 REFRESH 2 0 0.70395963510384374 2 12 2 12 1 0 102 7 422 3943876 55200 151.21212768554688 0.98260000000000003 181.0557 20160 12320 0 0 983040 737280 737280 737475 748800 30 26 47 52 267 0 0 0 0 7 0 0 0 0 1 +1157 1783752826988170500 REFRESH 7 0 0.70222096723465011 2 12 2 12 1 0 100 14 420 3943907 55200 148.61619567871094 0.98150000000000004 179.1011 20160 12298 0 0 983040 737280 737280 737507 748800 59 26 30 46 259 0 0 0 0 14 0 0 0 0 1 +1158 1783752827168499500 REFRESH 32 0 0.569477933892515 2 14 2 14 0 0 111 13 418 3943886 55200 150.17984008789062 0.97950000000000004 179.16059999999999 20160 11869 0 0 983040 737280 737280 737486 748800 162 25 36 32 163 0 0 0 0 13 0 0 0 0 0 +1159 1783752827370023000 REFRESH 38 0 0.69949211774821751 4 14 4 14 0 0 79 8 417 3943900 55200 149.5020751953125 0.97419999999999995 176.65530000000001 20160 13316 0 0 983040 737280 737280 737500 748800 41 26 37 35 278 0 0 0 0 8 0 0 0 0 0 +1160 1783752827560209800 REFRESH 41 0 0.63403685079753325 1 10 1 10 0 0 99 4 417 3943900 55200 148.56704711914062 0.99639999999999995 189.05279999999999 20160 11856 0 0 983040 737280 737280 737500 748800 63 26 44 37 247 1 0 0 0 3 0 0 0 0 0 +1161 1783752827740955400 REFRESH 23 0 0.60978595489570264 3 14 3 14 0 0 94 12 411 3943910 55200 149.62681579589844 0.98040000000000005 179.6378 20160 13208 0 0 983040 737280 737280 737510 748800 31 25 70 38 247 0 0 1 0 11 0 0 0 0 0 +1162 1783752827944916800 REFRESH 25 0 0.69920973411174259 3 11 3 11 0 0 95 10 418 3943910 55200 150.21260070800781 0.97360000000000002 180.0129 20160 13277 0 0 983040 737280 737280 737510 748800 51 25 68 73 201 0 0 0 0 10 0 0 0 0 0 +1163 1783752828141058900 REFRESH 47 0 0.70139757877633713 2 11 2 11 0 0 108 10 424 3943892 55200 150.21670532226562 0.97589999999999999 180.01009999999999 20160 12406 0 0 983040 737280 737280 737492 748800 89 26 52 31 226 0 0 0 0 10 0 0 0 0 0 +1164 1783752828338027500 REFRESH 34 0 0.70334413787544836 1 13 1 13 0 0 94 10 427 3943906 55200 148.34072875976562 0.99819999999999998 181.2867 20160 12370 0 0 983040 737280 737280 737504 748800 49 25 52 63 238 0 0 0 0 10 0 0 0 0 0 +1165 1783752828529873500 REFRESH 26 0 0.69949072441925153 1 13 1 13 0 0 68 7 419 3943912 55200 148.37452697753906 0.99880000000000002 176.0745 20160 14323 0 0 983040 737280 737280 737512 748800 28 25 31 39 296 0 0 0 0 7 0 0 0 0 0 +1166 1783752828720521500 REFRESH 53 0 0.75300474302426401 0 8 0 8 0 0 125 8 417 3943915 55200 150.8116455078125 0.97870000000000001 189.50210000000001 20160 12276 0 0 983040 737280 737280 737515 748800 119 26 27 48 197 0 0 0 0 8 0 0 0 0 0 +1167 1783752828941670100 REFRESH 44 0 0.69391468274195711 2 7 2 7 0 0 120 5 410 3943910 55200 150.68255615234375 0.98819999999999997 219.97749999999999 20160 12433 0 0 983040 737280 737280 737509 748800 91 26 69 29 195 0 0 0 0 5 0 0 0 0 0 +1168 1783752829158417800 REFRESH 9 0 0.69941182404123059 2 6 2 6 0 0 118 6 435 3943930 55200 151.00825500488281 0.98609999999999998 215.5789 20160 12520 0 0 983040 737280 737280 737530 748800 133 25 81 66 130 0 0 0 0 6 0 0 0 0 0 +1169 1783752829346563700 REFRESH 8 0 0.86746747810121594 2 5 2 5 0 0 208 7 415 3943899 55200 151.55302429199219 0.98719999999999997 187.07689999999999 20160 13444 0 0 983040 737280 737280 737499 748800 132 26 57 60 140 0 0 0 0 7 0 0 0 0 0 +1170 1783752829524191000 REFRESH 5 0 0.70082983849566116 2 11 2 11 0 0 90 2 413 3943886 55200 148.78617858886719 0.98309999999999997 176.52340000000001 20160 11797 0 0 983040 737280 737280 737486 748800 41 25 68 87 192 0 0 0 0 2 0 0 0 0 0 +1171 1783752829711718400 REFRESH 45 0 0.70845316299016958 2 7 2 7 0 0 117 6 418 3943921 55200 149.93817138671875 0.97589999999999999 186.12180000000001 20160 12231 0 0 983040 737280 737280 737521 748800 143 25 47 48 155 0 0 0 0 6 0 0 0 0 0 +1172 1783752829906732900 REFRESH 37 0 0.70192231581093556 1 12 1 12 0 0 122 7 413 3943904 55200 150.1317138671875 0.99919999999999998 179.19210000000001 20160 12437 0 0 983040 737280 737280 737503 748800 82 26 70 35 200 0 0 0 0 7 0 0 0 0 0 +1173 1783752830149968800 REFRESH 30 0 0.70276193169526557 2 12 2 12 1 0 99 12 411 3943891 55200 149.13331604003906 0.99509999999999998 179.03489999999999 20160 12440 0 0 983040 737280 737280 737491 748800 40 25 68 46 232 0 0 0 0 12 0 0 0 0 1 +1174 1783752830398170500 REFRESH 54 0 0.70356024676321605 1 8 1 8 1 0 110 8 423 3943913 55200 149.35653686523438 0.97750000000000004 221.2099 20160 12134 0 0 983040 737280 737280 737513 748800 168 25 55 99 76 0 0 0 0 8 0 0 0 0 1 +1175 1783752830593069500 REFRESH 42 0 0.69953287305432932 4 12 4 12 0 0 115 8 421 3943909 55200 149.2674560546875 0.98750000000000004 179.14590000000001 20160 12129 0 0 983040 737280 737280 737509 748800 121 25 25 26 224 0 0 0 0 8 0 0 0 0 0 +1176 1783752830799380500 REFRESH 1 0 0.75257026774024649 1 7 1 7 0 0 114 4 418 3943910 55200 150.78604125976562 0.97370000000000001 205.22649999999999 20160 12451 0 0 983040 737280 737280 737510 748800 130 26 67 68 127 0 0 0 0 4 0 0 0 0 0 +1177 1783752830993519500 REFRESH 40 0 0.69021193878561582 3 11 3 11 1 0 104 8 418 3943915 55200 150.46823120117188 0.97599999999999998 179.37219999999999 20160 13044 0 0 983040 737280 737280 737514 748800 142 25 33 92 126 0 0 0 0 8 0 0 0 0 1 +1178 1783752831188872400 REFRESH 10 0 0.69629694280746857 1 11 1 11 0 0 105 9 423 3943922 55200 149.3544921875 0.97470000000000001 178.8665 20160 11862 0 0 983040 737280 737280 737522 748800 95 26 49 37 216 0 0 0 0 9 0 0 0 0 0 +1179 1783752831383066200 REFRESH 0 0 0.70457429338688549 1 12 1 12 1 0 77 14 422 3943924 55200 149.12101745605469 1.0630999999999999 179.2216 20160 12351 0 0 983040 737280 737280 737524 748800 40 25 33 31 293 0 0 0 0 14 0 0 0 0 1 +1180 1783752831566778300 REFRESH 16 0 0.71255025275302653 2 7 2 7 0 0 158 7 416 3943909 55200 151.46803283691406 0.9728 182.60210000000001 20160 12413 0 0 983040 737280 737280 737508 748800 31 26 26 233 100 0 0 0 0 7 0 0 0 0 0 +1181 1783752831748515800 REFRESH 28 0 0.74552810270247127 1 12 1 12 0 0 139 12 408 3943933 55200 150.77273559570312 0.97389999999999999 180.62739999999999 20160 11816 0 0 983040 737280 737280 737532 748800 124 25 29 27 203 1 0 0 0 11 0 0 0 0 0 +1182 1783752831946451400 REFRESH 48 0 0.66916839147968588 2 11 2 11 0 0 69 0 431 3943888 55200 149.21932983398438 0.97470000000000001 177.83869999999999 20160 13153 0 0 983040 737280 737280 737488 748800 160 25 57 62 127 0 0 0 0 0 0 0 0 0 0 +1183 1783752832141687300 REFRESH 13 0 0.86157200826886382 1 6 1 6 0 0 165 4 413 3943932 55200 151.10552978515625 0.97529999999999994 194.1285 20160 13036 0 0 983040 737280 737280 737531 748800 161 26 57 68 101 0 0 0 0 4 0 0 0 0 0 +1184 1783752832368064300 REFRESH 17 0 0.86698773644274507 0 7 0 7 0 0 166 3 415 3943923 55200 150.53106689453125 0.97819999999999996 225.30009999999999 20160 13427 0 0 983040 737280 737280 737523 748800 118 26 32 94 145 0 0 0 0 3 0 0 0 0 0 +1185 1783752832547383000 REFRESH 49 0 0.70053095239284802 3 10 3 10 1 0 123 14 416 3943886 55200 149.25004577636719 0.98219999999999996 178.10599999999999 20160 12564 0 0 983040 737280 737280 737486 748800 59 26 67 51 213 0 0 0 0 14 0 0 0 0 1 +1186 1783752832726717500 REFRESH 15 0 0.70111394440323394 3 12 3 12 0 0 78 9 420 3943901 55200 149.52371215820312 0.97660000000000002 178.209 20160 13180 0 0 983040 737280 737280 737501 748800 27 26 26 25 316 0 0 0 0 9 0 0 0 0 0 +1187 1783752832952798700 REFRESH 11 0 0.75489853924678885 0 8 0 8 1 0 95 5 426 3943911 55200 149.36575317382812 0.97829999999999995 224.94909999999999 20160 12535 0 0 983040 737280 737280 737511 748800 130 25 54 55 162 0 0 0 0 5 0 0 0 0 1 +1188 1783752833140871800 REFRESH 33 0 0.75395925733563296 1 7 1 7 0 0 169 7 417 3943914 55200 151.896728515625 0.98409999999999997 186.90700000000001 20160 12327 0 0 983040 737280 737280 737514 748800 103 26 42 33 213 1 0 0 0 6 0 0 0 0 0 +1189 1783752833336909700 REFRESH 24 0 0.70466521123261094 4 11 4 11 0 0 125 8 413 3943901 55200 150.38067626953125 0.99819999999999998 180.1352 20160 13285 0 0 983040 737280 737280 737501 748800 33 26 38 48 268 0 0 0 0 8 0 0 0 0 0 +1190 1783752833526787800 REFRESH 3 0 0.70273633233278054 2 11 2 11 0 0 111 8 417 3943973 55200 149.31149291992188 0.97130000000000005 177.46080000000001 20160 12327 0 0 983040 737280 737280 737573 748800 107 25 60 69 156 0 0 0 0 8 0 0 0 0 0 +1191 1783752833721263400 REFRESH 12 0 0.70418115938993053 3 8 3 8 0 0 149 14 412 3943929 55200 149.07801818847656 0.9718 179.15860000000001 20160 12281 0 0 983040 737280 737280 737528 748800 96 26 43 91 156 0 0 0 0 14 0 0 0 0 0 +1192 1783752833900703200 REFRESH 57 0 0.73458565061990599 2 12 2 12 0 0 111 12 418 3943906 55200 149.15788269042969 0.99890000000000001 178.23009999999999 20160 12291 0 0 983040 737280 737280 737506 748800 59 26 88 68 177 0 0 1 0 11 0 0 0 0 0 +1193 1783752834106148400 REFRESH 36 0 0.70344842678454877 3 10 3 10 0 0 98 6 420 3943894 55200 150.45120239257812 0.98260000000000003 179.65110000000001 20160 11825 0 0 983040 737280 737280 737494 748800 115 25 42 58 180 0 0 0 0 6 0 0 0 0 0 +1194 1783752834334075600 REFRESH 4 0 0.67443382660961637 1 13 1 13 0 0 47 3 420 3943907 55200 148.75651550292969 0.97460000000000002 176.52189999999999 20160 14227 0 0 983040 737280 737280 737506 748800 27 25 34 32 302 0 0 0 0 3 0 0 0 0 0 +1195 1783752834514476300 REFRESH 19 0 0.70199693232024818 2 11 2 11 0 0 113 11 415 3943900 55200 149.17939758300781 0.97619999999999996 178.84450000000001 20160 12009 0 0 983040 737280 737280 737500 748800 119 25 26 49 196 0 0 0 0 11 0 0 0 0 0 +1196 1783752834718614400 REFRESH 20 0 0.70324506126027198 3 12 3 12 0 0 94 13 422 3943887 55200 149.54098510742188 0.97170000000000001 177.59209999999999 20160 13322 0 0 983040 737280 737280 737487 748800 64 26 49 53 230 0 0 0 0 13 0 0 0 0 0 +1197 1783752834915673400 REFRESH 50 0 0.70156399140272108 2 9 2 9 0 0 113 6 416 3943910 55200 149.58181762695312 0.97529999999999994 181.11840000000001 20160 12717 0 0 983040 737280 737280 737510 748800 142 26 41 66 141 0 0 0 0 6 0 0 0 0 0 +1198 1783752835096406200 REFRESH 43 0 0.70112192724704803 2 13 2 13 1 0 116 11 415 3943927 55200 150.06617736816406 0.98399999999999999 179.57149999999999 20160 11823 0 0 983040 737280 737280 737527 748800 53 26 38 53 245 0 0 0 0 11 0 0 0 0 1 +1199 1783752835291491800 REFRESH 55 0 0.70110041976462856 1 15 1 15 0 0 120 10 413 3943919 55200 150.0897216796875 0.97460000000000002 179.40780000000001 20160 13248 0 0 983040 737280 737280 737519 748800 29 26 28 43 287 0 0 0 0 10 0 0 0 0 0 +1200 1783752835511920800 REFRESH 51 0 0.70056589106475742 3 12 3 12 0 0 86 5 420 3943896 55200 148.90701293945312 0.98680000000000001 177.07769999999999 20160 13341 0 0 983040 737280 737280 737495 748800 33 26 134 111 116 0 0 0 0 5 0 0 0 0 0 +1201 1783752835691404400 REFRESH 27 0 0.70124161634811077 0 14 0 14 0 0 103 10 410 3943898 55200 149.45382690429688 0.97350000000000003 178.3518 20160 12324 0 0 983040 737280 737280 737498 748800 30 26 26 30 298 0 0 0 0 10 0 0 0 0 0 +1202 1783752835872270200 REFRESH 29 0 0.7017366330525211 2 12 2 12 0 0 104 16 415 3943904 55200 150.36825561523438 0.97899999999999998 179.7225 20160 12351 0 0 983040 737280 737280 737504 748800 52 25 54 40 244 0 0 0 0 16 0 0 0 0 0 +1203 1783752836078591800 REFRESH 35 0 0.70260031671064338 2 11 2 11 1 0 132 17 418 3943927 55200 150.65286254882812 0.97899999999999998 180.88759999999999 20160 11976 0 0 983040 737280 737280 737527 748800 81 25 31 109 172 0 0 0 0 17 0 0 0 0 1 +1204 1783752836278769200 REFRESH 14 0 0.69931396944788671 0 12 0 12 0 0 103 8 416 3943889 55200 150.15423583984375 0.97250000000000003 183.7903 20160 12019 0 0 983040 737280 737280 737489 748800 42 26 28 38 282 0 0 0 0 8 0 0 0 0 0 +1205 1783752836507586300 REFRESH 31 0 0.74392425472744372 2 6 2 6 0 0 113 6 429 3943912 55200 148.822021484375 0.97929999999999995 211.31299999999999 20160 12484 0 0 983040 737280 737280 737512 748800 226 25 27 55 96 0 0 0 0 6 0 0 0 0 0 +1206 1783752836686062700 REFRESH 6 0 0.70125087518480156 3 11 3 11 0 0 112 5 416 3943901 55200 149.76716613769531 0.99909999999999999 177.38829999999999 20160 12359 0 0 983040 737280 737280 737501 748800 26 25 25 25 315 0 0 0 0 5 0 0 0 0 0 +1207 1783752836909048900 REFRESH 56 0 0.86894149695543588 2 5 2 5 0 0 170 5 416 3943889 55200 150.28530883789062 0.97409999999999997 221.80520000000001 20160 13400 0 0 983040 737280 737280 737489 748800 177 26 50 58 105 0 0 0 0 5 0 0 0 0 0 +1208 1783752837105216600 REFRESH 21 0 0.70247720639662004 0 10 0 10 0 0 159 10 412 3943906 55200 150.98080444335938 0.97430000000000005 195.0522 20160 12332 0 0 983040 737280 737280 737506 748800 75 26 32 63 216 0 0 0 0 10 0 0 0 0 0 +1209 1783752837300271900 REFRESH 39 0 0.70151655586504424 2 12 2 12 0 0 142 11 405 3943891 55200 150.02093505859375 0.97089999999999999 179.47479999999999 20160 11890 0 0 983040 737280 737280 737491 748800 35 26 28 31 285 0 0 0 0 11 0 0 0 0 0 +1210 1783752837496548400 REFRESH 18 0 0.70144790879192298 4 15 4 15 0 0 91 13 423 3943917 55200 150.36518859863281 0.9798 179.70859999999999 20160 14344 0 0 983040 737280 737280 737517 748800 37 25 25 35 301 0 0 0 0 13 0 0 0 0 0 +1211 1783752837719821800 REFRESH 58 0 0.71730570981141084 2 12 2 12 0 0 112 8 418 3943899 55200 149.01863098144531 0.97989999999999999 177.15979999999999 20160 11941 0 0 983040 737280 737280 737499 748800 61 26 44 46 241 0 0 0 0 8 0 0 0 0 0 +1212 1783752837957374700 REFRESH 52 0 0.70453320233041317 1 8 1 8 0 0 102 4 428 3943930 55200 149.70777893066406 0.97689999999999999 220.74289999999999 20160 12051 0 0 983040 737280 737280 737530 748800 117 25 33 153 100 0 0 0 0 4 0 0 0 0 0 +1213 1783752838152044900 REFRESH 46 0 0.70121076664997362 2 15 2 15 0 0 96 10 414 3943901 55200 149.57772827148438 0.9758 179.26169999999999 20160 12302 0 0 983040 737280 737280 737501 748800 35 26 39 29 285 0 0 0 0 10 0 0 0 0 0 +1214 1783752839233389200 DEPTH 8 1 0.8636137434935014 2 5 2 5 1 0 208 28 2567 23664878 81600 868.70974731445312 5.8773 1080.2235000000001 120960 64740 1 0 5898240 4423680 4423680 4426477 4492800 239 151 152 178 1847 0 0 0 0 28 0 0 0 0 1 +1215 1783752840536777400 DEPTH 17 1 0.85906454316051073 0 7 0 7 0 0 167 26 2519 23664772 81600 858.55903625488281 5.8428000000000004 1302.2919999999999 120960 64793 1 0 5898240 4423680 4423680 4426371 4492800 203 156 150 240 1770 0 0 0 0 26 0 0 0 0 0 +1216 1783752841852215100 DEPTH 13 1 0.85553325858204832 1 6 1 6 0 0 165 24 2499 23664862 81600 857.65155029296875 5.8451999999999993 1263.2926 120960 63514 1 0 5898240 4423680 4423680 4426462 4492800 198 155 158 166 1822 0 0 0 0 24 0 0 0 0 0 +1217 1783752842910228500 DEPTH 22 1 0.79044942151715414 3 11 3 11 1 0 110 56 2605 23664942 81600 856.69552612304688 5.8299000000000003 1032.8322000000001 120960 61166 1 0 5898240 4423680 4423680 4426539 4492800 150 150 150 150 2005 0 0 0 0 56 0 0 0 0 1 +1218 1783752844154264800 DEPTH 53 1 0.74953367296515416 0 8 0 8 0 0 128 28 2540 23664758 81600 859.065185546875 5.8283999999999994 1205.1120000000001 120960 58137 1 0 5898240 4423680 4423680 4426355 4492800 208 156 150 164 1862 0 0 0 0 28 0 0 0 0 0 +1219 1783752845337241800 DEPTH 33 1 0.74918354387435393 1 7 1 7 1 0 169 35 2530 23664851 81600 864.84495544433594 5.8525999999999998 1158.8805 120960 59339 1 0 5898240 4423680 4423680 4426449 4492800 201 156 156 150 1867 0 0 0 0 35 0 0 0 0 2 +1220 1783752846655856700 DEPTH 11 1 0.74827737492581659 0 8 0 8 1 0 95 9 2547 23664846 81600 851.2650146484375 5.8746 1293.7671 120960 59395 1 0 5898240 4423680 4423680 4426443 4492800 310 150 182 229 1676 0 0 0 0 9 0 0 0 0 1 +1221 1783752847991199500 DEPTH 1 1 0.74485023285595076 1 7 1 7 0 0 115 24 2611 23664865 81600 859.89068603515625 5.9097999999999997 1300.1107 120960 59608 1 0 5898240 4423680 4423680 4426465 4492800 374 156 237 268 1576 0 0 0 0 24 0 0 0 0 0 +1222 1783752849306948800 DEPTH 56 1 0.76285408934484034 2 5 2 5 0 0 170 23 2573 23664866 81600 856.46420288085938 5.8637999999999995 1291.1008999999999 120960 64571 1 0 5898240 4423680 4423680 4426466 4492800 423 156 162 222 1610 0 0 0 0 23 0 0 0 0 0 +1223 1783752850598892600 DEPTH 9 1 0.74410779290418605 2 6 2 6 0 0 118 15 2616 23664895 81600 858.60972595214844 5.8287000000000004 1290.8449000000001 120960 60360 1 0 5898240 4423680 4423680 4426495 4492800 612 150 298 364 1192 0 0 0 0 15 0 0 0 0 0 +1224 1783752851672424800 DEPTH 28 1 0.73599813222181854 1 12 1 12 0 0 139 53 2501 23664881 81600 860.47232055664062 5.8708 1034.3416 120960 56894 1 0 5898240 4423680 4423680 4426476 4492800 156 150 162 150 1883 0 0 0 0 53 0 0 0 0 0 +1225 1783752852724170400 DEPTH 57 1 0.72633623501297895 2 12 2 12 0 0 114 74 2517 23664807 81600 855.42977905273438 5.8397999999999994 1026.6551999999999 120960 57968 1 0 5898240 4423680 4423680 4426405 4492800 186 156 171 205 1799 5 0 0 0 69 0 0 0 0 0 +1226 1783752853819394400 DEPTH 16 1 0.70729920074508357 2 7 2 7 0 0 159 56 2522 23664856 81600 864.53640747070312 5.8411 1069.9321 120960 58795 1 0 5898240 4423680 4423680 4426455 4492800 162 156 156 561 1487 0 0 0 1 55 0 0 0 0 0 +1227 1783752855036795300 DEPTH 45 1 0.70295058154879952 2 7 2 7 0 0 119 47 2569 23664799 81600 858.87550354003906 5.8373999999999997 1191.7932000000001 120960 58147 1 0 5898240 4423680 4423680 4426398 4492800 234 150 185 204 1796 1 0 2 0 44 0 0 0 0 0 +1228 1783752856104955100 DEPTH 12 1 0.70127177425426779 3 8 3 8 0 0 153 71 2522 23664740 81600 854.00267028808594 5.8746999999999998 1026.3632 120960 57863 1 0 5898240 4423680 4423680 4426338 4492800 177 150 172 192 1831 0 0 0 3 68 0 0 0 0 0 +1229 1783752857131931900 DEPTH 0 1 0.70094920068981104 1 12 1 12 1 0 79 25 2574 23664797 81600 851.45181274414062 5.8708 1025.7765999999999 120960 60854 1 0 5898240 4423680 4423680 4426395 4492800 208 150 184 175 1857 0 0 0 0 25 0 0 0 0 1 +1230 1783752858208136500 DEPTH 8 1 0.77289179139138209 2 5 2 5 0 0 209 45 2549 23664815 81600 862.83833312988281 5.8405000000000005 1075.0998999999999 120960 53878 1 0 5898240 4423680 4423680 4426414 4492800 330 153 153 218 1695 0 0 0 0 45 0 0 0 0 0 +1231 1783752859519705700 DEPTH 17 1 0.76866400126312306 0 7 0 7 0 0 167 29 2524 23664861 81600 849.96034240722656 6.0489999999999995 1310.5018 120960 53875 1 0 5898240 4423680 4423680 4426460 4492800 199 156 150 243 1776 0 0 0 0 29 0 0 0 0 0 +1232 1783752860822255500 DEPTH 13 1 0.76580245426117421 1 6 1 6 1 0 166 20 2500 23664889 81600 849.81394958496094 5.8646000000000003 1259.7161000000001 120960 52265 1 0 5898240 4423680 4423680 4426487 4492800 199 154 162 162 1823 0 0 0 0 20 0 0 0 0 1 +1233 1783752862110178800 DEPTH 31 1 0.73891101789312064 2 6 2 6 0 0 114 11 2620 23664801 81600 854.78668212890625 5.8321000000000005 1262.3408999999999 120960 60900 1 0 5898240 4423680 4423680 4426400 4492800 840 150 159 259 1212 0 1 0 0 10 0 0 0 0 0 +1234 1783752863421786600 DEPTH 54 1 0.70083531034372815 1 8 1 8 0 0 111 25 2601 23664780 81600 855.52894592285156 5.8311999999999999 1284.3215 120960 58306 1 0 5898240 4423680 4423680 4426377 4492800 417 150 245 498 1291 2 1 0 0 22 0 0 0 0 0 +1235 1783752864511893400 DEPTH 34 1 0.69987654458146031 1 13 1 13 1 0 96 24 2601 23664700 81600 845.80409240722656 5.8347999999999995 1013.183 120960 61105 1 0 5898240 4423680 4423680 4426300 4492800 163 150 156 185 1947 0 0 0 0 24 0 0 0 0 1 +1236 1783752865572216600 DEPTH 30 1 0.69901420817157822 2 12 2 12 1 0 99 58 2518 23664860 81600 851.95799255371094 5.8441999999999998 1026.8987999999999 120960 61491 1 0 5898240 4423680 4423680 4426456 4492800 156 150 152 164 1896 0 0 0 1 57 0 0 0 0 2 +1237 1783752866637363600 DEPTH 20 1 0.69898390689086431 3 12 3 12 0 0 94 41 2602 23664867 81600 852.58935546875 5.8708 1021.4227 120960 66309 1 0 5898240 4423680 4423680 4426467 4492800 182 156 228 324 1712 0 0 0 0 41 0 0 0 0 0 +1238 1783752867952444700 DEPTH 56 1 0.77223596549327744 2 5 2 5 0 0 170 36 2568 23664793 81600 847.85255432128906 5.8214999999999995 1281.3456000000001 120960 53204 1 0 5898240 4423680 4423680 4426393 4492800 426 156 162 256 1568 0 0 0 0 36 0 0 0 0 0 +1239 1783752868982615100 DEPTH 22 1 0.74707727551919834 3 11 3 11 0 0 111 24 2612 23664905 81600 847.36415100097656 5.8362999999999996 1020.5022 120960 49333 1 0 5898240 4423680 4423680 4426504 4492800 150 150 150 154 2008 0 0 0 0 24 0 0 0 0 0 +1240 1783752870012786300 DEPTH 58 1 0.70819043610243038 2 12 2 12 0 0 113 17 2577 23664706 81600 859.02745056152344 5.8441999999999998 1028.836 120960 58250 1 0 5898240 4423680 4423680 4426306 4492800 195 156 171 209 1846 0 0 0 0 17 0 0 0 0 0 +1241 1783752871289711300 DEPTH 21 1 0.70009995021485394 0 10 0 10 1 0 161 63 2546 23664888 81600 859.8426513671875 5.8340000000000005 1275.796 120960 58650 1 0 5898240 4423680 4423680 4426487 4492800 233 150 155 202 1806 0 0 0 0 63 0 0 0 0 2 +1242 1783752872376525200 DEPTH 35 1 0.69878128192169398 2 11 2 11 1 0 134 83 2537 23664868 81600 857.85072326660156 5.8590999999999998 1030.0134 120960 58266 1 0 5898240 4423680 4423680 4426468 4492800 169 150 156 203 1859 0 0 0 4 79 0 0 0 0 1 +1243 1783752873419237700 DEPTH 7 1 0.69876223939806514 2 12 1 12 1 0 104 67 2551 23664851 81600 854.42559814453125 5.8353999999999999 1025.0535 120960 60394 1 0 5898240 4423680 4423680 4426450 4492800 162 151 156 156 1926 0 2 0 0 65 0 0 0 0 3 +1244 1783752874502681100 DEPTH 24 1 0.6984465020230104 4 11 4 11 0 0 127 56 2515 23664891 81600 857.05778503417969 5.8708 1027.921 120960 66474 1 0 5898240 4423680 4423680 4426490 4492800 162 156 161 158 1878 0 0 0 0 56 0 0 0 0 0 +1245 1783752875553497900 DEPTH 47 1 0.698198820978432 2 11 2 11 0 0 108 31 2577 23664931 81600 856.35791015625 5.8267999999999995 1027.6085 120960 58339 1 0 5898240 4423680 4423680 4426529 4492800 171 150 159 161 1936 1 0 0 0 30 0 0 0 0 0 +1246 1783752875734643200 REFRESH 32 0 0.69556714759348781 2 14 2 14 0 0 112 11 425 3943924 55200 151.37997436523438 0.97140000000000004 179.99850000000001 20160 12187 0 0 983040 737280 737280 737524 748800 142 25 36 31 191 0 0 0 0 11 0 0 0 0 0 +1247 1783752875928402100 REFRESH 37 0 0.69558456143467728 1 12 1 12 0 0 122 9 417 3943915 55200 150.55258178710938 0.998 178.8768 20160 12445 0 0 983040 737280 737280 737515 748800 77 26 55 33 226 0 0 0 0 9 0 0 0 0 0 +1248 1783752876109655900 REFRESH 30 0 0.56476756071693046 2 12 2 12 0 0 99 9 408 3943890 55200 151.19564819335938 0.97799999999999998 180.06739999999999 20160 11866 0 0 983040 737280 737280 737490 748800 44 25 62 36 241 0 0 0 0 9 0 0 0 0 0 +1249 1783752876301524600 REFRESH 3 0 0.69741854205557718 2 11 2 11 0 0 111 9 420 3943943 55200 148.83941650390625 0.97470000000000001 176.8237 20160 12274 0 0 983040 737280 737280 737543 748800 84 25 43 54 214 0 0 0 1 8 0 0 0 0 0 +1250 1783752876481748000 REFRESH 58 0 0.55151524207495473 2 12 2 12 0 0 113 7 417 3943880 55200 150.60786437988281 0.97070000000000001 179.0153 20160 12638 0 0 983040 737280 737280 737480 748800 61 26 44 48 238 0 0 0 0 7 0 0 0 0 0 +1251 1783752876684301700 REFRESH 40 0 0.69122080246125961 3 11 3 11 0 0 104 5 418 3943904 55200 149.38726806640625 0.9798 178.25450000000001 20160 13009 0 0 983040 737280 737280 737504 748800 142 25 33 93 125 0 0 0 0 5 0 0 0 0 0 +1252 1783752876871154300 REFRESH 35 0 0.54468594664769787 2 11 2 11 0 0 134 9 417 3943887 55200 149.70777893066406 0.97419999999999995 185.65539999999999 20160 12142 0 0 983040 737280 737280 737487 748800 93 25 34 90 175 0 0 0 0 9 0 0 0 0 0 +1253 1783752877076377800 REFRESH 1 0 0.743580335908676 1 7 1 7 0 0 116 8 417 3943891 55200 151.05311584472656 0.97509999999999997 204.08709999999999 20160 12551 0 0 983040 737280 737280 737491 748800 122 26 70 73 126 0 0 0 0 8 0 0 0 0 0 +1254 1783752877289782500 REFRESH 31 0 0.69813210660897207 2 6 2 6 0 0 114 4 424 3943896 55200 149.82861328125 0.97470000000000001 212.30879999999999 20160 12507 0 0 983040 737280 737280 737495 748800 227 25 27 56 89 0 0 0 0 4 0 0 0 0 0 +1255 1783752877482095700 REFRESH 21 0 0.5875161021449653 0 10 0 10 0 0 161 10 412 3943909 55200 150.17266845703125 0.98080000000000001 191.21209999999999 20160 12324 0 0 983040 737280 737280 737509 748800 90 26 35 69 192 0 0 0 0 10 0 0 0 0 0 +1256 1783752877661999100 REFRESH 24 0 0.56403021230660544 4 11 4 11 0 0 128 7 410 3943921 55200 149.712890625 0.9738 178.7525 20160 12134 0 0 983040 737280 737280 737520 748800 36 26 42 50 256 0 0 0 0 7 0 0 0 0 0 +1257 1783752877864683400 REFRESH 43 0 0.69702097667158491 2 13 2 13 0 0 117 8 414 3943907 55200 150.60873413085938 0.97289999999999999 179.9452 20160 11940 0 0 983040 737280 737280 737507 748800 56 26 39 53 240 0 0 0 0 8 0 0 0 0 0 +1258 1783752878086319700 REFRESH 26 0 0.69401270771467938 1 13 1 13 1 0 68 9 420 3943883 55200 149.09849548339844 0.98229999999999995 176.8168 20160 14183 0 0 983040 737280 737280 737483 748800 28 25 29 38 300 0 0 0 0 9 0 0 0 0 1 +1259 1783752878286837200 REFRESH 14 0 0.69441635025321347 0 12 0 12 0 0 103 10 416 3943891 55200 148.93977355957031 0.97319999999999995 183.34950000000001 20160 12093 0 0 983040 737280 737280 737491 748800 54 26 28 43 265 0 0 0 0 10 0 0 0 0 0 +1260 1783752878475768400 REFRESH 53 0 0.7481134436567084 0 8 0 8 0 0 130 7 418 3943901 55200 150.97138977050781 0.98089999999999999 187.7714 20160 12472 0 0 983040 737280 737280 737501 748800 119 27 27 49 196 0 0 0 1 6 0 0 0 0 0 +1261 1783752878709682900 REFRESH 52 0 0.69761355040919704 1 8 1 8 0 0 103 5 427 3943903 55200 149.607421875 0.97130000000000005 220.7749 20160 12207 0 0 983040 737280 737280 737503 748800 121 25 33 151 97 1 0 0 0 4 0 0 0 0 0 +1262 1783752878905399000 REFRESH 46 0 0.69666669284347182 2 15 2 15 0 0 96 8 414 3943882 55200 149.14151000976562 0.99909999999999999 180.5915 20160 12295 0 0 983040 737280 737280 737482 748800 35 26 39 28 286 0 0 0 0 8 0 0 0 0 0 +1263 1783752879101566100 REFRESH 2 0 0.69761792343675244 2 12 2 12 0 0 102 11 420 3943915 55200 150.57612609863281 0.9778 180.0067 20160 12139 0 0 983040 737280 737280 737515 748800 30 26 56 70 238 0 0 0 0 11 0 0 0 0 0 +1264 1783752879281670200 REFRESH 0 0 0.69724375245251702 1 12 1 12 0 0 82 13 427 3943941 55200 151.16697692871094 0.97789999999999999 179.02029999999999 20160 12642 0 0 983040 737280 737280 737540 748800 63 25 40 40 259 1 0 0 2 10 0 0 0 0 0 +1265 1783752879488411000 REFRESH 20 0 0.69471671282961278 3 12 3 12 0 0 95 10 422 3943904 55200 148.94985961914062 0.97389999999999999 177.2252 20160 12210 0 0 983040 737280 737280 737504 748800 100 26 53 60 183 0 0 1 0 9 0 0 0 0 0 +1266 1783752879684371800 REFRESH 10 0 0.69340542876339728 1 11 1 11 0 0 105 6 425 3943906 55200 151.15367126464844 0.97719999999999996 180.3931 20160 12320 0 0 983040 737280 737280 737506 748800 116 26 53 36 194 0 0 0 0 6 0 0 0 0 0 +1267 1783752879898965900 REFRESH 41 0 0.69660863119982741 1 10 1 10 0 0 99 10 416 3943900 55200 150.66522216796875 0.97870000000000001 193.49010000000001 20160 12344 0 0 983040 737280 737280 737499 748800 69 26 46 39 236 0 0 0 0 10 0 0 0 0 0 +1268 1783752880078598200 REFRESH 49 0 0.69714364970553222 3 10 3 10 0 0 123 10 415 3943910 55200 149.88082885742188 0.97699999999999998 178.34139999999999 20160 12556 0 0 983040 737280 737280 737510 748800 61 26 64 54 210 0 0 0 0 10 0 0 0 0 0 +1269 1783752880278114400 REFRESH 55 0 0.69741178669028014 1 15 1 15 0 0 121 10 420 3943894 55200 150.23207092285156 0.97170000000000001 178.6808 20160 13206 0 0 983040 737280 737280 737494 748800 28 25 29 41 297 0 0 0 0 10 0 0 0 0 0 +1270 1783752880472701300 REFRESH 39 0 0.69752351411652547 2 12 2 12 1 0 142 9 407 3943927 55200 150.09689331054688 0.97889999999999999 178.88919999999999 20160 11961 0 0 983040 737280 737280 737527 748800 35 26 28 31 287 0 0 0 0 9 0 0 0 0 1 +1271 1783752880652216000 REFRESH 47 0 0.69436526396677967 2 11 2 11 0 0 108 7 420 3943891 55200 149.82246398925781 0.97319999999999995 178.3349 20160 12247 0 0 983040 737280 737280 737491 748800 74 26 43 30 247 0 0 0 0 7 0 0 0 0 0 +1272 1783752880878318400 REFRESH 17 0 0.85837814302260051 0 7 0 7 0 0 167 8 409 3943925 55200 150.44886779785156 0.97719999999999996 224.9256 20160 13182 0 0 983040 737280 737280 737525 748800 139 26 33 102 109 0 0 0 0 8 0 0 0 0 0 +1273 1783752881065671900 REFRESH 45 0 0.70168967333585297 2 7 2 7 0 0 119 11 423 3943909 55200 150.69491577148438 0.98119999999999996 186.14160000000001 20160 12299 0 0 983040 737280 737280 737509 748800 161 25 56 51 130 0 0 1 0 10 0 0 0 0 0 +1274 1783752881259449500 REFRESH 29 0 0.69815947313537352 2 12 2 12 0 0 104 8 416 3943902 55200 150.98060607910156 0.97550000000000003 179.9469 20160 12277 0 0 983040 737280 737280 737501 748800 58 25 55 42 236 0 0 0 0 8 0 0 0 0 0 +1275 1783752881447070000 REFRESH 48 0 0.65873518624650029 2 11 2 11 0 0 69 0 432 3943871 55200 147.90553283691406 0.97060000000000002 176.5857 20160 13122 0 0 983040 737280 737280 737471 748800 183 25 60 66 98 0 0 0 0 0 0 0 0 0 0 +1276 1783752881638601800 REFRESH 38 0 0.694089116328936 4 14 4 14 0 0 79 10 416 3943922 55200 149.01043701171875 0.97319999999999995 176.77269999999999 20160 13190 0 0 983040 737280 737280 737522 748800 42 26 37 35 276 0 0 0 0 10 0 0 0 0 0 +1277 1783752881840556400 REFRESH 33 0 0.74897667188784556 1 7 1 7 0 0 169 8 417 3943909 55200 151.04409790039062 0.98029999999999995 185.82839999999999 20160 12637 0 0 983040 737280 737280 737509 748800 103 26 41 34 213 0 0 0 0 8 0 0 0 0 0 +1278 1783752882031464300 REFRESH 4 0 0.66734923920713796 1 13 1 13 0 0 47 3 419 3943936 55200 148.6612548828125 0.98340000000000005 175.8297 20160 14130 0 0 983040 737280 737280 737536 748800 26 25 37 30 301 0 0 0 0 3 0 0 0 0 0 +1279 1783752882212494300 REFRESH 28 0 0.72731857598613758 1 12 1 12 0 0 140 12 397 3943930 55200 150.23738098144531 0.97409999999999997 179.89439999999999 20160 11976 0 0 983040 737280 737280 737530 748800 121 25 29 26 196 1 0 0 0 11 0 0 0 0 0 +1280 1783752882392245400 REFRESH 15 0 0.6967692713123631 3 12 3 12 1 0 79 11 416 3943886 55200 150.03955078125 0.99409999999999998 178.66210000000001 20160 13053 0 0 983040 737280 737280 737485 748800 27 26 26 25 312 0 0 0 1 10 0 0 0 0 1 +1281 1783752882586833200 REFRESH 25 0 0.69679699478083734 3 11 3 11 0 0 95 10 419 3943921 55200 150.27996826171875 0.9859 179.36920000000001 20160 13113 0 0 983040 737280 737280 737521 748800 36 25 49 64 245 0 0 0 0 10 0 0 0 0 0 +1282 1783752882796194400 REFRESH 13 0 0.85630998788479795 1 6 1 6 0 0 166 2 415 3943909 55200 150.08889770507812 0.97119999999999995 194.30279999999999 20160 13391 0 0 983040 737280 737280 737509 748800 153 26 59 65 112 0 0 0 0 2 0 0 0 0 0 +1283 1783752882976494100 REFRESH 7 0 0.80015784963110714 1 12 1 12 0 0 106 9 412 3943909 55200 150.01702880859375 0.99660000000000004 179.1986 20160 11991 0 0 983040 737280 737280 737508 748800 69 26 31 47 239 0 0 0 1 8 0 0 0 0 0 +1284 1783752883157579800 REFRESH 22 0 0.76505169263699013 3 11 3 11 0 0 112 13 419 3943920 55200 150.656005859375 0.99160000000000004 179.94880000000001 20160 12027 0 0 983040 737280 737280 737520 748800 63 26 28 30 272 1 0 0 0 12 0 0 0 0 0 +1285 1783752883361599400 REFRESH 5 0 0.69011131878865339 2 11 2 11 0 0 90 3 410 3943922 55200 151.00210571289062 0.97609999999999997 178.22139999999999 20160 13012 0 0 983040 737280 737280 737522 748800 42 25 68 91 184 0 0 0 0 3 0 0 0 0 0 +1286 1783752883557287600 REFRESH 23 0 0.69637178435849822 3 14 3 14 0 0 94 13 417 3943921 55200 149.67398071289062 0.97089999999999999 178.89439999999999 20160 13097 0 0 983040 737280 737280 737521 748800 27 25 50 33 282 0 0 1 0 12 0 0 0 0 0 +1287 1783752883737076600 REFRESH 27 0 0.69789428582817448 0 14 0 14 1 0 104 11 412 3943940 55200 149.46815490722656 0.97099999999999997 178.61170000000001 20160 12304 0 0 983040 737280 737280 737540 748800 31 26 26 30 299 0 0 0 0 11 0 0 0 0 1 +1288 1783752883987210200 REFRESH 11 0 0.7464758168612754 0 8 0 8 0 0 95 8 422 3943908 55200 149.76383972167969 0.97719999999999996 225.72800000000001 20160 12471 0 0 983040 737280 737280 737506 748800 128 25 59 52 158 0 0 0 0 8 0 0 0 0 0 +1289 1783752884181000300 REFRESH 19 0 0.69714601840654455 2 11 2 11 0 0 113 6 420 3943910 55200 150.17984008789062 0.98140000000000005 178.6618 20160 11972 0 0 983040 737280 737280 737510 748800 120 25 26 50 199 0 0 0 0 6 0 0 0 0 0 +1290 1783752884375596600 REFRESH 18 0 0.69717226195359983 4 15 4 15 0 0 91 11 423 3943911 55200 150.466552734375 0.97489999999999999 179.65520000000001 20160 14184 0 0 983040 737280 737280 737511 748800 34 25 25 33 306 0 0 0 0 11 0 0 0 0 0 +1291 1783752884554139900 REFRESH 34 0 0.69634799187936391 1 13 1 13 0 0 96 5 420 3943923 55200 150.53106689453125 0.99880000000000002 177.39760000000001 20160 12486 0 0 983040 737280 737280 737523 748800 52 25 43 51 249 1 0 0 1 3 0 0 0 0 0 +1292 1783752884760635600 REFRESH 50 0 0.69563470479252076 2 9 2 9 0 0 114 8 419 3943935 55200 150.32627868652344 0.97230000000000005 181.42429999999999 20160 12624 0 0 983040 737280 737280 737535 748800 119 26 39 61 174 0 0 0 0 8 0 0 0 0 0 +1293 1783752884956518700 REFRESH 36 0 0.69628417171313295 3 10 3 10 0 0 100 11 425 3943917 55200 150.04876708984375 0.97499999999999998 179.7766 20160 12024 0 0 983040 737280 737280 737517 748800 107 25 39 50 204 0 0 1 0 10 0 0 0 0 0 +1294 1783752885201700900 REFRESH 54 0 0.70017294659277818 1 8 1 8 0 0 111 4 426 3943926 55200 150.06515502929688 1 220.25559999999999 20160 12804 0 0 983040 737280 737280 737526 748800 164 25 56 103 78 0 0 0 0 4 0 0 0 0 0 +1295 1783752885419930000 REFRESH 9 0 0.74331499233594311 2 6 2 6 0 0 118 5 433 3943905 55200 149.24185180664062 0.97219999999999995 217.16040000000001 20160 12321 0 0 983040 737280 737280 737505 748800 126 25 67 58 157 0 0 0 0 5 0 0 0 0 0 +1296 1783752885612609900 REFRESH 6 0 0.6893559297806513 3 11 3 11 0 0 112 8 408 3943942 55200 150.28115844726562 0.97099999999999997 177.10820000000001 20160 12462 0 0 983040 737280 737280 737542 748800 26 25 25 25 307 0 0 0 0 8 0 0 0 0 0 +1297 1783752885798237700 REFRESH 8 0 0.86240385684042198 2 5 2 5 0 0 209 6 415 3943908 55200 151.95237731933594 0.97430000000000005 184.23159999999999 20160 13417 0 0 983040 737280 737280 737508 748800 127 26 26 62 174 0 0 0 0 6 0 0 0 0 0 +1298 1783752886004643800 REFRESH 51 0 0.69264135005085126 3 12 3 12 0 0 86 8 426 3943918 55200 149.01863098144531 0.97660000000000002 182.63919999999999 20160 13154 0 0 983040 737280 737280 737518 748800 33 26 124 103 140 0 0 0 0 8 0 0 0 0 0 +1299 1783752886274037800 REFRESH 56 0 0.86192329831004266 2 5 2 5 0 0 170 5 419 3943917 55200 150.076416015625 0.97970000000000002 221.71209999999999 20160 13214 0 0 983040 737280 737280 737517 748800 179 26 50 56 108 0 0 0 0 5 0 0 0 0 0 +1300 1783752886454064000 REFRESH 12 0 0.69881561466656583 3 8 3 8 0 0 153 7 411 3943894 55200 149.39033508300781 0.97540000000000004 178.9196 20160 12010 0 0 983040 737280 737280 737494 748800 101 26 41 87 156 0 0 0 1 6 0 0 0 0 0 +1301 1783752886633907300 REFRESH 57 0 0.71916943275735534 2 12 2 12 0 0 115 10 417 3943906 55200 150.20259094238281 0.97319999999999995 178.5487 20160 11955 0 0 983040 737280 737280 737505 748800 70 26 91 69 161 0 0 0 0 10 0 0 0 0 0 +1302 1783752886832504500 REFRESH 42 0 0.69318795040942272 4 12 4 12 0 0 115 14 415 3943902 55200 150.34573364257812 0.97340000000000004 179.101 20160 12019 0 0 983040 737280 737280 737502 748800 137 25 25 37 191 0 0 0 0 14 0 0 0 0 0 +1303 1783752887079293800 REFRESH 44 0 0.69871633052241489 2 7 2 7 0 0 120 9 416 3943923 55200 149.48760986328125 0.98140000000000005 220.43960000000001 20160 12409 0 0 983040 737280 737280 737523 748800 81 26 59 28 222 0 0 0 0 9 0 0 0 0 0 +1304 1783752887262659200 REFRESH 16 0 0.70569973053489132 2 7 2 7 0 0 159 5 416 3943900 55200 150.77786254882812 0.97819999999999996 182.25069999999999 20160 12447 0 0 983040 737280 737280 737500 748800 31 26 26 231 102 0 0 0 1 4 0 0 0 0 0 +1305 1783752888562499200 DEPTH 17 1 0.85592623570708071 0 7 0 7 0 0 168 33 2522 23664781 81600 859.17503356933594 5.8405000000000005 1298.7202 120960 64334 1 0 5898240 4423680 4423680 4426381 4492800 201 156 150 235 1780 0 0 0 0 33 0 0 0 0 0 +1306 1783752889833682400 DEPTH 13 1 0.83830089132192409 1 6 1 6 0 0 166 25 2499 23664846 81600 860.68167114257812 5.8902999999999999 1270.0631000000001 120960 65130 1 0 5898240 4423680 4423680 4426444 4492800 207 156 165 164 1807 0 0 0 0 25 0 0 0 0 0 +1307 1783752890889605500 DEPTH 7 1 0.77513556382144433 1 12 1 12 1 0 108 68 2550 23664904 81600 853.40097045898438 5.8464000000000009 1026.0226 120960 57184 1 0 5898240 4423680 4423680 4426503 4492800 171 154 156 156 1913 0 1 0 0 67 0 0 0 0 2 +1308 1783752892042900800 DEPTH 33 1 0.74532364430785147 1 7 1 7 1 0 170 50 2528 23664856 81600 866.77194213867188 5.8647999999999998 1151.1095 120960 59693 1 0 5898240 4423680 4423680 4426455 4492800 215 156 158 162 1837 1 0 0 0 49 0 0 0 0 1 +1309 1783752893264790000 DEPTH 53 1 0.74371269312555288 0 8 0 8 0 0 132 30 2542 23664890 81600 857.92575073242188 5.8288000000000002 1196.4855 120960 58768 1 0 5898240 4423680 4423680 4426489 4492800 213 156 150 175 1848 0 0 0 0 30 0 0 0 0 0 +1310 1783752894651610700 DEPTH 1 1 0.74049214560036947 1 7 1 7 0 0 116 29 2605 23664859 81600 860.48806762695312 5.8344000000000005 1295.1928 120960 60198 1 0 5898240 4423680 4423680 4426458 4492800 394 156 261 285 1509 0 0 0 0 29 0 0 0 0 0 +1311 1783752895960137500 DEPTH 31 1 0.73158928596319706 2 6 2 6 0 0 115 13 2625 23664852 81600 855.13999938964844 5.8461999999999996 1263.3091999999999 120960 60386 1 0 5898240 4423680 4423680 4426450 4492800 870 150 156 236 1213 0 0 0 0 13 0 0 0 0 0 +1312 1783752897018652300 DEPTH 28 1 0.7190339116979505 1 12 1 12 0 0 140 46 2504 23664857 81600 862.45770263671875 5.8701000000000008 1032.1481000000001 120960 57119 1 0 5898240 4423680 4423680 4426455 4492800 156 150 162 150 1886 0 0 0 2 44 0 0 0 0 0 +1313 1783752898139222200 DEPTH 8 1 0.76742439592637501 2 5 2 5 0 0 209 44 2554 23664852 81600 870.47407531738281 5.8540000000000001 1079.9937 120960 65286 1 0 5898240 4423680 4423680 4426450 4492800 290 150 153 184 1777 0 0 0 0 44 0 0 0 0 0 +1314 1783752899173061000 DEPTH 22 1 0.75379177564101663 3 11 3 11 1 0 112 43 2610 23664923 81600 859.56291198730469 5.8422999999999998 1032.7285999999999 120960 56802 1 0 5898240 4423680 4423680 4426523 4492800 157 150 150 158 1995 0 0 1 1 41 0 0 0 0 1 +1315 1783752900466174900 DEPTH 56 1 0.76614344080686247 2 5 2 5 0 0 170 23 2567 23664825 81600 857.43565368652344 5.8359000000000005 1291.9286 120960 65153 1 0 5898240 4423680 4423680 4426423 4492800 436 156 162 244 1569 0 0 0 0 23 0 0 0 0 0 +1316 1783752901764395400 DEPTH 11 1 0.74326837362441567 0 8 0 8 0 0 95 12 2553 23664935 81600 851.42289733886719 5.8539000000000003 1297.1031 120960 59337 1 0 5898240 4423680 4423680 4426533 4492800 359 150 188 258 1598 0 0 0 0 12 0 0 0 0 0 +1317 1783752903006178700 DEPTH 45 1 0.70033369416529745 2 7 2 7 0 0 119 33 2576 23664841 81600 860.77015686035156 5.8348000000000004 1186.2157 120960 58721 1 0 5898240 4423680 4423680 4426440 4492800 270 150 186 202 1768 0 0 0 0 33 0 0 0 0 0 +1318 1783752904306467400 DEPTH 21 1 0.69547744137654366 0 10 0 10 1 0 163 55 2559 23664824 81600 859.63673400878906 5.8550000000000004 1273.7674999999999 120960 59301 1 0 5898240 4423680 4423680 4426423 4492800 247 150 155 203 1804 0 0 0 0 55 0 0 0 0 1 +1319 1783752905610668200 DEPTH 41 1 0.69498428956392977 1 10 1 10 0 0 101 39 2556 23664813 81600 847.43234252929688 5.8334999999999999 1231.8234 120960 60922 1 0 5898240 4423680 4423680 4426412 4492800 175 156 169 172 1884 3 0 3 0 33 0 0 0 0 0 +1320 1783752906649489000 DEPTH 2 1 0.69399654981424808 2 12 2 12 1 0 107 53 2578 23664841 81600 861.63238525390625 5.8487999999999998 1037.7403999999999 120960 59791 1 0 5898240 4423680 4423680 4426438 4492800 168 156 210 270 1774 0 0 2 3 48 0 0 0 0 1 +1321 1783752907944220500 DEPTH 17 1 0.76545292637185114 0 7 0 7 0 0 170 31 2532 23664776 81600 850.39314270019531 5.8430999999999997 1293.6044999999999 120960 53348 1 0 5898240 4423680 4423680 4426373 4492800 198 156 150 231 1797 0 0 0 0 31 0 0 0 0 0 +1322 1783752909226469800 DEPTH 13 1 0.75888811013664437 1 6 1 6 0 0 166 27 2508 23664893 81600 850.42355346679688 5.8708000000000009 1256.4285 120960 53530 1 0 5898240 4423680 4423680 4426491 4492800 209 155 168 172 1804 0 0 0 0 27 0 0 0 0 0 +1323 1783752910557798900 DEPTH 9 1 0.73699939110689772 2 6 2 6 0 0 118 12 2613 23664921 81600 858.54081726074219 5.8506999999999998 1288.5163 120960 60000 1 0 5898240 4423680 4423680 4426521 4492800 617 150 312 344 1190 0 0 0 1 11 0 0 0 0 0 +1324 1783752911588121600 DEPTH 27 1 0.69401534692826294 0 14 0 14 1 0 104 52 2568 23664855 81600 858.34941101074219 5.8456000000000001 1029.1469999999999 120960 60643 1 0 5898240 4423680 4423680 4426455 4492800 156 156 150 161 1945 0 0 0 0 52 0 0 0 0 1 +1325 1783752912631831100 DEPTH 0 1 0.69394866657970677 1 12 1 12 1 0 86 39 2569 23664883 81600 851.55180358886719 5.8547999999999991 1017.9836 120960 60328 1 0 5898240 4423680 4423680 4426483 4492800 225 150 181 184 1829 0 0 1 0 38 0 0 0 0 2 +1326 1783752913686423100 DEPTH 55 1 0.69366096497741336 1 15 1 15 1 0 121 14 2590 23664820 81600 857.2283935546875 5.8492000000000006 1029.9692 120960 66503 1 0 5898240 4423680 4423680 4426420 4492800 153 150 158 210 1919 0 0 0 0 14 0 0 0 0 1 +1327 1783752914741962700 DEPTH 3 1 0.69360426893871696 2 11 2 11 1 0 113 39 2585 23664855 81600 849.35552978515625 5.8381999999999996 1018.1876999999999 120960 60636 1 0 5898240 4423680 4423680 4426454 4492800 203 150 159 199 1874 0 0 0 0 39 0 0 0 0 2 +1328 1783752915795614900 DEPTH 49 1 0.69355566710185768 3 10 3 10 1 0 124 44 2576 23664880 81600 856.78285217285156 5.8440000000000003 1027.4318000000001 120960 59878 1 0 5898240 4423680 4423680 4426479 4492800 161 150 169 168 1928 0 0 0 0 44 0 0 0 0 1 +1329 1783752916900297300 DEPTH 8 1 0.76680669960485714 2 5 2 5 0 0 209 32 2557 23664855 81600 860.00270080566406 5.8724000000000007 1072.9784999999999 120960 54000 1 0 5898240 4423680 4423680 4426454 4492800 267 151 151 189 1799 0 0 0 0 32 0 0 0 0 0 +1330 1783752918188978200 DEPTH 56 1 0.75579414322723404 2 5 2 5 0 0 170 21 2559 23664833 81600 849.32403564453125 5.8855000000000004 1287.5188000000001 120960 52949 1 0 5898240 4423680 4423680 4426432 4492800 437 156 162 319 1485 1 0 0 0 20 0 0 0 0 0 +1331 1783752919220112900 DEPTH 7 1 0.76536714731330113 1 12 1 12 1 0 112 59 2544 23664874 81600 849.43264770507812 5.8670999999999998 1030.0673999999999 120960 46096 1 0 5898240 4423680 4423680 4426473 4492800 176 155 156 156 1901 0 0 0 0 59 0 0 0 0 2 +1332 1783752920250979300 DEPTH 57 1 0.71196174478963881 2 12 2 12 1 0 117 63 2523 23664830 81600 856.0811767578125 5.8622999999999994 1029.6561999999999 120960 57178 1 0 5898240 4423680 4423680 4426426 4492800 204 156 164 207 1792 0 0 0 0 63 0 0 0 0 1 +1333 1783752921461648900 DEPTH 33 1 0.75111995859581993 1 7 1 7 1 0 171 63 2536 23664833 81600 859.36306762695312 5.8581000000000003 1168.8332 120960 48958 1 0 5898240 4423680 4423680 4426430 4492800 203 155 156 152 1870 0 0 0 0 63 0 0 0 0 1 +1334 1783752922530201800 DEPTH 16 1 0.69860099158578981 2 7 2 7 0 0 161 64 2518 23664846 81600 861.85980224609375 5.8514999999999997 1067.4227000000001 120960 59085 1 0 5898240 4423680 4423680 4426446 4492800 166 156 156 553 1487 0 0 0 3 61 0 0 0 0 0 +1335 1783752923859418400 DEPTH 44 1 0.69678631181522621 2 7 2 7 0 0 123 19 2587 23664852 81600 858.465087890625 5.8346999999999998 1297.1433999999999 120960 58773 1 0 5898240 4423680 4423680 4426450 4492800 182 150 186 156 1913 0 0 0 0 19 0 0 0 0 0 +1336 1783752924953176500 DEPTH 25 1 0.69354156939460276 3 11 3 11 0 0 97 41 2572 23664759 81600 859.1270751953125 5.8386000000000005 1031.8135 120960 65275 1 0 5898240 4423680 4423680 4426357 4492800 163 150 157 153 1949 0 0 0 0 41 0 0 0 0 0 +1337 1783752925146573300 REFRESH 51 0 0.68749023618394778 3 12 3 12 0 0 86 5 423 3943914 55200 149.19474792480469 0.97940000000000005 177.69970000000001 20160 13092 0 0 983040 737280 737280 737514 748800 35 26 131 113 118 0 0 0 0 5 0 0 0 0 0 +1338 1783752925330240500 REFRESH 8 0 0.69606131288830297 2 5 2 5 0 0 209 9 413 3943920 55200 151.66975402832031 0.97540000000000004 182.58179999999999 20160 13519 0 0 983040 737280 737280 737520 748800 138 27 48 64 136 0 0 0 0 9 0 0 0 0 0 +1339 1783752925530181500 REFRESH 29 0 0.6925885055961678 2 12 2 12 0 0 104 8 422 3943883 55200 149.89208984375 0.9758 179.85720000000001 20160 12097 0 0 983040 737280 737280 737483 748800 68 25 60 53 216 0 0 0 0 8 0 0 0 0 0 +1340 1783752925775975100 REFRESH 52 0 0.69248250206216311 1 8 1 8 0 0 104 7 429 3943908 55200 148.85171508789062 0.96999999999999997 219.87610000000001 20160 12240 0 0 983040 737280 737280 737508 748800 113 25 33 149 109 0 0 0 0 7 0 0 0 0 0 +1341 1783752925990145100 REFRESH 50 0 0.69151040816227094 2 9 2 9 0 0 115 8 416 3943898 55200 148.76467895507812 0.97789999999999999 179.90430000000001 20160 12577 0 0 983040 737280 737280 737498 748800 129 26 39 63 159 0 0 0 0 8 0 0 0 0 0 +1342 1783752926184590900 REFRESH 41 0 0.67292650135522714 1 10 1 10 0 0 101 11 417 3943935 55200 149.73338317871094 0.96989999999999998 193.32650000000001 20160 12996 0 0 983040 737280 737280 737534 748800 74 26 43 37 237 0 0 0 0 11 0 0 0 0 0 +1343 1783752926365744100 REFRESH 22 0 0.74339115362247066 3 11 3 11 0 0 113 12 421 3943901 55200 150.04672241210938 0.98060000000000003 180.07390000000001 20160 11929 0 0 983040 737280 737280 737501 748800 79 26 28 31 257 0 0 0 0 12 0 0 0 0 0 +1344 1783752926562980600 REFRESH 4 0 0.66047467633264967 1 13 1 13 0 0 47 1 422 3943937 55200 148.70220947265625 0.98099999999999998 176.91730000000001 20160 14088 0 0 983040 737280 737280 737537 748800 26 25 34 30 307 0 0 0 0 1 0 0 0 0 0 +1345 1783752926799548600 REFRESH 54 0 0.69328204279170058 1 8 1 8 0 0 111 10 427 3943892 55200 149.01554870605469 0.98070000000000002 220.28980000000001 20160 12774 0 0 983040 737280 737280 737492 748800 168 25 56 99 79 0 0 0 0 10 0 0 0 0 0 +1346 1783752926994337000 REFRESH 30 0 0.69062132300519563 2 12 2 12 0 0 99 13 411 3943932 55200 149.28895568847656 0.97999999999999998 178.57810000000001 20160 12030 0 0 983040 737280 737280 737532 748800 51 25 64 42 229 0 0 0 0 13 0 0 0 0 0 +1347 1783752927205679400 REFRESH 37 0 0.69191588030755424 1 12 1 12 0 0 123 9 413 3943948 55200 148.927490234375 0.97840000000000005 177.6746 20160 12452 0 0 983040 737280 737280 737548 748800 70 26 51 32 234 0 0 0 0 9 0 0 0 0 0 +1348 1783752927397655700 REFRESH 34 0 0.68787047452952144 1 13 1 13 0 0 97 11 420 3943906 55200 148.50253295898438 0.97060000000000002 175.8571 20160 13287 0 0 983040 737280 737280 737506 748800 70 25 53 65 207 0 0 0 0 11 0 0 0 0 0 +1349 1783752927575105700 REFRESH 0 0 0.68032327766175915 1 12 1 12 1 0 86 11 425 3943906 55200 148.89578247070312 0.97570000000000001 176.36279999999999 20160 13084 0 0 983040 737280 737280 737506 748800 52 25 39 36 273 0 0 0 0 11 0 0 0 0 1 +1350 1783752927768726500 REFRESH 39 0 0.69289548145627877 2 12 2 12 0 0 142 11 404 3943912 55200 149.55827331542969 0.98029999999999995 178.17310000000001 20160 11926 0 0 983040 737280 737280 737512 748800 38 26 28 32 280 0 0 0 0 11 0 0 0 0 0 +1351 1783752927964018500 REFRESH 12 0 0.69311904118639189 3 8 3 8 0 0 154 13 413 3943940 55200 149.17631530761719 0.97940000000000005 178.9091 20160 12038 0 0 983040 737280 737280 737540 748800 109 26 42 87 149 0 0 0 0 13 0 0 0 0 0 +1352 1783752928175971900 REFRESH 43 0 0.6915047178768523 2 13 2 13 0 0 117 19 418 3943928 55200 150.6693115234375 0.97760000000000002 179.88290000000001 20160 12005 0 0 983040 737280 737280 737528 748800 59 26 40 57 236 0 0 0 0 19 0 0 0 0 0 +1353 1783752928371719700 REFRESH 36 0 0.69308973051204137 3 10 3 10 0 0 100 10 421 3943930 55200 149.57157897949219 0.97299999999999998 179.0548 20160 11962 0 0 983040 737280 737280 737529 748800 139 25 42 55 160 0 0 0 0 10 0 0 0 0 0 +1354 1783752928560900200 REFRESH 28 0 0.71143988486495002 1 12 1 12 0 0 140 8 398 3943932 55200 151.24787902832031 0.97919999999999996 187.8683 20160 11946 0 0 983040 737280 737280 737531 748800 127 25 29 27 190 2 0 0 0 6 0 0 0 0 0 +1355 1783752928781375500 REFRESH 44 0 0.64572567686551885 2 7 2 7 0 0 123 9 418 3943911 55200 150.16960144042969 0.97729999999999995 219.2894 20160 12549 0 0 983040 737280 737280 737511 748800 89 26 65 28 210 0 0 0 0 9 0 0 0 0 0 +1356 1783752928961779300 REFRESH 57 0 0.69516819569532573 2 12 2 12 0 0 117 7 418 3943912 55200 150.23078918457031 0.98060000000000003 179.08019999999999 20160 11994 0 0 983040 737280 737280 737511 748800 83 26 99 77 133 0 0 0 0 7 0 0 0 0 0 +1357 1783752929157222300 REFRESH 19 0 0.6882636188339426 2 11 2 11 0 0 113 7 418 3943904 55200 151.09117126464844 0.97560000000000002 180.15450000000001 20160 12075 0 0 983040 737280 737280 737504 748800 128 25 26 50 189 1 0 0 0 6 0 0 0 0 0 +1358 1783752929352476500 REFRESH 42 0 0.68839481257610335 4 12 4 12 0 0 115 6 417 3943927 55200 150.50239562988281 0.9718 179.4813 20160 12031 0 0 983040 737280 737280 737527 748800 133 25 25 37 197 0 0 0 0 6 0 0 0 0 0 +1359 1783752929533005800 REFRESH 47 0 0.68838470006293906 2 11 2 11 0 0 108 8 420 3943920 55200 149.94329833984375 0.97489999999999999 179.21279999999999 20160 12269 0 0 983040 737280 737280 737520 748800 109 26 57 34 194 0 0 0 0 8 0 0 0 0 0 +1360 1783752929716934300 REFRESH 16 0 0.69697728408465087 2 7 2 7 0 0 161 7 415 3943919 55200 151.2806396484375 0.98419999999999996 182.8218 20160 12443 0 0 983040 737280 737280 737519 748800 31 26 26 233 99 0 0 0 1 6 0 0 0 0 0 +1361 1783752929905965500 REFRESH 53 0 0.74259466739840307 0 8 0 8 0 0 132 10 422 3943925 55200 151.05535888671875 0.98309999999999997 187.8357 20160 12553 0 0 983040 737280 737280 737525 748800 130 28 27 52 185 0 0 0 0 10 0 0 0 0 0 +1362 1783752930129928700 REFRESH 56 0 0.85547918442062354 2 5 2 5 0 0 170 9 418 3943912 55200 151.09324645996094 0.97889999999999999 222.7638 20160 13239 0 0 983040 737280 737280 737512 748800 176 26 49 56 111 0 0 0 0 9 0 0 0 0 0 +1363 1783752930331529900 REFRESH 20 0 0.69146965400118177 3 12 3 12 0 0 96 5 420 3943904 55200 148.89248657226562 0.97799999999999998 177.39619999999999 20160 12095 0 0 983040 737280 737280 737504 748800 88 26 54 61 191 0 0 0 0 5 0 0 0 0 0 +1364 1783752930512148300 REFRESH 35 0 0.69094592631836749 2 11 2 11 0 0 134 14 418 3943898 55200 149.84602355957031 0.97489999999999999 179.52529999999999 20160 12006 0 0 983040 737280 737280 737498 748800 88 25 34 86 185 0 0 0 0 14 0 0 0 0 0 +1365 1783752930692208100 REFRESH 27 0 0.6903070832246101 0 14 0 14 0 0 105 12 410 3943909 55200 150.31173706054688 0.97309999999999997 178.9136 20160 11980 0 0 983040 737280 737280 737509 748800 34 26 28 30 292 0 0 0 0 12 0 0 0 0 0 +1366 1783752930880488200 REFRESH 45 0 0.6989645161687118 2 7 2 7 0 0 119 3 420 3943891 55200 151.05946350097656 0.97529999999999994 187.0325 20160 12378 0 0 983040 737280 737280 737491 748800 145 25 51 49 150 0 0 0 0 3 0 0 0 0 0 +1367 1783752931108615400 REFRESH 11 0 0.7424042522850014 0 8 0 8 0 0 95 10 420 3943905 55200 150.13375854492188 0.97929999999999995 227.04300000000001 20160 12495 0 0 983040 737280 737280 737505 748800 135 25 57 60 143 1 0 0 0 9 0 0 0 0 0 +1368 1783752931313906900 REFRESH 18 0 0.69303025314158662 4 15 4 15 0 0 92 13 425 3943910 55200 150.84339904785156 0.98170000000000002 180.4273 20160 13963 0 0 983040 737280 737280 737509 748800 38 25 25 33 304 0 0 0 0 13 0 0 0 0 0 +1369 1783752931494062200 REFRESH 25 0 0.69008564385904414 3 11 3 11 0 0 97 6 421 3943921 55200 149.44767761230469 0.97430000000000005 179.03360000000001 20160 12107 0 0 983040 737280 737280 737521 748800 49 25 55 71 221 0 0 0 0 6 0 0 0 0 0 +1370 1783752931685074100 REFRESH 5 0 0.68082565280515217 2 11 2 11 0 0 90 9 407 3943884 55200 149.23365783691406 0.97140000000000004 175.6781 20160 13846 0 0 983040 737280 737280 737483 748800 47 26 74 92 168 0 0 1 0 8 0 0 0 0 0 +1371 1783752931871588900 REFRESH 33 0 0.74893655885577992 1 7 1 7 0 0 172 11 415 3943913 55200 150.54336547851562 0.97889999999999999 185.39160000000001 20160 12704 0 0 983040 737280 737280 737513 748800 87 26 34 34 234 0 0 0 0 11 0 0 0 0 0 +1372 1783752932069455100 REFRESH 23 0 0.69252163669975619 3 14 3 14 1 0 95 16 413 3943888 55200 150.51078796386719 0.9748 179.91579999999999 20160 12853 0 0 983040 737280 737280 737487 748800 27 25 65 33 263 0 0 1 0 15 0 0 0 0 1 +1373 1783752932263924600 REFRESH 21 0 0.69334826800365934 0 10 0 10 0 0 163 9 415 3943909 55200 149.88185119628906 0.97289999999999999 193.32329999999999 20160 12237 0 0 983040 737280 737280 737509 748800 100 26 36 68 185 0 0 0 0 9 0 0 0 0 0 +1374 1783752932443775500 REFRESH 55 0 0.68991237257388849 1 15 1 15 1 0 121 11 417 3943932 55200 149.6461181640625 0.98009999999999997 178.64340000000001 20160 12139 0 0 983040 737280 737280 737532 748800 34 26 29 45 283 0 0 0 0 11 0 0 0 0 1 +1375 1783752932625428100 REFRESH 7 0 0.76353068765139898 1 12 1 12 0 0 114 16 420 3943908 55200 150.73484802246094 0.97560000000000002 180.55340000000001 20160 11960 0 0 983040 737280 737280 737508 748800 112 26 31 48 203 0 1 0 1 14 0 0 0 0 0 +1376 1783752932861035000 REFRESH 31 0 0.73159514541707049 2 6 2 6 0 0 115 10 423 3943903 55200 150.57731628417969 0.97030000000000005 213.2062 20160 12922 0 0 983040 737280 737280 737503 748800 234 25 27 56 81 0 0 0 0 10 0 0 0 0 0 +1377 1783752933100907900 REFRESH 32 0 0.69229381374042442 2 14 2 14 0 0 112 11 418 3943885 55200 149.40261840820312 0.97770000000000001 178.0265 20160 12435 0 0 983040 737280 737280 737485 748800 148 25 37 32 176 0 0 0 0 11 0 0 0 0 0 +1378 1783752933298785100 REFRESH 48 0 0.64919427294489862 2 11 2 11 0 0 69 1 430 3943901 55200 148.89471435546875 0.97589999999999999 177.45429999999999 20160 12924 0 0 983040 737280 737280 737501 748800 154 25 55 52 144 0 0 0 0 1 0 0 0 0 0 +1379 1783752933490742600 REFRESH 26 0 0.69116054072374344 1 13 1 13 0 0 69 3 417 3943907 55200 148.91212463378906 0.9728 176.85310000000001 20160 13958 0 0 983040 737280 737280 737507 748800 28 25 29 37 298 0 0 0 1 2 0 0 0 0 0 +1380 1783752933691432700 REFRESH 14 0 0.69252259435584096 0 12 0 12 0 0 103 6 416 3943919 55200 150.2640380859375 0.97319999999999995 184.58760000000001 20160 12167 0 0 983040 737280 737280 737519 748800 58 26 28 48 256 0 0 0 0 6 0 0 0 0 0 +1381 1783752933871574800 REFRESH 24 0 0.68817326651259925 4 11 4 11 0 0 128 9 409 3943887 55200 149.18553161621094 0.97909999999999997 179.01910000000001 20160 12102 0 0 983040 737280 737280 737487 748800 32 26 37 45 269 0 0 0 0 9 0 0 0 0 0 +1382 1783752934053585900 REFRESH 49 0 0.69001545604459191 3 10 3 10 0 0 125 9 417 3943934 55200 150.4215087890625 0.97789999999999999 180.81299999999999 20160 12248 0 0 983040 737280 737280 737534 748800 72 26 62 52 205 0 0 0 0 9 0 0 0 0 0 +1383 1783752934235417300 REFRESH 2 0 0.69054582336683623 2 12 2 12 0 0 107 12 426 3943918 55200 150.65052795410156 0.97440000000000004 180.75069999999999 20160 12067 0 0 983040 737280 737280 737517 748800 32 26 71 94 203 0 0 0 0 12 0 0 0 0 0 +1384 1783752934452453400 REFRESH 6 0 0.68142778964613926 3 11 3 11 0 0 113 7 412 3943912 55200 150.96627807617188 0.97540000000000004 178.6294 20160 12432 0 0 983040 737280 737280 737511 748800 26 25 25 25 311 0 0 0 0 7 0 0 0 0 0 +1385 1783752934663050400 REFRESH 1 0 0.7396991986136876 1 7 1 7 1 0 116 7 418 3943888 55200 150.38156127929688 0.97919999999999996 209.5077 20160 12729 0 0 983040 737280 737280 737488 748800 142 26 75 79 96 0 0 0 0 7 0 0 0 0 1 +1386 1783752934839973800 REFRESH 3 0 0.69071414476657411 2 11 2 11 0 0 113 7 414 3943919 55200 148.22000122070312 0.96989999999999998 175.82339999999999 20160 12899 0 0 983040 737280 737280 737519 748800 117 25 45 61 166 0 0 1 0 6 0 0 0 0 0 +1387 1783752935057497500 REFRESH 9 0 0.7364609723544504 2 6 2 6 0 0 119 3 433 3943906 55200 150.74713134765625 0.97840000000000005 216.4075 20160 13012 0 0 983040 737280 737280 737506 748800 134 25 76 65 133 0 0 0 0 3 0 0 0 0 0 +1388 1783752935261109200 REFRESH 40 0 0.6821143594394139 3 11 3 11 0 0 104 10 419 3943900 55200 150.14297485351562 0.97319999999999995 178.22409999999999 20160 12980 0 0 983040 737280 737280 737499 748800 150 25 34 96 114 0 0 0 0 10 0 0 0 0 0 +1389 1783752935456512600 REFRESH 13 0 0.84968747549787693 1 6 1 6 0 0 166 3 416 3943892 55200 149.99859619140625 0.97809999999999997 194.3135 20160 13164 0 0 983040 737280 737280 737492 748800 154 26 61 69 106 0 0 0 0 3 0 0 0 0 0 +1390 1783752935714341400 REFRESH 15 0 0.69378289015384431 3 12 3 12 0 0 79 8 416 3943912 55200 150.09075927734375 0.97499999999999998 178.86699999999999 20160 13029 0 0 983040 737280 737280 737512 748800 28 26 26 25 311 0 0 0 1 7 0 0 0 0 0 +1391 1783752935903947500 REFRESH 38 0 0.69090332826211376 4 14 4 14 0 0 79 9 421 3943887 55200 148.20556640625 0.97599999999999998 176.4228 20160 12933 0 0 983040 737280 737280 737487 748800 40 26 36 36 283 0 0 0 0 9 0 0 0 0 0 +1392 1783752936129144500 REFRESH 17 0 0.85532800568712331 0 7 0 7 0 0 170 9 411 3943886 55200 150.70413208007812 0.97929999999999995 224.07990000000001 20160 13537 0 0 983040 737280 737280 737486 748800 141 26 34 103 107 0 0 0 0 9 0 0 0 0 0 +1393 1783752936334178800 REFRESH 46 0 0.69132822279852646 2 15 2 15 0 0 96 13 409 3943924 55200 149.16403198242188 0.97509999999999997 178.28720000000001 20160 12082 0 0 983040 737280 737280 737524 748800 39 26 42 30 272 0 0 0 0 13 0 0 0 0 0 +1394 1783752936528791000 REFRESH 10 0 0.68800185653900425 1 11 1 11 0 0 105 3 418 3943914 55200 149.30227661132812 0.97130000000000005 178.77510000000001 20160 12857 0 0 983040 737280 737280 737513 748800 88 26 46 38 220 0 0 0 0 3 0 0 0 0 0 +1395 1783752936722714000 REFRESH 58 0 0.69374468414686352 2 12 2 12 0 0 113 11 422 3943914 55200 150.06515502929688 0.96909999999999996 178.31979999999999 20160 12630 0 0 983040 737280 737280 737513 748800 81 26 51 53 211 0 0 0 0 11 0 0 0 0 0 +1396 1783752937803430500 DEPTH 8 1 0.85463802324868354 2 5 2 5 0 0 209 34 2581 23664896 81600 867.66671752929688 5.8462999999999994 1079.6059 120960 65847 1 0 5898240 4423680 4423680 4426495 4492800 204 150 150 169 1908 0 0 0 0 34 0 0 0 0 0 +1397 1783752939100212500 DEPTH 56 1 0.85409245340890494 2 5 2 5 0 0 171 17 2566 23664834 81600 858.80633544921875 5.8440000000000003 1295.5544 120960 64716 1 0 5898240 4423680 4423680 4426429 4492800 431 156 163 256 1560 0 0 1 0 16 0 0 0 0 0 +1398 1783752940297665900 DEPTH 33 1 0.74669231976027661 1 7 1 7 0 0 173 48 2525 23664854 81600 864.33845520019531 5.8243999999999998 1172.0915 120960 60574 1 0 5898240 4423680 4423680 4426454 4492800 199 156 156 152 1862 4 0 0 0 44 0 0 0 0 0 +1399 1783752941531055500 DEPTH 53 1 0.74128071144536833 0 8 0 8 1 0 132 34 2545 23664813 81600 859.68569946289062 5.8582999999999998 1195.9628 120960 59299 1 0 5898240 4423680 4423680 4426413 4492800 235 156 150 175 1829 0 0 0 0 34 0 0 0 0 1 +1400 1783752942848693600 DEPTH 11 1 0.74127572847156453 0 8 0 8 0 0 95 7 2543 23664935 81600 852.51741027832031 5.8578000000000001 1296.2599 120960 59754 1 0 5898240 4423680 4423680 4426533 4492800 288 150 183 221 1701 0 0 0 0 7 0 0 0 0 0 +1401 1783752943907503300 DEPTH 22 1 0.73409049724683106 3 11 3 11 1 0 114 29 2610 23664815 81600 858.47125244140625 5.8615000000000004 1033.7063000000001 120960 56216 1 0 5898240 4423680 4423680 4426411 4492800 158 150 150 161 1991 0 0 0 0 29 0 0 0 0 1 +1402 1783752944978929300 DEPTH 7 1 0.75243430438254744 1 12 1 12 1 0 115 85 2550 23664899 81600 858.73910522460938 5.8656000000000006 1032.2908 120960 56363 1 0 5898240 4423680 4423680 4426497 4492800 189 153 156 157 1895 0 0 0 0 85 0 0 0 0 1 +1403 1783752946036876300 DEPTH 28 1 0.70245074669620866 1 12 1 12 0 0 140 31 2503 23664935 81600 861.12431335449219 5.8372999999999999 1033.1747 120960 57203 1 0 5898240 4423680 4423680 4426535 4492800 163 150 162 150 1878 1 0 0 1 29 0 0 0 0 0 +1404 1783752947347889300 DEPTH 13 1 0.74288612754165295 1 6 1 6 0 0 166 20 2494 23664886 81600 861.02163696289062 5.8285 1269.3658 120960 63678 1 0 5898240 4423680 4423680 4426483 4492800 217 156 170 166 1785 0 0 0 0 20 0 0 0 0 0 +1405 1783752948613057400 DEPTH 31 1 0.73110634543209041 2 6 2 6 0 0 115 16 2623 23664876 81600 856.19183349609375 5.8675999999999995 1264.0435 120960 61551 1 0 5898240 4423680 4423680 4426473 4492800 888 150 156 225 1204 0 0 0 0 16 0 0 0 0 0 +1406 1783752949925189500 DEPTH 17 1 0.74367097395306092 0 7 0 7 1 0 170 39 2528 23664888 81600 859.12882995605469 5.8824000000000005 1311.0084999999999 120960 65028 1 0 5898240 4423680 4423680 4426486 4492800 199 156 150 235 1788 0 0 0 0 39 0 0 0 0 1 +1407 1783752950947782600 DEPTH 57 1 0.69607219057314407 2 12 2 12 0 0 118 61 2515 23664924 81600 854.11196899414062 5.8412000000000006 1021.3246 120960 57329 1 0 5898240 4423680 4423680 4426516 4492800 215 156 162 282 1700 0 0 0 0 61 0 0 0 0 0 +1408 1783752952272111000 DEPTH 44 1 0.69387719270906945 2 7 2 7 0 0 123 21 2583 23664890 81600 858.64447021484375 5.8541999999999996 1297.1945000000001 120960 59345 1 0 5898240 4423680 4423680 4426489 4492800 184 150 185 161 1903 0 0 0 0 21 0 0 0 0 0 +1409 1783752953567819200 DEPTH 54 1 0.69300311119033231 1 8 1 8 0 0 111 12 2609 23664847 81600 853.54649353027344 5.8365 1285.1030000000001 120960 60128 1 0 5898240 4423680 4423680 4426447 4492800 440 150 246 554 1219 0 0 0 0 12 0 0 0 0 0 +1410 1783752954678188500 DEPTH 16 1 0.69254315679338074 2 7 2 7 0 0 161 43 2517 23664837 81600 863.96449279785156 6.2857000000000003 1071.1251999999999 120960 59404 1 0 5898240 4423680 4423680 4426436 4492800 165 156 156 626 1414 0 0 0 0 43 0 0 0 0 0 +1411 1783752955974694300 DEPTH 41 1 0.69132764104798761 1 10 1 10 0 0 103 41 2568 23664838 81600 850.48184204101562 5.8439999999999994 1244.5523000000001 120960 61331 1 0 5898240 4423680 4423680 4426434 4492800 195 156 168 179 1870 3 0 2 0 36 0 0 0 0 0 +1412 1783752957088339900 DEPTH 8 1 0.7639290570644085 2 5 2 5 0 0 209 34 2544 23664846 81600 861.14500427246094 5.8299000000000003 1069.2786000000001 120960 54557 1 0 5898240 4423680 4423680 4426446 4492800 295 151 152 208 1738 0 0 0 0 34 0 0 0 0 0 +1413 1783752958420204300 DEPTH 56 1 0.76357745527665954 2 5 2 5 0 0 172 25 2579 23664780 81600 849.20606994628906 5.8449 1286.3896 120960 53498 1 0 5898240 4423680 4423680 4426378 4492800 425 156 168 276 1554 0 0 0 0 25 0 0 0 0 0 +1414 1783752959719398500 DEPTH 1 1 0.73573186869354823 1 7 1 7 0 0 116 23 2617 23664844 81600 858.61785888671875 5.8411000000000008 1297.9233999999999 120960 60529 1 0 5898240 4423680 4423680 4426443 4492800 377 156 256 285 1543 0 0 0 0 23 0 0 0 0 0 +1415 1783752961017532100 DEPTH 9 1 0.72848395525492038 2 6 2 6 1 0 120 11 2617 23664914 81600 862.19993591308594 5.8689999999999998 1297.0551 120960 61730 1 0 5898240 4423680 4423680 4426514 4492800 615 150 333 384 1135 0 0 0 0 11 0 0 0 0 1 +1416 1783752962070589100 DEPTH 12 1 0.69089642590973854 3 8 3 8 0 0 158 69 2525 23664800 81600 854.88796997070312 5.8735999999999997 1030.0863999999999 120960 57635 1 0 5898240 4423680 4423680 4426396 4492800 187 150 173 208 1807 0 0 0 1 68 0 0 0 0 0 +1417 1783752963345997600 DEPTH 45 1 0.69055928719021487 2 7 2 7 0 0 119 37 2592 23664960 81600 859.77789306640625 5.8404999999999996 1224.2402 120960 59087 1 0 5898240 4423680 4423680 4426559 4492800 225 150 186 198 1833 0 0 0 0 37 0 0 0 0 0 +1418 1783752964646263900 DEPTH 21 1 0.69010650939339502 0 10 0 10 1 0 165 43 2558 23664826 81600 858.42631530761719 5.8575999999999997 1282.9711 120960 58968 1 0 5898240 4423680 4423680 4426425 4492800 262 150 155 215 1776 0 1 0 0 42 0 0 0 0 1 +1419 1783752965735400800 DEPTH 36 1 0.69002316844076517 3 10 3 10 0 0 102 29 2586 23664924 81600 856.44998168945312 5.8346999999999998 1031.9356 120960 56952 1 0 5898240 4423680 4423680 4426523 4492800 364 150 181 247 1644 1 0 0 0 28 0 0 0 0 0 +1420 1783752967004627500 DEPTH 13 1 0.75363786268420074 1 6 1 6 0 0 167 32 2498 23664866 81600 853.33486938476562 5.8297000000000008 1268.0730000000001 120960 53021 1 0 5898240 4423680 4423680 4426465 4492800 202 158 165 171 1802 0 0 0 0 32 0 0 0 0 0 +1421 1783752968302896300 DEPTH 17 1 0.75308279620636032 0 7 0 7 0 0 172 22 2528 23664858 81600 851.03593444824219 5.8566000000000003 1297.1216999999999 120960 53598 1 0 5898240 4423680 4423680 4426457 4492800 198 156 150 243 1781 0 0 1 0 21 0 0 0 0 0 +1422 1783752969503109100 DEPTH 33 1 0.73446635695408991 1 7 1 7 0 0 173 40 2538 23664805 81600 859.47023010253906 5.8466000000000005 1199.0634 120960 49685 1 0 5898240 4423680 4423680 4426403 4492800 188 155 156 150 1889 2 0 0 0 38 0 0 0 0 0 +1423 1783752970705047400 DEPTH 53 1 0.72979436833414923 0 8 0 8 0 0 133 28 2530 23664778 81600 851.56167602539062 5.8651 1200.6985 120960 49308 1 0 5898240 4423680 4423680 4426376 4492800 203 156 150 190 1831 0 0 0 0 28 0 0 0 0 0 +1424 1783752972046077000 DEPTH 52 1 0.68970596215037872 1 8 1 8 0 0 104 12 2594 23664760 81600 850.93270874023438 5.8616000000000001 1278.8708999999999 120960 57971 1 0 5898240 4423680 4423680 4426358 4492800 553 150 189 818 884 0 0 0 0 12 0 0 0 0 0 +1425 1783752973118396300 DEPTH 39 1 0.6894119065114197 2 12 2 12 1 0 143 51 2535 23664901 81600 853.90562438964844 5.8564999999999996 1028.8422 120960 56044 1 0 5898240 4423680 4423680 4426501 4492800 157 151 151 161 1915 0 0 1 1 49 0 0 0 0 1 +1426 1783752974178229100 DEPTH 18 1 0.68879804988265469 4 15 4 15 1 0 95 74 2578 23664810 81600 864.25454711914062 5.8452999999999999 1040.1476 120960 69188 1 0 5898240 4423680 4423680 4426407 4492800 181 150 151 189 1907 0 1 1 3 69 0 0 0 0 1 +1427 1783752975228878300 DEPTH 23 1 0.68866450598879014 3 14 3 14 1 0 96 84 2550 23664759 81600 853.84893798828125 5.8322999999999992 1024.4401 120960 65156 1 0 5898240 4423680 4423680 4426358 4492800 153 150 150 155 1942 0 1 0 0 83 0 0 0 0 1 +1428 1783752975423405300 REFRESH 35 0 0.68778728880850859 2 11 2 11 0 0 134 10 415 3943911 55200 149.6258544921875 0.96930000000000005 178.8775 20160 12068 0 0 983040 737280 737280 737511 748800 83 25 32 86 189 0 0 0 0 10 0 0 0 0 0 +1429 1783752975610620000 REFRESH 45 0 0.55945872648210604 2 7 2 7 0 0 119 6 422 3943879 55200 149.78559875488281 0.97440000000000004 186.00739999999999 20160 12454 0 0 983040 737280 737280 737479 748800 156 25 54 55 132 0 0 0 0 6 0 0 0 0 0 +1430 1783752975823399800 REFRESH 14 0 0.68577652868508854 0 12 0 12 0 0 103 9 415 3943911 55200 150.47801208496094 0.99980000000000002 186.5385 20160 12152 0 0 983040 737280 737280 737511 748800 49 26 28 38 274 0 0 0 0 9 0 0 0 0 0 +1431 1783752976004100600 REFRESH 36 0 0.55642557352740951 3 10 3 10 0 0 102 11 428 3943906 55200 149.96275329589844 0.97219999999999995 179.53059999999999 20160 12045 0 0 983040 737280 737280 737506 748800 143 25 42 56 162 0 0 0 0 11 0 0 0 0 0 +1432 1783752976228768000 REFRESH 11 0 0.73706439358098619 0 8 0 8 0 0 95 8 418 3943914 55200 149.61129760742188 0.97499999999999998 223.54509999999999 20160 12479 0 0 983040 737280 737280 737514 748800 130 25 54 61 148 0 0 0 0 8 0 0 0 0 0 +1433 1783752976408056000 REFRESH 23 0 0.49417887681620182 3 14 3 14 1 0 96 16 414 3943909 55200 149.2674560546875 0.97060000000000002 178.14959999999999 20160 12002 0 0 983040 737280 737280 737509 748800 28 25 51 38 272 0 0 0 0 16 0 0 0 0 1 +1434 1783752976635897000 REFRESH 17 0 0.73238680836271908 0 7 0 7 0 0 172 2 411 3943915 55200 150.37113952636719 0.97640000000000005 226.6858 20160 13261 0 0 983040 737280 737280 737515 748800 128 26 31 96 130 0 0 0 0 2 0 0 0 0 0 +1435 1783752976833736100 REFRESH 21 0 0.60770714197510634 0 10 0 10 0 0 165 7 415 3943890 55200 150.06016540527344 0.98270000000000002 196.56209999999999 20160 12058 0 0 983040 737280 737280 737490 748800 109 26 36 72 172 0 0 0 0 7 0 0 0 0 0 +1436 1783752977054837300 REFRESH 31 0 0.73050473773348734 2 6 2 6 0 0 115 4 429 3943914 55200 149.20780944824219 0.9839 219.87710000000001 20160 12907 0 0 983040 737280 737280 737514 748800 224 25 27 59 94 0 0 0 0 4 0 0 0 0 0 +1437 1783752977238740900 REFRESH 16 0 0.691167074602971 2 7 2 7 0 0 161 8 416 3943891 55200 150.25465393066406 0.98499999999999999 182.70500000000001 20160 12571 0 0 983040 737280 737280 737491 748800 32 26 26 236 96 0 0 0 0 8 0 0 0 0 0 +1438 1783752977445541200 REFRESH 2 0 0.68709207438771391 2 12 2 12 0 0 108 12 418 3943896 55200 151.04095458984375 0.97170000000000001 181.27879999999999 20160 11981 0 0 983040 737280 737280 737495 748800 30 26 56 68 238 0 0 0 0 12 0 0 0 0 0 +1439 1783752977640609900 REFRESH 24 0 0.68386524074630217 4 11 4 11 0 0 129 6 406 3943930 55200 149.42002868652344 0.97940000000000005 179.67760000000001 20160 12088 0 0 983040 737280 737280 737527 748800 34 26 38 44 264 0 0 0 0 6 0 0 0 0 0 +1440 1783752977828718800 REFRESH 33 0 0.67223448074770542 1 7 1 7 0 0 173 6 416 3943905 55200 151.57350158691406 0.97599999999999998 186.94669999999999 20160 12799 0 0 983040 737280 737280 737505 748800 123 26 54 40 173 0 0 1 0 5 0 0 0 0 0 +1441 1783752978035531500 REFRESH 4 0 0.65238958174433848 1 13 1 13 0 0 47 1 419 3943892 55200 148.73904418945312 0.99980000000000002 177.999 20160 13782 0 0 983040 737280 737280 737492 748800 27 25 39 36 292 0 0 0 0 1 0 0 0 0 0 +1442 1783752978229401900 REFRESH 42 0 0.68013219910714251 4 12 4 12 0 0 115 8 418 3943926 55200 149.882080078125 0.97919999999999996 179.17189999999999 20160 11980 0 0 983040 737280 737280 737525 748800 133 25 25 32 203 0 0 0 0 8 0 0 0 0 0 +1443 1783752978438345100 REFRESH 1 0 0.73465612066128372 1 7 1 7 0 0 116 5 418 3943889 55200 149.79788208007812 0.97409999999999997 207.85900000000001 20160 12897 0 0 983040 737280 737280 737489 748800 119 26 72 68 133 0 0 0 0 5 0 0 0 0 0 +1444 1783752978661915400 REFRESH 56 0 0.85309704350812521 2 5 2 5 0 0 172 10 416 3943948 55200 150.33753967285156 0.97340000000000004 222.3596 20160 13418 0 0 983040 737280 737280 737547 748800 181 26 51 58 100 0 0 0 0 10 0 0 0 0 0 +1445 1783752978843143800 REFRESH 0 0 0.68757386377640373 1 12 1 12 0 0 87 6 427 3943900 55200 150.13558959960938 0.97289999999999999 180.19200000000001 20160 13026 0 0 983040 737280 737280 737500 748800 117 25 47 49 189 0 0 1 0 5 0 0 0 0 0 +1446 1783752979072752200 REFRESH 54 0 0.69231052631482715 1 8 1 8 0 0 111 8 426 3943903 55200 150.1634521484375 0.98519999999999996 228.38079999999999 20160 12864 0 0 983040 737280 737280 737502 748800 165 25 55 106 75 1 0 0 0 7 0 0 0 0 0 +1447 1783752979277494800 REFRESH 20 0 0.68311621883328355 3 12 3 12 0 0 96 10 424 3943895 55200 149.66578674316406 0.98360000000000003 180.2722 20160 12127 0 0 983040 737280 737280 737495 748800 92 26 53 62 191 0 0 0 0 10 0 0 0 0 0 +1448 1783752979459343000 REFRESH 12 0 0.68831908343177917 3 8 3 8 0 0 159 10 413 3943912 55200 149.285888671875 0.98880000000000001 180.73089999999999 20160 11935 0 0 983040 737280 737280 737510 748800 122 26 44 89 132 1 1 0 0 8 0 0 0 0 0 +1449 1783752979651802800 REFRESH 34 0 0.68547936709555224 1 13 1 13 0 0 97 3 424 3943933 55200 148.61619567871094 0.98350000000000004 176.19470000000001 20160 13302 0 0 983040 737280 737280 737533 748800 60 25 46 54 239 0 0 0 0 3 0 0 0 0 0 +1450 1783752979845271100 REFRESH 15 0 0.68823839733084946 3 12 3 12 0 0 80 8 417 3943923 55200 149.40467834472656 0.97399999999999998 178.33869999999999 20160 12720 0 0 983040 737280 737280 737523 748800 28 26 26 25 312 0 0 0 0 8 0 0 0 0 0 +1451 1783752980036991100 REFRESH 6 0 0.67290412064691341 3 11 3 11 1 0 113 7 415 3943908 55200 149.31455993652344 0.97719999999999996 177.6497 20160 12398 0 0 983040 737280 737280 737508 748800 26 25 25 25 314 0 0 0 0 7 0 0 0 0 1 +1452 1783752980230456200 REFRESH 40 0 0.67794664049154962 3 11 3 11 0 0 104 12 417 3943895 55200 150.35903930664062 0.97889999999999999 178.25380000000001 20160 12923 0 0 983040 737280 737280 737495 748800 136 25 33 85 138 0 0 0 0 12 0 0 0 0 0 +1453 1783752980428886900 REFRESH 50 0 0.68822883531053647 2 9 2 9 0 0 115 7 420 3943895 55200 149.54086303710938 0.98129999999999995 181.06620000000001 20160 12593 0 0 983040 737280 737280 737494 748800 124 26 39 59 172 0 0 0 0 7 0 0 0 0 0 +1454 1783752980652118200 REFRESH 52 0 0.68951212116506966 1 8 1 8 1 0 104 5 428 3943922 55200 149.61357116699219 0.97189999999999999 222.01570000000001 20160 12509 0 0 983040 737280 737280 737522 748800 123 25 35 159 86 0 0 0 0 5 0 0 0 0 1 +1455 1783752980853654200 REFRESH 3 0 0.68493554348952856 2 11 2 11 0 0 113 4 420 3943920 55200 148.14828491210938 0.97009999999999996 176.81030000000001 20160 12785 0 0 983040 737280 737280 737520 748800 124 25 47 62 162 0 0 0 0 4 0 0 0 0 0 +1456 1783752981051051100 REFRESH 28 0 0.69618030995541069 1 12 1 12 0 0 141 6 406 3943914 55200 150.08154296875 0.98170000000000002 181.137 20160 12045 0 0 983040 737280 737280 737514 748800 145 25 29 30 177 1 0 0 0 5 0 0 0 0 0 +1457 1783752981234891000 REFRESH 8 0 0.85337856292749881 2 5 2 5 0 0 209 8 416 3943919 55200 150.63040161132812 0.96989999999999998 182.6771 20160 13364 0 0 983040 737280 737280 737519 748800 122 26 26 56 186 0 0 0 0 8 0 0 0 0 0 +1458 1783752981440274800 REFRESH 10 0 0.67915803949299025 1 11 1 11 0 0 105 5 423 3943925 55200 149.317626953125 0.97199999999999998 180.74350000000001 20160 12920 0 0 983040 737280 737280 737525 748800 110 26 50 40 197 0 0 0 0 5 0 0 0 0 0 +1459 1783752981635264500 REFRESH 19 0 0.6813815274230629 2 11 2 11 1 0 114 16 421 3943893 55200 149.62995910644531 0.97650000000000003 179.36580000000001 20160 12138 0 0 983040 737280 737280 737493 748800 122 25 26 51 197 1 1 0 0 14 0 0 0 0 1 +1460 1783752981830349600 REFRESH 55 0 0.68671085168770241 1 15 1 15 0 0 122 10 406 3943932 55200 149.72416687011719 0.9758 178.80090000000001 20160 12063 0 0 983040 737280 737280 737532 748800 36 26 30 48 266 0 0 0 0 10 0 0 0 0 0 +1461 1783752982027929500 REFRESH 13 0 0.84436949696433872 1 6 1 6 0 0 167 5 414 3943904 55200 150.5269775390625 0.9768 196.45230000000001 20160 13520 0 0 983040 737280 737280 737504 748800 143 26 60 70 115 0 0 0 0 5 0 0 0 0 0 +1462 1783752982233480300 REFRESH 27 0 0.68733177221291319 0 14 0 14 0 0 108 13 411 3943939 55200 149.7548828125 0.98050000000000004 180.39779999999999 20160 11966 0 0 983040 737280 737280 737538 748800 34 26 27 30 294 0 1 0 0 12 0 0 0 0 0 +1463 1783752982443263800 REFRESH 58 0 0.68872012148523087 2 12 2 12 0 0 113 11 420 3943892 55200 150.02214050292969 0.97540000000000004 177.9264 20160 12599 0 0 983040 737280 737280 737492 748800 87 26 58 59 190 0 0 0 0 11 0 0 0 0 0 +1464 1783752982636864100 REFRESH 48 0 0.64116683498679805 2 11 2 11 0 0 70 2 431 3943920 55200 149.08006286621094 0.97140000000000004 177.79159999999999 20160 12731 0 0 983040 737280 737280 737520 748800 159 25 55 52 140 0 0 0 0 2 0 0 0 0 0 +1465 1783752982831242600 REFRESH 47 0 0.6839356320928236 2 11 2 11 0 0 108 14 420 3943927 55200 149.4783935546875 0.97650000000000003 178.309 20160 12331 0 0 983040 737280 737280 737527 748800 83 26 48 30 233 0 0 0 0 14 0 0 0 0 0 +1466 1783752983013078100 REFRESH 7 0 0.74269139081852664 1 12 1 12 0 0 115 7 411 3943927 55200 151.23062133789062 0.97719999999999996 180.70240000000001 20160 11975 0 0 983040 737280 737280 737527 748800 124 26 31 45 185 0 0 0 0 7 0 0 0 0 0 +1467 1783752983217109400 REFRESH 49 0 0.68589698046726988 3 10 3 10 0 0 125 10 412 3943919 55200 150.19622802734375 0.97470000000000001 181.66130000000001 20160 12129 0 0 983040 737280 737280 737519 748800 74 26 61 51 200 0 0 0 0 10 0 0 0 0 0 +1468 1783752983411369800 REFRESH 29 0 0.68803664459421654 2 12 2 12 0 0 104 5 420 3943900 55200 149.501953125 0.97140000000000004 178.63239999999999 20160 12035 0 0 983040 737280 737280 737500 748800 71 25 61 54 209 0 0 0 0 5 0 0 0 0 0 +1469 1783752983604579800 REFRESH 57 0 0.69076086252413638 2 12 2 12 0 0 118 9 413 3943910 55200 149.48249816894531 0.97450000000000003 177.6362 20160 12271 0 0 983040 737280 737280 737509 748800 88 26 80 72 147 0 0 0 0 9 0 0 0 0 0 +1470 1783752983799389000 REFRESH 46 0 0.68761832171615611 2 15 2 15 0 0 96 8 413 3943905 55200 149.36268615722656 0.9768 178.58850000000001 20160 11966 0 0 983040 737280 737280 737505 748800 50 26 52 31 254 0 0 0 0 8 0 0 0 0 0 +1471 1783752983992932200 REFRESH 51 0 0.68071660973516956 3 12 3 12 1 0 87 10 417 3943906 55200 148.74418640136719 0.98260000000000003 177.52359999999999 20160 12915 0 0 983040 737280 737280 737506 748800 32 26 129 102 128 0 0 0 0 10 0 0 0 0 1 +1472 1783752984190932200 REFRESH 22 0 0.72561560701755545 3 11 3 11 0 0 115 18 417 3943920 55200 150.94169616699219 0.97689999999999999 181.02440000000001 20160 11914 0 0 983040 737280 737280 737520 748800 82 25 28 27 255 0 0 0 1 17 0 0 0 0 0 +1473 1783752984383800800 REFRESH 41 0 0.68956413101571901 1 10 1 10 0 0 103 7 413 3943932 55200 148.37759399414062 0.98029999999999995 191.74510000000001 20160 12868 0 0 983040 737280 737280 737532 748800 72 26 39 34 242 0 0 0 0 7 0 0 0 0 0 +1474 1783752984573990400 REFRESH 53 0 0.73850675476411209 0 8 0 8 0 0 134 11 421 3943914 55200 151.02975463867188 0.97019999999999995 188.88229999999999 20160 12707 0 0 983040 737280 737280 737512 748800 140 26 27 56 172 0 0 0 0 11 0 0 0 0 0 +1475 1783752984778872800 REFRESH 25 0 0.68353495617434934 3 11 3 11 0 0 98 7 421 3943901 55200 150.47576904296875 0.97219999999999995 180.06229999999999 20160 12018 0 0 983040 737280 737280 737501 748800 62 25 63 78 193 0 0 0 0 7 0 0 0 0 0 +1476 1783752984959935300 REFRESH 18 0 0.68463418178155866 4 15 4 15 0 0 96 17 424 3943898 55200 150.69209289550781 0.97840000000000005 179.95140000000001 20160 12722 0 0 983040 737280 737280 737498 748800 44 25 26 39 290 0 0 0 0 17 0 0 0 0 0 +1477 1783752985154475700 REFRESH 38 0 0.6864145459399873 4 14 4 14 0 0 79 9 420 3943886 55200 150.22358703613281 0.99570000000000003 178.62909999999999 20160 12841 0 0 983040 737280 737280 737486 748800 45 26 39 36 274 0 0 0 1 8 0 0 0 0 0 +1478 1783752985344092200 REFRESH 5 0 0.67845561531912546 2 11 2 11 0 0 90 7 405 3943922 55200 148.34089660644531 0.9718 174.82220000000001 20160 13812 0 0 983040 737280 737280 737521 748800 49 25 74 95 162 0 0 0 0 7 0 0 0 0 0 +1479 1783752985535985100 REFRESH 32 0 0.68873038845718171 2 14 2 14 0 0 113 8 422 3943929 55200 149.16812133789062 0.97550000000000003 177.21709999999999 20160 12308 0 0 983040 737280 737280 737529 748800 147 25 36 31 183 0 0 0 0 8 0 0 0 0 0 +1480 1783752985729597400 REFRESH 37 0 0.68870354291459068 1 12 1 12 0 0 123 7 418 3943918 55200 149.30557250976562 0.97560000000000002 177.93000000000001 20160 12368 0 0 983040 737280 737280 737518 748800 87 26 67 32 206 0 0 0 0 7 0 0 0 0 0 +1481 1783752986027018100 REFRESH 44 0 0.69320130817271641 2 7 2 7 0 0 123 9 423 3943913 55200 150.24748229980469 0.97570000000000001 222.40129999999999 20160 12500 0 0 983040 737280 737280 737513 748800 79 26 60 29 229 0 0 0 0 9 0 0 0 0 0 +1482 1783752986224026900 REFRESH 43 0 0.68865732439863403 2 13 2 13 0 0 117 10 414 3943935 55200 149.98527526855469 1.0484 181.44640000000001 20160 12010 0 0 983040 737280 737280 737535 748800 70 26 41 63 214 0 0 0 0 10 0 0 0 0 0 +1483 1783752986403798900 REFRESH 39 0 0.68586795511142529 2 12 2 12 0 0 143 10 401 3943919 55200 149.44050598144531 0.97470000000000001 178.58439999999999 20160 11951 0 0 983040 737280 737280 737518 748800 42 26 28 31 274 0 0 0 0 10 0 0 0 0 0 +1484 1783752986606015000 REFRESH 26 0 0.68211033554077227 1 13 1 13 0 0 70 7 420 3943905 55200 149.36268615722656 0.97529999999999994 177.51740000000001 20160 13833 0 0 983040 737280 737280 737505 748800 28 25 29 38 300 0 0 0 1 6 0 0 0 0 0 +1485 1783752986801214500 REFRESH 30 0 0.68806758200797391 2 12 1 10 1 0 99 14 410 3943920 55200 149.01043701171875 0.98160000000000003 178.98150000000001 20160 11994 0 0 983040 737280 737280 737519 748800 42 25 55 32 256 0 0 1 0 13 0 0 1 0 0 +1486 1783752987020399700 REFRESH 9 0 0.72849327628976912 2 6 2 6 0 0 120 7 430 3943920 55200 151.119873046875 0.97770000000000001 218.10159999999999 20160 12952 0 0 983040 737280 737280 737520 748800 136 25 75 70 124 0 0 0 0 7 0 0 0 0 0 +1487 1783752988361430400 DEPTH 56 1 0.85263146912934107 2 5 2 5 0 0 172 21 2569 23664786 81600 857.68777465820312 5.8183999999999996 1293.7294999999999 120960 64978 1 0 5898240 4423680 4423680 4426386 4492800 429 156 168 225 1591 0 0 0 0 21 0 0 0 0 0 +1488 1783752989492189200 DEPTH 8 1 0.8506710368151047 2 5 2 5 0 0 209 32 2562 23664822 81600 868.94569396972656 5.8319999999999999 1084.8317 120960 65282 1 0 5898240 4423680 4423680 4426422 4492800 228 151 151 172 1860 0 0 0 0 32 0 0 0 0 0 +1489 1783752990792889000 DEPTH 17 1 0.84393775566840668 0 7 0 7 0 0 173 36 2525 23664832 81600 858.44058227539062 5.8251999999999997 1299.5189 120960 65218 1 0 5898240 4423680 4423680 4426430 4492800 198 156 150 227 1794 0 0 0 0 36 0 0 0 0 0 +1490 1783752992078048900 DEPTH 13 1 0.83982232294357284 1 6 1 6 0 0 167 29 2499 23664806 81600 860.56008911132812 5.8536999999999999 1263.9439 120960 64767 1 0 5898240 4423680 4423680 4426405 4492800 213 155 173 170 1788 0 0 0 0 29 0 0 0 0 0 +1491 1783752993106143300 DEPTH 30 1 0.81662127356216629 1 10 1 10 1 0 101 86 2516 23664874 81600 853.24185180664062 5.8731000000000009 1026.9231 120960 56939 1 0 5898240 4423680 4423680 4426474 4492800 163 150 158 162 1883 2 0 1 0 83 0 0 1 0 1 +1492 1783752994340537100 DEPTH 33 1 0.73633303445648168 1 7 1 7 1 0 174 43 2532 23664795 81600 867.48011779785156 5.8301000000000007 1182.8487 120960 61682 1 0 5898240 4423680 4423680 4426394 4492800 202 156 158 152 1864 0 0 0 0 43 0 0 0 0 2 +1493 1783752995656477600 DEPTH 11 1 0.73434064413908384 0 8 0 8 1 0 95 15 2558 23664855 81600 849.27145385742188 5.8706000000000005 1295.3572999999999 120960 59404 1 0 5898240 4423680 4423680 4426453 4492800 368 150 191 265 1584 0 0 0 0 15 0 0 0 0 1 +1494 1783752997000076000 DEPTH 1 1 0.7286971912175676 1 7 1 7 0 0 116 11 2601 23664877 81600 860.42739868164062 5.8699000000000012 1296.518 120960 61828 1 0 5898240 4423680 4423680 4426477 4492800 404 156 277 282 1482 0 0 0 0 11 0 0 0 0 0 +1495 1783752998063047700 DEPTH 30 1 0.76359780387943532 1 10 1 10 1 0 104 98 2561 23664753 81600 849.80525207519531 5.8595999999999995 1061.8191999999999 120960 45952 1 0 5898240 4423680 4423680 4426348 4492800 165 150 161 154 1931 0 0 0 0 98 0 0 0 0 2 +1496 1783752999094953500 DEPTH 7 1 0.73023508632413447 1 12 1 12 0 0 118 71 2546 23664769 81600 857.2177734375 5.8622999999999994 1030.7768000000001 120960 56533 1 0 5898240 4423680 4423680 4426368 4492800 195 151 156 156 1888 0 0 0 0 71 0 0 0 0 0 +1497 1783753000361407700 DEPTH 31 1 0.72404063991950707 2 6 2 6 0 0 117 20 2615 23664910 81600 856.40313720703125 5.8449999999999998 1265.2952 120960 62192 1 0 5898240 4423680 4423680 4426509 4492800 907 150 159 231 1168 0 0 0 0 20 0 0 0 0 0 +1498 1783753001393344700 DEPTH 22 1 0.71729534111792992 3 11 3 11 0 0 115 31 2604 23664832 81600 857.431884765625 5.8301999999999996 1030.7599 120960 56446 1 0 5898240 4423680 4423680 4426430 4492800 179 150 152 157 1966 0 0 0 1 30 0 0 0 0 0 +1499 1783753002658761100 DEPTH 53 1 0.7369646090962112 0 8 0 8 0 0 134 40 2531 23664802 81600 861.11248779296875 5.8788999999999998 1217.6437000000001 120960 60502 1 0 5898240 4423680 4423680 4426400 4492800 213 156 150 187 1825 0 0 0 0 40 0 0 0 0 0 +1500 1783753003982397300 DEPTH 54 1 0.68964180760224147 1 8 1 8 0 0 111 22 2607 23664840 81600 853.41134643554688 5.8666 1283.0360000000001 120960 60639 1 0 5898240 4423680 4423680 4426440 4492800 469 150 261 564 1163 4 0 0 0 18 0 0 0 0 0 +1501 1783753005073500400 DEPTH 16 1 0.68806102191692786 2 7 2 7 0 0 162 40 2529 23664884 81600 864.36775207519531 5.8482000000000003 1066.8254999999999 120960 60196 1 0 5898240 4423680 4423680 4426482 4492800 167 156 156 621 1429 0 0 0 0 40 0 0 0 0 0 +1502 1783753006131612200 DEPTH 28 1 0.68625881598331895 1 12 1 12 0 0 141 49 2508 23664814 81600 862.86709594726562 5.8454000000000006 1033.9282000000001 120960 57552 1 0 5898240 4423680 4423680 4426410 4492800 171 150 162 150 1875 4 0 0 1 44 0 0 0 0 0 +1503 1783753007197268000 DEPTH 30 1 0.7728321767817069 1 10 1 9 1 0 106 88 2551 23664867 81600 846.29188537597656 5.8447000000000005 1064.4469999999999 120960 36335 1 0 5898240 4423680 4423680 4426464 4492800 159 150 162 151 1929 0 0 0 0 88 0 0 0 0 3 +1504 1783753008489535500 DEPTH 56 1 0.77191652219292772 2 5 2 5 0 0 173 28 2568 23664869 81600 848.56306457519531 5.8693999999999997 1291.0352 120960 54363 1 0 5898240 4423680 4423680 4426466 4492800 436 156 168 257 1551 0 0 0 0 28 0 0 0 0 0 +1505 1783753009558063000 DEPTH 8 1 0.77002150969800176 2 5 2 5 0 0 209 39 2549 23664806 81600 860.01164245605469 5.8805999999999994 1067.4179999999999 120960 54093 1 0 5898240 4423680 4423680 4426406 4492800 318 152 153 215 1711 0 0 0 0 39 0 0 0 0 0 +1506 1783753010850987300 DEPTH 17 1 0.76396214670909168 0 7 0 7 0 0 173 27 2521 23664762 81600 848.57499694824219 5.8318000000000003 1291.7822000000001 120960 53086 1 0 5898240 4423680 4423680 4426361 4492800 198 156 150 268 1749 0 0 0 0 27 0 0 0 0 0 +1507 1783753012128760300 DEPTH 13 1 0.76052388536691584 1 6 1 6 1 0 167 21 2505 23664825 81600 852.42279052734375 5.8480999999999996 1264.0362 120960 53478 1 0 5898240 4423680 4423680 4426424 4492800 211 154 172 178 1790 0 0 0 0 21 0 0 0 0 1 +1508 1783753013405386200 DEPTH 52 1 0.68630644457449597 1 8 1 8 0 0 105 19 2595 23664787 81600 850.90193176269531 5.8356000000000003 1275.3997999999999 120960 58938 1 0 5898240 4423680 4423680 4426386 4492800 595 150 195 817 838 0 0 0 0 19 0 0 0 0 0 +1509 1783753014463370800 DEPTH 12 1 0.68604498459845065 3 8 3 8 0 0 162 56 2535 23664788 81600 855.78671264648438 5.8521999999999998 1034.0175999999999 120960 56812 1 0 5898240 4423680 4423680 4426387 4492800 216 150 174 229 1766 0 0 0 0 56 0 0 0 0 0 +1510 1783753015693027800 DEPTH 45 1 0.68487231738603693 2 7 2 7 0 0 122 43 2584 23664855 81600 861.32069396972656 5.8723000000000001 1210.6421 120960 59339 1 0 5898240 4423680 4423680 4426455 4492800 238 150 196 195 1805 0 0 0 0 43 0 0 0 0 0 +1511 1783753016834657500 DEPTH 30 1 0.85988427399556189 1 9 1 9 1 0 108 71 2531 23664840 81600 839.16374206542969 5.8520000000000003 1102.2584999999999 120960 24852 1 0 5898240 4423680 4423680 4426440 4492800 150 150 162 150 1919 0 0 0 0 71 0 0 0 0 1 +1512 1783753018133650100 DEPTH 9 1 0.72496841450228 2 6 2 6 0 0 120 6 2611 23664872 81600 864.52418518066406 6.241299999999999 1297.5048999999999 120960 62279 1 0 5898240 4423680 4423680 4426470 4492800 624 150 334 431 1072 0 0 0 0 6 0 0 0 0 0 +1513 1783753019484193300 DEPTH 44 1 0.69105733601163022 2 7 2 7 0 0 124 19 2603 23664794 81600 855.92131042480469 5.843 1294.6786999999999 120960 59494 1 0 5898240 4423680 4423680 4426394 4492800 177 150 187 156 1933 0 0 0 0 19 0 0 0 0 0 +1514 1783753020567928900 DEPTH 35 1 0.68492075117974893 2 11 2 11 0 0 135 74 2534 23664981 81600 859.72830200195312 5.8625999999999996 1032.7228 120960 57502 1 0 5898240 4423680 4423680 4426578 4492800 171 150 156 196 1861 0 0 0 0 74 0 0 0 0 0 +1515 1783753021618800500 DEPTH 43 1 0.68480125672498282 2 13 2 13 0 0 117 37 2529 23664856 81600 860.29411315917969 5.8484999999999996 1031.1235999999999 120960 57214 1 0 5898240 4423680 4423680 4426456 4492800 173 156 156 164 1880 0 0 0 0 37 0 0 0 0 0 +1516 1783753022679786400 DEPTH 57 1 0.68460753130170748 2 12 2 12 0 0 119 53 2513 23664858 81600 857.57377624511719 5.8754 1033.1048000000001 120960 57917 1 0 5898240 4423680 4423680 4426451 4492800 228 156 184 260 1685 0 0 0 0 53 0 0 0 0 0 +1517 1783753023928013100 DEPTH 41 1 0.6845501515493132 1 10 1 10 0 0 105 44 2567 23664826 81600 849.27949523925781 5.8445 1247.0822000000001 120960 60978 1 0 5898240 4423680 4423680 4426425 4492800 221 156 168 179 1843 0 0 0 2 42 0 0 0 0 0 +1518 1783753025018947500 DEPTH 2 1 0.68399018172379544 2 12 2 12 0 0 109 32 2572 23664802 81600 862.19511413574219 5.8323999999999998 1041.2294999999999 120960 56546 1 0 5898240 4423680 4423680 4426400 4492800 176 156 214 264 1762 0 0 0 0 32 0 0 0 0 0 +1519 1783753025213558100 REFRESH 27 0 0.68397825299201842 0 14 0 14 0 0 108 7 413 3943884 55200 148.7022705078125 0.97770000000000001 178.14779999999999 20160 11974 0 0 983040 737280 737280 737484 748800 34 26 27 29 297 0 0 0 0 7 0 0 0 0 0 +1520 1783753025394318300 REFRESH 43 0 0.4807798424616227 2 13 2 13 0 0 119 14 415 3943901 55200 150.00473022460938 0.99880000000000002 179.61760000000001 20160 12066 0 0 983040 737280 737280 737501 748800 83 26 45 59 202 0 0 0 1 13 0 0 0 0 0 +1521 1783753025595201000 REFRESH 24 0 0.67698424968252313 4 11 4 11 0 0 129 9 416 3943930 55200 149.88873291015625 0.97540000000000004 179.87899999999999 20160 12088 0 0 983040 737280 737280 737530 748800 32 26 36 44 278 0 0 0 0 9 0 0 0 0 0 +1522 1783753025833057500 REFRESH 56 0 0.78115879045974768 2 5 2 5 0 0 173 8 416 3943920 55200 150.0948486328125 0.97660000000000002 221.73220000000001 20160 13206 0 0 983040 737280 737280 737520 748800 179 26 50 59 102 0 0 0 0 8 0 0 0 0 0 +1523 1783753026016379900 REFRESH 30 0 0.86712712766030209 1 9 1 9 0 0 108 7 408 3943903 55200 149.48556518554688 0.98150000000000004 182.0994 20160 11931 0 0 983040 737280 737280 737503 748800 59 25 39 33 252 0 0 0 0 7 0 0 0 0 0 +1524 1783753026213998500 REFRESH 5 0 0.67342049766908896 2 11 2 11 0 0 90 8 405 3943930 55200 148.54963684082031 0.97519999999999996 175.8845 20160 13729 0 0 983040 737280 737280 737530 748800 51 26 74 94 160 0 0 0 1 7 0 0 0 0 0 +1525 1783753026435756700 REFRESH 9 0 0.60051803148769667 2 6 2 6 1 0 120 9 436 3943881 55200 150.25970458984375 0.97009999999999996 220.70500000000001 20160 12985 0 0 983040 737280 737280 737481 748800 127 25 66 66 152 0 0 0 0 9 0 0 0 0 1 +1526 1783753026632054800 REFRESH 13 0 0.78104828153077532 1 6 1 6 0 0 167 5 415 3943948 55200 150.79116821289062 0.97450000000000003 195.227 20160 13338 0 0 983040 737280 737280 737547 748800 151 26 61 73 104 0 0 0 0 5 0 0 0 0 0 +1527 1783753026835549500 REFRESH 15 0 0.68316913365284804 3 12 3 12 0 0 81 10 420 3943918 55200 150.47065734863281 0.99850000000000005 178.79060000000001 20160 12534 0 0 983040 737280 737280 737518 748800 28 26 28 25 313 0 0 0 0 10 0 0 0 0 0 +1528 1783753027057558900 REFRESH 54 0 0.68883143837661298 1 8 1 8 1 0 111 12 426 3943908 55200 150.0211181640625 0.98140000000000005 220.74000000000001 20160 12573 0 0 983040 737280 737280 737508 748800 165 25 56 103 77 0 0 0 0 12 0 0 0 0 1 +1529 1783753027242308200 REFRESH 39 0 0.68227686516008268 2 12 2 12 0 0 144 6 400 3943941 55200 149.94943237304688 0.97240000000000004 179.33789999999999 20160 12017 0 0 983040 737280 737280 737541 748800 46 26 29 31 268 0 0 0 0 6 0 0 0 0 0 +1530 1783753027423078000 REFRESH 7 0 0.72182075727259676 1 12 1 12 0 0 118 9 415 3943925 55200 149.59103393554688 0.97770000000000001 179.4409 20160 12066 0 0 983040 737280 737280 737524 748800 113 26 28 34 214 0 0 0 0 9 0 0 0 0 0 +1531 1783753027626999800 REFRESH 55 0 0.68340123079897352 1 15 1 15 0 0 123 9 409 3943929 55200 149.60946655273438 0.999 177.43129999999999 20160 11920 0 0 983040 737280 737280 737529 748800 37 26 30 49 267 0 0 0 0 9 0 0 0 0 0 +1532 1783753027819537200 REFRESH 42 0 0.67450746875769518 4 12 4 12 0 0 116 13 413 3943900 55200 149.58079528808594 0.97719999999999996 178.34350000000001 20160 11992 0 0 983040 737280 737280 737500 748800 135 25 25 29 199 0 0 0 0 13 0 0 0 0 0 +1533 1783753028010649600 REFRESH 20 0 0.68035573876522826 3 12 3 12 0 0 96 11 420 3943910 55200 148.71040344238281 0.97350000000000003 177.23949999999999 20160 11981 0 0 983040 737280 737280 737510 748800 94 26 53 63 184 0 0 0 0 11 0 0 0 0 0 +1534 1783753028192668600 REFRESH 22 0 0.70965995086031131 3 11 3 11 0 0 115 6 418 3943912 55200 151.09837341308594 0.97719999999999996 180.84530000000001 20160 12020 0 0 983040 737280 737280 737510 748800 103 25 29 28 233 0 0 0 0 6 0 0 0 0 0 +1535 1783753028414405000 REFRESH 52 0 0.68603937597729869 1 8 1 8 0 0 105 5 430 3943921 55200 149.05445861816406 0.97360000000000002 220.5411 20160 12449 0 0 983040 737280 737280 737521 748800 128 25 34 161 82 0 0 0 0 5 0 0 0 0 0 +1536 1783753028611883400 REFRESH 4 0 0.6448159975366623 1 13 1 13 0 0 47 3 420 3943914 55200 148.61506652832031 0.9778 175.66759999999999 20160 13583 0 0 983040 737280 737280 737514 748800 27 25 33 29 306 0 0 0 0 3 0 0 0 0 0 +1537 1783753028792601200 REFRESH 35 0 0.6614741830428883 2 11 2 11 0 0 135 10 415 3943919 55200 149.49891662597656 0.97340000000000004 179.58250000000001 20160 12012 0 0 983040 737280 737280 737519 748800 96 25 34 97 163 0 0 0 0 10 0 0 0 0 0 +1538 1783753029005436800 REFRESH 33 0 0.74083559461472681 1 7 1 7 0 0 174 7 416 3943910 55200 151.97251892089844 0.99960000000000004 187.87790000000001 20160 12909 0 0 983040 737280 737280 737510 748800 101 26 44 33 212 0 0 0 0 7 0 0 0 0 0 +1539 1783753029195712600 REFRESH 53 0 0.73552451786226047 0 8 0 8 0 0 134 8 418 3943908 55200 150.94578552246094 0.9859 189.05289999999999 20160 12870 0 0 983040 737280 737280 737508 748800 144 28 27 57 162 0 0 0 0 8 0 0 0 0 0 +1540 1783753029380986400 REFRESH 8 0 0.84944142575874015 2 5 2 5 0 0 209 4 415 3943896 55200 151.84486389160156 0.96930000000000005 184.1045 20160 13559 0 0 983040 737280 737280 737496 748800 140 26 30 69 150 0 0 0 0 4 0 0 0 0 0 +1541 1783753029613389900 REFRESH 1 0 0.72813736477158342 1 7 1 7 0 0 117 6 418 3943899 55200 150.43174743652344 0.97319999999999995 206.7259 20160 12928 0 0 983040 737280 737280 737499 748800 121 26 78 71 122 0 0 0 0 6 0 0 0 0 0 +1542 1783753029807558100 REFRESH 29 0 0.68008395188795667 2 12 2 12 0 0 104 9 418 3943888 55200 149.60025024414062 0.97760000000000002 179.40000000000001 20160 11999 0 0 983040 737280 737280 737488 748800 71 25 60 50 212 0 0 0 0 9 0 0 0 0 0 +1543 1783753030001426000 REFRESH 32 0 0.68285904621302596 2 14 2 14 1 0 113 13 420 3943920 55200 149.75283813476562 0.98170000000000002 178.19149999999999 20160 12385 0 0 983040 737280 737280 737520 748800 152 25 36 30 177 0 0 0 0 13 0 0 0 0 1 +1544 1783753030195584600 REFRESH 49 0 0.68286237450255816 3 10 3 10 0 0 125 6 410 3943911 55200 150.07347106933594 0.97130000000000005 179.11420000000001 20160 12105 0 0 983040 737280 737280 737511 748800 81 26 66 51 186 0 0 0 0 6 0 0 0 0 0 +1545 1783753030387339900 REFRESH 58 0 0.68410170922108349 2 12 2 12 0 0 114 13 424 3943933 55200 149.92597961425781 0.97150000000000003 178.3682 20160 12592 0 0 983040 737280 737280 737532 748800 83 26 52 50 213 0 0 0 0 13 0 0 0 0 0 +1546 1783753030614495900 REFRESH 17 0 0.84402252809860223 0 7 0 7 0 0 173 2 415 3943922 55200 151.26220703125 0.97699999999999998 225.94820000000001 20160 13423 0 0 983040 737280 737280 737521 748800 126 26 32 101 130 0 0 0 0 2 0 0 0 0 0 +1547 1783753030817895800 REFRESH 48 0 0.63466348818854923 2 11 2 11 0 0 70 1 427 3943888 55200 148.96853637695312 0.97219999999999995 177.351 20160 12642 0 0 983040 737280 737280 737488 748800 188 25 60 59 95 0 0 0 0 1 0 0 0 0 0 +1548 1783753031009399200 REFRESH 0 0 0.68090772306687319 1 12 1 12 0 0 87 10 423 3943896 55200 149.61561584472656 0.97470000000000001 177.84649999999999 20160 13148 0 0 983040 737280 737280 737495 748800 74 25 43 37 244 0 0 0 0 10 0 0 0 0 0 +1549 1783753031189301200 REFRESH 23 0 0.681017397726986 3 14 3 14 0 0 96 12 415 3943912 55200 149.67910766601562 0.97750000000000004 178.74959999999999 20160 11929 0 0 983040 737280 737280 737512 748800 28 25 58 37 267 0 0 1 0 11 0 0 0 0 0 +1550 1783753031383717900 REFRESH 40 0 0.67429132892710786 3 11 3 11 1 0 104 5 416 3943905 55200 150.26585388183594 0.96989999999999998 179.25290000000001 20160 12773 0 0 983040 737280 737280 737505 748800 147 25 33 97 114 0 0 0 0 5 0 0 0 0 1 +1551 1783753031578219000 REFRESH 38 0 0.68197483943921178 4 14 4 14 0 0 80 10 424 3943928 55200 148.88243103027344 0.97309999999999997 178.1003 20160 12559 0 0 983040 737280 737280 737528 748800 47 26 40 36 275 0 0 0 0 10 0 0 0 0 0 +1552 1783753031787371500 REFRESH 21 0 0.68324282086046195 0 10 0 10 0 0 166 8 416 3943916 55200 150.68672180175781 0.9849 195.67080000000001 20160 12056 0 0 983040 737280 737280 737515 748800 93 26 32 65 200 0 0 0 0 8 0 0 0 0 0 +1553 1783753031982221200 REFRESH 47 0 0.68148937532133447 2 11 2 11 0 0 108 9 420 3943915 55200 149.25018310546875 0.98560000000000003 178.4444 20160 12230 0 0 983040 737280 737280 737515 748800 75 26 45 30 244 0 0 0 0 9 0 0 0 0 0 +1554 1783753032175352200 REFRESH 6 0 0.66538468150333496 3 11 3 11 0 0 113 8 417 3943896 55200 150.91813659667969 0.97519999999999996 178.79259999999999 20160 12246 0 0 983040 737280 737280 737496 748800 26 25 25 25 316 0 0 0 0 8 0 0 0 0 0 +1555 1783753032397047600 REFRESH 44 0 0.69002273596648045 2 7 2 7 0 0 124 9 416 3943929 55200 150.23207092285156 0.97009999999999996 220.56870000000001 20160 12489 0 0 983040 737280 737280 737529 748800 96 26 68 29 197 0 0 0 0 9 0 0 0 0 0 +1556 1783753032602834400 REFRESH 46 0 0.68210982356838801 2 15 2 15 0 0 98 10 415 3943921 55200 149.70573425292969 0.97109999999999996 180.3852 20160 12008 0 0 983040 737280 737280 737521 748800 41 26 47 30 271 0 0 0 0 10 0 0 0 0 0 +1557 1783753032830983100 REFRESH 28 0 0.68119976145870231 1 12 1 12 0 0 142 9 405 3943888 55200 150.11430358886719 0.97350000000000003 179.84190000000001 20160 12163 0 0 983040 737280 737280 737488 748800 141 25 29 29 181 1 0 0 0 8 0 0 0 0 0 +1558 1783753033027188200 REFRESH 41 0 0.68276461977109237 1 10 1 10 0 0 105 8 415 3943917 55200 149.24287414550781 0.97829999999999995 195.04509999999999 20160 12339 0 0 983040 737280 737280 737517 748800 94 26 40 35 220 0 0 0 1 7 0 0 0 0 0 +1559 1783753033227698500 REFRESH 37 0 0.68298447155815079 1 12 1 12 0 0 123 8 418 3943915 55200 149.5203857421875 0.9758 178.0668 20160 12513 0 0 983040 737280 737280 737514 748800 72 26 53 30 237 0 0 0 0 8 0 0 0 0 0 +1560 1783753033423090600 REFRESH 19 0 0.67794865209391997 2 11 2 11 0 0 114 11 416 3943903 55200 149.82144165039062 0.97130000000000005 179.00059999999999 20160 11949 0 0 983040 737280 737280 737503 748800 125 25 26 55 185 0 0 0 0 11 0 0 0 0 0 +1561 1783753033612102100 REFRESH 45 0 0.68432392683864418 2 7 2 7 0 0 122 7 421 3943928 55200 150.37747192382812 0.97299999999999998 187.8185 20160 12531 0 0 983040 737280 737280 737528 748800 141 25 49 49 157 0 0 0 0 7 0 0 0 0 0 +1562 1783753033792326200 REFRESH 57 0 0.67983379307952641 2 12 2 12 0 0 119 8 417 3943925 55200 150.33027648925781 0.98750000000000004 178.97 20160 12334 0 0 983040 737280 737280 737524 748800 100 26 85 77 129 0 0 0 0 8 0 0 0 0 0 +1563 1783753034008595100 REFRESH 18 0 0.68101752829894813 4 15 4 15 0 0 97 12 425 3943936 55200 150.17369079589844 0.99739999999999995 179.51419999999999 20160 12620 0 0 983040 737280 737280 737536 748800 39 25 26 41 294 0 0 0 0 12 0 0 0 0 0 +1564 1783753034202710700 REFRESH 10 0 0.67337468335468476 1 11 1 11 0 0 105 6 424 3943923 55200 148.94387817382812 0.97719999999999996 178.24879999999999 20160 12866 0 0 983040 737280 737280 737523 748800 115 26 50 40 193 0 0 0 0 6 0 0 0 0 0 +1565 1783753034394641700 REFRESH 3 0 0.67689997394182533 2 11 2 10 1 0 113 9 416 3943881 55200 148.02330017089844 0.97140000000000004 176.3262 20160 12732 0 0 983040 737280 737280 737481 748800 137 25 48 66 140 1 0 0 1 7 1 0 0 0 0 +1566 1783753034577195000 REFRESH 2 0 0.68062842850812932 2 12 2 12 0 0 110 13 423 3943918 55200 150.98684692382812 0.9728 181.38589999999999 20160 11936 0 0 983040 737280 737280 737518 748800 35 26 66 77 219 0 0 1 2 10 0 0 0 0 0 +1567 1783753034779103000 REFRESH 26 0 0.67745135880763407 1 13 1 13 0 0 70 7 421 3943885 55200 149.15277099609375 0.97460000000000002 176.85380000000001 20160 13532 0 0 983040 737280 737280 737485 748800 30 25 32 42 292 0 0 1 1 5 0 0 0 0 0 +1568 1783753034971568800 REFRESH 51 0 0.67893168073393595 3 12 3 12 0 0 87 7 418 3943913 55200 148.59161376953125 0.98150000000000004 177.47819999999999 20160 12588 0 0 983040 737280 737280 737513 748800 35 26 134 105 118 0 0 0 0 7 0 0 0 0 0 +1569 1783753035177789900 REFRESH 36 0 0.6842221021947299 3 10 3 10 0 0 103 9 425 3943901 55200 150.29145812988281 0.97499999999999998 179.5881 20160 12052 0 0 983040 737280 737280 737501 748800 148 25 38 55 159 1 0 0 0 8 0 0 0 0 0 +1570 1783753035424606100 REFRESH 11 0 0.73384819569835547 0 8 0 8 0 0 95 9 420 3943915 55200 150.05183410644531 0.97240000000000004 223.9545 20160 12768 0 0 983040 737280 737280 737513 748800 140 25 65 65 125 0 0 0 0 9 0 0 0 0 0 +1571 1783753035626281400 REFRESH 14 0 0.68338202626617306 0 12 0 12 0 0 103 13 418 3943910 55200 149.22650146484375 0.97340000000000004 184.81479999999999 20160 12163 0 0 983040 737280 737280 737510 748800 50 26 28 41 273 0 0 0 0 13 0 0 0 0 0 +1572 1783753035809688000 REFRESH 16 0 0.68715071240755965 2 7 2 7 0 0 163 9 417 3943894 55200 150.57510375976562 0.97230000000000005 182.27199999999999 20160 12645 0 0 983040 737280 737280 737494 748800 32 26 26 237 96 0 0 0 0 9 0 0 0 0 0 +1573 1783753036010511100 REFRESH 25 0 0.67828479220257509 3 11 3 11 0 0 99 7 426 3943930 55200 150.20442199707031 0.98450000000000004 179.80629999999999 20160 11989 0 0 983040 737280 737280 737530 748800 58 25 58 74 211 0 0 0 0 7 0 0 0 0 0 +1574 1783753036244501900 REFRESH 31 0 0.72418682898062925 2 6 2 6 0 0 117 5 432 3943919 55200 150.58944702148438 0.97619999999999996 217.92250000000001 20160 12951 0 0 983040 737280 737280 737519 748800 214 25 27 57 109 0 0 0 0 5 0 0 0 0 0 +1575 1783753036440674700 REFRESH 50 0 0.68411400738361927 2 9 2 9 0 0 115 10 418 3943906 55200 149.12409973144531 0.99670000000000003 181.24590000000001 20160 12456 0 0 983040 737280 737280 737506 748800 127 26 38 63 164 0 0 0 0 10 0 0 0 0 0 +1576 1783753036631057100 REFRESH 34 0 0.67632675300861633 1 13 1 13 0 0 97 6 421 3943910 55200 148.5875244140625 0.97319999999999995 178.27379999999999 20160 13376 0 0 983040 737280 737280 737510 748800 60 25 46 52 238 0 0 0 0 6 0 0 0 0 0 +1577 1783753036812588900 REFRESH 12 0 0.68383355362929132 3 8 3 8 0 0 162 10 411 3943885 55200 149.86239624023438 0.9829 180.2038 20160 12245 0 0 983040 737280 737280 737485 748800 138 26 44 88 115 0 0 0 1 9 0 0 0 0 0 +1578 1783753037954016100 DEPTH 30 1 0.96219376540414436 1 9 1 9 0 0 109 68 2528 23664698 81600 857.37472534179688 5.8518000000000008 1140.171 120960 56457 1 0 5898240 4423680 4423680 4426296 4492800 150 150 162 150 1916 1 0 0 0 67 0 0 0 0 0 +1579 1783753039253141700 DEPTH 56 1 0.84862144109023974 2 5 2 5 0 0 174 26 2563 23664732 81600 859.2882080078125 5.8619000000000003 1297.9164000000001 120960 64756 1 0 5898240 4423680 4423680 4426330 4492800 441 156 168 223 1575 0 0 0 0 26 0 0 0 0 0 +1580 1783753040329071500 DEPTH 8 1 0.84284300805588863 2 5 2 5 0 0 209 18 2548 23664851 81600 869.4859619140625 5.8537999999999997 1074.8081999999999 120960 65839 1 0 5898240 4423680 4423680 4426448 4492800 286 151 152 209 1750 0 0 0 0 18 0 0 0 0 0 +1581 1783753041599752000 DEPTH 13 1 0.83664126169935593 1 6 1 6 0 0 167 30 2500 23664874 81600 857.80372619628906 5.8192000000000004 1269.5571 120960 64508 1 0 5898240 4423680 4423680 4426473 4492800 204 155 168 167 1806 0 0 0 0 30 0 0 0 0 0 +1582 1783753042931161100 DEPTH 17 1 0.8359424912272202 0 7 0 7 0 0 173 27 2528 23664836 81600 858.66600036621094 5.8422999999999998 1303.6149 120960 65117 1 0 5898240 4423680 4423680 4426434 4492800 197 156 150 223 1802 0 0 0 0 27 0 0 0 0 0 +1583 1783753044114285000 DEPTH 33 1 0.73570020100331657 1 7 1 7 0 0 174 40 2528 23664859 81600 868.83622741699219 5.8849 1181.9887000000001 120960 62557 1 0 5898240 4423680 4423680 4426456 4492800 201 156 156 150 1865 2 0 0 0 38 0 0 0 0 0 +1584 1783753045354845100 DEPTH 53 1 0.73210334520361209 0 8 0 8 0 0 134 35 2532 23664777 81600 858.27015686035156 5.8474999999999993 1215.0054 120960 61571 1 0 5898240 4423680 4423680 4426375 4492800 198 156 150 171 1857 0 0 0 0 35 0 0 0 0 0 +1585 1783753046678639900 DEPTH 1 1 0.72344820546698474 1 7 1 7 0 0 118 15 2608 23664854 81600 858.26727294921875 5.8426 1299.6181999999999 120960 61859 1 0 5898240 4423680 4423680 4426454 4492800 395 156 271 292 1494 0 0 0 0 15 0 0 0 0 0 +1586 1783753047870555000 DEPTH 30 1 0.76310412882402245 1 9 1 9 0 0 110 76 2529 23664862 81600 847.1571044921875 5.8605 1151.0237999999999 120960 45597 1 0 5898240 4423680 4423680 4426461 4492800 155 150 162 150 1912 0 0 0 0 76 0 0 0 0 0 +1587 1783753048950461800 DEPTH 3 1 0.75069883586771136 2 10 2 9 1 0 116 88 2612 23664741 81600 848.98097229003906 5.8384999999999989 1078.7944 120960 60451 1 0 5898240 4423680 4423680 4426338 4492800 200 150 152 168 1942 1 0 0 2 85 0 0 0 1 4 +1588 1783753050305168200 DEPTH 9 1 0.71973802441769663 2 6 2 6 0 0 120 4 2619 23664829 81600 864.67800903320312 5.8532999999999999 1296.7491 120960 62393 1 0 5898240 4423680 4423680 4426427 4492800 632 150 352 422 1063 0 0 0 0 4 0 0 0 0 0 +1589 1783753051387225900 DEPTH 7 1 0.71324461652631788 1 12 1 12 0 0 121 65 2542 23664874 81600 858.723876953125 5.8722000000000003 1030.1029000000001 120960 56594 1 0 5898240 4423680 4423680 4426473 4492800 215 150 157 159 1861 0 0 0 0 65 0 0 0 0 0 +1590 1783753052445324000 DEPTH 22 1 0.69873857572247666 3 11 3 11 0 0 116 28 2602 23664783 81600 859.11628723144531 5.8513000000000002 1036.8144 120960 56498 1 0 5898240 4423680 4423680 4426381 4492800 204 150 156 156 1936 0 0 0 0 28 0 0 0 0 0 +1591 1783753053761204300 DEPTH 54 1 0.68820096639675121 1 8 1 8 1 0 111 22 2611 23664874 81600 856.4327392578125 5.8426000000000009 1288.5426 120960 60079 1 0 5898240 4423680 4423680 4426473 4492800 491 150 281 614 1075 1 0 0 0 21 0 0 0 0 1 +1592 1783753055104533000 DEPTH 44 1 0.68787001698193739 2 7 2 7 0 0 125 20 2599 23664837 81600 857.21377563476562 5.8426 1293.5244 120960 59600 1 0 5898240 4423680 4423680 4426437 4492800 182 150 193 165 1909 0 0 0 0 20 0 0 0 0 0 +1593 1783753056403824200 DEPTH 52 1 0.6808619244759091 1 8 1 8 0 0 105 20 2601 23664741 81600 851.38409423828125 5.8652000000000006 1275.9924000000001 120960 59104 1 0 5898240 4423680 4423680 4426340 4492800 611 150 191 896 753 0 0 0 0 20 0 0 0 0 0 +1594 1783753057689232300 DEPTH 56 1 0.74796061742168818 2 5 2 5 0 0 175 27 2563 23664887 81600 847.71456909179688 5.8370999999999995 1284.1962000000001 120960 53647 1 0 5898240 4423680 4423680 4426487 4492800 447 156 168 276 1516 0 0 0 0 27 0 0 0 0 0 +1595 1783753058859244100 DEPTH 30 1 0.74669459848730846 1 9 1 9 0 0 112 72 2527 23664818 81600 843.35208129882812 5.8402000000000003 1168.835 120960 35779 1 0 5898240 4423680 4423680 4426416 4492800 157 150 162 150 1908 0 0 0 0 72 0 0 0 0 0 +1596 1783753059982518100 DEPTH 8 1 0.75264296863306124 2 5 2 5 0 0 209 24 2568 23664858 81600 859.89350891113281 5.8296000000000001 1084.3602000000001 120960 55085 1 0 5898240 4423680 4423680 4426457 4492800 243 150 151 204 1820 0 0 0 0 24 0 0 0 0 0 +1597 1783753061287918500 DEPTH 11 1 0.73184799470259709 0 8 0 8 1 0 96 14 2572 23664916 81600 850.94294738769531 5.8422000000000001 1304.3357000000001 120960 61052 1 0 5898240 4423680 4423680 4426516 4492800 332 150 201 260 1629 0 0 1 0 13 0 0 0 0 1 +1598 1783753062556497500 DEPTH 13 1 0.75731932461320495 1 6 1 6 0 0 167 24 2492 23664785 81600 850.3265380859375 6.1748999999999992 1267.4559999999999 120960 53981 1 0 5898240 4423680 4423680 4426384 4492800 215 156 178 170 1773 0 0 0 0 24 0 0 0 0 0 +1599 1783753063902201100 DEPTH 17 1 0.75644012529739268 0 7 0 7 0 0 173 33 2525 23664931 81600 850.40098571777344 5.8385999999999996 1297.6072999999999 120960 53870 1 0 5898240 4423680 4423680 4426527 4492800 198 156 150 277 1744 0 0 0 0 33 0 0 0 0 0 +1600 1783753065066706000 DEPTH 3 1 0.75834496602713519 2 9 2 9 1 0 118 66 2605 23664888 81600 842.38218688964844 5.8396000000000008 1124.1663000000001 120960 49585 1 0 5898240 4423680 4423680 4426487 4492800 170 150 150 164 1971 0 0 0 0 66 0 0 0 0 1 +1601 1783753066303209400 DEPTH 45 1 0.6805687208161415 2 7 2 7 0 0 122 46 2602 23664814 81600 861.03346252441406 5.8403999999999989 1213.9248 120960 60100 1 0 5898240 4423680 4423680 4426414 4492800 218 150 197 193 1844 1 0 0 0 45 0 0 0 0 0 +1602 1783753067569042600 DEPTH 31 1 0.71878761329653784 2 6 2 6 0 0 117 10 2626 23664906 81600 855.38873291015625 5.8478999999999992 1264.6909000000001 120960 62520 1 0 5898240 4423680 4423680 4426503 4492800 920 150 156 265 1135 0 0 0 0 10 0 0 0 0 0 +1603 1783753068768513800 DEPTH 30 1 0.71268543630190628 1 9 1 9 0 0 112 65 2533 23664807 81600 840.52275085449219 5.8283000000000005 1197.8246999999999 120960 24954 1 0 5898240 4423680 4423680 4426405 4492800 156 150 162 150 1915 0 0 0 0 65 0 0 0 0 0 +1604 1783753069845309000 DEPTH 16 1 0.68486081867879556 2 7 2 7 0 0 165 49 2526 23664783 81600 866.10507202148438 5.8815999999999997 1075.6079999999999 120960 61107 1 0 5898240 4423680 4423680 4426382 4492800 174 156 156 601 1439 0 0 0 0 49 0 0 0 0 0 +1605 1783753070947092500 DEPTH 50 1 0.68230437565502811 2 9 2 9 0 0 115 38 2548 23664830 81600 854.77944946289062 5.8421000000000003 1084.9324999999999 120960 60142 1 0 5898240 4423680 4423680 4426429 4492800 173 150 165 190 1870 0 0 0 0 38 0 0 0 0 0 +1606 1783753071979543100 DEPTH 12 1 0.68126989500649948 3 8 3 8 0 0 167 71 2543 23664894 81600 856.517333984375 5.8542000000000005 1031.2913000000001 120960 57407 1 0 5898240 4423680 4423680 4426493 4492800 214 150 175 217 1787 0 0 0 2 69 0 0 0 0 0 +1607 1783753073231105500 DEPTH 14 1 0.68097005458483695 0 12 0 12 1 0 104 29 2565 23664876 81600 858.89122009277344 5.8285 1231.9005999999999 120960 56901 1 0 5898240 4423680 4423680 4426475 4492800 164 152 156 157 1936 0 0 0 0 29 0 0 0 0 2 +1608 1783753074277611500 DEPTH 15 1 0.68038540166711348 3 12 3 12 0 0 83 33 2540 23664851 81600 857.07020568847656 5.8601000000000001 1030.0409 120960 63131 1 0 5898240 4423680 4423680 4426450 4492800 162 150 150 150 1928 0 0 0 0 33 0 0 0 0 0 +1609 1783753075336990000 DEPTH 36 1 0.68004898540103897 3 10 3 10 1 0 104 21 2595 23664889 81600 857.54960632324219 5.8974000000000002 1033.9025999999999 120960 57451 1 0 5898240 4423680 4423680 4426489 4492800 511 150 184 247 1503 1 0 0 0 20 0 0 0 0 1 +1610 1783753075552916400 REFRESH 27 0 0.67804268073346408 0 14 0 14 0 0 110 14 409 3943941 55200 150.35494995117188 0.97699999999999998 178.9716 20160 11927 0 0 983040 737280 737280 737540 748800 35 26 30 30 288 0 0 0 0 14 0 0 0 0 0 +1611 1783753075734860200 REFRESH 35 0 0.67860851842481473 2 11 2 11 0 0 136 11 417 3943900 55200 150.22079467773438 0.98319999999999996 180.7724 20160 12020 0 0 983040 737280 737280 737499 748800 88 25 30 87 187 0 0 0 0 11 0 0 0 0 0 +1612 1783753075936079500 REFRESH 4 0 0.6395346934529117 1 13 1 13 0 0 47 1 421 3943899 55200 148.96112060546875 0.9708 176.70869999999999 20160 13464 0 0 983040 737280 737280 737499 748800 27 25 36 30 303 0 0 0 0 1 0 0 0 0 0 +1613 1783753076130141400 REFRESH 23 0 0.67739091569650811 3 14 3 14 0 0 97 11 411 3943948 55200 150.05491638183594 0.97499999999999998 178.6224 20160 12003 0 0 983040 737280 737280 737548 748800 28 25 63 41 254 0 0 0 0 11 0 0 0 0 0 +1614 1783753076311722900 REFRESH 12 0 0.5085496375813644 3 8 3 8 0 0 167 8 414 3943910 55200 149.96809387207031 0.96940000000000004 180.51759999999999 20160 12258 0 0 983040 737280 737280 737510 748800 146 26 42 97 103 0 0 0 0 8 0 0 0 0 0 +1615 1783753076508263600 REFRESH 24 0 0.67365210549426768 4 11 4 11 0 0 129 9 410 3943930 55200 150.9171142578125 0.97570000000000001 180.54669999999999 20160 11988 0 0 983040 737280 737280 737529 748800 37 26 46 48 253 0 0 0 0 9 0 0 0 0 0 +1616 1783753076742553300 REFRESH 31 0 0.6086578099054053 2 6 2 6 0 0 117 7 426 3943898 55200 151.17219543457031 0.97189999999999999 217.20910000000001 20160 12836 0 0 983040 737280 737280 737496 748800 222 25 27 60 92 0 0 0 0 7 0 0 0 0 0 +1617 1783753076936249700 REFRESH 40 0 0.66569981085715269 3 11 3 11 0 0 104 8 421 3943936 55200 149.56646728515625 0.97740000000000005 178.33369999999999 20160 12888 0 0 983040 737280 737280 737536 748800 154 25 34 95 113 0 0 0 0 8 0 0 0 0 0 +1618 1783753077130167500 REFRESH 19 0 0.67426010285774174 2 11 2 11 0 0 114 5 414 3943923 55200 150.75021362304688 0.97509999999999997 178.73650000000001 20160 12007 0 0 983040 737280 737280 737523 748800 126 25 26 51 186 1 0 0 0 4 0 0 0 0 0 +1619 1783753077322104900 REFRESH 37 0 0.67840046892541528 1 12 1 12 0 0 123 7 412 3943919 55200 148.78413391113281 0.97889999999999999 176.845 20160 12472 0 0 983040 737280 737280 737519 748800 86 26 61 35 204 0 0 0 0 7 0 0 0 0 0 +1620 1783753077529476500 REFRESH 1 0 0.72300086319536705 1 7 1 7 0 0 119 6 417 3943900 55200 150.82905578613281 0.97460000000000002 205.56720000000001 20160 12883 0 0 983040 737280 737280 737500 748800 129 26 83 75 104 0 0 0 0 6 0 0 0 0 0 +1621 1783753077710443400 REFRESH 22 0 0.69246084746373815 3 11 3 11 0 0 116 6 420 3943909 55200 149.44563293457031 0.98129999999999995 179.83840000000001 20160 12069 0 0 983040 737280 737280 737509 748800 112 25 29 27 227 0 0 0 0 6 0 0 0 0 0 +1622 1783753077947529000 REFRESH 49 0 0.67589868182088164 3 10 3 10 1 0 125 8 414 3943888 55200 150.35971069335938 0.9738 179.21209999999999 20160 12191 0 0 983040 737280 737280 737488 748800 82 26 64 50 192 0 0 0 0 8 0 0 0 0 1 +1623 1783753078127659400 REFRESH 43 0 0.67786452021474863 2 13 2 13 0 0 120 13 415 3943900 55200 150.18701171875 0.97050000000000003 178.9383 20160 12014 0 0 983040 737280 737280 737499 748800 77 26 37 55 220 0 0 0 0 13 0 0 0 0 0 +1624 1783753078315417000 REFRESH 33 0 0.73389346240277886 1 7 1 7 0 0 174 7 415 3943887 55200 151.30905151367188 0.97629999999999995 186.57660000000001 20160 13034 0 0 983040 737280 737280 737487 748800 105 26 45 33 206 0 0 0 0 7 0 0 0 0 0 +1625 1783753078537199600 REFRESH 52 0 0.68081157158178285 1 8 1 8 0 0 105 4 431 3943909 55200 149.32867431640625 0.9819 220.5489 20160 12495 0 0 983040 737280 737280 737509 748800 129 25 33 147 97 0 0 0 0 4 0 0 0 0 0 +1626 1783753078732555400 REFRESH 18 0 0.6772591856243515 4 15 4 15 0 0 98 14 424 3943949 55200 149.83270263671875 0.98160000000000003 179.8005 20160 12496 0 0 983040 737280 737280 737549 748800 31 25 25 35 308 0 0 0 1 13 0 0 0 0 0 +1627 1783753078943849500 REFRESH 21 0 0.67966361090027805 0 10 0 10 0 0 166 11 416 3943930 55200 149.64653015136719 0.97529999999999994 194.74430000000001 20160 12177 0 0 983040 737280 737280 737530 748800 96 26 33 72 189 0 0 0 0 11 0 0 0 0 0 +1628 1783753079167853200 REFRESH 11 0 0.7309663053418024 0 8 0 8 0 0 96 5 417 3943926 55200 149.91360473632812 0.97699999999999998 222.87809999999999 20160 12968 0 0 983040 737280 737280 737526 748800 139 25 62 66 125 0 0 0 0 5 0 0 0 0 0 +1629 1783753079347257500 REFRESH 57 0 0.67350141707876288 2 12 2 12 0 0 119 9 417 3943928 55200 149.47212219238281 0.96919999999999995 178.1514 20160 12253 0 0 983040 737280 737280 737527 748800 102 26 86 74 129 0 0 0 0 9 0 0 0 0 0 +1630 1783753079570583900 REFRESH 56 0 0.84738531617752755 2 5 2 5 0 0 175 8 415 3943933 55200 150.25357055664062 0.97499999999999998 222.06649999999999 20160 13520 0 0 983040 737280 737280 737533 748800 181 26 51 58 99 0 0 0 0 8 0 0 0 0 0 +1631 1783753079763433000 REFRESH 0 0 0.67846555452735213 1 12 1 12 0 0 88 11 425 3943878 55200 149.46473693847656 0.97109999999999996 177.29310000000001 20160 12963 0 0 983040 737280 737280 737477 748800 65 25 44 39 252 0 0 0 2 9 0 0 0 0 0 +1632 1783753079946134100 REFRESH 50 0 0.68040410906581661 2 9 2 9 0 0 116 10 419 3943927 55200 149.41798400878906 0.97940000000000005 181.43520000000001 20160 12019 0 0 983040 737280 737280 737527 748800 136 26 39 58 160 1 0 0 0 9 0 0 0 0 0 +1633 1783753080126168300 REFRESH 15 0 0.6770795104652152 3 12 3 12 0 0 83 11 415 3943924 55200 150.385498046875 0.99729999999999996 178.89169999999999 20160 11899 0 0 983040 737280 737280 737524 748800 32 26 29 25 303 0 0 0 0 11 0 0 0 0 0 +1634 1783753080375602200 REFRESH 48 0 0.62760511834441557 2 11 2 11 0 0 71 4 433 3943880 55200 149.27052307128906 0.97389999999999999 177.79519999999999 20160 12493 0 0 983040 737280 737280 737480 748800 189 25 57 57 105 1 0 0 0 3 0 0 0 0 0 +1635 1783753080556892300 REFRESH 2 0 0.67755386041203092 2 12 2 12 0 0 111 11 422 3943907 55200 150.06413269042969 0.97609999999999997 180.17740000000001 20160 11942 0 0 983040 737280 737280 737507 748800 35 26 67 77 217 0 0 0 1 10 0 0 0 0 0 +1636 1783753080756966900 REFRESH 26 0 0.67284973207823007 1 13 1 13 0 0 72 7 420 3943895 55200 149.8787841796875 0.97460000000000002 177.69 20160 13473 0 0 983040 737280 737280 737495 748800 28 25 30 42 295 0 0 1 1 5 0 0 0 0 0 +1637 1783753080953673500 REFRESH 41 0 0.67926947097728885 1 10 1 10 0 0 105 11 415 3943905 55200 148.56089782714844 0.97670000000000001 195.55109999999999 20160 12354 0 0 983040 737280 737280 737505 748800 94 26 40 39 216 0 0 0 1 10 0 0 0 0 0 +1638 1783753081137568900 REFRESH 8 0 0.84251553035443894 2 5 2 5 0 0 209 3 412 3943903 55200 152.01593017578125 0.97270000000000001 182.79390000000001 20160 13565 0 0 983040 737280 737280 737503 748800 137 26 26 67 156 0 0 0 0 3 0 0 0 0 0 +1639 1783753081341760000 REFRESH 46 0 0.67885848537472304 2 15 2 15 1 0 99 15 412 3943895 55200 149.75981140136719 0.97070000000000001 179.30099999999999 20160 11914 0 0 983040 737280 737280 737495 748800 41 26 46 32 267 0 0 0 0 15 0 0 0 0 1 +1640 1783753081579983900 REFRESH 10 0 0.66862301676580205 1 11 1 11 0 0 105 7 421 3943903 55200 149.56338500976562 0.97270000000000001 178.6634 20160 12824 0 0 983040 737280 737280 737503 748800 97 26 47 39 212 0 0 0 0 7 0 0 0 0 0 +1641 1783753081776376100 REFRESH 39 0 0.67543002849163014 2 12 2 12 0 0 144 14 403 3943934 55200 149.73234558105469 0.97270000000000001 179.53980000000001 20160 12082 0 0 983040 737280 737280 737534 748800 53 26 29 31 264 0 0 0 0 14 0 0 0 0 0 +1642 1783753081966300400 REFRESH 53 0 0.73096258529704516 0 8 0 8 0 0 134 2 420 3943914 55200 151.14035034179688 0.99960000000000004 188.7107 20160 12998 0 0 983040 737280 737280 737514 748800 153 28 27 60 152 0 0 0 0 2 0 0 0 0 0 +1643 1783753082168530300 REFRESH 5 0 0.67034894200651762 2 11 2 11 0 0 90 5 408 3943914 55200 150.12550354003906 0.99609999999999999 177.11490000000001 20160 13863 0 0 983040 737280 737280 737513 748800 53 26 78 103 148 0 0 0 1 4 0 0 0 0 0 +1644 1783753082364604500 REFRESH 34 0 0.67024510408016091 1 13 1 13 1 0 98 14 428 3943932 55200 150.15116882324219 0.97150000000000003 179.51660000000001 20160 13286 0 0 983040 737280 737280 737531 748800 76 25 55 68 204 0 0 1 1 12 0 0 0 0 1 +1645 1783753082573303200 REFRESH 42 0 0.67141568929357331 4 12 4 12 0 0 117 14 416 3943914 55200 149.56031799316406 0.97440000000000004 178.559 20160 12018 0 0 983040 737280 737280 737514 748800 145 25 25 40 181 0 0 0 1 13 0 0 0 0 0 +1646 1783753082753985400 REFRESH 36 0 0.67705523933462897 3 10 3 10 0 0 104 9 430 3943895 55200 149.92282104492188 0.9718 179.2501 20160 12026 0 0 983040 737280 737280 737494 748800 188 25 40 55 122 0 0 0 0 9 0 0 0 0 0 +1647 1783753082939299600 REFRESH 16 0 0.68371203930981783 2 7 2 7 0 0 165 10 417 3943922 55200 151.75987243652344 0.97760000000000002 184.1096 20160 12809 0 0 983040 737280 737280 737521 748800 30 26 26 202 133 0 0 0 0 10 0 0 0 0 0 +1648 1783753083155159600 REFRESH 47 0 0.67810441459669613 2 11 2 11 0 0 109 6 418 3943920 55200 150.66009521484375 0.97899999999999998 178.88939999999999 20160 12248 0 0 983040 737280 737280 737520 748800 71 26 40 30 251 0 0 0 0 6 0 0 0 0 0 +1649 1783753083343560600 REFRESH 45 0 0.68007729219266844 2 7 2 7 0 0 122 9 417 3943903 55200 150.5218505859375 0.97840000000000005 187.18039999999999 20160 12777 0 0 983040 737280 737280 737503 748800 119 25 47 50 176 0 0 0 0 9 0 0 0 0 0 +1650 1783753083546218800 REFRESH 20 0 0.67791598154837007 3 12 3 12 0 0 96 6 424 3943892 55200 149.39852905273438 0.9708 178.44049999999999 20160 11980 0 0 983040 737280 737280 737491 748800 97 26 55 64 182 0 0 0 0 6 0 0 0 0 0 +1651 1783753083742241400 REFRESH 28 0 0.67577215321140427 1 12 1 12 0 0 142 12 406 3943911 55200 150.30989074707031 0.97529999999999994 180.80529999999999 20160 12243 0 0 983040 737280 737280 737511 748800 156 25 30 29 166 0 0 0 0 12 0 0 0 0 0 +1652 1783753083958813900 REFRESH 14 0 0.67863875308694221 0 12 0 12 0 0 104 8 416 3943900 55200 150.74713134765625 0.97430000000000005 185.8459 20160 11974 0 0 983040 737280 737280 737499 748800 68 26 28 41 253 0 0 0 0 8 0 0 0 0 0 +1653 1783753084148879200 REFRESH 6 0 0.6593648743406757 3 11 3 11 0 0 113 5 410 3943920 55200 149.24287414550781 0.97309999999999997 178.54820000000001 20160 12352 0 0 983040 737280 737280 737520 748800 26 25 25 25 309 0 0 0 0 5 0 0 0 0 0 +1654 1783753084342394400 REFRESH 38 0 0.67900855826939188 4 14 4 14 0 0 80 4 423 3943909 55200 149.61357116699219 0.97150000000000003 177.74639999999999 20160 12402 0 0 983040 737280 737280 737509 748800 46 26 38 36 277 0 0 0 0 4 0 0 0 0 0 +1655 1783753084526738000 REFRESH 30 0 0.86122594033870836 1 9 1 9 0 0 112 16 406 3943905 55200 149.56748962402344 0.97419999999999995 183.1875 20160 12161 0 0 983040 737280 737280 737505 748800 78 25 42 34 227 0 0 0 0 16 0 0 0 0 0 +1656 1783753084752017600 REFRESH 17 0 0.83702880238734534 0 7 0 7 0 0 173 7 412 3943919 55200 150.17257690429688 0.97360000000000002 224.1481 20160 13547 0 0 983040 737280 737280 737519 748800 114 26 33 98 141 0 0 0 0 7 0 0 0 0 0 +1657 1783753084973629600 REFRESH 54 0 0.6874797614206265 1 8 1 8 0 0 111 7 419 3943938 55200 150.05783081054688 0.9778 220.393 20160 12277 0 0 983040 737280 737280 737538 748800 155 25 55 109 75 0 0 0 0 7 0 0 0 0 0 +1658 1783753085238075500 REFRESH 44 0 0.68697981297349608 2 7 2 7 0 0 125 7 419 3943901 55200 151.39328002929688 0.97750000000000004 223.12180000000001 20160 12661 0 0 983040 737280 737280 737501 748800 62 26 48 28 255 0 0 0 0 7 0 0 0 0 0 +1659 1783753085432210400 REFRESH 29 0 0.67709031715764456 2 12 2 12 0 0 104 11 414 3943920 55200 149.08006286621094 0.97030000000000005 177.9614 20160 11906 0 0 983040 737280 737280 737520 748800 63 25 58 47 221 0 0 0 0 11 0 0 0 0 0 +1660 1783753085671111300 REFRESH 9 0 0.71393957186246959 2 6 2 6 0 0 120 2 428 3943901 55200 150.94169616699219 0.97599999999999998 216.71250000000001 20160 12769 0 0 983040 737280 737280 737501 748800 138 25 76 77 112 0 0 0 0 2 0 0 0 0 0 +1661 1783753085853312100 REFRESH 3 0 0.85755398266340688 2 9 2 9 0 0 118 11 413 3943891 55200 148.90086364746094 0.97140000000000004 181.10310000000001 20160 12526 0 0 983040 737280 737280 737491 748800 174 25 43 66 105 0 0 0 0 11 0 0 0 0 0 +1662 1783753086049178500 REFRESH 32 0 0.67988097577124784 2 14 2 14 0 0 114 13 419 3943895 55200 150.27302551269531 0.99850000000000005 180.12180000000001 20160 12365 0 0 983040 737280 737280 737494 748800 154 25 37 32 171 0 0 1 0 12 0 0 0 0 0 +1663 1783753086243446100 REFRESH 58 0 0.68003895156156147 2 12 2 12 0 0 114 9 417 3943937 55200 150.23103332519531 0.9728 178.10300000000001 20160 12663 0 0 983040 737280 737280 737536 748800 86 26 53 55 197 0 0 0 0 9 0 0 0 0 0 +1664 1783753086439204000 REFRESH 7 0 0.70644152361363599 1 12 1 12 0 0 121 10 417 3943908 55200 150.59762573242188 0.97809999999999997 180.44380000000001 20160 11983 0 0 983040 737280 737280 737507 748800 113 26 29 28 221 0 0 0 0 10 0 0 0 0 0 +1665 1783753086635112300 REFRESH 25 0 0.67323905769296877 3 11 3 11 0 0 101 12 420 3943906 55200 149.67295837402344 0.97250000000000003 179.45769999999999 20160 12026 0 0 983040 737280 737280 737505 748800 60 25 60 76 199 0 0 0 0 12 0 0 0 0 0 +1666 1783753086831296000 REFRESH 13 0 0.83813973177425893 1 6 1 6 0 0 167 4 414 3943928 55200 150.43685913085938 0.97770000000000001 195.03 20160 13628 0 0 983040 737280 737280 737528 748800 150 26 61 74 103 0 0 0 0 4 0 0 0 0 0 +1667 1783753087034566100 REFRESH 51 0 0.67406851712305205 3 12 3 12 1 0 87 13 423 3943931 55200 149.60025024414062 0.98170000000000002 178.27699999999999 20160 12585 0 0 983040 737280 737280 737531 748800 32 26 127 93 145 0 0 1 0 12 0 0 0 0 1 +1668 1783753087228036200 REFRESH 55 0 0.67982051572747582 1 15 1 15 0 0 123 13 413 3943928 55200 149.6494140625 0.98529999999999995 177.53999999999999 20160 11922 0 0 983040 737280 737280 737528 748800 37 26 30 49 271 0 0 0 0 13 0 0 0 0 0 +1669 1783753088522793000 DEPTH 56 1 0.84478066331533697 2 5 2 5 0 0 177 23 2561 23664866 81600 858.50318908691406 5.8651 1293.5217 120960 65554 1 0 5898240 4423680 4423680 4426465 4492800 424 156 168 216 1597 0 0 0 0 23 0 0 0 0 0 +1670 1783753089602024800 DEPTH 8 1 0.83523748124857167 2 5 2 5 0 0 210 30 2563 23664885 81600 868.29086303710938 5.8296999999999999 1078.1095 120960 66177 1 0 5898240 4423680 4423680 4426484 4492800 295 151 153 182 1782 0 0 0 0 30 0 0 0 0 0 +1671 1783753090860714000 DEPTH 30 1 0.75141233246088557 1 9 1 9 1 0 114 65 2523 23664672 81600 855.4063720703125 5.9939 1219.1538 120960 57375 1 0 5898240 4423680 4423680 4426271 4492800 156 150 162 150 1905 0 0 0 2 63 0 0 0 0 1 +1672 1783753092043757600 DEPTH 33 1 0.72916495825350103 1 7 1 7 0 0 175 37 2533 23664884 81600 867.01329040527344 5.8440000000000003 1181.9003 120960 63827 1 0 5898240 4423680 4423680 4426483 4492800 203 155 156 153 1866 0 0 0 0 37 0 0 0 0 0 +1673 1783753093348066000 DEPTH 11 1 0.7250475006109609 0 8 0 8 1 0 96 14 2552 23664763 81600 852.14389038085938 5.9007000000000005 1303.1161999999999 120960 61637 1 0 5898240 4423680 4423680 4426363 4492800 368 150 225 257 1552 0 0 0 0 14 0 0 0 0 1 +1674 1783753094649264000 DEPTH 53 1 0.72159530320445353 0 8 0 8 0 0 134 42 2521 23664843 81600 859.1053466796875 5.8224999999999998 1240.6005 120960 61497 1 0 5898240 4423680 4423680 4426442 4492800 186 156 150 177 1852 0 0 0 0 42 0 0 0 0 0 +1675 1783753095992994300 DEPTH 1 1 0.7185856138768052 1 7 1 7 0 0 119 17 2606 23664794 81600 859.01617431640625 5.8235000000000001 1298.6177 120960 62417 1 0 5898240 4423680 4423680 4426394 4492800 403 156 270 298 1479 1 0 0 0 16 0 0 0 0 0 +1676 1783753097295354700 DEPTH 31 1 0.7157113258843899 2 6 2 6 0 0 117 12 2625 23664918 81600 856.02510070800781 5.8921000000000001 1274.8989999999999 120960 61869 1 0 5898240 4423680 4423680 4426518 4492800 926 150 168 261 1120 0 0 0 0 12 0 0 0 0 0 +1677 1783753098600213200 DEPTH 17 1 0.79424055426569284 0 7 0 7 0 0 173 33 2524 23664904 81600 859.17274475097656 5.8300000000000001 1303.7329999999999 120960 65648 1 0 5898240 4423680 4423680 4426503 4492800 197 156 150 228 1793 0 0 0 0 33 0 0 0 0 0 +1678 1783753099744503800 DEPTH 3 1 0.75807624926874817 2 9 2 9 1 0 121 70 2594 23664758 81600 850.02922058105469 5.8995000000000006 1143.1735000000001 120960 59546 1 0 5898240 4423680 4423680 4426357 4492800 210 150 150 167 1917 1 0 0 0 69 0 0 0 0 1 +1679 1783753101028353200 DEPTH 13 1 0.71243825811771722 1 6 1 6 0 0 168 27 2497 23664824 81600 858.26589965820312 5.8197999999999999 1266.587 120960 65365 1 0 5898240 4423680 4423680 4426424 4492800 210 156 175 167 1789 0 0 0 0 27 0 0 0 0 0 +1680 1783753102061512500 DEPTH 22 1 0.6828254297923122 3 11 3 11 0 0 116 28 2608 23664912 81600 858.53062438964844 5.8792 1031.9965 120960 57129 1 0 5898240 4423680 4423680 4426512 4492800 231 150 152 156 1919 0 0 0 0 28 0 0 0 0 0 +1681 1783753103140153100 DEPTH 16 1 0.6824472835009463 2 7 2 7 0 0 166 40 2524 23664697 81600 865.15777587890625 5.8442999999999996 1077.5428999999999 120960 61293 1 0 5898240 4423680 4423680 4426295 4492800 170 156 156 633 1409 0 0 0 0 40 0 0 0 0 0 +1682 1783753104265453700 DEPTH 50 1 0.67865783541032787 2 9 2 9 0 0 116 38 2547 23664864 81600 856.40318298339844 5.8529 1099.2456 120960 58829 1 0 5898240 4423680 4423680 4426460 4492800 172 150 165 197 1863 1 0 0 0 37 0 0 0 0 0 +1683 1783753105553886100 DEPTH 45 1 0.6783634975714643 2 7 2 7 0 0 122 32 2633 23664859 81600 863.67887878417969 5.8591999999999995 1248.1473000000001 120960 60523 1 0 5898240 4423680 4423680 4426457 4492800 201 150 189 161 1932 0 0 0 0 32 0 0 0 0 0 +1684 1783753106869495200 DEPTH 21 1 0.67810017318989546 0 10 0 10 1 0 167 45 2563 23664790 81600 861.15907287597656 5.8517000000000001 1283.6686 120960 57696 1 0 5898240 4423680 4423680 4426389 4492800 299 150 154 241 1719 2 0 0 1 42 0 0 0 1 1 +1685 1783753108201229700 DEPTH 56 1 0.75419327157509508 2 5 2 5 0 0 179 26 2557 23664896 81600 850.14712524414062 5.8365 1288.7518 120960 54104 1 0 5898240 4423680 4423680 4426496 4492800 453 156 168 266 1514 0 0 0 0 26 0 0 0 0 0 +1686 1783753109318599600 DEPTH 8 1 0.74548714657863757 2 5 2 5 0 0 210 25 2565 23664870 81600 862.24794006347656 5.8357000000000001 1085.5173 120960 54850 1 0 5898240 4423680 4423680 4426470 4492800 254 151 151 192 1817 0 0 0 0 25 0 0 0 0 0 +1687 1783753110572413400 DEPTH 30 1 0.73857876678901946 1 9 1 9 0 0 116 50 2533 23664848 81600 849.02293395996094 5.8488999999999995 1204.7556999999999 120960 45805 1 0 5898240 4423680 4423680 4426447 4492800 156 150 162 150 1915 0 0 0 0 50 0 0 0 0 0 +1688 1783753111902377800 DEPTH 9 1 0.70625564189812373 2 6 2 6 0 0 120 5 2617 23664846 81600 864.74510192871094 5.8706999999999994 1299.1074000000001 120960 61801 1 0 5898240 4423680 4423680 4426445 4492800 640 150 355 376 1096 0 0 0 0 5 0 0 0 0 0 +1689 1783753113191021000 DEPTH 54 1 0.68340098169525954 1 8 1 8 0 0 111 14 2616 23664854 81600 855.88883972167969 5.8576000000000006 1287.4337 120960 59219 1 0 5898240 4423680 4423680 4426451 4492800 505 150 271 587 1103 0 0 0 0 14 0 0 0 0 0 +1690 1783753114492465700 DEPTH 44 1 0.68275649513012326 2 7 2 7 0 0 126 15 2592 23664862 81600 858.1162109375 5.8184000000000005 1299.4793 120960 60677 1 0 5898240 4423680 4423680 4426459 4492800 191 150 197 158 1896 0 0 0 0 15 0 0 0 0 0 +1691 1783753115776422400 DEPTH 41 1 0.67767458695363514 1 10 1 10 0 0 106 32 2567 23664851 81600 849.37162780761719 5.8279999999999994 1250.3114 120960 59534 1 0 5898240 4423680 4423680 4426450 4492800 256 156 169 182 1804 2 0 0 0 30 0 0 0 0 0 +1692 1783753116834052100 DEPTH 35 1 0.6758554501081746 2 11 2 11 0 0 139 78 2546 23664874 81600 858.22366333007812 5.8474000000000004 1034.0613000000001 120960 57369 1 0 5898240 4423680 4423680 4426473 4492800 176 150 155 196 1869 0 1 0 0 77 0 0 0 0 0 +1693 1783753118131834600 DEPTH 17 1 0.74459357739902254 0 7 0 7 0 0 173 31 2532 23664895 81600 850.98497009277344 5.8555000000000001 1296.6697999999999 120960 54448 1 0 5898240 4423680 4423680 4426493 4492800 199 156 150 245 1782 0 0 0 0 31 0 0 0 0 0 +1694 1783753119305955600 DEPTH 3 1 0.73726364796223065 2 9 2 9 1 0 123 63 2591 23664828 81600 841.63859558105469 5.8287000000000004 1172.9971 120960 48504 1 0 5898240 4423680 4423680 4426427 4492800 171 150 150 168 1952 1 0 0 0 62 0 0 0 0 2 +1695 1783753120566064900 DEPTH 13 1 0.74321036592609191 1 6 1 6 0 0 169 35 2491 23664830 81600 851.3624267578125 5.8366999999999996 1258.9867999999999 120960 53540 1 0 5898240 4423680 4423680 4426429 4492800 212 153 177 175 1774 0 0 0 0 35 0 0 0 0 0 +1696 1783753121655419600 DEPTH 7 1 0.69973730893193853 1 12 1 12 1 0 123 60 2560 23664920 81600 860.19526672363281 5.8350000000000009 1031.8869999999999 120960 56594 1 0 5898240 4423680 4423680 4426515 4492800 197 150 158 154 1901 0 0 0 0 60 0 0 0 0 2 +1697 1783753122850264800 DEPTH 33 1 0.72760036333802369 1 7 1 7 0 0 175 28 2532 23664924 81600 856.20657348632812 5.8529 1193.7179000000001 120960 53073 1 0 5898240 4423680 4423680 4426522 4492800 192 155 156 150 1879 0 0 0 0 28 0 0 0 0 0 +1698 1783753123898804100 DEPTH 55 1 0.67632700711693949 1 15 1 15 1 0 124 26 2587 23664873 81600 858.75588989257812 5.8577000000000012 1032.9487999999999 120960 58912 1 0 5898240 4423680 4423680 4426473 4492800 173 150 157 246 1861 0 0 4 0 22 0 0 0 0 1 +1699 1783753124987666800 DEPTH 32 1 0.67616251698712104 2 14 2 14 1 0 114 25 2585 23664789 81600 856.70527648925781 5.8425000000000002 1028.5977 120960 58984 1 0 5898240 4423680 4423680 4426389 4492800 385 150 186 189 1675 0 0 0 0 25 0 0 0 0 1 +1700 1783753126055584200 DEPTH 0 1 0.67589875640985175 1 12 1 12 1 0 88 28 2569 23664869 81600 852.13337707519531 5.8462000000000005 1020.3096 120960 61916 1 0 5898240 4423680 4423680 4426467 4492800 250 150 205 194 1770 0 0 1 0 27 0 0 0 0 1 +1701 1783753126248897300 REFRESH 23 0 0.67409930060616619 3 14 3 14 0 0 97 9 411 3943913 55200 148.55679321289062 0.97489999999999999 177.30520000000001 20160 11904 0 0 983040 737280 737280 737513 748800 28 25 71 41 246 0 0 0 0 9 0 0 0 0 0 +1702 1783753126445264100 REFRESH 28 0 0.67134739044807157 1 12 1 12 0 0 142 9 408 3943910 55200 150.40716552734375 0.97529999999999994 180.59440000000001 20160 12101 0 0 983040 737280 737280 737510 748800 145 25 30 29 179 0 0 0 0 9 0 0 0 0 0 +1703 1783753126639676800 REFRESH 40 0 0.66072097944570174 3 11 3 11 0 0 104 8 417 3943903 55200 149.78764343261719 0.98150000000000004 178.27699999999999 20160 12701 0 0 983040 737280 737280 737503 748800 146 25 33 90 123 0 0 0 0 8 0 0 0 0 0 +1704 1783753126858363200 REFRESH 31 0 0.71568538366936862 2 6 2 6 0 0 117 8 430 3943924 55200 151.19155883789062 0.98599999999999999 217.5521 20160 13189 0 0 983040 737280 737280 737524 748800 217 25 29 60 99 0 0 0 0 8 0 0 0 0 0 +1705 1783753127059858100 REFRESH 5 0 0.66381126279598912 2 11 2 11 0 0 90 6 404 3943916 55200 148.91416931152344 0.97870000000000001 176.22810000000001 20160 13786 0 0 983040 737280 737280 737516 748800 56 26 78 107 137 0 0 0 0 6 0 0 0 0 0 +1706 1783753127293495300 REFRESH 56 0 0.80358537604192315 2 5 2 5 0 0 179 11 417 3943915 55200 150.61196899414062 0.98050000000000004 223.00290000000001 20160 13433 0 0 983040 737280 737280 737515 748800 181 26 53 59 98 0 0 0 0 11 0 0 0 0 0 +1707 1783753127484850800 REFRESH 39 0 0.67260888478553604 2 12 2 12 0 0 146 17 405 3943909 55200 149.13945007324219 0.96919999999999995 178.56120000000001 20160 11903 0 0 983040 737280 737280 737509 748800 53 26 30 31 265 0 0 0 0 17 0 0 0 0 0 +1708 1783753127681873800 REFRESH 37 0 0.67329360881040046 1 12 1 12 0 0 123 12 418 3943896 55200 149.49888610839844 0.97570000000000001 181.25190000000001 20160 12328 0 0 983040 737280 737280 737496 748800 94 26 67 32 199 0 0 0 0 12 0 0 0 0 0 +1709 1783753127876897000 REFRESH 12 0 0.67460981674409504 3 8 3 8 0 0 167 7 412 3943939 55200 148.89164733886719 0.97809999999999997 178.9453 20160 12201 0 0 983040 737280 737280 737539 748800 134 26 39 98 115 0 0 0 0 7 0 0 0 0 0 +1710 1783753128071936600 REFRESH 47 0 0.67151909943601207 2 11 2 11 0 0 110 9 420 3943910 55200 150.32627868652344 0.97789999999999999 179.46960000000001 20160 12175 0 0 983040 737280 737280 737510 748800 93 26 50 32 219 0 0 1 0 8 0 0 0 0 0 +1711 1783753128280496500 REFRESH 1 0 0.71832831418756449 1 7 1 7 0 0 119 9 417 3943922 55200 150.21363830566406 0.98209999999999997 207.4992 20160 12895 0 0 983040 737280 737280 737522 748800 121 26 78 70 122 0 0 0 0 9 0 0 0 0 0 +1712 1783753128484174600 REFRESH 42 0 0.66798738146611492 4 12 4 12 0 0 117 12 412 3943906 55200 149.60639953613281 0.98429999999999995 178.38800000000001 20160 12070 0 0 983040 737280 737280 737506 748800 145 25 25 30 187 0 0 0 0 12 0 0 0 0 0 +1713 1783753128684503700 REFRESH 21 0 0.67639210488111723 0 10 0 10 0 0 167 7 416 3943932 55200 150.21363830566406 0.98040000000000005 199.08680000000001 20160 12373 0 0 983040 737280 737280 737532 748800 97 26 30 70 193 0 0 0 0 7 0 0 0 0 0 +1714 1783753128879721600 REFRESH 49 0 0.67152585273441368 3 10 3 10 0 0 125 10 416 3943889 55200 150.16032409667969 0.97640000000000005 179.98330000000001 20160 12093 0 0 983040 737280 737280 737489 748800 92 26 69 59 170 0 0 0 0 10 0 0 0 0 0 +1715 1783753129104520200 REFRESH 54 0 0.68250844079228346 1 8 1 8 0 0 111 7 423 3943918 55200 149.74464416503906 0.98240000000000005 223.55449999999999 20160 12909 0 0 983040 737280 737280 737518 748800 155 25 53 115 75 0 0 0 0 7 0 0 0 0 0 +1716 1783753129310299600 REFRESH 29 0 0.67458502183852764 2 12 2 12 0 0 106 10 420 3943921 55200 150.27900695800781 0.99490000000000001 181.3064 20160 11948 0 0 983040 737280 737280 737521 748800 70 25 60 47 218 0 0 0 0 10 0 0 0 0 0 +1717 1783753129502167000 REFRESH 45 0 0.6776533138917582 2 7 2 7 0 0 122 4 422 3943903 55200 151.02053833007812 0.98509999999999998 190.67830000000001 20160 12818 0 0 983040 737280 737280 737503 748800 113 25 47 50 187 0 0 0 0 4 0 0 0 0 0 +1718 1783753129748736600 REFRESH 11 0 0.72456938503933344 0 8 0 8 0 0 96 2 419 3943913 55200 150.16227722167969 1.0002 229.3364 20160 12925 0 0 983040 737280 737280 737513 748800 132 25 59 60 143 0 0 0 0 2 0 0 0 0 0 +1719 1783753129939416100 REFRESH 4 0 0.6328184540086208 1 13 1 13 1 0 48 3 422 3943907 55200 147.45394897460938 0.97230000000000005 174.59030000000001 20160 13327 0 0 983040 737280 737280 737507 748800 27 25 36 30 304 0 0 0 0 3 0 0 0 0 1 +1720 1783753130132635400 REFRESH 20 0 0.67102707557652397 3 12 3 12 0 0 96 7 422 3943891 55200 149.26336669921875 0.97430000000000005 177.94210000000001 20160 12002 0 0 983040 737280 737280 737491 748800 89 26 57 60 190 0 0 1 0 6 0 0 0 0 0 +1721 1783753130380774500 REFRESH 52 0 0.67507371537666994 1 8 1 8 0 0 105 4 431 3943904 55200 150.002685546875 0.98009999999999997 222.22069999999999 20160 12317 0 0 983040 737280 737280 737504 748800 133 25 34 153 86 0 0 0 0 4 0 0 0 0 0 +1722 1783753130577871200 REFRESH 2 0 0.67470575535963651 2 12 2 12 0 0 113 10 419 3943879 55200 150.6375732421875 0.97370000000000001 180.87970000000001 20160 11823 0 0 983040 737280 737280 737479 748800 35 26 70 85 203 0 0 1 0 9 0 0 0 0 0 +1723 1783753130769735100 REFRESH 51 0 0.67201789866503681 3 12 3 12 0 0 87 4 419 3943903 55200 148.29875183105469 0.97809999999999997 176.56110000000001 20160 12479 0 0 983040 737280 737280 737503 748800 38 26 137 109 109 0 0 0 0 4 0 0 0 0 0 +1724 1783753130964739600 REFRESH 26 0 0.66862876334590893 1 13 1 13 0 0 73 5 424 3943896 55200 149.64530944824219 0.97840000000000005 177.81890000000001 20160 13272 0 0 983040 737280 737280 737496 748800 31 25 33 44 291 0 0 1 0 4 0 0 0 0 0 +1725 1783753131179007800 REFRESH 18 0 0.67395950802584559 4 15 4 15 0 0 98 22 429 3943912 55200 150.88742065429688 0.97940000000000005 180.3426 20160 12423 0 0 983040 737280 737280 737512 748800 30 25 25 31 318 0 0 0 0 22 0 0 0 0 0 +1726 1783753131373209000 REFRESH 48 0 0.62405877326460435 2 11 2 11 0 0 73 3 429 3943911 55200 149.82963562011719 0.97170000000000001 178.5086 20160 12348 0 0 983040 737280 737280 737510 748800 172 25 54 55 123 0 0 0 0 3 0 0 0 0 0 +1727 1783753131566800700 REFRESH 6 0 0.6505740204828121 3 11 3 11 0 0 113 6 413 3943911 55200 149.88287353515625 0.97909999999999997 178.4032 20160 12423 0 0 983040 737280 737280 737510 748800 26 25 25 25 312 0 0 0 0 6 0 0 0 0 0 +1728 1783753131761068100 REFRESH 24 0 0.67057261074203889 4 11 4 11 0 0 129 5 409 3943934 55200 149.72108459472656 0.99990000000000001 179.03309999999999 20160 11849 0 0 983040 737280 737280 737533 748800 33 26 37 43 270 0 0 0 0 5 0 0 0 0 0 +1729 1783753131955694600 REFRESH 19 0 0.66616892164672648 2 11 2 11 0 0 114 11 418 3943907 55200 149.58181762695312 0.97430000000000005 178.49299999999999 20160 12008 0 0 983040 737280 737280 737507 748800 110 25 26 46 211 0 0 0 0 11 0 0 0 0 0 +1730 1783753132181489700 REFRESH 17 0 0.83492873902603471 0 7 0 7 0 0 173 9 412 3943913 55200 150.6324462890625 0.97289999999999999 224.69470000000001 20160 13337 0 0 983040 737280 737280 737513 748800 141 26 36 105 104 0 0 0 0 9 0 0 0 0 0 +1731 1783753132368410400 REFRESH 8 0 0.83577715445723677 2 5 2 5 0 0 210 5 416 3943911 55200 152.30361938476562 0.98350000000000004 185.76150000000001 20160 13607 0 0 983040 737280 737280 737511 748800 147 26 59 72 112 0 0 0 0 5 0 0 0 0 0 +1732 1783753132573127400 REFRESH 27 0 0.67573267126955483 0 14 0 14 0 0 112 15 413 3943945 55200 150.64166259765625 0.96919999999999995 179.8939 20160 11880 0 0 983040 737280 737280 737544 748800 33 26 26 28 300 0 0 0 0 15 0 0 0 0 0 +1733 1783753132758638700 REFRESH 14 0 0.67461422353827638 0 12 0 12 0 0 104 5 416 3943946 55200 149.54086303710938 0.97829999999999995 184.3228 20160 11936 0 0 983040 737280 737280 737546 748800 68 26 28 41 253 0 0 0 0 5 0 0 0 0 0 +1734 1783753132974681100 REFRESH 53 0 0.72120514011879044 0 8 0 8 0 0 134 4 417 3943920 55200 151.83564758300781 0.97370000000000001 190.0932 20160 12951 0 0 983040 737280 737280 737520 748800 144 28 27 56 162 0 0 0 0 4 0 0 0 0 0 +1735 1783753133154937300 REFRESH 55 0 0.67298631112410479 1 15 1 15 0 0 124 11 409 3943914 55200 150.26486206054688 0.97619999999999996 179.0333 20160 12360 0 0 983040 737280 737280 737514 748800 43 26 31 53 256 0 0 0 0 11 0 0 0 0 0 +1736 1783753133357367500 REFRESH 58 0 0.67478409190684119 2 12 2 12 0 0 114 3 422 3943893 55200 150.44061279296875 0.97119999999999995 178.6377 20160 12642 0 0 983040 737280 737280 737493 748800 89 26 59 63 185 0 0 0 0 3 0 0 0 0 0 +1737 1783753133537983200 REFRESH 7 0 0.69372049589234286 1 12 1 12 1 0 123 8 421 3943914 55200 149.56953430175781 0.97409999999999997 179.49809999999999 20160 12089 0 0 983040 737280 737280 737514 748800 130 26 29 31 205 0 0 0 0 8 0 0 0 0 1 +1738 1783753133739773100 REFRESH 41 0 0.67595265394426884 1 10 1 10 0 0 106 5 416 3943931 55200 150.30067443847656 0.97499999999999998 200.626 20160 11992 0 0 983040 737280 737280 737529 748800 105 26 44 36 205 0 0 0 0 5 0 0 0 0 0 +1739 1783753133917029900 REFRESH 0 0 0.67309709538139484 1 12 1 12 0 0 88 6 423 3943897 55200 148.14413452148438 0.97640000000000005 176.09829999999999 20160 12614 0 0 983040 737280 737280 737497 748800 105 25 50 39 204 0 0 0 0 6 0 0 0 0 0 +1740 1783753134114935900 REFRESH 13 0 0.83396807648205384 1 6 1 6 0 0 169 6 415 3943910 55200 151.68307495117188 0.97960000000000003 196.7234 20160 13449 0 0 983040 737280 737280 737510 748800 150 26 62 74 103 0 0 0 0 6 0 0 0 0 0 +1741 1783753134320372800 REFRESH 36 0 0.67359449441356789 3 10 3 10 0 0 105 14 431 3943919 55200 150.70822143554688 0.97389999999999999 180.16829999999999 20160 11943 0 0 983040 737280 737280 737519 748800 177 25 37 51 141 0 0 0 0 14 0 0 0 0 0 +1742 1783753134518721900 REFRESH 43 0 0.67513190151333691 2 13 2 13 0 0 120 13 412 3943926 55200 150.05389404296875 0.98129999999999995 181.63059999999999 20160 12044 0 0 983040 737280 737280 737526 748800 79 26 40 56 211 0 0 0 0 13 0 0 0 0 0 +1743 1783753134742662100 REFRESH 44 0 0.68193577763981006 2 7 2 7 0 0 126 5 425 3943893 55200 149.712890625 0.97499999999999998 222.76249999999999 20160 12874 0 0 983040 737280 737280 737493 748800 83 26 57 29 230 0 0 0 0 5 0 0 0 0 0 +1744 1783753134930931400 REFRESH 32 0 0.67267534003772 2 14 2 14 0 0 114 8 426 3943916 55200 149.59103393554688 0.97599999999999998 177.9716 20160 12355 0 0 983040 737280 737280 737516 748800 178 25 37 32 154 0 0 0 0 8 0 0 0 0 0 +1745 1783753135115502200 REFRESH 3 0 0.81724062084739613 2 9 2 9 0 0 123 13 417 3943909 55200 148.78720092773438 0.9778 183.0394 20160 11878 0 0 983040 737280 737280 737509 748800 191 25 35 58 108 0 0 0 0 13 0 0 0 0 0 +1746 1783753135302496900 REFRESH 30 0 0.81194677745239763 1 9 1 9 0 0 116 9 412 3943901 55200 150.13069152832031 0.97499999999999998 185.8304 20160 12243 0 0 983040 737280 737280 737500 748800 81 25 43 30 233 0 0 0 0 9 0 0 0 0 0 +1747 1783753135487343900 REFRESH 16 0 0.68137380948710369 2 7 2 7 0 0 166 5 417 3943920 55200 151.45881652832031 0.97230000000000005 183.72040000000001 20160 12830 0 0 983040 737280 737280 737520 748800 32 26 26 235 98 0 0 0 0 5 0 0 0 0 0 +1748 1783753135696073400 REFRESH 57 0 0.6690191198604506 2 12 2 12 0 0 119 8 415 3943927 55200 149.85328674316406 0.98009999999999997 178.68629999999999 20160 12279 0 0 983040 737280 737280 737526 748800 102 26 86 80 121 0 0 0 0 8 0 0 0 0 0 +1749 1783753135878157600 REFRESH 50 0 0.677001620459734 2 9 2 9 0 0 116 10 416 3943924 55200 148.73599243164062 0.97689999999999999 180.86500000000001 20160 13096 0 0 983040 737280 737280 737524 748800 142 26 36 52 160 0 0 0 0 10 0 0 0 0 0 +1750 1783753136081759700 REFRESH 15 0 0.67469882135637149 3 12 3 12 0 0 83 6 418 3943874 55200 150.11328125 0.97540000000000004 179.11420000000001 20160 11834 0 0 983040 737280 737280 737474 748800 33 26 29 25 305 0 0 0 0 6 0 0 0 0 0 +1751 1783753136300588500 REFRESH 9 0 0.70242644742742211 2 6 2 6 0 0 120 2 433 3943931 55200 151.5018310546875 0.97360000000000002 217.7098 20160 13035 0 0 983040 737280 737280 737531 748800 139 25 81 71 117 0 0 0 0 2 0 0 0 0 0 +1752 1783753136495061000 REFRESH 38 0 0.67002333667945091 4 14 4 14 0 0 80 11 418 3943907 55200 149.94227600097656 0.97289999999999999 178.42189999999999 20160 12244 0 0 983040 737280 737280 737507 748800 52 26 42 37 261 0 0 0 0 11 0 0 0 0 0 +1753 1783753136689097300 REFRESH 10 0 0.66543208001528209 1 11 1 11 1 0 105 5 427 3943918 55200 148.72575378417969 0.97060000000000002 178.41470000000001 20160 12946 0 0 983040 737280 737280 737518 748800 123 26 53 41 184 0 0 0 0 5 0 0 0 0 1 +1754 1783753136890130000 REFRESH 33 0 0.72625878892355955 1 7 1 7 0 0 175 8 416 3943893 55200 151.193603515625 0.97430000000000005 185.0403 20160 13130 0 0 983040 737280 737280 737493 748800 104 26 45 33 208 0 0 0 0 8 0 0 0 0 0 +1755 1783753137081806200 REFRESH 34 0 0.66891306994817623 1 13 1 13 0 0 98 7 426 3943924 55200 148.49945068359375 0.9778 176.09909999999999 20160 13396 0 0 983040 737280 737280 737524 748800 70 25 51 66 214 0 0 0 0 7 0 0 0 0 0 +1756 1783753137276574400 REFRESH 46 0 0.67601343431989036 2 15 2 15 0 0 100 14 416 3943911 55200 149.43128967285156 0.97499999999999998 178.5127 20160 11809 0 0 983040 737280 737280 737511 748800 41 26 48 31 270 0 0 0 1 13 0 0 0 0 0 +1757 1783753137457081900 REFRESH 35 0 0.67301064316160852 2 11 2 11 0 0 140 13 421 3943906 55200 150.07334899902344 0.97150000000000003 179.33410000000001 20160 11957 0 0 983040 737280 737280 737505 748800 95 25 28 82 191 0 0 0 0 13 0 0 0 0 0 +1758 1783753137661836900 REFRESH 25 0 0.67145133460855999 3 11 3 11 0 0 101 10 422 3943908 55200 150.62527465820312 0.97889999999999999 180.12960000000001 20160 11851 0 0 983040 737280 737280 737508 748800 61 25 62 76 198 0 0 0 0 10 0 0 0 0 0 +1759 1783753137857354100 REFRESH 22 0 0.6781018008100721 3 11 3 11 0 0 116 8 422 3943901 55200 149.21522521972656 0.99350000000000005 179.1738 20160 12154 0 0 983040 737280 737280 737501 748800 127 25 29 27 214 0 0 0 0 8 0 0 0 0 0 +1760 1783753139191459800 DEPTH 56 1 0.84312676893908289 2 5 2 5 0 0 179 30 2549 23664956 81600 857.30180358886719 5.837299999999999 1291.8823 120960 64862 1 0 5898240 4423680 4423680 4426556 4492800 435 156 168 230 1560 0 0 0 0 30 0 0 0 0 0 +1761 1783753140511025300 DEPTH 17 1 0.83409774637260936 0 7 0 7 1 0 173 28 2530 23664804 81600 857.69769287109375 5.8633000000000006 1302.4816000000001 120960 64749 1 0 5898240 4423680 4423680 4426403 4492800 199 156 150 210 1815 0 0 0 0 28 0 0 0 0 2 +1762 1783753141656928800 DEPTH 8 1 0.83086178245579323 2 5 2 5 0 0 210 24 2569 23664872 81600 869.86982727050781 5.8367000000000004 1085.5035 120960 65649 1 0 5898240 4423680 4423680 4426471 4492800 293 151 157 185 1783 0 0 0 0 24 0 0 0 0 0 +1763 1783753142971187500 DEPTH 13 1 0.81042193001922236 1 6 1 6 0 0 169 30 2492 23664829 81600 860.16000366210938 5.8519000000000005 1266.9883 120960 65085 1 0 5898240 4423680 4423680 4426427 4492800 202 155 170 172 1793 0 0 0 0 30 0 0 0 0 0 +1764 1783753144273269800 DEPTH 1 1 0.71706125334865545 1 7 1 7 0 0 119 19 2619 23664849 81600 861.72244262695312 5.8538999999999994 1300.9634000000001 120960 63005 1 0 5898240 4423680 4423680 4426447 4492800 405 156 280 303 1475 0 0 0 0 19 0 0 0 0 0 +1765 1783753145572225900 DEPTH 11 1 0.71598735420360471 0 8 0 8 1 0 96 12 2550 23664889 81600 853.97785949707031 5.8327 1297.8758 120960 62185 1 0 5898240 4423680 4423680 4426488 4492800 390 150 237 261 1512 0 0 0 0 12 0 0 0 0 2 +1766 1783753146870857400 DEPTH 53 1 0.71451861471658284 0 8 0 8 0 0 134 33 2509 23664890 81600 860.87809753417969 5.8188000000000004 1245.7938999999999 120960 62865 1 0 5898240 4423680 4423680 4426489 4492800 203 156 150 176 1824 0 0 0 0 33 0 0 0 0 0 +1767 1783753148140662600 DEPTH 31 1 0.71374763346689829 2 6 2 6 0 0 117 12 2625 23664907 81600 857.74717712402344 5.8797999999999995 1268.6739 120960 63421 1 0 5898240 4423680 4423680 4426505 4492800 932 150 174 279 1090 0 0 0 0 12 0 0 0 0 0 +1768 1783753149347141000 DEPTH 3 1 0.7811459620463459 2 9 2 9 1 0 124 48 2583 23664767 81600 851.62351989746094 5.8342999999999998 1205.3711000000001 120960 57682 1 0 5898240 4423680 4423680 4426366 4492800 179 150 150 161 1943 1 0 0 3 44 0 0 0 3 0 +1769 1783753150580968800 DEPTH 30 1 0.77551792153309074 1 9 1 9 1 0 118 49 2517 23664913 81600 855.85212707519531 5.8397000000000006 1232.5259000000001 120960 57825 1 0 5898240 4423680 4423680 4426509 4492800 156 150 167 150 1894 0 0 0 0 49 0 0 0 0 1 +1770 1783753151673159000 DEPTH 7 1 0.68586212238685829 1 12 1 12 0 0 127 62 2557 23664811 81600 859.63925170898438 5.8331 1031.7394999999999 120960 57205 1 0 5898240 4423680 4423680 4426409 4492800 194 150 157 157 1899 0 0 0 0 62 0 0 0 0 0 +1771 1783753152961828600 DEPTH 54 1 0.67874594100629093 1 8 1 8 1 0 111 16 2608 23664850 81600 853.08367919921875 5.8880999999999997 1287.4879000000001 120960 60806 1 0 5898240 4423680 4423680 4426448 4492800 522 150 265 668 1003 0 0 0 0 16 0 0 0 0 1 +1772 1783753154286821400 DEPTH 44 1 0.67586528941193191 2 7 2 7 0 0 127 16 2601 23664828 81600 858.69398498535156 5.8575999999999997 1300.2306000000001 120960 61495 1 0 5898240 4423680 4423680 4426427 4492800 180 150 201 165 1905 0 0 0 0 16 0 0 0 0 0 +1773 1783753155372744800 DEPTH 27 1 0.67270896654227708 0 14 0 14 0 0 114 54 2567 23664870 81600 857.88784790039062 5.8337000000000003 1030.971 120960 56607 1 0 5898240 4423680 4423680 4426469 4492800 166 156 151 157 1937 0 0 0 0 54 0 0 0 0 0 +1774 1783753156696301000 DEPTH 56 1 0.73239240396681382 2 5 2 5 1 0 179 28 2568 23664759 81600 848.49758911132812 5.822000000000001 1288.4760000000001 120960 53583 1 0 5898240 4423680 4423680 4426357 4492800 443 156 168 277 1524 0 0 0 0 28 0 0 0 0 1 +1775 1783753157729067600 DEPTH 29 1 0.67209843051365581 2 12 2 12 0 0 107 57 2536 23664831 81600 855.68501281738281 5.8734999999999999 1031.4871000000001 120960 57497 1 0 5898240 4423680 4423680 4426431 4492800 181 150 172 181 1852 0 0 0 0 57 0 0 0 0 0 +1776 1783753159032841500 DEPTH 17 1 0.7342753306520976 0 7 0 7 0 0 175 34 2535 23664804 81600 849.12092590332031 5.8679000000000006 1302.6323 120960 53754 1 0 5898240 4423680 4423680 4426402 4492800 205 156 150 225 1799 0 0 0 0 34 0 0 0 0 0 +1777 1783753160152018500 DEPTH 8 1 0.73124879699394307 2 5 2 5 0 0 210 28 2555 23664810 81600 862.84785461425781 5.8907999999999996 1076.5849000000001 120960 54038 1 0 5898240 4423680 4423680 4426409 4492800 300 150 157 225 1723 0 0 0 0 28 0 0 0 0 0 +1778 1783753161436701000 DEPTH 13 1 0.73107916692657049 1 6 1 6 0 0 169 32 2494 23664823 81600 850.82211303710938 5.835 1258.9665 120960 53968 1 0 5898240 4423680 4423680 4426422 4492800 218 154 172 183 1767 0 0 0 0 32 0 0 0 0 0 +1779 1783753162760660300 DEPTH 9 1 0.69559961692538119 2 6 2 6 0 0 120 12 2620 23664869 81600 865.22236633300781 5.8553999999999995 1298.789 120960 63351 1 0 5898240 4423680 4423680 4426468 4492800 647 150 363 396 1064 0 0 0 0 12 0 0 0 0 0 +1780 1783753163986377200 DEPTH 33 1 0.72270747109633371 1 7 1 7 0 0 175 29 2541 23664902 81600 868.19599914550781 5.8341000000000003 1205.8036999999999 120960 64015 1 0 5898240 4423680 4423680 4426502 4492800 186 154 156 150 1895 0 0 0 0 29 0 0 0 0 0 +1781 1783753165057399900 DEPTH 16 1 0.67503591964239129 2 7 2 7 0 0 166 44 2523 23664838 81600 862.7359619140625 5.8414999999999999 1069.8797999999999 120960 61852 1 0 5898240 4423680 4423680 4426437 4492800 169 156 156 612 1430 0 0 0 0 44 0 0 0 0 0 +1782 1783753166174432200 DEPTH 50 1 0.67501515810276702 2 9 2 9 0 0 117 36 2559 23664810 81600 855.49723815917969 5.8409999999999993 1115.7771 120960 61486 1 0 5898240 4423680 4423680 4426409 4492800 172 150 166 184 1887 0 0 0 0 36 0 0 0 0 0 +1783 1783753167464242000 DEPTH 21 1 0.67185701190154856 0 10 0 10 1 0 168 45 2568 23664875 81600 860.61555480957031 5.8522999999999996 1288.6685 120960 58989 1 0 5898240 4423680 4423680 4426475 4492800 316 150 155 245 1702 0 0 0 0 45 0 0 0 0 2 +1784 1783753168652607900 DEPTH 3 1 0.70414866041576418 2 9 2 9 1 0 126 51 2571 23664901 81600 843.21907043457031 5.8293999999999997 1187.232 120960 47553 1 0 5898240 4423680 4423680 4426501 4492800 207 150 150 173 1891 0 0 0 4 47 0 0 0 4 0 +1785 1783753169983064100 DEPTH 56 1 0.70162487880174995 2 5 2 5 0 0 179 15 2561 23664784 81600 844.42271423339844 5.8388999999999998 1280.5884000000001 120960 42740 1 0 5898240 4423680 4423680 4426381 4492800 442 156 168 336 1459 0 0 0 0 15 0 0 0 0 0 +1786 1783753171238229500 DEPTH 30 1 0.70149196409990633 1 9 1 9 0 0 118 48 2521 23664889 81600 848.34306335449219 5.8521000000000001 1223.8807999999999 120960 47527 1 0 5898240 4423680 4423680 4426488 4492800 156 150 168 150 1897 0 0 0 0 48 0 0 0 0 0 +1787 1783753172338150100 DEPTH 46 1 0.67241319899625074 2 15 2 15 1 0 100 68 2567 23664879 81600 854.17622375488281 5.8350999999999997 1027.5254 120960 57696 1 0 5898240 4423680 4423680 4426478 4492800 156 150 155 155 1951 0 0 0 0 68 0 0 0 0 2 +1788 1783753173428067400 DEPTH 43 1 0.67180068931905446 2 13 2 13 0 0 121 38 2539 23664843 81600 858.17613220214844 5.8724000000000007 1030.0708 120960 56944 1 0 5898240 4423680 4423680 4426439 4492800 198 156 161 168 1856 0 0 0 0 38 0 0 0 0 0 +1789 1783753174487208000 DEPTH 2 1 0.67173517085868117 2 12 2 12 1 0 113 44 2569 23664824 81600 863.33317565917969 5.8423999999999996 1043.067 120960 56308 1 0 5898240 4423680 4423680 4426419 4492800 204 155 235 308 1667 1 1 1 3 38 1 0 0 0 1 +1790 1783753175539055000 DEPTH 37 1 0.67139305447482167 1 12 1 12 0 0 126 22 2620 23664790 81600 855.29359436035156 5.8525 1026.4974999999999 120960 59321 1 0 5898240 4423680 4423680 4426389 4492800 207 156 159 159 1939 2 0 1 0 19 0 0 0 0 0 +1791 1783753176598121100 DEPTH 22 1 0.67127441198930593 3 11 3 11 0 0 116 31 2604 23664807 81600 858.37930297851562 5.8575999999999997 1033.7587000000001 120960 57531 1 0 5898240 4423680 4423680 4426405 4492800 253 150 154 155 1892 0 0 0 1 30 0 0 0 0 0 +1792 1783753176793463700 REFRESH 20 0 0.66559603344088258 3 12 3 12 0 0 96 12 422 3943906 55200 149.80406188964844 0.97699999999999998 179.2002 20160 11953 0 0 983040 737280 737280 737506 748800 102 26 58 64 172 0 0 1 0 11 0 0 0 0 0 +1793 1783753177017091900 REFRESH 47 0 0.66853353437869423 2 11 2 11 0 0 110 13 418 3943910 55200 149.00735473632812 0.98170000000000002 177.70480000000001 20160 12232 0 0 983040 737280 737280 737510 748800 85 26 45 32 230 0 0 0 0 13 0 0 0 0 0 +1794 1783753177209889300 REFRESH 51 0 0.66404951169972803 3 12 3 12 0 0 89 13 420 3943873 55200 149.44154357910156 0.97629999999999995 177.6103 20160 12369 0 0 983040 737280 737280 737473 748800 35 26 126 90 143 0 0 1 0 12 0 0 0 0 0 +1795 1783753177430663300 REFRESH 54 0 0.66797511891955486 1 8 1 8 0 0 111 4 425 3943907 55200 149.2490234375 0.9758 219.5574 20160 13125 0 0 983040 737280 737280 737507 748800 150 25 56 118 76 1 0 0 0 3 0 0 0 0 0 +1796 1783753177653942700 REFRESH 9 0 0.61723067587192193 2 6 2 6 0 0 120 5 438 3943904 55200 151.39833068847656 0.97560000000000002 222.17500000000001 20160 13379 0 0 983040 737280 737280 737504 748800 129 25 75 71 138 0 0 0 0 5 0 0 0 0 0 +1797 1783753177879171000 REFRESH 11 0 0.71603415576422846 0 8 0 8 0 0 96 2 416 3943926 55200 149.92665100097656 0.97189999999999999 224.13040000000001 20160 12936 0 0 983040 737280 737280 737526 748800 127 25 60 61 143 0 0 0 0 2 0 0 0 0 0 +1798 1783753178060807200 REFRESH 43 0 0.5182586490646699 2 13 2 13 0 0 121 16 415 3943915 55200 150.69389343261719 0.97499999999999998 180.09479999999999 20160 11998 0 0 983040 737280 737280 737515 748800 91 26 38 63 197 0 0 0 0 16 0 0 0 0 0 +1799 1783753178263347500 REFRESH 38 0 0.66721868514441396 4 14 4 14 0 0 81 6 423 3943904 55200 149.86239624023438 0.9758 178.1097 20160 12161 0 0 983040 737280 737280 737504 748800 47 26 39 37 274 0 0 0 0 6 0 0 0 0 0 +1800 1783753178459201800 REFRESH 42 0 0.66484591544409555 4 12 4 12 0 0 117 10 414 3943911 55200 150.41023254394531 0.98019999999999996 179.66540000000001 20160 11990 0 0 983040 737280 737280 737511 748800 146 25 25 31 187 0 0 0 0 10 0 0 0 0 0 +1801 1783753178641500600 REFRESH 2 0 0.55590853092878079 2 12 2 12 0 0 113 11 417 3943939 55200 150.56179809570312 0.97570000000000001 181.179 20160 11971 0 0 983040 737280 737280 737539 748800 37 26 68 89 197 0 0 0 0 11 0 0 0 0 0 +1802 1783753178843345900 REFRESH 35 0 0.67006038749713204 2 11 2 11 0 0 140 14 418 3943900 55200 150.14195251464844 0.97499999999999998 179.89590000000001 20160 11974 0 0 983040 737280 737280 737500 748800 96 25 31 85 181 0 0 0 0 14 0 0 0 0 0 +1803 1783753179026825600 REFRESH 50 0 0.63290897766153198 2 9 2 9 0 0 117 9 415 3943916 55200 150.4215087890625 0.98199999999999998 182.24959999999999 20160 13026 0 0 983040 737280 737280 737514 748800 159 26 40 61 129 0 0 0 0 9 0 0 0 0 0 +1804 1783753179231578100 REFRESH 18 0 0.67055609464077781 4 15 4 15 0 0 98 22 436 3943897 55200 150.48908996582031 0.97260000000000002 179.53489999999999 20160 12199 0 0 983040 737280 737280 737497 748800 30 25 25 29 327 0 0 0 0 22 0 0 0 0 0 +1805 1783753179424740100 REFRESH 12 0 0.66986234205659256 3 8 3 8 0 0 167 4 412 3943929 55200 149.03091430664062 0.97540000000000004 178.54239999999999 20160 12209 0 0 983040 737280 737280 737529 748800 133 26 39 95 119 0 0 0 0 4 0 0 0 0 0 +1806 1783753179616981800 REFRESH 6 0 0.64352109952085512 3 11 3 11 0 0 113 11 409 3943914 55200 149.03910827636719 0.97030000000000005 176.62020000000001 20160 12449 0 0 983040 737280 737280 737514 748800 26 25 25 25 308 0 0 0 0 11 0 0 0 0 0 +1807 1783753179813284900 REFRESH 58 0 0.66382435493785674 2 12 2 12 0 0 114 13 426 3943930 55200 150.33139038085938 0.99870000000000003 179.48269999999999 20160 12607 0 0 983040 737280 737280 737530 748800 86 26 51 53 210 0 0 0 0 13 0 0 0 0 0 +1808 1783753180007817700 REFRESH 39 0 0.67012974774851086 2 12 2 12 0 0 146 8 406 3943901 55200 149.84909057617188 0.97270000000000001 179.50389999999999 20160 11995 0 0 983040 737280 737280 737501 748800 43 26 29 32 276 0 0 0 0 8 0 0 0 0 0 +1809 1783753180191834200 REFRESH 16 0 0.67413444076181328 2 7 2 7 0 0 166 7 419 3943934 55200 151.13932800292969 1.0004999999999999 182.8861 20160 12809 0 0 983040 737280 737280 737533 748800 33 26 26 240 94 0 0 0 0 7 0 0 0 0 0 +1810 1783753180394158000 REFRESH 26 0 0.66255192439662614 1 13 1 13 0 0 73 9 424 3943917 55200 149.25715637207031 0.97699999999999998 177.29220000000001 20160 13189 0 0 983040 737280 737280 737517 748800 29 25 32 47 291 0 0 0 0 9 0 0 0 0 0 +1811 1783753180588512900 REFRESH 10 0 0.66001848715162814 1 11 1 11 0 0 106 7 428 3943896 55200 149.13229370117188 0.97189999999999999 178.5119 20160 13021 0 0 983040 737280 737280 737496 748800 129 26 51 38 184 0 0 0 0 7 0 0 0 0 0 +1812 1783753180767750900 REFRESH 0 0 0.66661699725748669 1 12 1 12 0 0 88 5 423 3943899 55200 149.72210693359375 0.97430000000000005 178.15350000000001 20160 12446 0 0 983040 737280 737280 737499 748800 87 25 43 36 232 0 0 0 0 5 0 0 0 0 0 +1813 1783753180967849100 REFRESH 5 0 0.65908117243064135 2 11 2 11 1 0 90 7 407 3943919 55200 148.91696166992188 0.97389999999999999 176.2346 20160 13717 0 0 983040 737280 737280 737519 748800 56 26 73 100 152 0 0 1 0 6 0 0 0 0 1 +1814 1783753181158217200 REFRESH 53 0 0.71445638343712903 0 8 0 8 0 0 134 6 416 3943924 55200 151.49363708496094 0.99550000000000005 189.18289999999999 20160 13110 0 0 983040 737280 737280 737523 748800 128 26 27 47 188 0 0 0 0 6 0 0 0 0 0 +1815 1783753181382354900 REFRESH 44 0 0.67533168506713759 2 7 2 7 0 0 127 2 413 3943909 55200 151.07884216308594 0.97929999999999995 222.94909999999999 20160 12814 0 0 983040 737280 737280 737509 748800 87 26 65 29 206 0 0 0 0 2 0 0 0 0 0 +1816 1783753181563149400 REFRESH 22 0 0.66686329374725262 3 11 3 11 0 0 116 12 419 3943875 55200 150.0948486328125 0.97019999999999995 179.64959999999999 20160 12174 0 0 983040 737280 737280 737475 748800 123 25 30 29 212 0 0 0 0 12 0 0 0 0 0 +1817 1783753181809519400 REFRESH 31 0 0.71377613706430842 2 6 2 6 0 0 117 9 429 3943901 55200 150.656005859375 0.97409999999999997 217.76240000000001 20160 13197 0 0 983040 737280 737280 737501 748800 220 25 29 63 92 0 0 0 0 9 0 0 0 0 0 +1818 1783753182002974600 REFRESH 48 0 0.6196343740552217 2 11 2 11 0 0 73 2 429 3943912 55200 148.84761047363281 0.97319999999999995 177.7433 20160 12102 0 0 983040 737280 737280 737511 748800 196 25 59 60 89 0 0 0 0 2 0 0 0 0 0 +1819 1783753182198048500 REFRESH 24 0 0.66335595141220161 4 11 4 11 0 0 130 7 411 3943920 55200 150.22694396972656 0.97340000000000004 179.25219999999999 20160 11876 0 0 983040 737280 737280 737520 748800 32 26 39 44 270 0 0 0 0 7 0 0 0 0 0 +1820 1783753182393391000 REFRESH 36 0 0.67111513092991615 3 10 3 10 0 0 105 11 429 3943924 55200 150.1634521484375 0.97840000000000005 179.65979999999999 20160 11984 0 0 983040 737280 737280 737524 748800 194 25 43 55 112 0 0 0 0 11 0 0 0 0 0 +1821 1783753182574462800 REFRESH 46 0 0.66899353157818076 2 15 2 15 0 0 100 12 412 3943929 55200 149.45791625976562 0.97489999999999999 179.83779999999999 20160 12091 0 0 983040 737280 737280 737529 748800 56 26 54 33 243 0 0 0 0 12 0 0 0 0 0 +1822 1783753182766951600 REFRESH 4 0 0.62847397781741687 1 13 1 13 0 0 48 4 420 3943914 55200 148.5086669921875 0.97989999999999999 176.8158 20160 13114 0 0 983040 737280 737280 737514 748800 27 25 35 31 302 0 0 0 0 4 0 0 0 0 0 +1823 1783753182946905500 REFRESH 29 0 0.66952260764045091 2 12 2 12 0 0 107 11 418 3943911 55200 149.10975646972656 0.98040000000000005 178.79349999999999 20160 11842 0 0 983040 737280 737280 737511 748800 77 25 48 42 226 0 0 0 0 11 0 0 0 0 0 +1824 1783753183143476900 REFRESH 33 0 0.72148191587799515 1 7 1 7 0 0 175 7 420 3943910 55200 151.97798156738281 0.97529999999999994 195.3879 20160 13257 0 0 983040 737280 737280 737510 748800 104 26 46 35 209 0 0 0 0 7 0 0 0 0 0 +1825 1783753183322933600 REFRESH 55 0 0.67018897855742277 1 15 1 15 0 0 125 11 413 3943930 55200 149.94633483886719 0.97719999999999996 178.23140000000001 20160 12210 0 0 983040 737280 737280 737530 748800 48 26 30 53 256 0 0 1 0 10 0 0 0 0 0 +1826 1783753183519437000 REFRESH 13 0 0.83175087020882899 1 6 1 6 0 0 169 3 414 3943915 55200 150.28121948242188 0.9758 195.35740000000001 20160 13394 0 0 983040 737280 737280 737515 748800 148 26 60 76 104 0 0 0 0 3 0 0 0 0 0 +1827 1783753183743741200 REFRESH 56 0 0.84098723781252849 2 5 2 5 0 0 180 5 417 3943925 55200 150.66441345214844 0.97299999999999998 223.13579999999999 20160 13502 0 0 983040 737280 737280 737525 748800 186 26 53 61 91 0 0 0 0 5 0 0 0 0 0 +1828 1783753183939368200 REFRESH 19 0 0.66358153614590054 2 11 2 11 1 0 115 13 420 3943904 55200 150.19622802734375 0.97319999999999995 180.15190000000001 20160 12016 0 0 983040 737280 737280 737504 748800 128 25 26 51 190 0 0 0 0 13 0 0 0 0 1 +1829 1783753184133554900 REFRESH 34 0 0.66414335038869543 1 13 1 13 0 0 99 11 427 3943912 55200 148.93363952636719 0.97929999999999995 177.54390000000001 20160 13210 0 0 983040 737280 737280 737512 748800 90 25 58 73 181 0 0 0 0 11 0 0 0 0 0 +1830 1783753184328288800 REFRESH 32 0 0.66759977076607468 2 14 2 14 0 0 115 18 424 3943897 55200 150.59353637695312 0.97419999999999995 178.80279999999999 20160 12403 0 0 983040 737280 737280 737497 748800 180 25 38 33 148 0 0 0 0 18 0 0 0 0 0 +1831 1783753184510674500 REFRESH 3 0 0.78069393868604231 2 9 2 9 0 0 127 12 422 3943915 55200 149.45074462890625 0.97709999999999997 181.25880000000001 20160 12557 0 0 983040 737280 737280 737513 748800 211 25 36 55 95 1 0 0 0 11 0 0 0 0 0 +1832 1783753184690908700 REFRESH 27 0 0.66989549519112956 0 14 0 14 0 0 117 12 411 3943932 55200 149.6258544921875 0.97499999999999998 179.05520000000001 20160 12056 0 0 983040 737280 737280 737532 748800 40 26 27 30 288 0 0 0 0 12 0 0 0 0 0 +1833 1783753184895939700 REFRESH 57 0 0.66350931495688403 2 12 2 12 0 0 119 9 414 3943903 55200 150.67138671875 0.997 180.56219999999999 20160 12257 0 0 983040 737280 737280 737502 748800 103 26 90 85 110 0 0 0 0 9 0 0 0 0 0 +1834 1783753185076739400 REFRESH 37 0 0.66913088369662965 1 12 1 12 0 0 127 11 414 3943905 55200 150.287353515625 0.97770000000000001 179.64109999999999 20160 12355 0 0 983040 737280 737280 737505 748800 106 26 62 36 184 0 0 0 0 11 0 0 0 0 0 +1835 1783753185274222400 REFRESH 41 0 0.66958159621031965 1 10 1 10 0 0 106 7 411 3943899 55200 149.48249816894531 0.97689999999999999 196.3081 20160 12056 0 0 983040 737280 737280 737499 748800 99 26 39 35 212 0 0 0 0 7 0 0 0 0 0 +1836 1783753185559344500 REFRESH 52 0 0.66987201117585804 1 8 1 8 0 0 105 5 427 3943883 55200 149.35040283203125 0.97389999999999999 221.17250000000001 20160 12410 0 0 983040 737280 737280 737483 748800 134 25 34 153 81 0 0 0 0 5 0 0 0 0 0 +1837 1783753185766163000 REFRESH 45 0 0.67144587150126478 2 7 2 7 0 0 122 8 421 3943913 55200 150.39907836914062 0.9758 189.3972 20160 12799 0 0 983040 737280 737280 737513 748800 99 25 40 38 219 0 0 0 0 8 0 0 0 0 0 +1838 1783753185962589900 REFRESH 25 0 0.66948070300553875 3 11 3 11 1 0 102 11 422 3943918 55200 150.82701110839844 0.97819999999999996 180.10820000000001 20160 11874 0 0 983040 737280 737280 737517 748800 72 25 69 88 168 0 1 0 0 10 0 0 0 0 1 +1839 1783753186159336900 REFRESH 7 0 0.68085429243809625 1 12 1 12 0 0 127 3 420 3943918 55200 150.57919311523438 0.97589999999999999 180.92840000000001 20160 12138 0 0 983040 737280 737280 737518 748800 141 26 29 35 189 0 0 0 0 3 0 0 0 0 0 +1840 1783753186356905100 REFRESH 28 0 0.66682912805210504 1 12 1 12 0 0 142 10 406 3943931 55200 151.46598815917969 0.97419999999999995 181.37090000000001 20160 12260 0 0 983040 737280 737280 737531 748800 150 25 30 29 172 1 0 0 0 9 0 0 0 0 0 +1841 1783753186551816800 REFRESH 15 0 0.66807790906212461 3 12 3 12 0 0 83 9 417 3943907 55200 150.64576721191406 0.97430000000000005 178.99420000000001 20160 12033 0 0 983040 737280 737280 737507 748800 34 26 30 25 302 0 0 0 0 9 0 0 0 0 0 +1842 1783753186775183200 REFRESH 40 0 0.65644536482537053 3 11 1 12 1 0 104 9 415 3943929 55200 150.37440490722656 0.97860000000000003 178.52379999999999 20160 12844 0 0 983040 737280 737280 737529 748800 134 25 32 87 137 0 0 0 1 8 0 0 0 1 0 +1843 1783753186998526400 REFRESH 1 0 0.71694692655120129 1 7 1 7 0 0 119 2 418 3943906 55200 149.62278747558594 0.97850000000000004 206.83349999999999 20160 13224 0 0 983040 737280 737280 737506 748800 122 26 79 76 115 0 0 0 0 2 0 0 0 0 0 +1844 1783753187198295500 REFRESH 21 0 0.67060813541314723 0 10 0 10 0 0 168 11 415 3943900 55200 150.84133911132812 0.97770000000000001 198.6617 20160 12478 0 0 983040 737280 737280 737500 748800 107 26 32 76 174 0 0 0 0 11 0 0 0 0 0 +1845 1783753187402123600 REFRESH 49 0 0.66967132704320609 3 10 3 10 0 0 125 8 419 3943920 55200 149.380859375 0.97689999999999999 178.10910000000001 20160 12107 0 0 983040 737280 737280 737520 748800 88 26 71 54 180 0 0 0 0 8 0 0 0 0 0 +1846 1783753187603307800 REFRESH 14 0 0.66802322483277199 0 12 0 12 1 0 105 12 419 3943942 55200 150.24435424804688 0.97299999999999998 184.81720000000001 20160 12031 0 0 983040 737280 737280 737541 748800 87 26 28 43 235 0 0 0 0 12 0 0 0 0 1 +1847 1783753187829261300 REFRESH 17 0 0.83452885121909404 0 7 0 7 0 0 175 3 413 3943887 55200 149.90541076660156 0.9718 224.8629 20160 13548 0 0 983040 737280 737280 737487 748800 104 26 32 101 150 0 0 0 0 3 0 0 0 0 0 +1848 1783753188014881900 REFRESH 8 0 0.83180531635363675 2 5 2 5 0 0 210 2 417 3943909 55200 151.77302551269531 0.97309999999999997 184.5181 20160 13730 0 0 983040 737280 737280 737508 748800 142 26 27 74 148 0 0 0 0 2 0 0 0 0 0 +1849 1783753188202436300 REFRESH 30 0 0.7690067006444723 1 9 1 9 0 0 118 8 410 3943912 55200 150.83622741699219 0.97929999999999995 186.38550000000001 20160 12349 0 0 983040 737280 737280 737511 748800 82 26 46 30 226 0 0 0 0 8 0 0 0 0 0 +1850 1783753188406281400 REFRESH 23 0 0.67041544775750861 3 14 3 14 0 0 97 10 413 3943920 55200 150.58714294433594 0.98109999999999997 179.20760000000001 20160 11938 0 0 983040 737280 737280 737520 748800 29 25 64 40 255 0 0 0 0 10 0 0 0 0 0 +1851 1783753189709620200 DEPTH 56 1 0.82522421195505369 2 5 2 5 0 0 181 21 2553 23664924 81600 857.43475341796875 5.9107000000000003 1302.1071999999999 120960 65141 1 0 5898240 4423680 4423680 4426524 4492800 454 156 168 253 1522 0 0 0 0 21 0 0 0 0 0 +1852 1783753191007356600 DEPTH 13 1 0.82514104325476034 1 6 1 6 0 0 169 18 2499 23664791 81600 860.96156311035156 5.8394999999999992 1268.3072 120960 64918 1 0 5898240 4423680 4423680 4426390 4492800 214 155 170 162 1798 0 0 0 0 18 0 0 0 0 0 +1853 1783753192220707300 DEPTH 3 1 0.73759173711899351 2 9 2 9 1 0 127 58 2574 23664835 81600 853.39642333984375 5.8445999999999998 1190.7383 120960 59756 1 0 5898240 4423680 4423680 4426432 4492800 236 150 150 181 1857 2 0 0 1 55 0 0 0 1 0 +1854 1783753193447479400 DEPTH 33 1 0.71715415384435066 1 7 1 7 0 0 176 43 2550 23664754 81600 866.99932861328125 5.8364999999999991 1202.0617999999999 120960 64771 1 0 5898240 4423680 4423680 4426354 4492800 189 153 157 152 1899 0 0 0 0 43 0 0 0 0 0 +1855 1783753194741666300 DEPTH 31 1 0.71258320248718077 2 6 2 6 0 0 118 16 2625 23664900 81600 858.09088134765625 5.8451000000000004 1268.3373999999999 120960 64275 1 0 5898240 4423680 4423680 4426500 4492800 942 150 176 267 1090 0 0 0 0 16 0 0 0 0 0 +1856 1783753195984779400 DEPTH 53 1 0.71021961801624012 0 8 0 8 0 0 135 41 2509 23664856 81600 859.2589111328125 5.8645000000000005 1241.8968 120960 63531 1 0 5898240 4423680 4423680 4426456 4492800 192 156 150 176 1835 0 0 0 0 41 0 0 0 0 0 +1857 1783753197285267100 DEPTH 11 1 0.70808121776105026 0 8 0 8 1 0 96 9 2562 23664858 81600 853.09236145019531 5.8248999999999995 1299.3804 120960 61882 1 0 5898240 4423680 4423680 4426457 4492800 396 150 240 274 1502 0 0 0 0 9 0 0 0 0 1 +1858 1783753198585150100 DEPTH 9 1 0.69383654109820925 2 6 2 6 0 0 120 10 2621 23664788 81600 866.17156982421875 5.8306000000000004 1298.7637 120960 64202 1 0 5898240 4423680 4423680 4426388 4492800 653 150 377 399 1042 0 0 0 0 10 0 0 0 0 0 +1859 1783753199889366400 DEPTH 17 1 0.69735595284868623 0 7 0 7 0 0 176 30 2540 23664821 81600 857.52153015136719 5.8266 1303.0563 120960 65792 1 0 5898240 4423680 4423680 4426420 4492800 202 156 150 199 1833 0 0 0 0 30 0 0 0 0 0 +1860 1783753201021684500 DEPTH 8 1 0.6939052521376432 2 5 2 5 0 0 210 29 2568 23664819 81600 868.08572387695312 5.8518999999999997 1084.3958 120960 66455 1 0 5898240 4423680 4423680 4426417 4492800 231 150 157 177 1853 0 0 0 0 29 0 0 0 0 0 +1861 1783753202090901800 DEPTH 2 1 0.68127672423845143 2 12 2 12 1 0 114 38 2571 23664925 81600 865.52986145019531 5.8520000000000003 1042.7837 120960 56437 1 0 5898240 4423680 4423680 4426522 4492800 210 156 246 349 1610 2 0 0 0 36 1 0 0 0 1 +1862 1783753203179053400 DEPTH 40 1 0.70786661714927601 1 12 1 12 1 0 106 42 2580 23664758 81600 859.0885009765625 5.8598999999999997 1029.2793999999999 120960 61431 1 0 5898240 4423680 4423680 4426357 4492800 169 150 167 228 1866 0 0 0 4 38 0 0 0 4 0 +1863 1783753204513610800 DEPTH 54 1 0.67141047312737623 1 8 1 8 0 0 111 20 2606 23664875 81600 854.05964660644531 5.8764000000000003 1286.5618999999999 120960 62333 1 0 5898240 4423680 4423680 4426473 4492800 545 150 264 640 1007 2 0 0 0 18 0 0 0 0 0 +1864 1783753205626778900 DEPTH 16 1 0.67034408969008907 2 7 2 7 0 0 166 31 2525 23664852 81600 864.17964172363281 5.8294000000000006 1072.5686000000001 120960 62165 1 0 5898240 4423680 4423680 4426452 4492800 165 156 156 627 1421 0 0 0 0 31 0 0 0 0 0 +1865 1783753206771743800 DEPTH 50 1 0.67010680529092159 2 9 2 9 0 0 120 41 2555 23664817 81600 854.58738708496094 5.8620999999999999 1119.6929 120960 61748 1 0 5898240 4423680 4423680 4426416 4492800 162 150 162 171 1910 0 0 0 0 41 0 0 0 0 0 +1866 1783753207849205700 DEPTH 36 1 0.6683964672909537 3 10 3 10 1 0 105 20 2596 23664890 81600 858.86204528808594 5.8496999999999995 1033.8859 120960 56461 1 0 5898240 4423680 4423680 4426489 4492800 703 150 189 218 1336 0 0 0 0 20 0 0 0 0 1 +1867 1783753209135084000 DEPTH 56 1 0.74489880793827312 2 5 2 5 0 0 185 33 2557 23664925 81600 848.76194763183594 5.8498000000000001 1284.6516999999999 120960 54005 1 0 5898240 4423680 4423680 4426525 4492800 450 156 168 289 1494 0 0 0 0 33 0 0 0 0 0 +1868 1783753210400216600 DEPTH 13 1 0.73603923270359994 1 6 1 6 0 0 170 21 2498 23664768 81600 852.38845825195312 5.8372000000000011 1264.0305000000001 120960 53762 1 0 5898240 4423680 4423680 4426367 4492800 207 153 171 167 1800 0 0 0 0 21 0 0 0 0 0 +1869 1783753211701136800 DEPTH 1 1 0.70837319899803108 1 7 1 7 0 0 119 11 2605 23664843 81600 860.86766052246094 5.8125999999999998 1299.8309999999999 120960 63386 1 0 5898240 4423680 4423680 4426442 4492800 405 156 281 291 1472 0 0 0 0 11 0 0 0 0 0 +1870 1783753212965940000 DEPTH 30 1 0.71530403530455944 1 9 1 9 0 0 119 46 2516 23664813 81600 855.9215087890625 5.8634000000000004 1230.5872999999999 120960 59058 1 0 5898240 4423680 4423680 4426411 4492800 156 150 168 150 1892 0 0 0 0 46 0 0 0 0 0 +1871 1783753214214522400 DEPTH 45 1 0.66914698852612708 2 7 2 7 0 0 123 24 2626 23664862 81600 865.033203125 5.8503999999999996 1247.3775000000001 120960 61678 1 0 5898240 4423680 4423680 4426461 4492800 200 150 188 173 1915 0 0 0 0 24 0 0 0 0 0 +1872 1783753215242689000 DEPTH 7 1 0.66888334387232384 1 12 1 12 1 0 127 55 2575 23664957 81600 856.69544982910156 5.8340999999999994 1027.0082 120960 57567 1 0 5898240 4423680 4423680 4426555 4492800 188 150 157 153 1927 0 0 0 0 55 0 0 0 0 1 +1873 1783753216350969000 DEPTH 35 1 0.66738446110923699 2 11 2 11 0 0 140 75 2539 23664862 81600 860.00079345703125 5.8271999999999995 1033.9012 120960 56662 1 0 5898240 4423680 4423680 4426460 4492800 181 150 156 194 1858 0 0 0 0 75 0 0 0 0 0 +1874 1783753217461108000 DEPTH 18 1 0.66716787382826892 4 15 4 15 0 0 99 59 2620 23664844 81600 858.2294921875 5.8610000000000007 1035.9293 120960 59909 1 0 5898240 4423680 4423680 4426442 4492800 150 150 150 159 2011 0 1 0 1 57 0 0 0 0 0 +1875 1783753218761590600 DEPTH 17 1 0.7378211071045202 0 7 0 7 0 0 177 35 2534 23664906 81600 847.99754333496094 5.8540999999999999 1299.3688999999999 120960 54910 1 0 5898240 4423680 4423680 4426505 4492800 199 156 150 212 1817 0 0 0 0 35 0 0 0 0 0 +1876 1783753219970572200 DEPTH 3 1 0.7357694674206452 2 9 2 9 1 0 127 61 2592 23664822 81600 846.05615234375 5.899 1207.8936000000001 120960 47888 1 0 5898240 4423680 4423680 4426418 4492800 245 150 150 184 1863 2 0 0 6 53 1 0 0 4 0 +1877 1783753221067032400 DEPTH 8 1 0.74472127530502719 2 5 2 5 0 0 210 33 2555 23664993 81600 863.21629333496094 5.8289999999999997 1078.8791000000001 120960 54869 1 0 5898240 4423680 4423680 4426593 4492800 247 151 157 201 1799 0 0 0 0 33 0 0 0 0 0 +1878 1783753222296764000 DEPTH 33 1 0.70608366948340573 1 7 1 7 0 0 176 42 2547 23664889 81600 858.96269226074219 5.8272000000000004 1212.2775999999999 120960 53292 1 0 5898240 4423680 4423680 4426488 4492800 185 152 156 150 1904 0 0 0 0 42 0 0 0 0 0 +1879 1783753223589445400 DEPTH 21 1 0.66904099788615268 0 10 0 10 0 0 168 21 2583 23664831 81600 858.44160461425781 5.8304999999999998 1291.5959 120960 59861 1 0 5898240 4423680 4423680 4426431 4492800 334 150 156 266 1677 1 0 0 0 20 0 0 0 0 0 +1880 1783753224646683300 DEPTH 25 1 0.66718273019445729 3 11 3 11 1 0 105 42 2578 23664832 81600 858.11859130859375 5.8475000000000001 1031.5699999999999 120960 57001 1 0 5898240 4423680 4423680 4426432 4492800 165 150 156 151 1956 0 0 0 0 42 0 0 0 0 1 +1881 1783753225721941300 DEPTH 55 1 0.6671475058050339 1 15 1 15 1 0 126 11 2571 23664884 81600 858.01332092285156 5.8521999999999998 1029.4223999999999 120960 58445 1 0 5898240 4423680 4423680 4426484 4492800 219 150 160 238 1804 0 0 4 0 7 0 0 0 0 1 +1882 1783753226773644000 DEPTH 27 1 0.6670572970103501 0 14 0 14 0 0 118 52 2568 23664903 81600 857.61418151855469 5.8456000000000001 1028.8633 120960 56614 1 0 5898240 4423680 4423680 4426503 4492800 169 156 150 162 1931 3 0 0 0 49 0 0 0 0 0 +1883 1783753226973589000 REFRESH 14 0 0.6662730434965618 0 12 0 12 0 0 106 9 418 3943889 55200 150.09280395507812 0.97350000000000003 183.63 20160 11984 0 0 983040 737280 737280 737489 748800 75 26 28 42 247 0 1 0 0 8 0 0 0 0 0 +1884 1783753227168931500 REFRESH 29 0 0.66706880679999392 2 12 2 12 0 0 107 8 417 3943905 55200 150.5269775390625 0.9768 179.88919999999999 20160 11950 0 0 983040 737280 737280 737505 748800 83 25 57 45 207 0 0 0 0 8 0 0 0 0 0 +1885 1783753227363007600 REFRESH 15 0 0.66449007328126153 3 12 3 12 0 0 83 5 420 3943897 55200 149.55110168457031 0.97389999999999999 179.08199999999999 20160 12068 0 0 983040 737280 737280 737497 748800 34 26 30 25 305 0 0 0 0 5 0 0 0 0 0 +1886 1783753227547457200 REFRESH 16 0 0.63957916460596576 2 7 2 7 0 0 166 5 418 3943914 55200 151.75885009765625 0.97450000000000003 183.31030000000001 20160 13090 0 0 983040 737280 737280 737514 748800 33 26 26 240 93 0 0 0 0 5 0 0 0 0 0 +1887 1783753227727113800 REFRESH 55 0 0.47376782067891016 1 15 1 15 0 0 126 11 412 3943903 55200 149.81440734863281 0.97340000000000004 178.3905 20160 12229 0 0 983040 737280 737280 737503 748800 66 26 33 60 227 0 0 0 0 11 0 0 0 0 0 +1888 1783753227929551700 REFRESH 20 0 0.66366350951054476 3 12 3 12 0 0 98 9 425 3943895 55200 149.2991943359375 0.97089999999999999 177.5446 20160 11821 0 0 983040 737280 737280 737494 748800 109 26 60 62 168 0 0 1 0 8 0 0 0 0 0 +1889 1783753228126776800 REFRESH 38 0 0.66080750419545431 4 14 4 14 0 0 81 1 423 3943927 55200 149.52755737304688 0.99909999999999999 177.77539999999999 20160 12124 0 0 983040 737280 737280 737526 748800 50 26 42 36 269 0 0 0 0 1 0 0 0 0 0 +1890 1783753228321194300 REFRESH 57 0 0.65913948719352666 2 12 2 12 0 0 119 11 414 3943921 55200 149.66886901855469 0.97540000000000004 178.54480000000001 20160 12264 0 0 983040 737280 737280 737519 748800 102 26 87 77 122 0 0 0 0 11 0 0 0 0 0 +1891 1783753228515926900 REFRESH 24 0 0.65846040673595641 4 11 4 11 0 0 130 10 407 3943910 55200 149.56748962402344 0.97389999999999999 179.149 20160 11957 0 0 983040 737280 737280 737509 748800 34 26 41 48 258 0 0 0 0 10 0 0 0 0 0 +1892 1783753228710412000 REFRESH 58 0 0.66085682684589808 2 12 2 12 0 0 115 8 421 3943909 55200 150.79423522949219 0.97499999999999998 178.64879999999999 20160 12571 0 0 983040 737280 737280 737508 748800 89 26 53 53 200 0 0 0 0 8 0 0 0 0 0 +1893 1783753228894070000 REFRESH 50 0 0.66812809087417824 2 9 2 9 0 0 120 8 416 3943881 55200 149.66067504882812 0.96960000000000002 182.38329999999999 20160 12656 0 0 983040 737280 737280 737481 748800 169 26 41 64 116 0 0 0 0 8 0 0 0 0 0 +1894 1783753229108452800 REFRESH 41 0 0.66534410760411244 1 10 1 10 0 0 106 5 414 3943922 55200 150.51065063476562 0.98029999999999995 197.76400000000001 20160 12099 0 0 983040 737280 737280 737521 748800 112 26 43 40 193 0 0 0 0 5 0 0 0 0 0 +1895 1783753229303109500 REFRESH 42 0 0.6618469997283204 4 12 4 12 0 0 118 13 412 3943914 55200 150.03158569335938 0.97199999999999998 178.78059999999999 20160 12040 0 0 983040 737280 737280 737513 748800 143 25 25 29 190 0 0 0 0 13 0 0 0 0 0 +1896 1783753229496626700 REFRESH 6 0 0.64107631666990672 3 11 3 11 0 0 113 6 413 3943901 55200 150.51980590820312 0.97209999999999996 178.09700000000001 20160 12372 0 0 983040 737280 737280 737501 748800 26 25 25 25 312 0 0 0 0 6 0 0 0 0 0 +1897 1783753229693656500 REFRESH 10 0 0.65696265538471765 1 11 1 11 1 0 106 6 423 3943906 55200 149.6895751953125 0.97889999999999999 180.4967 20160 12950 0 0 983040 737280 737280 737505 748800 122 26 48 39 188 0 0 0 0 6 0 0 0 0 1 +1898 1783753229874783000 REFRESH 25 0 0.59735538118936893 3 11 3 11 0 0 106 8 425 3943914 55200 150.81575012207031 0.9748 179.9983 20160 11936 0 0 983040 737280 737280 737514 748800 73 25 60 88 179 1 0 0 0 7 0 0 0 0 0 +1899 1783753230084227900 REFRESH 1 0 0.70853516583790266 1 7 1 7 0 0 119 7 416 3943926 55200 151.37997436523438 0.98080000000000001 208.3776 20160 13241 0 0 983040 737280 737280 737526 748800 124 26 81 73 112 0 0 0 0 7 0 0 0 0 0 +1900 1783753230310259100 REFRESH 17 0 0.82818969342256166 0 7 0 7 0 0 177 7 412 3943895 55200 151.04716491699219 0.97550000000000003 224.94470000000001 20160 13418 0 0 983040 737280 737280 737495 748800 100 26 32 94 160 0 0 0 0 7 0 0 0 0 0 +1901 1783753230529879300 REFRESH 31 0 0.71241707602947368 2 6 2 6 0 0 118 4 427 3943916 55200 150.61004638671875 0.97450000000000003 218.4931 20160 13239 0 0 983040 737280 737280 737515 748800 224 25 30 65 83 0 0 0 0 4 0 0 0 0 0 +1902 1783753230733589500 REFRESH 19 0 0.66090501651302058 2 11 2 11 0 0 115 5 419 3943907 55200 150.27679443359375 0.97319999999999995 178.55600000000001 20160 12105 0 0 983040 737280 737280 737507 748800 128 25 26 55 185 0 0 0 0 5 0 0 0 0 0 +1903 1783753230925743700 REFRESH 0 0 0.65969969403188689 1 12 1 12 0 0 88 7 422 3943895 55200 149.13945007324219 0.97160000000000002 176.48009999999999 20160 12335 0 0 983040 737280 737280 737495 748800 83 25 44 39 231 0 0 0 0 7 0 0 0 0 0 +1904 1783753231154736400 REFRESH 45 0 0.66891361001737104 2 7 2 7 0 0 123 8 419 3943890 55200 151.44038391113281 0.99819999999999998 189.84719999999999 20160 12820 0 0 983040 737280 737280 737490 748800 108 25 41 44 201 0 0 0 0 8 0 0 0 0 0 +1905 1783753231344286300 REFRESH 34 0 0.66262298505140005 1 13 1 13 0 0 99 7 427 3943914 55200 147.53176879882812 0.96960000000000002 174.703 20160 13367 0 0 983040 737280 737280 737514 748800 73 25 49 59 221 0 0 0 1 6 0 0 0 0 0 +1906 1783753231532636100 REFRESH 33 0 0.71500649639776204 1 7 1 7 0 0 176 10 418 3943897 55200 151.89401245117188 0.97519999999999996 187.17349999999999 20160 13360 0 0 983040 737280 737280 737497 748800 104 26 47 35 206 0 0 0 0 10 0 0 0 0 0 +1907 1783753231737015600 REFRESH 47 0 0.66686181805171185 2 11 2 11 0 0 110 8 422 3943918 55200 150.345947265625 1.0175000000000001 179.35290000000001 20160 12151 0 0 983040 737280 737280 737518 748800 116 26 56 35 189 0 0 0 0 8 0 0 0 0 0 +1908 1783753231930282500 REFRESH 51 0 0.66299068366178071 3 12 3 12 0 0 89 5 420 3943885 55200 149.29203796386719 0.97009999999999996 177.8433 20160 12250 0 0 983040 737280 737280 737484 748800 37 26 132 95 130 0 0 0 0 5 0 0 0 0 0 +1909 1783753232141866400 REFRESH 23 0 0.66711575958114677 3 14 3 14 0 0 97 14 410 3943912 55200 149.57772827148438 0.9748 178.04329999999999 20160 11981 0 0 983040 737280 737280 737512 748800 28 25 50 40 267 0 0 0 0 14 0 0 0 0 0 +1910 1783753232325477300 REFRESH 3 0 0.74859329681531395 2 9 2 9 1 0 127 13 418 3943908 55200 148.91520690917969 0.97760000000000002 182.44280000000001 20160 12204 0 0 983040 737280 737280 737508 748800 203 25 33 53 104 0 0 0 0 13 0 0 0 0 1 +1911 1783753232509568600 REFRESH 8 0 0.8254477593129228 2 5 2 5 0 0 210 4 417 3943912 55200 151.49977111816406 0.97240000000000004 182.97309999999999 20160 13364 0 0 983040 737280 737280 737512 748800 152 26 36 74 129 0 0 0 0 4 0 0 0 0 0 +1912 1783753232735343300 REFRESH 56 0 0.83466085084548292 2 5 2 5 0 0 185 9 413 3943929 55200 150.51776123046875 0.97640000000000005 224.5917 20160 13433 0 0 983040 737280 737280 737529 748800 175 26 49 64 99 0 0 0 0 9 0 0 0 0 0 +1913 1783753232939480400 REFRESH 39 0 0.66569602864482202 2 12 2 12 0 0 147 12 409 3943927 55200 149.59616088867188 0.96999999999999997 178.7534 20160 11828 0 0 983040 737280 737280 737527 748800 46 26 30 31 276 0 0 0 0 12 0 0 0 0 0 +1914 1783753233156874000 REFRESH 35 0 0.66453467343349959 2 11 2 11 0 0 142 12 416 3943939 55200 150.96730041503906 0.98199999999999998 181.20650000000001 20160 11970 0 0 983040 737280 737280 737538 748800 90 25 29 81 191 0 0 0 0 12 0 0 0 0 0 +1915 1783753233351091700 REFRESH 12 0 0.66248882856261915 3 8 3 8 0 0 167 6 415 3943881 55200 149.03602600097656 0.9708 178.39750000000001 20160 12188 0 0 983040 737280 737280 737481 748800 130 26 39 95 125 0 0 0 1 5 0 0 0 0 0 +1916 1783753233531837500 REFRESH 40 0 0.74565216444294102 1 12 1 12 1 0 107 10 427 3943939 55200 151.08505249023438 0.97419999999999995 179.46430000000001 20160 12111 0 0 983040 737280 737280 737538 748800 160 25 34 91 117 0 0 0 1 9 0 0 0 1 0 +1917 1783753233760182000 REFRESH 11 0 0.7077914957154966 0 8 0 8 0 0 96 4 423 3943935 55200 150.04978942871094 0.97370000000000001 227.2766 20160 13106 0 0 983040 737280 737280 737534 748800 138 25 66 66 128 0 0 0 0 4 0 0 0 0 0 +1918 1783753233938797000 REFRESH 37 0 0.66717624376672258 1 12 1 12 1 0 127 6 413 3943913 55200 149.11970520019531 0.96879999999999999 177.44470000000001 20160 12267 0 0 983040 737280 737280 737513 748800 85 26 49 29 224 0 0 0 0 6 0 0 0 0 1 +1919 1783753234121470600 REFRESH 43 0 0.6657187898153597 2 13 2 13 0 0 121 15 418 3943904 55200 151.01542663574219 0.99670000000000003 181.48849999999999 20160 11940 0 0 983040 737280 737280 737504 748800 94 26 42 60 196 0 0 0 0 15 0 0 0 0 0 +1920 1783753234326892400 REFRESH 28 0 0.66316114509603419 1 12 1 12 0 0 142 8 405 3943907 55200 150.82496643066406 0.97540000000000004 180.2876 20160 12230 0 0 983040 737280 737280 737507 748800 129 25 30 27 194 1 0 0 0 7 0 0 0 0 0 +1921 1783753234554269400 REFRESH 22 0 0.66327350163944432 3 11 3 11 0 0 116 8 428 3943906 55200 150.44709777832031 0.97330000000000005 180.25579999999999 20160 12079 0 0 983040 737280 737280 737506 748800 117 25 30 28 228 0 0 0 0 8 0 0 0 0 0 +1922 1783753234758810000 REFRESH 48 0 0.61451872938400298 2 11 2 11 0 0 73 1 432 3943901 55200 149.22956848144531 0.97230000000000005 183.9984 20160 12212 0 0 983040 737280 737280 737501 748800 189 25 57 63 98 0 0 0 0 1 0 0 0 0 0 +1923 1783753234944669100 REFRESH 30 0 0.74500554340510794 1 9 1 9 0 0 120 14 409 3943900 55200 149.47634887695312 0.97230000000000005 184.7209 20160 12528 0 0 983040 737280 737280 737500 748800 76 25 42 29 237 0 0 0 0 14 0 0 0 0 0 +1924 1783753235166836700 REFRESH 54 0 0.67130361869504185 1 8 1 8 0 0 111 2 422 3943897 55200 151.15965270996094 0.97699999999999998 220.99879999999999 20160 12935 0 0 983040 737280 737280 737497 748800 146 25 57 115 79 0 0 0 0 2 0 0 0 0 0 +1925 1783753235370112000 REFRESH 32 0 0.66486531144540928 2 14 2 14 0 0 115 8 427 3943935 55200 150.13352966308594 0.97389999999999999 178.30520000000001 20160 12337 0 0 983040 737280 737280 737535 748800 165 25 37 32 168 0 0 0 0 8 0 0 0 0 0 +1926 1783753235551903000 REFRESH 2 0 0.68108754583851716 2 12 2 12 1 0 114 9 421 3943915 55200 150.84646606445312 0.97650000000000003 180.7312 20160 11981 0 0 983040 737280 737280 737514 748800 37 26 58 72 228 1 0 0 0 8 0 0 0 0 1 +1927 1783753235771558900 REFRESH 27 0 0.66423359202347476 0 14 0 14 0 0 118 15 412 3943921 55200 150.18701171875 0.97440000000000004 180.19990000000001 20160 12075 0 0 983040 737280 737280 737521 748800 45 26 29 29 283 1 0 0 0 14 0 0 0 0 0 +1928 1783753235950292200 REFRESH 18 0 0.66374465309082753 4 15 4 15 0 0 99 17 430 3943905 55200 149.69651794433594 0.97340000000000004 177.6251 20160 11986 0 0 983040 737280 737280 737505 748800 29 25 25 29 322 0 0 0 0 17 0 0 0 0 0 +1929 1783753236131975700 REFRESH 7 0 0.66507928938352534 1 12 1 12 0 0 127 9 418 3943921 55200 151.13728332519531 0.9819 180.60679999999999 20160 12098 0 0 983040 737280 737280 737521 748800 150 26 29 36 177 0 0 0 0 9 0 0 0 0 0 +1930 1783753236336739400 REFRESH 49 0 0.66541448355650057 3 10 3 10 0 0 125 12 418 3943921 55200 150.39590454101562 0.97509999999999997 179.50239999999999 20160 12019 0 0 983040 737280 737280 737521 748800 90 26 67 51 184 0 0 0 0 12 0 0 0 0 0 +1931 1783753236526529000 REFRESH 53 0 0.71046930382172024 0 8 0 8 0 0 135 6 414 3943886 55200 150.15834045410156 0.9768 188.5994 20160 13190 0 0 983040 737280 737280 737486 748800 135 26 27 51 175 0 0 0 0 6 0 0 0 0 0 +1932 1783753236729330800 REFRESH 5 0 0.65567039660370963 2 11 2 11 0 0 90 9 414 3943899 55200 148.98687744140625 0.9728 176.12479999999999 20160 13813 0 0 983040 737280 737280 737499 748800 61 26 81 111 135 0 0 0 1 8 0 0 0 0 0 +1933 1783753236990177400 REFRESH 52 0 0.66589936944204697 1 8 1 8 0 0 105 3 431 3943919 55200 149.67814636230469 0.98150000000000004 221.51580000000001 20160 12414 0 0 983040 737280 737280 737518 748800 135 25 35 156 80 0 0 0 0 3 0 0 0 0 0 +1934 1783753237230945600 REFRESH 44 0 0.66719016160500333 2 7 2 7 0 0 127 12 424 3943911 55200 151.00210571289062 0.99929999999999997 223.5857 20160 12779 0 0 983040 737280 737280 737511 748800 84 26 58 30 226 0 0 0 0 12 0 0 0 0 0 +1935 1783753237410592700 REFRESH 36 0 0.66590312121022499 3 10 3 10 1 0 105 4 431 3943909 55200 149.31990051269531 0.97399999999999998 178.5239 20160 11895 0 0 983040 737280 737280 737509 748800 201 25 37 51 117 0 0 0 0 4 0 0 0 0 1 +1936 1783753237611267600 REFRESH 21 0 0.6675977286886936 0 10 0 10 0 0 168 7 413 3943912 55200 150.63040161132812 0.97160000000000002 199.5737 20160 12422 0 0 983040 737280 737280 737512 748800 100 26 32 72 183 1 0 0 0 6 0 0 0 0 0 +1937 1783753237834737900 REFRESH 13 0 0.82702699460326956 1 6 1 6 0 0 170 5 413 3943906 55200 151.43218994140625 0.99770000000000003 197.72049999999999 20160 13604 0 0 983040 737280 737280 737506 748800 147 26 59 78 103 0 0 0 0 5 0 0 0 0 0 +1938 1783753238030384900 REFRESH 46 0 0.66629583602474285 2 15 2 15 1 0 100 12 417 3943913 55200 149.60231018066406 0.96999999999999997 178.66220000000001 20160 11985 0 0 983040 737280 737280 737513 748800 58 26 57 34 242 0 0 0 0 12 0 0 0 0 1 +1939 1783753238217379300 REFRESH 4 0 0.62542261163045121 1 13 1 13 0 0 48 0 421 3943902 55200 148.32025146484375 0.99980000000000002 175.53919999999999 20160 12992 0 0 983040 737280 737280 737502 748800 27 25 35 28 306 0 0 0 0 0 0 0 0 0 0 +1940 1783753238464343000 REFRESH 9 0 0.69576809529605954 2 6 2 6 0 0 120 1 427 3943908 55200 150.92530822753906 0.97150000000000003 218.11410000000001 20160 13278 0 0 983040 737280 737280 737508 748800 134 25 77 77 114 0 0 0 0 1 0 0 0 0 0 +1941 1783753238656755700 REFRESH 26 0 0.66120637577262253 1 13 1 13 0 0 75 16 425 3943910 55200 148.29977416992188 0.97709999999999997 176.71000000000001 20160 12987 0 0 983040 737280 737280 737510 748800 32 25 33 46 289 0 0 0 0 16 0 0 0 0 0 +1942 1783753239948219200 DEPTH 56 1 0.8332837501421122 2 5 2 5 0 0 186 27 2558 23664891 81600 856.18417358398438 5.8258000000000001 1290.2276999999999 120960 64510 1 0 5898240 4423680 4423680 4426489 4492800 443 156 168 253 1538 0 0 0 0 27 0 0 0 0 0 +1943 1783753241253078500 DEPTH 17 1 0.82552127588564694 0 7 0 7 0 0 177 37 2531 23664825 81600 857.50152587890625 5.8644000000000007 1303.7206000000001 120960 64857 1 0 5898240 4423680 4423680 4426422 4492800 204 156 152 219 1800 0 0 0 0 37 0 0 0 0 0 +1944 1783753242335087100 DEPTH 8 1 0.82000687757750734 2 5 2 5 0 0 211 32 2545 23664773 81600 869.399169921875 5.8574999999999999 1080.8300999999999 120960 65901 1 0 5898240 4423680 4423680 4426372 4492800 360 152 159 214 1660 0 0 0 0 32 0 0 0 0 0 +1945 1783753243567931900 DEPTH 3 1 0.73817859079733084 2 9 2 9 1 0 127 49 2577 23664894 81600 855.31141662597656 5.8414999999999999 1191.7629999999999 120960 58140 1 0 5898240 4423680 4423680 4426491 4492800 271 150 150 181 1825 0 0 0 3 46 0 0 0 0 1 +1946 1783753244600976000 DEPTH 40 1 0.73401185454299323 1 12 1 12 1 0 108 45 2571 23664706 81600 861.65316772460938 5.8333000000000004 1031.5521000000001 120960 59016 1 0 5898240 4423680 4423680 4426304 4492800 183 150 167 218 1853 0 0 0 4 41 0 0 0 4 1 +1947 1783753245824675400 DEPTH 33 1 0.71397996172376466 1 7 1 7 1 0 176 27 2546 23664846 81600 866.78506469726562 5.9011000000000005 1222.5232000000001 120960 65388 1 0 5898240 4423680 4423680 4426445 4492800 181 153 156 150 1906 0 0 0 0 27 0 0 0 0 1 +1948 1783753247154751800 DEPTH 31 1 0.70613641205933997 2 6 2 6 0 0 120 14 2625 23664793 81600 857.34608459472656 5.8799999999999999 1266.1110000000001 120960 64436 1 0 5898240 4423680 4423680 4426392 4492800 951 150 178 279 1067 0 0 0 0 14 0 0 0 0 0 +1949 1783753248533170900 DEPTH 1 1 0.70565991572665143 1 7 1 7 0 0 119 14 2608 23664848 81600 860.35940551757812 5.8540000000000001 1302.6797999999999 120960 64129 1 0 5898240 4423680 4423680 4426447 4492800 409 156 281 303 1459 0 0 0 0 14 0 0 0 0 0 +1950 1783753249763969900 DEPTH 30 1 0.73539731792012653 1 9 1 9 0 0 121 39 2525 23664811 81600 856.13020324707031 5.8704000000000001 1229.6619000000001 120960 59527 1 0 5898240 4423680 4423680 4426410 4492800 156 150 168 150 1901 0 0 0 0 39 0 0 0 0 0 +1951 1783753251030979900 DEPTH 13 1 0.71255047537222227 1 6 1 6 0 0 170 19 2490 23664927 81600 860.218017578125 5.8446999999999996 1265.9072000000001 120960 65608 1 0 5898240 4423680 4423680 4426527 4492800 209 154 172 175 1780 0 0 0 0 19 0 0 0 0 0 +1952 1783753252363923500 DEPTH 11 1 0.70222596397750958 0 8 0 8 0 0 96 12 2570 23664725 81600 851.86805725097656 5.8406000000000011 1303.0018 120960 63245 1 0 5898240 4423680 4423680 4426325 4492800 395 150 245 298 1482 0 0 0 0 12 0 0 0 0 0 +1953 1783753253613897200 DEPTH 45 1 0.66664903104578577 2 7 2 7 0 0 124 24 2621 23664807 81600 864.72250366210938 5.8310000000000004 1248.7979 120960 62033 1 0 5898240 4423680 4423680 4426407 4492800 209 150 193 180 1889 0 0 0 0 24 0 0 0 0 0 +1954 1783753254684043200 DEPTH 2 1 0.6757201972547433 2 12 2 10 1 0 114 48 2572 23664827 81600 867.79740905761719 5.8543000000000003 1045.3434 120960 56642 1 0 5898240 4423680 4423680 4426424 4492800 214 155 260 359 1584 1 0 0 1 46 1 0 0 0 1 +1955 1783753255835986400 DEPTH 50 1 0.66438186407605926 2 9 2 9 0 0 120 34 2565 23664895 81600 855.53558349609375 5.8641999999999994 1124.9612 120960 60639 1 0 5898240 4423680 4423680 4426492 4492800 171 150 165 174 1905 0 0 0 0 34 0 0 0 0 0 +1956 1783753256932495400 DEPTH 16 1 0.6640360596907191 2 7 2 7 0 0 166 43 2529 23664820 81600 864.00045776367188 5.8375000000000004 1081.5379 120960 63357 1 0 5898240 4423680 4423680 4426418 4492800 163 156 156 576 1478 0 0 0 0 43 0 0 0 0 0 +1957 1783753257958276800 DEPTH 23 1 0.66381901897973461 3 14 3 14 0 0 98 68 2551 23664832 81600 856.51194763183594 5.8468 1024.5771999999999 120960 57250 1 0 5898240 4423680 4423680 4426432 4492800 150 150 150 157 1944 0 0 0 0 68 0 0 0 0 0 +1958 1783753259240844600 DEPTH 56 1 0.74288454207872234 2 5 2 5 0 0 187 31 2550 23664877 81600 848.88433837890625 5.8406000000000002 1281.3205 120960 53668 1 0 5898240 4423680 4423680 4426477 4492800 459 156 168 338 1429 0 0 0 0 31 0 0 0 0 0 +1959 1783753260539997900 DEPTH 17 1 0.73589875754063983 0 7 0 7 0 0 177 28 2536 23664884 81600 850.4063720703125 5.8557000000000006 1298.0443 120960 53331 1 0 5898240 4423680 4423680 4426481 4492800 206 156 156 222 1796 0 0 0 0 28 0 0 0 0 0 +1960 1783753261655822800 DEPTH 8 1 0.73093624117480727 2 5 2 5 0 0 211 28 2546 23664770 81600 859.48338317871094 5.8300999999999998 1063.8136999999999 120960 54861 1 0 5898240 4423680 4423680 4426369 4492800 382 152 158 283 1571 0 0 0 0 28 0 0 0 0 0 +1961 1783753262938692800 DEPTH 53 1 0.70629489651147992 0 8 0 8 1 0 135 39 2514 23664810 81600 862.76422119140625 5.8439000000000005 1242.3223 120960 63638 1 0 5898240 4423680 4423680 4426408 4492800 190 156 150 173 1845 0 0 0 0 39 0 0 0 0 1 +1962 1783753264048706400 DEPTH 2 1 0.7135657273465229 2 10 2 10 1 0 116 89 2606 23664867 81600 854.69325256347656 5.8643000000000001 1069.2639999999999 120960 45945 1 0 5898240 4423680 4423680 4426465 4492800 184 150 198 329 1745 2 0 1 0 86 2 0 0 0 2 +1963 1783753265331100700 DEPTH 14 1 0.66379318832265466 0 12 0 12 1 0 108 34 2569 23664846 81600 857.34089660644531 5.8896000000000006 1217.8175000000001 120960 57045 1 0 5898240 4423680 4423680 4426446 4492800 176 152 158 173 1910 0 1 0 0 33 0 0 0 0 1 +1964 1783753266406769600 DEPTH 39 1 0.66307038617201008 2 12 2 12 0 0 147 41 2530 23664831 81600 856.98963928222656 5.8365999999999998 1031.5899999999999 120960 56243 1 0 5898240 4423680 4423680 4426431 4492800 164 151 152 159 1904 0 0 0 0 41 0 0 0 0 0 +1965 1783753267462185400 DEPTH 49 1 0.66299067081413476 3 10 3 10 1 0 125 46 2566 23664778 81600 857.09317016601562 5.8533999999999997 1029.4195999999999 120960 58186 1 0 5898240 4423680 4423680 4426378 4492800 176 150 182 172 1886 0 0 0 0 46 0 0 0 0 1 +1966 1783753268740983200 DEPTH 13 1 0.72342817601112774 1 6 1 6 0 0 170 30 2490 23664891 81600 851.93829345703125 5.8354999999999997 1260.8552 120960 54332 1 0 5898240 4423680 4423680 4426490 4492800 212 156 164 171 1787 0 0 0 0 30 0 0 0 0 0 +1967 1783753269932760600 DEPTH 3 1 0.69863258411659823 2 9 2 9 1 0 130 49 2567 23664881 81600 847.90231323242188 5.8289 1190.6387999999999 120960 48054 1 0 5898240 4423680 4423680 4426480 4492800 258 150 150 200 1809 2 0 0 2 45 0 0 0 0 1 +1968 1783753271253039500 DEPTH 9 1 0.688056144149643 2 6 2 6 0 0 120 6 2622 23664729 81600 862.20816040039062 5.8459999999999992 1294.5678 120960 64466 1 0 5898240 4423680 4423680 4426327 4492800 657 150 376 450 989 0 0 0 0 6 0 0 0 0 0 +1969 1783753272282790300 DEPTH 40 1 0.70495878842749327 1 12 1 12 1 0 110 46 2570 23664856 81600 853.23538208007812 6.2431999999999999 1028.5613000000001 120960 48264 1 0 5898240 4423680 4423680 4426454 4492800 214 150 167 266 1773 0 0 0 4 42 0 0 0 4 2 +1970 1783753273633669900 DEPTH 44 1 0.66720225373387609 2 7 2 7 0 0 127 16 2595 23664888 81600 859.24119567871094 5.8986999999999998 1305.241 120960 61471 1 0 5898240 4423680 4423680 4426487 4492800 190 150 210 162 1883 0 0 0 0 16 0 0 0 0 0 +1971 1783753274930269400 DEPTH 21 1 0.66298137189067807 0 10 0 10 1 0 169 34 2573 23664891 81600 859.69100952148438 5.8413000000000004 1295.4105999999999 120960 59670 1 0 5898240 4423680 4423680 4426490 4492800 346 150 157 276 1644 2 0 0 0 32 1 0 0 0 0 +1972 1783753275967042300 DEPTH 25 1 0.66299100342639816 3 11 3 11 0 0 108 22 2584 23664935 81600 861.31871032714844 5.8172000000000006 1035.5924 120960 56147 1 0 5898240 4423680 4423680 4426534 4492800 166 150 157 150 1961 1 0 0 0 21 0 0 0 0 0 +1973 1783753277026968000 DEPTH 46 1 0.66299864421584265 2 15 2 15 1 0 101 36 2569 23664803 81600 857.92051696777344 5.8810000000000002 1034.0454 120960 57260 1 0 5898240 4423680 4423680 4426402 4492800 159 150 162 152 1946 0 0 0 0 36 0 0 0 0 2 +1974 1783753277255521000 REFRESH 48 0 0.60830766158197558 2 11 2 11 1 0 74 5 431 3943899 55200 149.180419921875 0.98089999999999999 179.13310000000001 20160 12126 0 0 983040 737280 737280 737499 748800 176 25 53 56 121 0 0 0 0 5 0 0 0 0 1 +1975 1783753277449367400 REFRESH 10 0 0.65291805691172566 1 11 1 11 0 0 106 9 429 3943921 55200 148.75546264648438 0.98180000000000001 178.1782 20160 12984 0 0 983040 737280 737280 737521 748800 116 26 47 38 202 0 0 0 0 9 0 0 0 0 0 +1976 1783753277644163500 REFRESH 43 0 0.66272271489693357 2 13 2 13 0 0 121 12 414 3943900 55200 150.60890197753906 0.97330000000000005 179.88069999999999 20160 12121 0 0 983040 737280 737280 737498 748800 94 26 39 60 195 0 0 0 0 12 0 0 0 0 0 +1977 1783753277841731900 REFRESH 28 0 0.65752031833778246 1 12 1 12 0 0 142 12 401 3943919 55200 150.58023071289062 0.97419999999999995 182.22550000000001 20160 12202 0 0 983040 737280 737280 737518 748800 149 25 30 29 168 2 0 0 0 10 0 0 0 0 0 +1978 1783753278033037900 REFRESH 45 0 0.66631773086233936 2 7 2 7 0 0 124 5 420 3943912 55200 151.61036682128906 0.97399999999999998 189.88720000000001 20160 12958 0 0 983040 737280 737280 737512 748800 115 25 45 44 191 0 0 0 0 5 0 0 0 0 0 +1979 1783753278227688400 REFRESH 12 0 0.65733046826577413 3 8 3 8 0 0 167 10 415 3943923 55200 149.98733520507812 0.98409999999999997 180.25540000000001 20160 12128 0 0 983040 737280 737280 737523 748800 138 26 39 97 115 0 0 0 0 10 0 0 0 0 0 +1980 1783753278419186500 REFRESH 5 0 0.65382622555265635 2 11 2 11 0 0 90 5 413 3943922 55200 148.84249877929688 0.97519999999999996 176.50069999999999 20160 13742 0 0 983040 737280 737280 737522 748800 60 26 82 109 136 0 0 0 0 5 0 0 0 0 0 +1981 1783753278675232400 REFRESH 54 0 0.66303109823297202 1 8 1 8 0 0 111 3 424 3943910 55200 150.16242980957031 0.9738 219.5556 20160 12837 0 0 983040 737280 737280 737509 748800 151 25 59 117 72 0 0 0 0 3 0 0 0 0 0 +1982 1783753278868871600 REFRESH 51 0 0.6564640921902849 3 12 3 12 0 0 89 7 419 3943916 55200 149.02374267578125 0.99960000000000004 178.149 20160 12018 0 0 983040 737280 737280 737516 748800 35 26 129 91 138 0 0 0 0 7 0 0 0 0 0 +1983 1783753279061109500 REFRESH 18 0 0.66042984847856312 4 15 4 15 0 0 99 11 429 3943926 55200 149.22035217285156 0.97999999999999998 179.1439 20160 11996 0 0 983040 737280 737280 737526 748800 33 25 25 31 315 0 0 0 0 11 0 0 0 0 0 +1984 1783753279258883100 REFRESH 22 0 0.65755856279540559 3 11 3 11 0 0 116 11 423 3943909 55200 150.08256530761719 0.98499999999999999 181.94970000000001 20160 12151 0 0 983040 737280 737280 737509 748800 130 25 30 29 209 0 0 0 1 10 0 0 0 0 0 +1985 1783753279450152000 REFRESH 33 0 0.71309437618516114 1 7 1 7 0 0 176 7 416 3943891 55200 151.60319519042969 0.99409999999999998 190.17760000000001 20160 13364 0 0 983040 737280 737280 737490 748800 94 26 35 32 229 0 0 0 0 7 0 0 0 0 0 +1986 1783753279642107000 REFRESH 32 0 0.65991218121370909 2 14 2 14 0 0 115 11 423 3943928 55200 150.19094848632812 0.98229999999999995 178.5549 20160 12372 0 0 983040 737280 737280 737528 748800 177 25 38 33 150 0 0 0 0 11 0 0 0 0 0 +1987 1783753279833950300 REFRESH 26 0 0.66006579359592832 1 13 1 13 0 0 75 4 423 3943896 55200 149.06675720214844 0.97150000000000003 176.97300000000001 20160 12697 0 0 983040 737280 737280 737496 748800 32 25 33 46 287 0 0 0 0 4 0 0 0 0 0 +1988 1783753280027893900 REFRESH 6 0 0.6347201179724653 3 11 3 11 0 0 114 18 414 3943880 55200 149.23161315917969 0.97309999999999997 177.10810000000001 20160 12364 0 0 983040 737280 737280 737480 748800 26 25 25 25 313 0 0 0 0 18 0 0 0 0 0 +1989 1783753280228392400 REFRESH 24 0 0.65701846406761022 4 11 4 11 0 0 130 9 409 3943910 55200 149.52140808105469 1.1153999999999999 185.08369999999999 20160 11984 0 0 983040 737280 737280 737509 748800 35 26 39 46 263 0 0 0 0 9 0 0 0 0 0 +1990 1783753280423200500 REFRESH 19 0 0.65335467948514858 2 11 2 11 0 0 116 14 420 3943905 55200 150.21260070800781 0.97319999999999995 179.06659999999999 20160 12027 0 0 983040 737280 737280 737505 748800 129 25 26 51 189 0 0 0 0 14 0 0 0 0 0 +1991 1783753280661248700 REFRESH 52 0 0.65990893323611544 1 8 1 8 0 0 105 2 430 3943920 55200 149.91462707519531 0.97409999999999997 221.64490000000001 20160 12496 0 0 983040 737280 737280 737519 748800 134 25 33 155 83 0 0 0 0 2 0 0 0 0 0 +1992 1783753280857037200 REFRESH 29 0 0.66298869326841325 2 12 2 12 1 0 107 16 420 3943909 55200 149.45074462890625 0.97330000000000005 179.21680000000001 20160 12068 0 0 983040 737280 737280 737509 748800 88 25 60 49 198 0 0 0 0 16 0 0 0 0 1 +1993 1783753281051650500 REFRESH 47 0 0.66291755491906823 2 11 2 11 0 0 110 9 421 3943942 55200 150.11634826660156 0.9738 179.49760000000001 20160 12096 0 0 983040 737280 737280 737541 748800 85 26 44 31 235 0 0 0 0 9 0 0 0 0 0 +1994 1783753281231324000 REFRESH 23 0 0.66053052034566084 3 14 3 14 0 0 98 9 409 3943915 55200 150.29367065429688 0.97260000000000002 178.4948 20160 11954 0 0 983040 737280 737280 737514 748800 31 25 65 42 246 0 0 1 0 8 0 0 0 0 0 +1995 1783753281437302900 REFRESH 36 0 0.65737334365292832 3 10 3 10 0 0 105 10 434 3943892 55200 150.62921142578125 0.97299999999999998 180.06290000000001 20160 12010 0 0 983040 737280 737280 737491 748800 205 25 36 50 118 0 0 0 0 10 0 0 0 0 0 +1996 1783753281621524600 REFRESH 8 0 0.82177883290793896 2 5 2 5 0 0 211 4 413 3943917 55200 151.40658569335938 0.97370000000000001 183.11660000000001 20160 13541 0 0 983040 737280 737280 737517 748800 156 26 43 76 112 0 0 0 0 4 0 0 0 0 0 +1997 1783753281802573200 REFRESH 40 0 0.71724780514671149 1 12 1 12 1 0 110 8 420 3943921 55200 150.89852905273438 0.97299999999999998 179.8579 20160 13112 0 0 983040 737280 737280 737521 748800 159 25 33 79 124 0 0 0 1 7 0 0 0 1 0 +1998 1783753281983568000 REFRESH 27 0 0.66165888434685294 0 14 0 14 0 0 121 18 411 3943885 55200 150.37942504882812 0.97699999999999998 179.83789999999999 20160 12055 0 0 983040 737280 737280 737485 748800 48 26 29 32 276 0 0 0 0 18 0 0 0 0 0 +1999 1783753282201563700 REFRESH 31 0 0.70637299345653304 2 6 2 6 0 0 120 3 426 3943939 55200 151.11885070800781 0.97640000000000005 216.88239999999999 20160 13114 0 0 983040 737280 737280 737539 748800 224 25 30 69 78 0 0 0 0 3 0 0 0 0 0 +2000 1783753282398873000 REFRESH 39 0 0.66037107050707966 2 12 2 12 0 0 148 12 402 3943931 55200 150.01394653320312 0.97230000000000005 178.69890000000001 20160 12012 0 0 983040 737280 737280 737531 748800 55 26 30 32 259 1 0 0 0 11 0 0 0 0 0 +2001 1783753282624408900 REFRESH 1 0 0.70595040458885261 1 7 1 7 0 0 119 8 422 3943908 55200 150.7061767578125 0.97660000000000002 210.715 20160 13372 0 0 983040 737280 737280 737508 748800 125 26 78 76 117 0 0 0 0 8 0 0 0 0 0 +2002 1783753282805286200 REFRESH 25 0 0.66050843971493634 3 11 3 11 0 0 109 6 424 3943919 55200 150.28643798828125 0.97209999999999996 179.70359999999999 20160 11806 0 0 983040 737280 737280 737519 748800 78 25 56 78 187 0 0 0 0 6 0 0 0 0 0 +2003 1783753283035716100 REFRESH 9 0 0.68601603337653749 2 6 2 6 0 0 120 7 434 3943927 55200 151.0328369140625 0.97619999999999996 219.8905 20160 13131 0 0 983040 737280 737280 737527 748800 135 25 80 77 117 0 0 0 0 7 0 0 0 0 0 +2004 1783753283215287300 REFRESH 55 0 0.6613372566363187 1 15 1 15 0 0 127 9 414 3943899 55200 149.40876770019531 1.0218 178.3074 20160 12185 0 0 983040 737280 737280 737499 748800 53 26 32 59 244 0 0 0 0 9 0 0 0 0 0 +2005 1783753283418294400 REFRESH 20 0 0.6608473394953267 3 12 3 12 0 0 99 19 419 3943916 55200 149.31535339355469 0.98199999999999998 178.1337 20160 11808 0 0 983040 737280 737280 737516 748800 110 26 60 61 162 0 0 1 0 18 0 0 0 0 0 +2006 1783753283598366000 REFRESH 49 0 0.66067055411520559 3 10 3 10 0 0 125 9 419 3943912 55200 149.64646911621094 0.97340000000000004 178.935 20160 12468 0 0 983040 737280 737280 737512 748800 95 26 62 54 182 0 0 0 0 9 0 0 0 0 0 +2007 1783753283792961400 REFRESH 0 0 0.65534866607944853 1 12 1 12 0 0 89 12 429 3943913 55200 149.75999450683594 0.9748 178.5172 20160 12367 0 0 983040 737280 737280 737512 748800 108 25 45 41 210 0 0 0 0 12 0 0 0 0 0 +2008 1783753283987649800 REFRESH 58 0 0.6562024028428125 2 12 2 12 0 0 115 7 426 3943907 55200 150.26995849609375 0.97889999999999999 179.1978 20160 12572 0 0 983040 737280 737280 737507 748800 79 26 49 48 224 0 0 0 0 7 0 0 0 0 0 +2009 1783753284214387000 REFRESH 44 0 0.66707691508279487 2 7 2 7 0 0 127 4 424 3943894 55200 150.79833984375 0.99870000000000003 225.584 20160 12897 0 0 983040 737280 737280 737494 748800 67 26 54 28 249 0 0 0 0 4 0 0 0 0 0 +2010 1783753284439069600 REFRESH 17 0 0.82631840602880624 0 7 0 7 0 0 177 3 413 3943902 55200 150.466552734375 0.97389999999999999 223.5574 20160 13630 0 0 983040 737280 737280 737502 748800 117 26 35 106 129 0 0 0 0 3 0 0 0 0 0 +2011 1783753284621592600 REFRESH 2 0 0.8625639157085867 2 10 2 10 0 0 117 13 425 3943900 55200 150.3426513671875 0.97189999999999999 181.43879999999999 20160 12154 0 0 983040 737280 737280 737499 748800 39 26 73 99 188 0 0 1 0 12 0 0 0 0 0 +2012 1783753284840885700 REFRESH 37 0 0.66126456274291834 1 12 1 12 0 0 128 11 415 3943908 55200 150.2593994140625 0.99909999999999999 178.6498 20160 12274 0 0 983040 737280 737280 737508 748800 110 26 61 32 186 0 0 0 0 11 0 0 0 0 0 +2013 1783753285030677900 REFRESH 4 0 0.61808294203809266 1 13 1 13 1 0 48 2 419 3943903 55200 147.4334716796875 0.97770000000000001 175.46199999999999 20160 12824 0 0 983040 737280 737280 737503 748800 28 25 42 47 277 0 0 0 0 2 0 0 0 0 1 +2014 1783753285228617900 REFRESH 13 0 0.82428619691195604 1 6 1 6 0 0 170 2 416 3943923 55200 150.68876647949219 0.98540000000000005 196.82650000000001 20160 13260 0 0 983040 737280 737280 737522 748800 150 26 59 79 102 0 0 0 0 2 0 0 0 0 0 +2015 1783753285409063500 REFRESH 46 0 0.66001320544861031 2 15 2 15 0 0 102 12 413 3943900 55200 149.59689331054688 0.97419999999999995 179.2671 20160 11960 0 0 983040 737280 737280 737500 748800 69 26 60 34 224 0 0 1 0 11 0 0 0 0 0 +2016 1783753285611837200 REFRESH 38 0 0.65008261016303948 4 14 4 14 0 0 81 3 421 3943932 55200 149.99346923828125 0.97650000000000003 178.2765 20160 12012 0 0 983040 737280 737280 737532 748800 48 26 40 37 270 0 0 0 0 3 0 0 0 0 0 +2017 1783753285846040700 REFRESH 21 0 0.66174840206253494 0 10 0 10 0 0 169 6 414 3943911 55200 150.4583740234375 0.97219999999999995 201.16640000000001 20160 12491 0 0 983040 737280 737280 737511 748800 101 26 30 79 178 0 0 0 0 6 0 0 0 0 0 +2018 1783753286098985700 REFRESH 11 0 0.70325702762956832 0 8 0 8 0 0 96 5 425 3943923 55200 149.81939697265625 0.97360000000000002 227.1088 20160 13324 0 0 983040 737280 737280 737523 748800 135 25 66 67 132 0 0 0 0 5 0 0 0 0 0 +2019 1783753286293446900 REFRESH 7 0 0.66068849163088883 1 12 1 12 0 0 127 8 413 3943903 55200 149.39852905273438 0.97370000000000001 178.4136 20160 12230 0 0 983040 737280 737280 737503 748800 150 26 28 34 175 0 0 0 0 8 0 0 0 0 0 +2020 1783753286479338200 REFRESH 30 0 0.72685117431737778 1 9 1 9 0 0 121 10 409 3943907 55200 149.76634216308594 0.97340000000000004 184.7252 20160 12580 0 0 983040 737280 737280 737507 748800 69 25 39 31 245 0 0 0 0 10 0 0 0 0 0 +2021 1783753286662887700 REFRESH 50 0 0.66284145067133826 2 9 2 9 0 0 121 6 420 3943912 55200 150.17266845703125 0.97699999999999998 182.34270000000001 20160 12297 0 0 983040 737280 737280 737509 748800 167 26 38 52 137 0 0 0 0 6 0 0 0 0 0 +2022 1783753286847118600 REFRESH 16 0 0.66388764857014904 2 7 2 7 0 0 166 5 419 3943903 55200 150.98876953125 1.0002 183.10249999999999 20160 13193 0 0 983040 737280 737280 737503 748800 31 26 26 216 120 0 0 0 0 5 0 0 0 0 0 +2023 1783753287094241500 REFRESH 56 0 0.83267363912637871 2 5 2 5 0 0 187 5 415 3943910 55200 150.47474670410156 0.97340000000000004 222.7338 20160 13509 0 0 983040 737280 737280 737510 748800 180 26 50 60 99 0 0 0 0 5 0 0 0 0 0 +2024 1783753287289359800 REFRESH 42 0 0.65917676818281878 4 12 4 12 0 0 119 19 418 3943911 55200 150.2791748046875 0.99039999999999995 178.7261 20160 11975 0 0 983040 737280 737280 737510 748800 135 25 25 25 208 0 0 0 0 19 0 0 0 0 0 +2025 1783753287472351400 REFRESH 3 0 0.71997885002919482 2 9 2 9 0 0 130 13 424 3943901 55200 148.99507141113281 0.97309999999999997 181.89699999999999 20160 12720 0 0 983040 737280 737280 737500 748800 212 25 35 55 97 0 0 0 1 12 0 0 0 0 0 +2026 1783753287676921800 REFRESH 57 0 0.65656135153209427 2 12 2 12 0 0 119 6 416 3943910 55200 151.1246337890625 0.97599999999999998 179.59350000000001 20160 12176 0 0 983040 737280 737280 737508 748800 104 26 87 79 120 0 0 0 0 6 0 0 0 0 0 +2027 1783753287860737700 REFRESH 14 0 0.66223600975549934 0 12 0 12 0 0 108 6 415 3943912 55200 149.317626953125 0.97189999999999999 182.6815 20160 11898 0 0 983040 737280 737280 737512 748800 100 26 30 51 208 0 0 0 0 6 0 0 0 0 0 +2028 1783753288066032200 REFRESH 15 0 0.65779003780163858 3 12 3 12 0 0 84 10 419 3943922 55200 150.89561462402344 0.97419999999999995 180.35669999999999 20160 12137 0 0 983040 737280 737280 737520 748800 34 26 30 25 304 0 0 0 0 10 0 0 0 0 0 +2029 1783753288256345700 REFRESH 53 0 0.70662107769089866 0 8 0 8 0 0 136 9 413 3943907 55200 150.13990783691406 0.9728 189.12350000000001 20160 13353 0 0 983040 737280 737280 737507 748800 130 27 27 48 181 0 0 0 0 9 0 0 0 0 0 +2030 1783753288479160400 REFRESH 41 0 0.65987375017216865 1 10 1 10 0 0 106 9 412 3943933 55200 149.98220825195312 0.98129999999999995 199.38249999999999 20160 12752 0 0 983040 737280 737280 737533 748800 90 26 38 38 220 0 0 0 0 9 0 0 0 0 0 +2031 1783753288671007800 REFRESH 34 0 0.65840115042043501 1 13 1 13 0 0 99 5 427 3943905 55200 148.84147644042969 0.9768 176.3355 20160 13429 0 0 983040 737280 737280 737505 748800 79 25 51 56 216 0 0 0 0 5 0 0 0 0 0 +2032 1783753288868045300 REFRESH 35 0 0.66230831472858265 2 11 2 11 0 0 142 8 418 3943918 55200 150.34880065917969 0.97170000000000001 180.46209999999999 20160 12119 0 0 983040 737280 737280 737518 748800 109 25 29 84 171 0 0 0 0 8 0 0 0 0 0 +2033 1783753289953577600 DEPTH 8 1 0.81645712161139772 2 5 2 5 0 0 211 17 2559 23664901 81600 869.63578796386719 5.835 1084.3916999999999 120960 66370 1 0 5898240 4423680 4423680 4426499 4492800 251 152 158 181 1817 0 0 0 0 17 0 0 0 0 0 +2034 1783753291060438400 DEPTH 2 1 0.82015918718357539 2 10 2 10 1 0 117 75 2604 23664941 81600 860.86941528320312 5.8535000000000004 1105.7173 120960 57085 1 0 5898240 4423680 4423680 4426541 4492800 156 150 154 192 1952 0 0 0 1 74 0 0 0 0 2 +2035 1783753292411076300 DEPTH 17 1 0.81949047502070105 0 7 0 7 0 0 178 26 2532 23664833 81600 859.63162231445312 5.8681000000000001 1306.8300999999999 120960 65854 1 0 5898240 4423680 4423680 4426430 4492800 215 156 156 222 1783 0 0 0 0 26 0 0 0 0 0 +2036 1783753293720226400 DEPTH 13 1 0.78684741683126935 1 6 1 6 0 0 170 28 2496 23664831 81600 856.324951171875 5.8398999999999992 1265.2872 120960 64667 1 0 5898240 4423680 4423680 4426431 4492800 204 155 167 173 1797 0 0 0 0 28 0 0 0 0 0 +2037 1783753294966283600 DEPTH 33 1 0.70906750307228816 1 7 1 7 0 0 176 40 2540 23664931 81600 867.45050048828125 5.8557000000000006 1209.8326 120960 65362 1 0 5898240 4423680 4423680 4426530 4492800 184 154 156 150 1896 0 0 0 0 40 0 0 0 0 0 +2038 1783753296046129500 DEPTH 40 1 0.70625652781574022 1 12 1 12 1 0 113 47 2565 23664905 81600 860.18663024902344 5.8372000000000002 1030.4195999999999 120960 62076 1 0 5898240 4423680 4423680 4426502 4492800 203 150 171 282 1759 0 0 0 1 46 0 0 0 1 1 +2039 1783753297389250900 DEPTH 1 1 0.70400193509605236 1 7 1 7 0 0 120 16 2613 23664815 81600 863.16839599609375 5.8463000000000003 1307.6975 120960 64491 1 0 5898240 4423680 4423680 4426414 4492800 396 156 279 293 1489 0 0 0 0 16 0 0 0 0 0 +2040 1783753298670192300 DEPTH 31 1 0.69939847429505386 2 6 2 6 0 0 121 14 2625 23664915 81600 857.8759765625 5.8348000000000004 1266.2213999999999 120960 63789 1 0 5898240 4423680 4423680 4426513 4492800 957 150 180 287 1051 0 0 0 0 14 0 0 0 0 0 +2041 1783753299976047000 DEPTH 56 1 0.75718189596342933 2 5 2 5 0 0 188 29 2542 23664834 81600 855.34083557128906 5.8462999999999994 1288.8119999999999 120960 65154 1 0 5898240 4423680 4423680 4426434 4492800 469 156 168 283 1466 0 0 0 0 29 0 0 0 0 0 +2042 1783753301299641400 DEPTH 9 1 0.68506756663098112 2 6 2 6 0 0 121 8 2624 23664875 81600 865.75706481933594 5.8415999999999997 1297.2650000000001 120960 63533 1 0 5898240 4423680 4423680 4426474 4492800 663 150 380 404 1027 0 0 0 0 8 0 0 0 0 0 +2043 1783753302601626100 DEPTH 11 1 0.6988157783875224 0 8 0 8 0 0 96 10 2559 23664893 81600 851.67965698242188 5.8496999999999995 1300.8543 120960 63757 1 0 5898240 4423680 4423680 4426493 4492800 400 150 252 294 1463 0 0 0 0 10 0 0 0 0 0 +2044 1783753303884719600 DEPTH 30 1 0.70871883060293905 1 9 1 9 0 0 122 31 2521 23664919 81600 856.36857604980469 5.8566000000000003 1238.4001000000001 120960 60280 1 0 5898240 4423680 4423680 4426518 4492800 156 150 168 150 1897 0 0 0 0 31 0 0 0 0 0 +2045 1783753305142171900 DEPTH 45 1 0.6611178961103833 2 7 2 7 0 0 124 20 2633 23664932 81600 868.106201171875 5.8538999999999994 1256.1855 120960 62687 1 0 5898240 4423680 4423680 4426530 4492800 196 150 185 170 1932 0 0 0 0 20 0 0 0 0 0 +2046 1783753306444705300 DEPTH 44 1 0.66080187015679503 2 7 2 7 0 0 127 21 2591 23664934 81600 860.01284790039062 5.8278999999999996 1301.3246999999999 120960 62125 1 0 5898240 4423680 4423680 4426534 4492800 199 150 215 162 1865 0 0 0 0 21 0 0 0 0 0 +2047 1783753307533699400 DEPTH 29 1 0.66073290020209385 2 12 2 12 1 0 109 42 2540 23664875 81600 861.1077880859375 5.8925000000000001 1036.1746000000001 120960 56683 1 0 5898240 4423680 4423680 4426474 4492800 194 150 175 185 1836 0 0 0 0 42 0 0 0 0 1 +2048 1783753308564267000 DEPTH 47 1 0.65992277757015294 2 11 2 11 0 0 110 23 2566 23664883 81600 858.70796203613281 5.8513000000000002 1029.3125 120960 57968 1 0 5898240 4423680 4423680 4426482 4492800 191 150 162 167 1896 0 0 0 0 23 0 0 0 0 0 +2049 1783753309665425300 DEPTH 8 1 0.72748480494387591 2 5 2 5 0 0 212 26 2540 23664790 81600 862.12043762207031 5.8854999999999995 1072.3010999999999 120960 54834 1 0 5898240 4423680 4423680 4426390 4492800 345 151 161 203 1680 0 0 0 0 26 0 0 0 0 0 +2050 1783753310827583300 DEPTH 2 1 0.72987327468776386 2 10 2 9 1 0 119 74 2576 23664841 81600 852.03231811523438 5.8552999999999997 1161.0708999999999 120960 45993 1 0 5898240 4423680 4423680 4426438 4492800 156 150 150 150 1970 0 0 0 0 74 0 0 0 0 3 +2051 1783753312161238800 DEPTH 17 1 0.73021566172772456 0 7 0 7 0 0 178 31 2532 23664852 81600 849.94630432128906 5.8503999999999996 1293.8987999999999 120960 54507 1 0 5898240 4423680 4423680 4426448 4492800 207 156 156 226 1787 0 0 0 0 31 0 0 0 0 0 +2052 1783753313372115300 DEPTH 3 1 0.7118135368468137 2 9 2 9 1 0 131 46 2572 23664792 81600 856.98716735839844 5.8593999999999991 1182.3366000000001 120960 60379 1 0 5898240 4423680 4423680 4426388 4492800 295 150 155 213 1759 2 0 0 2 42 0 0 0 0 1 +2053 1783753314639477000 DEPTH 13 1 0.73803741153506019 1 6 1 6 0 0 170 25 2492 23664775 81600 851.03367614746094 5.8468 1266.2807 120960 53143 1 0 5898240 4423680 4423680 4426372 4492800 218 154 166 182 1772 0 0 0 0 25 0 0 0 0 0 +2054 1783753315694669900 DEPTH 43 1 0.6599539123027518 2 13 2 13 0 0 121 23 2538 23664861 81600 858.83012390136719 5.8574000000000002 1029.0135 120960 56956 1 0 5898240 4423680 4423680 4426461 4492800 249 156 170 173 1790 0 0 0 0 23 0 0 0 0 0 +2055 1783753316768717700 DEPTH 37 1 0.6593576105120651 1 12 1 12 1 0 129 30 2611 23664816 81600 856.68534851074219 5.8470000000000004 1027.9058 120960 58642 1 0 5898240 4423680 4423680 4426414 4492800 298 156 161 174 1822 4 0 0 0 26 0 0 0 0 2 +2056 1783753317816093600 DEPTH 27 1 0.65903225873240046 0 14 0 14 0 0 123 53 2562 23664780 81600 859.1275634765625 5.8657000000000004 1033.7153000000001 120960 56046 1 0 5898240 4423680 4423680 4426379 4492800 184 156 152 157 1913 0 0 0 0 53 0 0 0 0 0 +2057 1783753319102442100 DEPTH 56 1 0.73714045274297268 2 5 2 5 0 0 188 33 2556 23664867 81600 848.98713684082031 5.8307000000000002 1285.0904 120960 53845 1 0 5898240 4423680 4423680 4426466 4492800 465 156 168 316 1451 0 0 0 0 33 0 0 0 0 0 +2058 1783753320297827500 DEPTH 2 1 0.7412228918001037 2 9 2 8 1 0 123 95 2553 23664902 81600 848.25680541992188 5.8587999999999996 1194.2014999999999 120960 36769 1 0 5898240 4423680 4423680 4426499 4492800 156 150 150 150 1947 2 0 0 0 93 0 0 0 0 2 +2059 1783753321541768100 DEPTH 53 1 0.70557267280049485 0 8 0 8 0 0 137 30 2518 23664732 81600 861.59306335449219 5.8384 1242.7091 120960 64521 1 0 5898240 4423680 4423680 4426328 4492800 189 156 150 166 1857 0 0 0 0 30 0 0 0 0 0 +2060 1783753322618310700 DEPTH 20 1 0.65862193163265892 3 12 3 12 1 0 102 35 2610 23664790 81600 853.47586059570312 5.8452999999999999 1024.2383 120960 56515 1 0 5898240 4423680 4423680 4426389 4492800 284 156 282 321 1567 0 0 7 0 28 0 0 0 0 1 +2061 1783753323709235300 DEPTH 16 1 0.65846587596799155 2 7 2 7 0 0 166 35 2512 23664844 81600 866.29460144042969 5.8516999999999992 1089.7833000000001 120960 64099 1 0 5898240 4423680 4423680 4426439 4492800 160 156 156 585 1455 0 0 0 0 35 0 0 0 0 0 +2062 1783753324910736600 DEPTH 33 1 0.70817752828839087 1 7 1 7 0 0 176 34 2543 23664847 81600 860.45501708984375 5.8302000000000005 1200.3237999999999 120960 53865 1 0 5898240 4423680 4423680 4426446 4492800 189 153 156 152 1893 0 0 0 0 34 0 0 0 0 0 +2063 1783753326230256700 DEPTH 41 1 0.65804353110364855 1 10 1 10 1 0 106 29 2563 23664848 81600 850.29951477050781 5.8505000000000003 1250.5192999999999 120960 59594 1 0 5898240 4423680 4423680 4426446 4492800 293 156 176 193 1745 0 0 0 0 29 0 0 0 0 1 +2064 1783753327261708300 DEPTH 39 1 0.65791673297531739 2 12 3 11 1 0 150 52 2546 23664907 81600 856.05648803710938 5.8304 1030.2663 120960 56351 1 0 5898240 4423680 4423680 4426506 4492800 166 153 153 163 1911 0 0 0 0 52 0 0 0 0 1 +2065 1783753327530142300 REFRESH 17 0 0.71077028081631421 0 7 0 7 0 0 178 4 414 3943897 55200 151.20783996582031 0.98329999999999995 224.96559999999999 20160 13448 0 0 983040 737280 737280 737497 748800 121 26 35 104 128 0 0 0 0 4 0 0 0 0 0 +2066 1783753327722075400 REFRESH 22 0 0.65435047509599353 3 11 3 11 0 0 116 6 419 3943915 55200 149.99346923828125 0.98450000000000004 179.47120000000001 20160 12122 0 0 983040 737280 737280 737515 748800 121 25 29 27 217 0 0 0 0 6 0 0 0 0 0 +2067 1783753327912587800 REFRESH 25 0 0.65429505511071184 3 11 3 11 0 0 109 6 422 3943935 55200 149.99961853027344 0.9758 178.31950000000001 20160 11782 0 0 983040 737280 737280 737535 748800 73 25 56 71 197 0 0 0 0 6 0 0 0 0 0 +2068 1783753328135331700 REFRESH 9 0 0.68501037596847403 2 6 2 6 1 0 121 8 431 3943880 55200 151.54893493652344 0.97789999999999999 221.65870000000001 20160 13086 0 0 983040 737280 737280 737480 748800 136 25 78 73 119 0 0 0 0 8 0 0 0 0 1 +2069 1783753328314164500 REFRESH 37 0 0.54724562532511656 1 12 1 12 0 0 130 11 419 3943896 55200 149.21420288085938 0.97409999999999997 177.71600000000001 20160 12017 0 0 983040 737280 737280 737496 748800 110 26 55 31 197 0 0 0 0 11 0 0 0 0 0 +2070 1783753328516176500 REFRESH 12 0 0.6566739637975878 3 8 3 8 0 0 167 13 412 3943916 55200 150.65805053710938 0.97560000000000002 179.75729999999999 20160 12268 0 0 983040 737280 737280 737515 748800 139 26 39 100 108 0 0 0 1 12 0 0 0 0 0 +2071 1783753328725136500 REFRESH 1 0 0.70408339081278104 1 7 1 7 0 0 120 3 419 3943912 55200 150.23309326171875 0.97399999999999998 207.82570000000001 20160 13239 0 0 983040 737280 737280 737512 748800 127 26 79 77 110 0 0 0 0 3 0 0 0 0 0 +2072 1783753328915233100 REFRESH 53 0 0.58540055697518834 0 8 0 8 0 0 137 6 417 3943913 55200 151.3359375 0.97299999999999998 188.8442 20160 13435 0 0 983040 737280 737280 737513 748800 112 26 27 44 208 0 0 0 0 6 0 0 0 0 0 +2073 1783753329101568200 REFRESH 30 0 0.71126303659239076 1 9 1 9 0 0 122 12 415 3943921 55200 150.68540954589844 0.97609999999999997 185.2133 20160 12708 0 0 983040 737280 737280 737521 748800 96 26 53 35 205 0 0 0 0 12 0 0 0 0 0 +2074 1783753329300482700 REFRESH 34 0 0.65176111857428376 1 13 1 13 0 0 100 9 434 3943929 55200 148.86781311035156 0.97719999999999996 177.53370000000001 20160 13300 0 0 983040 737280 737280 737529 748800 96 25 59 72 182 0 0 0 0 9 0 0 0 0 0 +2075 1783753329515139200 REFRESH 21 0 0.65651930815379256 0 10 0 10 0 0 169 10 413 3943914 55200 150.36927795410156 0.97250000000000003 199.9374 20160 12474 0 0 983040 737280 737280 737514 748800 106 26 33 83 165 0 0 0 0 10 0 0 0 0 0 +2076 1783753329738276800 REFRESH 56 0 0.76702849371168735 2 5 2 5 0 0 188 1 414 3943912 55200 150.16447448730469 0.97170000000000001 221.9119 20160 13362 0 0 983040 737280 737280 737512 748800 175 26 46 59 108 0 0 0 0 1 0 0 0 0 0 +2077 1783753329926601900 REFRESH 4 0 0.61315574957262808 1 13 1 13 0 0 48 1 421 3943915 55200 148.20646667480469 0.97829999999999995 174.7653 20160 12732 0 0 983040 737280 737280 737515 748800 26 25 35 28 307 0 0 0 0 1 0 0 0 0 0 +2078 1783753330107414400 REFRESH 27 0 0.62620575927916133 0 14 0 14 0 0 124 16 411 3943916 55200 150.80960083007812 0.97829999999999995 179.63460000000001 20160 12100 0 0 983040 737280 737280 737516 748800 46 26 28 30 281 1 0 0 0 15 0 0 0 0 0 +2079 1783753330296421700 REFRESH 40 0 0.69836674483688077 1 12 1 12 0 0 113 8 420 3943914 55200 151.0277099609375 0.97260000000000002 179.15600000000001 20160 12977 0 0 983040 737280 737280 737514 748800 159 25 33 76 127 0 0 0 0 8 0 0 0 0 0 +2080 1783753330539034300 REFRESH 52 0 0.65354521236058827 1 8 1 8 0 0 105 2 431 3943921 55200 148.93055725097656 0.97460000000000002 221.66079999999999 20160 12485 0 0 983040 737280 737280 737521 748800 133 25 33 158 82 0 0 0 0 2 0 0 0 0 0 +2081 1783753330763287700 REFRESH 44 0 0.66099492109227143 2 7 2 7 0 0 127 5 421 3943944 55200 149.61868286132812 0.98140000000000005 223.06489999999999 20160 12980 0 0 983040 737280 737280 737544 748800 67 26 52 28 248 0 0 0 0 5 0 0 0 0 0 +2082 1783753330962458600 REFRESH 48 0 0.60743324492844186 2 11 2 11 1 0 75 4 431 3943912 55200 149.19270324707031 0.96909999999999996 177.4522 20160 12076 0 0 983040 737280 737280 737511 748800 195 25 55 59 97 0 0 0 0 4 0 0 0 0 1 +2083 1783753331163843800 REFRESH 41 0 0.60727237359136033 1 10 1 10 0 0 106 9 416 3943909 55200 149.40876770019531 0.97740000000000005 200.23689999999999 20160 13013 0 0 983040 737280 737280 737509 748800 102 26 38 38 212 0 0 1 1 7 0 0 0 0 0 +2084 1783753331356245300 REFRESH 46 0 0.65711395330915057 2 15 2 15 0 0 103 12 413 3943910 55200 150.38223266601562 0.97509999999999997 179.58580000000001 20160 12019 0 0 983040 737280 737280 737509 748800 67 26 48 29 243 0 0 1 0 11 0 0 0 0 0 +2085 1783753331546712700 REFRESH 38 0 0.64174469546408208 4 14 4 14 0 0 81 9 420 3943952 55200 149.33299255371094 0.97999999999999998 177.48439999999999 20160 11955 0 0 983040 737280 737280 737551 748800 55 26 42 40 257 0 0 0 0 9 0 0 0 0 0 +2086 1783753331736461000 REFRESH 18 0 0.65756577696473872 4 15 4 15 0 0 99 13 431 3943927 55200 149.47021484375 0.97750000000000004 177.88570000000001 20160 12003 0 0 983040 737280 737280 737527 748800 32 25 25 29 320 0 0 0 1 12 0 0 0 0 0 +2087 1783753331919007600 REFRESH 3 0 0.70433520983175368 2 9 2 9 0 0 132 12 422 3943897 55200 149.25311279296875 0.9728 181.43100000000001 20160 12795 0 0 983040 737280 737280 737497 748800 209 25 37 56 95 1 0 0 1 10 0 0 0 0 0 +2088 1783753332118009200 REFRESH 5 0 0.64837302106050987 2 11 2 11 0 0 90 7 406 3943899 55200 150.43260192871094 0.97760000000000002 177.95580000000001 20160 13617 0 0 983040 737280 737280 737499 748800 59 26 78 108 135 0 0 0 0 7 0 0 0 0 0 +2089 1783753332315028400 REFRESH 13 0 0.81910683215809654 1 6 1 6 0 0 170 2 413 3943899 55200 149.7364501953125 0.9748 195.90880000000001 20160 13630 0 0 983040 737280 737280 737499 748800 149 26 56 82 100 0 0 0 0 2 0 0 0 0 0 +2090 1783753332515975700 REFRESH 19 0 0.65144531034814657 2 11 2 11 0 0 118 12 416 3943907 55200 150.65907287597656 0.9798 179.4727 20160 12038 0 0 983040 737280 737280 737507 748800 128 25 26 52 185 0 1 0 0 11 0 0 0 0 0 +2091 1783753332744328600 REFRESH 31 0 0.70004606867476626 2 6 2 6 0 0 121 5 430 3943926 55200 150.36227416992188 0.9778 216.3954 20160 13029 0 0 983040 737280 737280 737526 748800 219 25 30 69 87 0 0 0 0 5 0 0 0 0 0 +2092 1783753332934459600 REFRESH 23 0 0.65678087345990632 3 14 3 14 0 0 98 12 410 3943909 55200 150.29350280761719 0.96779999999999999 178.3168 20160 11807 0 0 983040 737280 737280 737508 748800 30 25 57 42 256 0 0 0 0 12 0 0 0 0 0 +2093 1783753333125395500 REFRESH 49 0 0.65764345352133513 3 10 3 10 0 0 125 4 419 3943921 55200 150.32217407226562 0.97850000000000004 179.23240000000001 20160 12348 0 0 983040 737280 737280 737521 748800 96 26 57 49 191 0 0 0 0 4 0 0 0 0 0 +2094 1783753333316646900 REFRESH 24 0 0.65453778038922894 4 11 4 11 0 0 130 9 411 3943878 55200 150.06617736816406 0.98140000000000005 179.58539999999999 20160 11859 0 0 983040 737280 737280 737478 748800 39 26 42 51 253 0 0 0 0 9 0 0 0 0 0 +2095 1783753333495680300 REFRESH 20 0 0.65625862298293858 3 12 3 12 0 0 103 10 428 3943915 55200 149.54188537597656 0.97340000000000004 177.88130000000001 20160 12011 0 0 983040 737280 737280 737515 748800 120 26 62 70 150 1 0 0 0 9 0 0 0 0 0 +2096 1783753333694766700 REFRESH 51 0 0.65264883296124154 3 12 3 12 0 0 90 9 417 3943890 55200 149.30943298339844 0.98519999999999996 177.46440000000001 20160 11970 0 0 983040 737280 737280 737489 748800 42 26 138 99 112 0 0 0 0 9 0 0 0 0 0 +2097 1783753333914651600 REFRESH 55 0 0.65774715181314647 1 15 1 15 0 0 127 8 412 3943903 55200 149.59513854980469 0.9819 179.16460000000001 20160 12157 0 0 983040 737280 737280 737503 748800 69 26 33 60 224 0 0 0 0 8 0 0 0 0 0 +2098 1783753334105847800 REFRESH 35 0 0.65774744486984582 2 11 2 11 0 0 143 6 414 3943909 55200 150.35186767578125 0.97699999999999998 179.83160000000001 20160 12222 0 0 983040 737280 737280 737509 748800 125 25 31 99 134 0 0 0 0 6 0 0 0 0 0 +2099 1783753334290120600 REFRESH 8 0 0.81847958464099846 2 5 2 5 0 0 212 5 415 3943926 55200 150.99801635742188 0.97430000000000005 182.8005 20160 13485 0 0 983040 737280 737280 737526 748800 157 26 28 83 121 0 0 0 0 5 0 0 0 0 0 +2100 1783753334473865600 REFRESH 50 0 0.65734921175834649 2 9 2 9 0 0 121 4 420 3943915 55200 150.25050354003906 0.9768 182.499 20160 12195 0 0 983040 737280 737280 737515 748800 177 26 39 59 119 0 0 0 0 4 0 0 0 0 0 +2101 1783753334673668100 REFRESH 32 0 0.65761689864449102 2 14 2 14 0 0 115 11 427 3943905 55200 150.16361999511719 0.98050000000000004 179.1396 20160 12391 0 0 983040 737280 737280 737504 748800 191 25 37 33 141 0 0 0 0 11 0 0 0 0 0 +2102 1783753334870053200 REFRESH 6 0 0.63297087090446591 3 11 3 11 0 0 114 9 419 3943921 55200 150.23324584960938 0.97289999999999999 177.6859 20160 12328 0 0 983040 737280 737280 737521 748800 26 25 25 25 318 0 0 0 0 9 0 0 0 0 0 +2103 1783753335061649800 REFRESH 57 0 0.64965581275924555 2 12 2 12 0 0 119 12 416 3943903 55200 150.31193542480469 0.9758 179.47479999999999 20160 12239 0 0 983040 737280 737280 737503 748800 104 26 88 77 121 0 0 1 0 11 0 0 0 0 0 +2104 1783753335251379200 REFRESH 0 0 0.65416702027699047 1 12 1 12 0 0 89 6 426 3943910 55200 150.00370788574219 0.98160000000000003 178.05430000000001 20160 12143 0 0 983040 737280 737280 737510 748800 70 25 43 34 254 0 0 0 0 6 0 0 0 0 0 +2105 1783753335442003300 REFRESH 7 0 0.65552695294007046 1 12 1 12 0 0 127 7 411 3943909 55200 149.87161254882812 0.97409999999999997 178.4872 20160 12129 0 0 983040 737280 737280 737509 748800 149 26 29 34 173 0 0 0 0 7 0 0 0 0 0 +2106 1783753335627804400 REFRESH 2 0 0.99949292325613914 2 8 2 8 0 0 123 8 408 3943904 55200 150.41331481933594 0.98050000000000004 184.70760000000001 20160 12106 0 0 983040 737280 737280 737504 748800 31 25 57 70 225 0 0 0 0 8 0 0 0 0 0 +2107 1783753335825970200 REFRESH 26 0 0.6533536009995341 1 13 1 13 0 0 75 5 426 3943920 55200 149.52549743652344 0.97399999999999998 177.68520000000001 20160 12594 0 0 983040 737280 737280 737520 748800 32 25 33 45 291 0 0 0 0 5 0 0 0 0 0 +2108 1783753336016018100 REFRESH 58 0 0.6507055115932161 2 12 2 12 0 0 115 6 423 3943904 55200 150.2740478515625 0.97309999999999997 178.3699 20160 12509 0 0 983040 737280 737280 737504 748800 94 26 60 57 186 0 0 0 0 6 0 0 0 0 0 +2109 1783753336242512200 REFRESH 11 0 0.6999073932451032 0 8 0 8 0 0 96 6 428 3943927 55200 149.55929565429688 0.97529999999999994 225.42169999999999 20160 12991 0 0 983040 737280 737280 737527 748800 133 25 68 68 134 0 0 0 0 6 0 0 0 0 0 +2110 1783753336431056200 REFRESH 45 0 0.66128936516049452 2 7 2 7 0 0 124 4 421 3943906 55200 150.80345153808594 0.97450000000000003 187.2749 20160 13185 0 0 983040 737280 737280 737506 748800 112 25 46 44 194 0 0 0 0 4 0 0 0 0 0 +2111 1783753336630499100 REFRESH 10 0 0.65246985451626283 1 11 1 11 0 0 106 8 423 3943909 55200 149.36473083496094 0.97450000000000003 178.57550000000001 20160 12983 0 0 983040 737280 737280 737509 748800 123 26 48 39 187 1 0 0 0 7 0 0 0 0 0 +2112 1783753336867786800 REFRESH 54 0 0.6568755415677342 1 8 1 8 0 0 111 7 425 3943947 55200 151.1014404296875 0.98540000000000005 224.1857 20160 12801 0 0 983040 737280 737280 737547 748800 151 25 59 114 76 0 0 0 0 7 0 0 0 0 0 +2113 1783753337061631300 REFRESH 28 0 0.65477151514850229 1 12 1 12 0 0 142 7 404 3943920 55200 150.30271911621094 0.97970000000000002 181.46000000000001 20160 12156 0 0 983040 737280 737280 737520 748800 143 25 30 28 178 0 0 0 0 7 0 0 0 0 0 +2114 1783753337255404600 REFRESH 42 0 0.6562838622830991 4 12 4 12 0 0 119 8 414 3943895 55200 150.58023071289062 0.97929999999999995 180.6361 20160 11923 0 0 983040 737280 737280 737495 748800 148 25 25 28 188 0 0 0 0 8 0 0 0 0 0 +2115 1783753337442548400 REFRESH 33 0 0.70740056168505772 1 7 1 7 0 0 176 4 419 3943924 55200 151.62879943847656 0.97109999999999996 185.9735 20160 13469 0 0 983040 737280 737280 737524 748800 107 26 47 37 202 0 0 0 0 4 0 0 0 0 0 +2116 1783753337669340000 REFRESH 43 0 0.65713429363065967 2 13 2 13 0 0 122 9 417 3943891 55200 150.79731750488281 0.97760000000000002 180.74959999999999 20160 11877 0 0 983040 737280 737280 737491 748800 116 26 40 56 179 0 0 0 1 8 0 0 0 0 0 +2117 1783753337848690700 REFRESH 39 0 0.70541959358655892 3 11 3 11 0 0 151 15 405 3943918 55200 148.96537780761719 0.97609999999999997 178.1574 20160 11841 0 0 983040 737280 737280 737518 748800 67 27 30 33 248 0 0 0 0 15 0 0 0 0 0 +2118 1783753338047914100 REFRESH 15 0 0.65613653993629306 3 12 3 12 0 0 85 12 419 3943896 55200 149.79277038574219 0.97330000000000005 178.1617 20160 12049 0 0 983040 737280 737280 737496 748800 34 26 30 25 304 0 0 0 0 12 0 0 0 0 0 +2119 1783753338228723200 REFRESH 29 0 0.6585661547015893 2 12 2 12 0 0 109 11 417 3943926 55200 149.83270263671875 0.9839 179.66079999999999 20160 11902 0 0 983040 737280 737280 737526 748800 110 25 62 49 171 0 0 0 0 11 0 0 0 0 0 +2120 1783753338429942500 REFRESH 36 0 0.65593357684921694 3 10 3 10 0 0 105 12 430 3943899 55200 150.84521484375 0.99819999999999998 180.4229 20160 11863 0 0 983040 737280 737280 737499 748800 208 25 42 57 98 0 0 0 0 12 0 0 0 0 0 +2121 1783753338627447300 REFRESH 14 0 0.65682223322580402 0 12 0 12 1 0 108 5 416 3943917 55200 150.03033447265625 0.99990000000000001 184.9145 20160 11964 0 0 983040 737280 737280 737517 748800 99 26 30 44 217 0 0 0 0 5 0 0 0 0 1 +2122 1783753338812007200 REFRESH 16 0 0.65857141070643144 2 7 2 7 1 0 166 4 416 3943894 55200 151.30419921875 0.97430000000000005 183.4024 20160 13154 0 0 983040 737280 737280 737493 748800 33 26 26 243 88 0 0 0 0 4 0 0 0 0 1 +2123 1783753338992613200 REFRESH 47 0 0.65814618710492567 2 11 2 11 0 0 110 12 420 3943939 55200 150.16755676269531 0.98319999999999996 179.44290000000001 20160 12060 0 0 983040 737280 737280 737539 748800 104 26 44 32 214 0 0 0 0 12 0 0 0 0 0 +2124 1783753340273786800 DEPTH 2 1 0.89306133871455473 2 8 2 8 1 0 125 70 2546 23664862 81600 858.5528564453125 5.8982999999999999 1243.6963000000001 120960 57602 1 0 5898240 4423680 4423680 4426456 4492800 156 150 150 150 1940 0 1 0 0 69 0 0 0 0 1 +2125 1783753341566317600 DEPTH 56 1 0.81797886312636114 2 5 2 5 0 0 190 31 2548 23664753 81600 857.39468383789062 5.8307999999999991 1291.3146999999999 120960 65377 1 0 5898240 4423680 4423680 4426353 4492800 476 156 168 267 1481 0 0 0 0 31 0 0 0 0 0 +2126 1783753342896836900 DEPTH 17 1 0.81539740166554253 0 7 0 7 0 0 179 35 2531 23664780 81600 860.74430847167969 5.8511000000000006 1298.7150999999999 120960 65475 1 0 5898240 4423680 4423680 4426376 4492800 206 156 156 215 1798 0 0 0 0 35 0 0 0 0 0 +2127 1783753344010684700 DEPTH 8 1 0.81419765926472965 2 5 2 5 0 0 212 18 2559 23664809 81600 868.46405029296875 5.8594999999999997 1081.6596 120960 66327 1 0 5898240 4423680 4423680 4426406 4492800 289 151 157 185 1777 0 0 0 0 18 0 0 0 0 0 +2128 1783753345278878600 DEPTH 13 1 0.81199913304145022 1 6 1 6 0 0 171 35 2500 23664834 81600 859.94700622558594 5.8499000000000008 1267.0748000000001 120960 65729 1 0 5898240 4423680 4423680 4426433 4492800 229 156 169 183 1763 0 0 0 0 35 0 0 0 0 0 +2129 1783753346501347900 DEPTH 30 1 0.70455024457024851 1 9 1 9 0 0 123 39 2524 23664890 81600 857.294677734375 5.8582000000000001 1210.3936000000001 120960 61153 1 0 5898240 4423680 4423680 4426490 4492800 156 150 168 150 1900 0 0 0 0 39 0 0 0 0 0 +2130 1783753347790161700 DEPTH 53 1 0.7013526258007019 0 8 0 8 0 0 139 34 2510 23664858 81600 863.857421875 5.8441000000000001 1248.6147000000001 120960 65059 1 0 5898240 4423680 4423680 4426455 4492800 190 156 150 168 1846 0 0 0 0 34 0 0 0 0 0 +2131 1783753349096525900 DEPTH 9 1 0.69847830382342568 2 6 2 6 0 0 121 17 2623 23664901 81600 862.79226684570312 5.9756 1294.6617000000001 120960 63977 1 0 5898240 4423680 4423680 4426499 4492800 670 150 387 427 989 0 0 0 0 17 0 0 0 0 0 +2132 1783753350324521500 DEPTH 2 1 0.76689287300163433 2 8 2 8 1 0 126 50 2549 23664787 81600 850.04966735839844 5.8355000000000006 1226.874 120960 46724 1 0 5898240 4423680 4423680 4426386 4492800 156 150 150 150 1943 0 0 0 0 50 0 0 0 0 1 +2133 1783753351517718800 DEPTH 3 1 0.6974931085465399 2 9 2 9 1 0 132 47 2563 23664772 81600 857.58164978027344 5.8492000000000006 1192.1099999999999 120960 60512 1 0 5898240 4423680 4423680 4426371 4492800 311 150 156 200 1746 0 0 0 1 46 0 0 0 0 1 +2134 1783753352873121600 DEPTH 1 1 0.69719372106375155 1 7 1 7 0 0 121 18 2604 23664834 81600 861.62187194824219 5.8248999999999995 1302.0111999999999 120960 64651 1 0 5898240 4423680 4423680 4426433 4492800 412 156 288 304 1444 0 0 0 0 18 0 0 0 0 0 +2135 1783753354144270200 DEPTH 31 1 0.69546568416106458 2 6 2 6 0 0 122 16 2624 23664852 81600 860.7791748046875 5.8430999999999997 1269.9236000000001 120960 63687 1 0 5898240 4423680 4423680 4426449 4492800 958 150 180 354 982 0 0 0 0 16 0 0 0 0 0 +2136 1783753355175774200 DEPTH 40 1 0.68866482725271538 1 12 1 12 1 0 114 41 2578 23664921 81600 861.30718994140625 5.8627000000000002 1030.1833999999999 120960 62352 1 0 5898240 4423680 4423680 4426518 4492800 201 150 171 304 1752 0 0 0 0 41 0 0 0 0 1 +2137 1783753356538918600 DEPTH 11 1 0.69655519751220563 0 8 0 8 0 0 96 12 2551 23664823 81600 854.73483276367188 5.8217999999999996 1300.0355999999999 120960 63449 1 0 5898240 4423680 4423680 4426422 4492800 336 150 235 272 1558 0 0 0 0 12 0 0 0 0 0 +2138 1783753357876954600 DEPTH 44 1 0.65614736735143808 2 7 2 7 0 0 128 21 2594 23664849 81600 859.70933532714844 5.8312999999999997 1299.1637000000001 120960 62546 1 0 5898240 4423680 4423680 4426449 4492800 192 150 217 172 1863 0 0 0 0 21 0 0 0 0 0 +2139 1783753358925418100 DEPTH 12 1 0.65575267792671355 3 8 3 8 0 0 168 59 2532 23664790 81600 854.493408203125 5.8388 1026.2221 120960 57896 1 0 5898240 4423680 4423680 4426390 4492800 258 150 172 268 1684 2 0 0 1 56 0 0 0 0 0 +2140 1783753360149651500 DEPTH 2 1 0.73897128110123289 2 8 2 8 0 0 127 57 2553 23664846 81600 846.78221130371094 5.8334999999999999 1223.1194 120960 37610 1 0 5898240 4423680 4423680 4426444 4492800 156 150 150 150 1947 0 0 0 0 57 0 0 0 0 0 +2141 1783753361444996500 DEPTH 56 1 0.72861021128705172 2 5 2 5 0 0 190 27 2560 23664824 81600 848.89549255371094 5.8761000000000001 1282.2624000000001 120960 54112 1 0 5898240 4423680 4423680 4426423 4492800 450 156 168 303 1483 0 0 0 0 27 0 0 0 0 0 +2142 1783753362748411000 DEPTH 17 1 0.72628729426830063 0 7 0 7 0 0 179 41 2521 23664776 81600 850.60371398925781 5.8308 1290.4001000000001 120960 54347 1 0 5898240 4423680 4423680 4426373 4492800 206 156 156 239 1764 4 0 0 0 37 0 0 0 0 0 +2143 1783753364016297600 DEPTH 33 1 0.70045755627648898 1 7 1 7 0 0 176 20 2558 23664895 81600 869.52645874023438 5.8536999999999999 1231.3181 120960 65535 1 0 5898240 4423680 4423680 4426493 4492800 188 152 156 150 1912 0 0 0 0 20 0 0 0 0 0 +2144 1783753365090245100 DEPTH 8 1 0.73521241476032906 2 5 2 5 0 0 212 21 2563 23664829 81600 863.19369506835938 5.8389000000000006 1072.8441 120960 55130 1 0 5898240 4423680 4423680 4426428 4492800 321 152 158 213 1719 0 0 0 0 21 0 0 0 0 0 +2145 1783753366347954600 DEPTH 13 1 0.7334207645511629 1 6 1 6 1 0 172 31 2499 23664821 81600 849.86799621582031 5.8285 1256.5782999999999 120960 54519 1 0 5898240 4423680 4423680 4426420 4492800 215 154 167 214 1749 0 0 0 0 31 0 0 0 0 1 +2146 1783753367381240900 DEPTH 39 1 0.69780252069679172 3 11 3 11 0 0 152 55 2545 23664806 81600 858.14918518066406 5.8456999999999999 1032.0794000000001 120960 56377 1 0 5898240 4423680 4423680 4426406 4492800 178 152 153 161 1901 0 0 0 0 55 0 0 0 0 0 +2147 1783753368718741700 DEPTH 21 1 0.65573504434034779 0 10 0 10 1 0 170 34 2595 23664893 81600 861.35455322265625 5.8601999999999999 1298.4459999999999 120960 60308 1 0 5898240 4423680 4423680 4426492 4492800 355 150 156 253 1681 0 0 0 0 34 0 0 0 0 1 +2148 1783753369952216900 DEPTH 2 1 0.71296041071577254 2 8 2 8 0 0 128 40 2546 23664813 81600 845.90275573730469 5.8738000000000001 1232.3701000000001 120960 25612 1 0 5898240 4423680 4423680 4426410 4492800 156 150 150 150 1940 2 0 0 0 38 0 0 0 0 0 +2149 1783753371016131000 DEPTH 29 1 0.65611266259525414 2 12 2 12 0 0 110 44 2538 23664876 81600 860.74650573730469 5.8374000000000006 1032.3081 120960 56927 1 0 5898240 4423680 4423680 4426476 4492800 221 150 182 196 1789 0 0 0 0 44 0 0 0 0 0 +2150 1783753372043709900 DEPTH 47 1 0.65601416301763371 2 11 2 11 0 0 110 28 2577 23664830 81600 856.98411560058594 5.8313000000000006 1026.3942999999999 120960 57173 1 0 5898240 4423680 4423680 4426430 4492800 212 150 157 162 1896 0 0 0 0 28 0 0 0 0 0 +2151 1783753373109630200 DEPTH 37 1 0.65555038708906799 1 12 1 12 1 0 131 22 2620 23664856 81600 857.87208557128906 5.8251999999999997 1028.3012000000001 120960 58066 1 0 5898240 4423680 4423680 4426454 4492800 291 156 156 159 1858 0 0 1 0 21 0 0 0 0 2 +2152 1783753374393159400 DEPTH 41 1 0.65551584429251386 1 10 1 10 0 0 109 37 2563 23664817 81600 851.45242309570312 5.8391999999999999 1259.3968 120960 60687 1 0 5898240 4423680 4423680 4426416 4492800 307 156 179 181 1740 1 0 0 3 33 0 0 0 0 0 +2153 1783753375658281900 DEPTH 45 1 0.65518763749763753 2 7 2 7 0 0 124 25 2633 23664823 81600 863.79420471191406 5.8422000000000001 1250.4046000000001 120960 63555 1 0 5898240 4423680 4423680 4426423 4492800 198 150 192 177 1916 0 0 0 0 25 0 0 0 0 0 +2154 1783753376703412600 DEPTH 32 1 0.65490268890696868 2 14 2 14 1 0 115 17 2590 23664832 81600 854.36708068847656 5.8431999999999995 1023.6688 120960 58913 1 0 5898240 4423680 4423680 4426430 4492800 523 150 187 194 1536 0 0 0 0 17 0 0 0 0 2 +2155 1783753378022160200 DEPTH 54 1 0.65470089561239697 1 8 1 8 0 0 111 12 2600 23664792 81600 854.40957641601562 5.8461999999999996 1282.5261 120960 62046 1 0 5898240 4423680 4423680 4426392 4492800 572 150 272 646 960 0 0 0 0 12 0 0 0 0 0 +2156 1783753378238416600 REFRESH 31 0 0.65609732766975226 2 6 2 6 0 0 122 3 431 3943910 55200 149.75077819824219 0.97609999999999997 215.11949999999999 20160 13330 0 0 983040 737280 737280 737510 748800 225 25 30 70 81 0 0 0 0 3 0 0 0 0 0 +2157 1783753378418152600 REFRESH 47 0 0.47374476875774951 2 11 2 11 0 0 110 10 421 3943905 55200 149.45686340332031 0.97430000000000005 178.49010000000001 20160 12337 0 0 983040 737280 737280 737505 748800 107 26 44 32 212 0 0 0 0 10 0 0 0 0 0 +2158 1783753378597976200 REFRESH 39 0 0.56062394503634705 3 11 3 11 0 0 152 12 405 3943914 55200 149.70777893066406 0.98640000000000005 178.6438 20160 12060 0 0 983040 737280 737280 737514 748800 85 27 30 32 231 0 0 0 0 12 0 0 0 0 0 +2159 1783753378799790500 REFRESH 43 0 0.65325534194815638 2 13 2 13 0 0 122 11 418 3943919 55200 150.33445739746094 0.97260000000000002 180.571 20160 11939 0 0 983040 737280 737280 737518 748800 125 26 43 66 158 0 0 0 0 11 0 0 0 0 0 +2160 1783753378989307700 REFRESH 51 0 0.65061505102787365 3 12 3 12 0 0 90 8 424 3943923 55200 148.7984619140625 0.97799999999999998 177.8124 20160 12051 0 0 983040 737280 737280 737523 748800 41 26 139 102 116 0 0 0 0 8 0 0 0 0 0 +2161 1783753379179666900 REFRESH 0 0 0.64862572863565848 1 12 1 12 0 0 89 4 429 3943906 55200 149.25311279296875 0.97770000000000001 178.58670000000001 20160 12200 0 0 983040 737280 737280 737506 748800 110 25 47 44 203 0 0 0 0 4 0 0 0 0 0 +2162 1783753379371121100 REFRESH 10 0 0.65026116070142836 1 11 1 11 0 0 106 4 426 3943909 55200 150.15116882324219 0.98299999999999998 179.88149999999999 20160 12942 0 0 983040 737280 737280 737509 748800 126 26 47 36 191 0 0 0 0 4 0 0 0 0 0 +2163 1783753379567735700 REFRESH 14 0 0.65040330279211411 0 12 0 12 0 0 108 4 415 3943886 55200 149.56851196289062 0.97660000000000002 184.20330000000001 20160 11879 0 0 983040 737280 737280 737486 748800 100 26 29 46 214 0 0 0 0 4 0 0 0 0 0 +2164 1783753379758211100 REFRESH 18 0 0.65458500776430584 4 15 4 15 0 0 100 10 432 3943957 55200 149.0196533203125 0.97350000000000003 178.1841 20160 11967 0 0 983040 737280 737280 737557 748800 31 25 25 30 321 0 0 0 0 10 0 0 0 0 0 +2165 1783753379949542400 REFRESH 25 0 0.6487102700529086 3 11 3 11 0 0 110 9 422 3943907 55200 150.08460998535156 0.97299999999999998 178.74420000000001 20160 11805 0 0 983040 737280 737280 737507 748800 77 25 57 75 188 0 0 0 0 9 0 0 0 0 0 +2166 1783753380141138500 REFRESH 38 0 0.64008610188490866 4 14 4 14 0 0 82 7 425 3943913 55200 149.94534301757812 0.98070000000000002 179.57669999999999 20160 11827 0 0 983040 737280 737280 737513 748800 54 26 41 38 266 0 0 0 0 7 0 0 0 0 0 +2167 1783753380329736000 REFRESH 33 0 0.69006904198801211 1 7 1 7 0 0 176 3 415 3943899 55200 151.27244567871094 0.97419999999999995 187.41229999999999 20160 13402 0 0 983040 737280 737280 737499 748800 115 26 52 38 184 0 0 0 0 3 0 0 0 0 0 +2168 1783753380509344700 REFRESH 37 0 0.5734011091428155 1 12 1 12 0 0 131 7 418 3943925 55200 149.75897216796875 0.97970000000000002 178.40530000000001 20160 12461 0 0 983040 737280 737280 737525 748800 127 26 55 33 177 0 0 0 0 7 0 0 0 0 0 +2169 1783753380711051800 REFRESH 53 0 0.70148833489082696 0 8 0 8 0 0 139 7 419 3943901 55200 151.23762512207031 0.97929999999999995 189.3562 20160 13439 0 0 983040 737280 737280 737501 748800 130 26 27 47 189 0 0 0 0 7 0 0 0 0 0 +2170 1783753380900641600 REFRESH 26 0 0.64766367043297013 1 13 1 13 0 0 75 6 423 3943921 55200 149.38214111328125 0.98460000000000003 178.14949999999999 20160 12336 0 0 983040 737280 737280 737521 748800 33 25 32 43 290 0 0 0 0 6 0 0 0 0 0 +2171 1783753381087725500 REFRESH 30 0 0.69827845859026327 1 9 1 9 0 0 123 7 407 3943940 55200 150.619140625 0.98260000000000003 185.97730000000001 20160 12731 0 0 983040 737280 737280 737540 748800 81 26 51 33 216 0 0 0 0 7 0 0 0 0 0 +2172 1783753381291317400 REFRESH 21 0 0.65461122281408346 0 10 0 10 0 0 170 9 416 3943890 55200 151.14230346679688 0.98370000000000002 202.44829999999999 20160 12716 0 0 983040 737280 737280 737490 748800 104 26 30 82 174 0 0 0 0 9 0 0 0 0 0 +2173 1783753381476632100 REFRESH 16 0 0.65248324167321026 2 7 2 7 0 0 166 9 415 3943895 55200 151.65522766113281 0.98089999999999999 184.14959999999999 20160 13173 0 0 983040 737280 737280 737495 748800 31 26 26 228 104 0 0 0 0 9 0 0 0 0 0 +2174 1783753381677709900 REFRESH 28 0 0.64866657117860305 1 12 1 12 0 0 143 16 402 3943934 55200 150.54234313964844 0.96899999999999997 179.70060000000001 20160 12250 0 0 983040 737280 737280 737534 748800 143 25 30 30 174 0 0 0 0 16 0 0 0 0 0 +2175 1783753381867750400 REFRESH 57 0 0.64721858151549638 2 12 2 12 0 0 119 3 415 3943933 55200 149.41798400878906 0.97260000000000002 178.2884 20160 12112 0 0 983040 737280 737280 737533 748800 101 26 86 79 123 0 0 0 0 3 0 0 0 0 0 +2176 1783753382059661400 REFRESH 4 0 0.6077326127491598 1 13 1 13 1 0 48 3 416 3943910 55200 148.42982482910156 0.97660000000000002 175.76130000000001 20160 12538 0 0 983040 737280 737280 737510 748800 27 25 38 35 291 0 0 0 0 3 0 0 0 0 1 +2177 1783753382252834100 REFRESH 6 0 0.63000559446973803 3 11 3 11 0 0 114 3 414 3943911 55200 148.9776611328125 0.97770000000000001 177.0727 20160 12278 0 0 983040 737280 737280 737511 748800 26 25 25 25 313 0 0 0 0 3 0 0 0 0 0 +2178 1783753382444992100 REFRESH 34 0 0.64998027645091216 1 13 1 13 0 0 101 8 427 3943936 55200 149.04934692382812 0.97450000000000003 176.90039999999999 20160 13210 0 0 983040 737280 737280 737535 748800 87 25 52 62 201 0 0 0 1 7 0 0 0 0 0 +2179 1783753382638822600 REFRESH 15 0 0.65421911030485558 3 12 3 12 0 0 85 12 417 3943899 55200 149.90232849121094 0.97250000000000003 177.9357 20160 12056 0 0 983040 737280 737280 737499 748800 34 26 30 25 302 0 0 0 0 12 0 0 0 0 0 +2180 1783753382817690000 REFRESH 32 0 0.65207058905816273 2 14 2 14 0 0 116 15 428 3943902 55200 149.12205505371094 0.97009999999999996 177.7141 20160 12044 0 0 983040 737280 737280 737502 748800 192 25 35 34 142 0 0 0 0 15 0 0 0 0 0 +2181 1783753383083098900 REFRESH 9 0 0.69895954452672271 2 6 2 6 0 0 121 6 436 3943930 55200 151.02326965332031 0.97919999999999996 221.11959999999999 20160 13544 0 0 983040 737280 737280 737530 748800 126 25 75 68 142 0 0 0 0 6 0 0 0 0 0 +2182 1783753383318719900 REFRESH 52 0 0.64773673956097144 1 8 1 8 0 0 105 3 428 3943892 55200 148.57318115234375 0.97470000000000001 219.69200000000001 20160 12505 0 0 983040 737280 737280 737492 748800 134 25 33 157 79 0 0 0 0 3 0 0 0 0 0 +2183 1783753383519441000 REFRESH 36 0 0.65402728988637238 3 10 3 10 0 0 105 11 431 3943928 55200 149.13536071777344 0.9718 184.50919999999999 20160 11883 0 0 983040 737280 737280 737528 748800 201 25 37 51 117 0 0 0 0 11 0 0 0 0 0 +2184 1783753383713837400 REFRESH 55 0 0.65325234432437318 1 15 1 15 0 0 127 11 415 3943909 55200 149.9525146484375 0.97360000000000002 178.45310000000001 20160 12096 0 0 983040 737280 737280 737509 748800 72 26 33 63 221 0 0 0 0 11 0 0 0 0 0 +2185 1783753383901784700 REFRESH 45 0 0.65549956817849242 2 7 2 7 0 0 124 9 418 3943925 55200 151.06764221191406 0.98280000000000001 186.61019999999999 20160 13207 0 0 983040 737280 737280 737525 748800 139 25 59 54 141 0 0 0 0 9 0 0 0 0 0 +2186 1783753384125289800 REFRESH 54 0 0.65553015537131343 1 8 1 8 0 0 111 4 426 3943908 55200 150.85670471191406 0.97340000000000004 222.20779999999999 20160 12775 0 0 983040 737280 737280 737508 748800 150 25 59 115 77 0 0 0 0 4 0 0 0 0 0 +2187 1783753384327079300 REFRESH 24 0 0.65199295628402476 4 11 4 11 0 0 130 9 416 3943900 55200 149.86428833007812 0.97509999999999997 179.99639999999999 20160 11948 0 0 983040 737280 737280 737499 748800 37 26 42 51 260 0 0 0 0 9 0 0 0 0 0 +2188 1783753384551371400 REFRESH 56 0 0.81923038438026663 2 5 2 5 0 0 190 6 414 3943908 55200 150.80447387695312 0.97560000000000002 223.1061 20160 13468 0 0 983040 737280 737280 737508 748800 177 26 50 64 97 0 0 0 0 6 0 0 0 0 0 +2189 1783753384757313500 REFRESH 7 0 0.6496893067406988 1 12 1 12 0 0 128 10 420 3943911 55200 150.57305908203125 0.97199999999999998 180.10570000000001 20160 12066 0 0 983040 737280 737280 737511 748800 135 26 29 30 200 0 0 0 0 10 0 0 0 0 0 +2190 1783753384952741000 REFRESH 22 0 0.64754239083566645 3 11 3 11 0 0 116 8 420 3943940 55200 150.75634765625 0.97170000000000001 179.98779999999999 20160 12177 0 0 983040 737280 737280 737539 748800 130 25 30 28 207 0 0 0 0 8 0 0 0 0 0 +2191 1783753385133313100 REFRESH 40 0 0.68175081257060377 1 12 1 12 0 0 114 12 421 3943922 55200 150.87820434570312 0.99990000000000001 179.40299999999999 20160 12494 0 0 983040 737280 737280 737522 748800 173 25 33 83 107 0 0 0 0 12 0 0 0 0 0 +2192 1783753385340370900 REFRESH 13 0 0.81610358940281191 1 6 1 6 0 0 172 1 414 3943899 55200 150.61094665527344 0.97560000000000002 196.89189999999999 20160 13319 0 0 983040 737280 737280 737499 748800 151 26 58 78 101 0 0 0 0 1 0 0 0 0 0 +2193 1783753385530725000 REFRESH 27 0 0.6540626129351863 0 14 0 14 0 0 126 14 408 3943882 55200 149.64837646484375 0.97189999999999999 177.9564 20160 11943 0 0 983040 737280 737280 737482 748800 46 26 27 30 279 0 0 0 0 14 0 0 0 0 0 +2194 1783753385724206400 REFRESH 23 0 0.65421067277386169 3 14 3 14 0 0 98 9 414 3943890 55200 149.97605895996094 0.97170000000000001 178.54859999999999 20160 11901 0 0 983040 737280 737280 737488 748800 31 25 47 38 273 0 0 0 0 9 0 0 0 0 0 +2195 1783753385950070900 REFRESH 11 0 0.69756243078521218 0 8 0 8 0 0 97 3 426 3943900 55200 149.50810241699219 0.97660000000000002 224.69630000000001 20160 12992 0 0 983040 737280 737280 737500 748800 114 25 61 62 164 0 0 0 1 2 0 0 0 0 0 +2196 1783753386161253400 REFRESH 1 0 0.6978671451435835 1 7 1 7 0 0 121 5 418 3943900 55200 151.16902160644531 0.97950000000000004 209.89099999999999 20160 13476 0 0 983040 737280 737280 737500 748800 127 26 77 74 114 0 0 0 0 5 0 0 0 0 0 +2197 1783753386361741000 REFRESH 41 0 0.65459272314210826 1 10 1 10 0 0 109 9 414 3943911 55200 149.00019836425781 0.9748 199.29580000000001 20160 12666 0 0 983040 737280 737280 737511 748800 111 26 38 38 201 0 0 1 1 7 0 0 0 0 0 +2198 1783753386662817000 REFRESH 44 0 0.65666407237016444 2 7 2 7 0 0 128 4 414 3943933 55200 150.63859558105469 0.97499999999999998 222.22730000000001 20160 13176 0 0 983040 737280 737280 737533 748800 89 26 66 30 203 0 0 0 0 4 0 0 0 0 0 +2199 1783753386857460600 REFRESH 19 0 0.64959403485910494 2 11 2 11 0 0 119 11 422 3943903 55200 150.04570007324219 0.97130000000000005 179.08320000000001 20160 12079 0 0 983040 737280 737280 737502 748800 138 25 26 55 178 0 1 0 0 10 0 0 0 0 0 +2200 1783753387053189600 REFRESH 46 0 0.65460328944377377 2 15 2 15 0 0 103 15 416 3943922 55200 151.0277099609375 0.97419999999999995 179.86000000000001 20160 12021 0 0 983040 737280 737280 737522 748800 58 26 42 29 261 0 0 0 0 15 0 0 0 0 0 +2201 1783753387234438300 REFRESH 29 0 0.65382789059375712 2 12 2 12 0 0 111 13 418 3943914 55200 150.34060668945312 0.9768 180.1172 20160 12021 0 0 983040 737280 737280 737514 748800 128 25 58 52 155 1 0 0 0 12 0 0 0 0 0 +2202 1783753387429773000 REFRESH 42 0 0.65145571905585653 4 12 4 12 0 0 119 11 424 3943907 55200 150.35289001464844 0.97609999999999997 179.3673 20160 11937 0 0 983040 737280 737280 737507 748800 149 25 25 25 200 0 0 0 0 11 0 0 0 0 0 +2203 1783753387613689300 REFRESH 8 0 0.81622580288768276 2 5 2 5 0 0 212 8 416 3943930 55200 151.65545654296875 0.97299999999999998 182.74860000000001 20160 13561 0 0 983040 737280 737280 737529 748800 149 26 27 76 138 0 0 0 0 8 0 0 0 0 0 +2204 1783753387837773300 REFRESH 17 0 0.81720563600375939 0 7 0 7 0 0 179 1 414 3943886 55200 150.41004943847656 0.99729999999999996 223.0103 20160 13253 0 0 983040 737280 737280 737486 748800 112 26 34 105 137 0 0 0 0 1 0 0 0 0 0 +2205 1783753388076432100 REFRESH 20 0 0.65440206132985823 3 12 3 12 0 0 104 11 427 3943942 55200 149.31353759765625 0.98229999999999995 177.92949999999999 20160 11893 0 0 983040 737280 737280 737542 748800 132 26 66 69 134 0 0 0 1 10 0 0 0 0 0 +2206 1783753388258932700 REFRESH 3 0 0.69135499126703082 2 9 2 9 0 0 133 13 422 3943910 55200 149.11795043945312 0.97440000000000004 181.3948 20160 12389 0 0 983040 737280 737280 737510 748800 211 25 37 57 92 0 0 0 1 12 0 0 0 0 0 +2207 1783753388461983400 REFRESH 5 0 0.64531639969890109 2 11 2 11 0 0 90 5 412 3943951 55200 149.99626159667969 0.97470000000000001 178.2569 20160 13724 0 0 983040 737280 737280 737550 748800 66 26 85 110 125 0 0 0 0 5 0 0 0 0 0 +2208 1783753388642073000 REFRESH 12 0 0.65473662237098829 3 8 3 8 0 0 168 11 412 3943929 55200 149.85932922363281 0.98050000000000004 178.85169999999999 20160 12239 0 0 983040 737280 737280 737528 748800 125 26 37 95 129 1 0 0 0 10 0 0 0 0 0 +2209 1783753388840388300 REFRESH 50 0 0.65040753616433356 2 9 2 9 0 0 121 6 417 3943933 55200 150.09893798828125 0.96970000000000001 181.25960000000001 20160 12058 0 0 983040 737280 737280 737533 748800 176 26 43 63 109 0 0 0 0 6 0 0 0 0 0 +2210 1783753389043479500 REFRESH 2 0 0.85968717214902257 2 8 2 8 0 0 128 8 414 3943904 55200 150.66213989257812 0.9788 187.30709999999999 20160 12385 0 0 983040 737280 737280 737504 748800 35 25 59 86 209 0 0 0 0 8 0 0 0 0 0 +2211 1783753389237926900 REFRESH 58 0 0.64458248897115644 2 12 2 12 0 0 115 13 423 3943911 55200 150.03852844238281 0.97670000000000001 178.33629999999999 20160 12582 0 0 983040 737280 737280 737510 748800 93 26 59 53 192 0 0 0 0 13 0 0 0 0 0 +2212 1783753389432490500 REFRESH 49 0 0.64992255202044724 3 10 3 10 0 0 125 10 421 3943916 55200 149.91154479980469 0.97650000000000003 178.88069999999999 20160 12587 0 0 983040 737280 737280 737516 748800 101 26 63 54 177 0 0 0 0 10 0 0 0 0 0 +2213 1783753389620509900 REFRESH 48 0 0.60860986165378195 2 11 2 11 0 0 75 0 431 3943892 55200 148.59776306152344 0.97499999999999998 176.5848 20160 12017 0 0 983040 737280 737280 737492 748800 190 25 54 58 104 0 0 0 0 0 0 0 0 0 0 +2214 1783753389816279000 REFRESH 35 0 0.65176383987481601 2 11 2 11 0 0 145 15 417 3943896 55200 149.96173095703125 0.97560000000000002 179.30459999999999 20160 12075 0 0 983040 737280 737280 737496 748800 127 25 32 97 136 0 0 0 0 15 0 0 0 0 0 +2215 1783753391110178100 DEPTH 56 1 0.81562779774357863 2 5 2 5 0 0 190 27 2547 23664809 81600 858.32296752929688 5.8262 1292.6311000000001 120960 65477 1 0 5898240 4423680 4423680 4426409 4492800 483 156 168 265 1475 0 0 0 0 27 0 0 0 0 0 +2216 1783753392405446900 DEPTH 13 1 0.7979837628053712 1 6 1 6 0 0 173 29 2495 23664795 81600 859.7626953125 5.8464999999999998 1269.9241999999999 120960 65795 1 0 5898240 4423680 4423680 4426395 4492800 237 156 180 170 1752 0 0 0 0 29 0 0 0 0 0 +2217 1783753393677885600 DEPTH 53 1 0.69853265685284083 0 8 0 8 1 0 139 35 2515 23664882 81600 860.45584106445312 5.8314000000000004 1247.3834999999999 120960 64773 1 0 5898240 4423680 4423680 4426479 4492800 189 156 150 166 1854 0 0 0 0 35 0 0 0 0 1 +2218 1783753395008887400 DEPTH 9 1 0.69520520733651692 2 6 2 6 0 0 122 16 2617 23664835 81600 863.49208068847656 5.8525999999999998 1294.6351 120960 64962 1 0 5898240 4423680 4423680 4426435 4492800 683 150 392 498 894 0 0 0 0 16 0 0 0 0 0 +2219 1783753396234679100 DEPTH 33 1 0.69274027707108399 1 7 1 7 0 0 177 28 2545 23664897 81600 869.82229614257812 5.8296999999999999 1224.6475 120960 65540 1 0 5898240 4423680 4423680 4426496 4492800 180 153 156 150 1906 0 0 0 0 28 0 0 0 0 0 +2220 1783753397512428100 DEPTH 31 1 0.68975777330288934 2 6 2 6 0 0 122 8 2622 23664926 81600 858.06080627441406 5.8773 1276.5497 120960 65106 1 0 5898240 4423680 4423680 4426525 4492800 956 150 180 315 1021 0 0 0 0 8 0 0 0 0 0 +2221 1783753398785151300 DEPTH 30 1 0.68952720598941042 1 9 1 9 0 0 125 48 2521 23664902 81600 860.76640319824219 5.8586 1231.0093999999999 120960 61150 1 0 5898240 4423680 4423680 4426499 4492800 156 150 168 150 1897 0 0 0 0 48 0 0 0 0 0 +2222 1783753399865329600 DEPTH 8 1 0.75489480644478024 2 5 2 5 0 0 212 21 2558 23664864 81600 867.30738830566406 5.8884999999999996 1078.9801 120960 66195 1 0 5898240 4423680 4423680 4426464 4492800 283 150 158 192 1775 0 0 0 0 21 0 0 0 0 0 +2223 1783753401197297700 DEPTH 17 1 0.74877703387653027 0 7 0 7 0 0 180 45 2524 23664853 81600 860.14909362792969 5.8365999999999998 1302.8693000000001 120960 64715 1 0 5898240 4423680 4423680 4426451 4492800 208 156 156 218 1786 0 0 0 0 45 0 0 0 0 0 +2224 1783753402433419200 DEPTH 2 1 0.7263059616867461 2 8 2 8 0 0 129 33 2551 23664956 81600 859.20738220214844 5.8400999999999996 1235.0183999999999 120960 59078 1 0 5898240 4423680 4423680 4426555 4492800 156 150 150 150 1945 0 0 0 0 33 0 0 0 0 0 +2225 1783753403766270400 DEPTH 1 1 0.69318736120428148 1 7 1 7 1 0 121 17 2615 23664818 81600 861.98121643066406 5.8372999999999999 1303.5959 120960 65170 1 0 5898240 4423680 4423680 4426418 4492800 410 156 287 316 1446 0 0 0 0 17 0 0 0 0 1 +2226 1783753405081374800 DEPTH 11 1 0.69120477463922836 0 8 0 8 0 0 97 15 2537 23664972 81600 855.67181396484375 5.8880999999999997 1297.5624 120960 63221 1 0 5898240 4423680 4423680 4426571 4492800 285 150 212 227 1663 0 0 0 0 15 0 0 0 0 0 +2227 1783753406132216700 DEPTH 39 1 0.68431222333606712 3 11 3 10 1 0 152 46 2547 23664833 81600 858.03343200683594 5.8680000000000003 1033.3905999999999 120960 56672 1 0 5898240 4423680 4423680 4426432 4492800 181 151 153 157 1905 1 0 0 0 45 0 0 0 0 1 +2228 1783753407191597500 DEPTH 40 1 0.67525669591834103 1 12 1 12 1 0 115 46 2572 23664933 81600 861.73849487304688 5.8356000000000003 1034.2663 120960 61096 1 0 5898240 4423680 4423680 4426533 4492800 193 150 168 304 1757 1 0 0 1 44 0 0 0 0 1 +2229 1783753408499459000 DEPTH 45 1 0.65470607447052753 2 7 2 7 0 0 125 22 2631 23664823 81600 865.77536010742188 5.8295999999999992 1253.2268999999999 120960 63520 1 0 5898240 4423680 4423680 4426421 4492800 194 150 190 179 1918 0 0 0 0 22 0 0 0 0 0 +2230 1783753409795706400 DEPTH 21 1 0.65261454061840252 0 10 0 10 0 0 170 24 2595 23664839 81600 862.46173095703125 5.8283000000000005 1295.1016 120960 60610 1 0 5898240 4423680 4423680 4426438 4492800 367 150 156 280 1642 0 0 0 0 24 0 0 0 0 0 +2231 1783753411112695000 DEPTH 56 1 0.72625972104688152 2 5 2 5 0 0 191 31 2562 23664891 81600 850.511474609375 5.8496000000000006 1286.6655000000001 120960 53815 1 0 5898240 4423680 4423680 4426490 4492800 453 156 168 307 1478 0 0 0 0 31 0 0 0 0 0 +2232 1783753412375233100 DEPTH 13 1 0.7195589453046155 1 6 1 6 0 0 174 32 2504 23664793 81600 850.67338562011719 5.8402000000000003 1261.4177 120960 54146 1 0 5898240 4423680 4423680 4426389 4492800 236 154 179 193 1742 0 0 0 0 32 0 0 0 0 0 +2233 1783753413603961900 DEPTH 3 1 0.68537971964195266 2 9 2 9 1 0 135 61 2569 23664809 81600 857.7459716796875 5.8548999999999998 1177.2204999999999 120960 59836 1 0 5898240 4423680 4423680 4426409 4492800 402 150 156 218 1643 2 0 0 1 58 2 0 0 0 0 +2234 1783753414684199700 DEPTH 8 1 0.68558567432295969 2 5 2 5 0 0 212 26 2576 23664924 81600 861.58297729492188 5.8414999999999999 1079.0872999999999 120960 55205 1 0 5898240 4423680 4423680 4426524 4492800 258 150 158 183 1827 0 0 0 0 26 0 0 0 0 0 +2235 1783753415945430800 DEPTH 41 1 0.65252662147860141 1 10 1 10 0 0 109 45 2565 23664920 81600 852.84400939941406 5.8417000000000003 1260.0518 120960 60981 1 0 5898240 4423680 4423680 4426519 4492800 334 156 185 197 1693 2 0 0 0 43 0 0 0 0 0 +2236 1783753417076313400 DEPTH 15 1 0.65224049076278257 3 12 3 12 0 0 88 49 2538 23664900 81600 859.2034912109375 5.8600000000000003 1030.9449999999999 120960 57341 1 0 5898240 4423680 4423680 4426499 4492800 162 150 150 150 1926 0 2 2 0 45 0 0 0 0 0 +2237 1783753418171212600 DEPTH 36 1 0.65205092911519547 3 10 3 10 0 0 106 15 2605 23664834 81600 860.66868591308594 5.8378999999999994 1036.0733 120960 57037 1 0 5898240 4423680 4423680 4426431 4492800 890 150 196 236 1133 1 1 0 0 13 0 0 0 0 0 +2238 1783753419223031700 DEPTH 20 1 0.6520121592714675 3 12 3 12 0 0 104 18 2612 23664890 81600 855.21475219726562 5.845699999999999 1026.3387 120960 56704 1 0 5898240 4423680 4423680 4426490 4492800 361 156 291 367 1437 0 0 0 0 18 0 0 0 0 0 +2239 1783753420521721900 DEPTH 17 1 0.72009706254901629 0 7 0 7 0 0 180 34 2531 23664883 81600 851.21844482421875 5.8307000000000002 1297.5791999999999 120960 53751 1 0 5898240 4423680 4423680 4426481 4492800 207 156 156 246 1766 0 0 0 0 34 0 0 0 0 0 +2240 1783753421750114700 DEPTH 2 1 0.72710196890035417 2 8 2 8 0 0 129 41 2548 23664891 81600 851.97393798828125 5.8632 1227.2873 120960 48751 1 0 5898240 4423680 4423680 4426489 4492800 156 150 150 150 1942 0 0 0 0 41 0 0 0 0 0 +2241 1783753423025735900 DEPTH 53 1 0.68863319995358141 0 8 0 8 0 0 139 35 2511 23664859 81600 854.159423828125 5.8346999999999998 1249.7478000000001 120960 53645 1 0 5898240 4423680 4423680 4426459 4492800 187 156 150 172 1846 0 0 0 0 35 0 0 0 0 0 +2242 1783753424343349100 DEPTH 9 1 0.68563890019594531 2 6 2 6 0 0 123 10 2622 23664837 81600 857.79006958007812 5.8632999999999997 1292.3143 120960 53437 1 0 5898240 4423680 4423680 4426436 4492800 680 150 375 571 846 0 0 0 0 10 0 0 0 0 0 +2243 1783753425393439400 DEPTH 39 1 0.69347213939790731 3 10 3 10 0 0 154 47 2530 23664844 81600 847.68562316894531 5.8754999999999997 1021.3638 120960 45758 1 0 5898240 4423680 4423680 4426444 4492800 189 150 151 156 1884 0 0 0 0 47 0 0 0 0 0 +2244 1783753426450722900 DEPTH 12 1 0.65344182008669072 3 8 3 8 0 0 170 72 2524 23664840 81600 857.06784057617188 5.8406000000000002 1030.3409999999999 120960 57540 1 0 5898240 4423680 4423680 4426439 4492800 271 150 173 241 1689 6 0 0 0 66 0 0 0 0 0 +2245 1783753427493163800 DEPTH 47 1 0.65200191106856642 2 11 2 11 0 0 111 37 2608 23664872 81600 859.20065307617188 5.8330000000000011 1031.2424000000001 120960 57680 1 0 5898240 4423680 4423680 4426470 4492800 207 150 155 162 1934 0 0 0 0 37 0 0 0 0 0 +2246 1783753428577878900 DEPTH 16 1 0.65198906574702931 2 7 2 7 0 0 166 40 2525 23664845 81600 866.04185485839844 5.859 1083.5068000000001 120960 63708 1 0 5898240 4423680 4423680 4426444 4492800 165 156 156 589 1459 0 0 0 0 40 0 0 0 0 0 +2247 1783753428817848300 REFRESH 13 0 0.71088851327305014 1 6 1 6 0 0 174 2 414 3943893 55200 151.35845947265625 0.97619999999999996 197.27850000000001 20160 13387 0 0 983040 737280 737280 737493 748800 152 26 59 79 98 0 0 0 0 2 0 0 0 0 0 +2248 1783753428998696400 REFRESH 36 0 0.50980534207855643 3 10 3 10 0 0 106 11 430 3943929 55200 149.95046997070312 0.98650000000000004 179.7063 20160 12045 0 0 983040 737280 737280 737529 748800 208 25 38 47 112 0 0 0 0 11 0 0 0 0 0 +2249 1783753429185639900 REFRESH 15 0 0.52995106944683035 3 12 3 12 0 0 90 10 418 3943916 55200 151.41990661621094 0.98819999999999997 185.78 20160 12087 0 0 983040 737280 737280 737516 748800 36 26 31 25 300 0 0 1 0 9 0 0 0 0 0 +2250 1783753429367568500 REFRESH 12 0 0.46191315910682457 3 8 3 8 0 0 170 6 413 3943909 55200 149.8519287109375 0.98660000000000003 180.86949999999999 20160 12159 0 0 983040 737280 737280 737509 748800 128 26 35 90 134 1 0 0 0 5 0 0 0 0 0 +2251 1783753429592469900 REFRESH 54 0 0.65031260544582881 1 8 1 8 0 0 111 4 425 3943923 55200 150.12351989746094 0.98550000000000004 223.69049999999999 20160 12786 0 0 983040 737280 737280 737523 748800 149 25 57 116 78 0 0 0 0 4 0 0 0 0 0 +2252 1783753429814341700 REFRESH 9 0 0.54583599233537949 2 6 2 6 0 0 123 7 434 3943904 55200 150.41206359863281 0.98650000000000004 220.7595 20160 13322 0 0 983040 737280 737280 737504 748800 128 25 78 75 128 0 0 0 0 7 0 0 0 0 0 +2253 1783753430040468100 REFRESH 17 0 0.70119544676203038 0 7 0 7 0 0 180 7 413 3943915 55200 150.15423583984375 0.97829999999999995 225.00229999999999 20160 13582 0 0 983040 737280 737280 737514 748800 112 26 35 101 139 0 0 0 0 7 0 0 0 0 0 +2254 1783753430243377000 REFRESH 41 0 0.59136343902347654 1 10 1 10 0 0 109 6 416 3943912 55200 149.08723449707031 0.9768 201.7458 20160 12370 0 0 983040 737280 737280 737511 748800 121 26 39 38 192 0 0 0 0 6 0 0 0 0 0 +2255 1783753430427994000 REFRESH 8 0 0.7761627192227154 2 5 2 5 0 0 213 10 415 3943884 55200 151.55711364746094 0.98129999999999995 183.483 20160 13490 0 0 983040 737280 737280 737484 748800 159 26 44 80 106 0 0 0 0 10 0 0 0 0 0 +2256 1783753430639105700 REFRESH 14 0 0.64374251570204954 0 12 0 12 0 0 108 6 417 3943911 55200 150.51571655273438 0.97399999999999998 186.1816 20160 11883 0 0 983040 737280 737280 737511 748800 101 26 29 43 218 0 0 0 0 6 0 0 0 0 0 +2257 1783753430833713000 REFRESH 19 0 0.64743628267844389 2 11 2 11 1 0 119 13 420 3943910 55200 150.17266845703125 0.97540000000000004 179.28049999999999 20160 12040 0 0 983040 737280 737280 737510 748800 122 25 26 49 198 1 1 0 0 11 1 0 0 0 0 +2258 1783753431014034400 REFRESH 37 0 0.64870907483909068 1 12 1 12 0 0 131 11 422 3943887 55200 150.15936279296875 0.9758 179.19470000000001 20160 12474 0 0 983040 737280 737280 737486 748800 138 26 57 33 168 0 0 0 0 11 0 0 0 0 0 +2259 1783753431254734800 REFRESH 42 0 0.64870751248396175 4 12 4 12 0 0 120 11 419 3943910 55200 151.32365417480469 0.98150000000000004 180.40260000000001 20160 11919 0 0 983040 737280 737280 737510 748800 141 25 25 25 203 0 0 0 0 11 0 0 0 0 0 +2260 1783753431447198600 REFRESH 34 0 0.64700857764538522 1 13 1 13 0 0 101 9 430 3943911 55200 148.83634948730469 0.97589999999999999 176.2809 20160 13190 0 0 983040 737280 737280 737511 748800 90 25 54 61 200 0 0 0 1 8 0 0 0 0 0 +2261 1783753431641911100 REFRESH 7 0 0.64718853712182001 1 12 1 12 0 0 128 9 413 3943935 55200 149.607421875 0.97109999999999996 179.27950000000001 20160 12121 0 0 983040 737280 737280 737535 748800 141 26 29 32 185 0 0 0 0 9 0 0 0 0 0 +2262 1783753431837308100 REFRESH 57 0 0.63792937919120152 2 12 2 12 0 0 119 4 416 3943926 55200 150.01292419433594 0.97350000000000003 179.05779999999999 20160 12251 0 0 983040 737280 737280 737525 748800 107 26 88 87 108 0 0 0 0 4 0 0 0 0 0 +2263 1783753432032701100 REFRESH 49 0 0.6483503635379666 3 10 3 10 0 0 125 12 415 3943896 55200 149.49375915527344 0.9718 178.596 20160 12458 0 0 983040 737280 737280 737496 748800 104 26 63 54 168 0 0 0 0 12 0 0 0 0 0 +2264 1783753432224518200 REFRESH 51 0 0.64782298747149414 3 12 3 12 0 0 90 11 421 3943922 55200 149.106689453125 0.98009999999999997 176.9881 20160 11808 0 0 983040 737280 737280 737522 748800 41 26 129 96 129 0 0 0 0 11 0 0 0 0 0 +2265 1783753432410804300 REFRESH 30 0 0.68447299540777418 1 9 1 9 0 0 126 4 418 3943904 55200 150.05696105957031 0.97109999999999996 184.9872 20160 12957 0 0 983040 737280 737280 737503 748800 82 25 52 33 226 0 0 0 0 4 0 0 0 0 0 +2266 1783753432614255200 REFRESH 48 0 0.60141124413917169 2 11 2 11 0 0 75 4 430 3943906 55200 149.65554809570312 0.97389999999999999 178.2312 20160 11848 0 0 983040 737280 737280 737506 748800 188 25 53 59 105 0 0 0 0 4 0 0 0 0 0 +2267 1783753432792827000 REFRESH 32 0 0.64968089894725733 2 14 2 14 0 0 116 12 428 3943899 55200 148.86912536621094 0.97370000000000001 177.3991 20160 12108 0 0 983040 737280 737280 737499 748800 226 25 37 35 105 0 0 0 0 12 0 0 0 0 0 +2268 1783753433003005000 REFRESH 1 0 0.69396819263494924 1 7 1 7 0 0 121 8 421 3943929 55200 151.31341552734375 0.98050000000000004 209.03999999999999 20160 13498 0 0 983040 737280 737280 737529 748800 128 26 87 81 99 0 0 0 0 8 0 0 0 0 0 +2269 1783753433197862800 REFRESH 23 0 0.65050465102975386 3 14 3 14 0 0 98 10 412 3943922 55200 149.54905700683594 0.9798 179.45439999999999 20160 11957 0 0 983040 737280 737280 737522 748800 34 25 61 41 251 0 0 0 0 10 0 0 0 0 0 +2270 1783753433393868900 REFRESH 28 0 0.64620315615410084 1 12 1 12 0 0 143 7 401 3943887 55200 150.64166259765625 0.99950000000000006 180.5651 20160 12250 0 0 983040 737280 737280 737487 748800 152 25 30 28 166 0 0 0 0 7 0 0 0 0 0 +2271 1783753433587541000 REFRESH 6 0 0.62128506248378879 3 11 3 11 0 0 114 5 416 3943894 55200 149.74053955078125 0.97130000000000005 177.42580000000001 20160 12389 0 0 983040 737280 737280 737494 748800 26 25 25 25 315 0 0 0 0 5 0 0 0 0 0 +2272 1783753433796543100 REFRESH 43 0 0.65100111404083294 2 13 2 13 0 0 122 12 416 3943920 55200 150.11737060546875 0.97809999999999997 179.87530000000001 20160 12072 0 0 983040 737280 737280 737520 748800 129 26 43 66 152 0 0 0 0 12 0 0 0 0 0 +2273 1783753433990888600 REFRESH 22 0 0.64299142989496028 3 11 3 11 0 0 116 4 421 3943908 55200 149.48556518554688 0.98129999999999995 179.1677 20160 12198 0 0 983040 737280 737280 737508 748800 141 25 30 30 195 0 0 0 0 4 0 0 0 0 0 +2274 1783753434182712800 REFRESH 5 0 0.64001129756026742 2 11 2 11 0 0 90 9 413 3943911 55200 149.18450927734375 0.98540000000000005 177.2894 20160 13509 0 0 983040 737280 737280 737511 748800 63 26 85 114 125 0 0 0 0 9 0 0 0 0 0 +2275 1783753434377314400 REFRESH 58 0 0.64264552285999266 2 12 2 12 0 0 115 12 420 3943920 55200 150.30067443847656 0.97140000000000004 178.84530000000001 20160 12452 0 0 983040 737280 737280 737520 748800 96 26 59 57 182 0 0 0 0 12 0 0 0 0 0 +2276 1783753434558473600 REFRESH 39 0 0.76779474230770328 3 10 3 10 0 0 154 12 410 3943917 55200 150.53004455566406 0.97309999999999997 179.93360000000001 20160 12144 0 0 983040 737280 737280 737517 748800 63 28 28 31 260 0 0 0 0 12 0 0 0 0 0 +2277 1783753434764356100 REFRESH 25 0 0.64656240382264429 3 11 3 11 0 0 111 8 423 3943911 55200 150.60786437988281 0.97409999999999997 180.7475 20160 11915 0 0 983040 737280 737280 737511 748800 82 25 60 76 180 0 0 0 0 8 0 0 0 0 0 +2278 1783753434944582700 REFRESH 47 0 0.64990170993183338 2 11 2 11 0 0 111 6 415 3943904 55200 150.0528564453125 0.97460000000000002 178.99170000000001 20160 12357 0 0 983040 737280 737280 737504 748800 125 26 45 34 185 0 0 0 0 6 0 0 0 0 0 +2279 1783753435153324600 REFRESH 0 0 0.64181908287528522 1 12 1 12 0 0 89 5 424 3943897 55200 150.14373779296875 0.97929999999999995 178.2055 20160 12177 0 0 983040 737280 737280 737497 748800 100 25 44 41 214 0 0 0 0 5 0 0 0 0 0 +2280 1783753435351282500 REFRESH 50 0 0.64575556328485528 2 9 2 9 0 0 121 7 420 3943919 55200 150.03033447265625 0.97529999999999994 181.45189999999999 20160 12113 0 0 983040 737280 737280 737519 748800 171 26 40 58 125 0 0 0 0 7 0 0 0 0 0 +2281 1783753435535191700 REFRESH 16 0 0.65223027203476525 2 7 2 7 0 0 166 10 416 3943916 55200 151.00621032714844 0.97860000000000003 182.80340000000001 20160 13092 0 0 983040 737280 737280 737516 748800 34 26 26 243 87 0 0 0 0 10 0 0 0 0 0 +2282 1783753435725853200 REFRESH 53 0 0.69868345069531312 0 8 0 8 0 0 139 7 418 3943917 55200 150.85958862304688 0.97409999999999997 189.44560000000001 20160 13363 0 0 983040 737280 737280 737517 748800 121 26 27 44 200 0 0 0 0 7 0 0 0 0 0 +2283 1783753435915029900 REFRESH 2 0 0.79980018818129828 2 8 2 8 0 0 130 13 410 3943903 55200 151.19052124023438 0.97760000000000002 188.01679999999999 20160 12616 0 0 983040 737280 737280 737502 748800 34 25 57 86 208 0 0 0 0 13 0 0 0 0 0 +2284 1783753436158483400 REFRESH 56 0 0.81690184228654883 2 5 2 5 0 0 191 6 416 3943892 55200 151.60917663574219 1.3819999999999999 225.6728 20160 13505 0 0 983040 737280 737280 737492 748800 177 26 51 62 100 0 0 0 0 6 0 0 0 0 0 +2285 1783753436351026900 REFRESH 10 0 0.64452444069760251 1 11 1 11 0 0 106 3 424 3943903 55200 148.99916076660156 0.99950000000000006 178.26570000000001 20160 12823 0 0 983040 737280 737280 737501 748800 148 26 49 38 163 0 0 0 0 3 0 0 0 0 0 +2286 1783753436545302700 REFRESH 26 0 0.64366806270644306 1 13 1 13 1 0 75 12 424 3943926 55200 149.57772827148438 0.97460000000000002 177.93870000000001 20160 12388 0 0 983040 737280 737280 737526 748800 33 25 33 46 287 0 0 0 0 12 0 0 0 0 1 +2287 1783753436725159400 REFRESH 40 0 0.66967437085293779 1 12 1 12 1 0 115 9 423 3943894 55200 149.67312622070312 0.97389999999999999 178.691 20160 12327 0 0 983040 737280 737280 737494 748800 167 25 34 72 125 0 0 0 1 8 0 0 0 1 0 +2288 1783753436927633900 REFRESH 38 0 0.63663771563038207 4 14 4 14 1 0 82 7 424 3943899 55200 149.791748046875 0.9738 178.34100000000001 20160 11880 0 0 983040 737280 737280 737499 748800 52 26 40 38 268 0 0 0 0 7 0 0 0 0 1 +2289 1783753437178761600 REFRESH 52 0 0.64338337573362148 1 8 1 8 0 0 105 7 430 3943894 55200 149.37702941894531 0.97699999999999998 224.82169999999999 20160 12444 0 0 983040 737280 737280 737494 748800 135 25 34 156 80 0 0 0 0 7 0 0 0 0 0 +2290 1783753437371635500 REFRESH 20 0 0.64976038613069076 3 12 3 12 0 0 105 10 432 3943916 55200 149.27360534667969 0.97130000000000005 177.9709 20160 11887 0 0 983040 737280 737280 737516 748800 150 26 66 77 113 0 0 0 0 10 0 0 0 0 0 +2291 1783753437588471500 REFRESH 31 0 0.6889708446088525 2 6 2 6 0 0 122 3 430 3943921 55200 149.99655151367188 0.97430000000000005 215.68600000000001 20160 13528 0 0 983040 737280 737280 737521 748800 223 25 30 69 83 0 0 0 0 3 0 0 0 0 0 +2292 1783753437777867700 REFRESH 45 0 0.65495761620188153 2 7 2 7 0 0 125 3 424 3943916 55200 151.05740356445312 0.97719999999999996 188.17599999999999 20160 13146 0 0 983040 737280 737280 737516 748800 131 25 54 51 163 0 0 0 0 3 0 0 0 0 0 +2293 1783753437982880800 REFRESH 29 0 0.65181372746306776 2 12 2 12 0 0 111 14 418 3943926 55200 150.51858520507812 0.97509999999999997 180.1987 20160 11893 0 0 983040 737280 737280 737526 748800 114 25 48 43 188 0 0 0 0 14 0 0 0 0 0 +2294 1783753438177388300 REFRESH 27 0 0.65184577089246942 0 14 0 14 0 0 128 10 412 3943914 55200 150.18086242675781 0.97960000000000003 178.99010000000001 20160 11920 0 0 983040 737280 737280 737514 748800 60 26 28 30 268 1 0 0 0 9 0 0 0 0 0 +2295 1783753438372650100 REFRESH 35 0 0.64996956316038501 2 11 2 11 0 0 145 13 416 3943936 55200 150.06413269042969 0.97389999999999999 179.70849999999999 20160 12062 0 0 983040 737280 737280 737536 748800 110 25 30 88 163 0 0 0 0 13 0 0 0 0 0 +2296 1783753438606256900 REFRESH 18 0 0.65203583537574428 4 15 4 15 0 0 100 16 428 3943910 55200 150.24867248535156 0.9728 179.15100000000001 20160 11999 0 0 983040 737280 737280 737510 748800 34 25 25 32 312 0 0 0 0 16 0 0 0 0 0 +2297 1783753438800346700 REFRESH 55 0 0.65115802714330595 1 15 1 14 1 0 127 8 417 3943904 55200 149.44256591796875 0.97699999999999998 178.33369999999999 20160 12212 0 0 983040 737280 737280 737503 748800 81 26 36 67 207 0 0 0 1 7 0 0 0 1 0 +2298 1783753439053708400 REFRESH 11 0 0.69255990365889575 0 8 0 8 0 0 97 8 423 3943897 55200 150.42457580566406 0.97840000000000005 225.5401 20160 12942 0 0 983040 737280 737280 737495 748800 115 25 62 60 161 0 0 0 0 8 0 0 0 0 0 +2299 1783753439302858700 REFRESH 44 0 0.65120925894013726 2 7 2 7 0 0 128 7 422 3943891 55200 149.92486572265625 0.97460000000000002 224.0959 20160 13214 0 0 983040 737280 737280 737491 748800 72 26 56 29 239 0 0 0 0 7 0 0 0 0 0 +2300 1783753439490765500 REFRESH 33 0 0.69317457962243534 1 7 1 7 0 0 178 7 419 3943920 55200 151.518310546875 0.97130000000000005 186.75559999999999 20160 13390 0 0 983040 737280 737280 737520 748800 88 26 32 34 239 0 0 0 0 7 0 0 0 0 0 +2301 1783753439696496000 REFRESH 24 0 0.64961711835975555 4 11 4 11 0 0 130 12 410 3943911 55200 150.62425231933594 0.97430000000000005 180.2938 20160 12025 0 0 983040 737280 737280 737510 748800 50 26 52 63 219 0 1 0 0 11 0 0 0 0 0 +2302 1783753439892958700 REFRESH 46 0 0.65203516024664987 2 15 2 15 1 0 103 9 416 3943911 55200 150.17984008789062 0.97729999999999995 179.96559999999999 20160 12027 0 0 983040 737280 737280 737510 748800 76 26 61 35 218 0 0 0 1 8 0 0 0 0 1 +2303 1783753440089987900 REFRESH 4 0 0.60481012053962568 1 13 1 13 0 0 48 1 416 3943893 55200 148.90188598632812 0.97970000000000002 176.6918 20160 12305 0 0 983040 737280 737280 737493 748800 27 25 39 37 288 0 0 0 0 1 0 0 0 0 0 +2304 1783753440273947900 REFRESH 3 0 0.68010939562531636 2 9 2 9 0 0 136 10 417 3943929 55200 149.58387756347656 0.99929999999999997 182.851 20160 12405 0 0 983040 737280 737280 737529 748800 198 25 35 57 102 0 0 0 0 10 0 0 0 0 0 +2305 1783753440478484900 REFRESH 21 0 0.65175850483803521 0 10 0 10 1 0 170 12 415 3943924 55200 151.68205261230469 0.9748 203.37909999999999 20160 12829 0 0 983040 737280 737280 737524 748800 101 26 31 77 180 0 0 0 0 12 0 0 0 0 1 +2306 1783753441588889200 DEPTH 8 1 0.81672701120161451 2 5 2 5 0 0 213 30 2564 23664793 81600 868.55636596679688 5.870000000000001 1081.23 120960 66465 1 0 5898240 4423680 4423680 4426391 4492800 284 152 158 208 1762 0 0 0 0 30 0 0 0 0 0 +2307 1783753442897391900 DEPTH 17 1 0.80926811044338942 0 7 0 7 0 0 180 25 2533 23664829 81600 859.60359191894531 5.8589000000000002 1307.3776 120960 66114 1 0 5898240 4423680 4423680 4426428 4492800 211 156 156 208 1802 0 0 0 0 25 0 0 0 0 0 +2308 1783753444227627900 DEPTH 13 1 0.80419407222897055 1 6 1 6 0 0 174 27 2505 23664917 81600 861.45750427246094 5.8258000000000001 1280.4538 120960 65506 1 0 5898240 4423680 4423680 4426515 4492800 236 156 183 197 1733 0 0 0 0 27 0 0 0 0 0 +2309 1783753445523025500 DEPTH 56 1 0.81329559747610947 2 5 2 5 1 0 195 30 2549 23664911 81600 858.06135559082031 5.8400000000000007 1294.1806999999999 120960 65533 1 0 5898240 4423680 4423680 4426508 4492800 479 156 168 265 1481 0 0 0 0 30 0 0 0 0 1 +2310 1783753446750928400 DEPTH 2 1 0.78398723002208126 2 8 2 8 1 0 130 33 2551 23664899 81600 858.7855224609375 5.8281999999999998 1226.8004000000001 120960 60547 1 0 5898240 4423680 4423680 4426497 4492800 156 150 150 150 1945 0 0 0 0 33 0 0 0 0 1 +2311 1783753447881658900 DEPTH 39 1 0.7535048846184359 3 10 3 10 0 0 155 54 2551 23664864 81600 857.64448547363281 5.8523000000000005 1038.6714999999999 120960 57247 1 0 5898240 4423680 4423680 4426464 4492800 200 150 151 156 1894 0 0 1 0 53 0 0 0 0 0 +2312 1783753449246223900 DEPTH 9 1 0.69312981808626173 2 6 2 6 0 0 123 8 2627 23664813 81600 866.42860412597656 5.8613 1301.1388999999999 120960 65196 1 0 5898240 4423680 4423680 4426412 4492800 685 150 392 445 955 0 0 0 0 8 0 0 0 0 0 +2313 1783753450575350400 DEPTH 1 1 0.69251465507981413 1 7 1 7 0 0 122 12 2613 23664863 81600 862.42893981933594 5.8260000000000005 1303.6194 120960 65208 1 0 5898240 4423680 4423680 4426463 4492800 405 156 297 310 1445 0 0 0 0 12 0 0 0 0 0 +2314 1783753451829605700 DEPTH 53 1 0.69556889190946336 0 8 0 8 0 0 140 29 2512 23664942 81600 861.7288818359375 5.8266 1253.0189 120960 64888 1 0 5898240 4423680 4423680 4426541 4492800 188 156 150 162 1856 0 0 0 0 29 0 0 0 0 0 +2315 1783753453088763100 DEPTH 30 1 0.67381132150711331 1 9 1 9 0 0 128 45 2532 23664838 81600 860.44125366210938 5.8411 1231.3056999999999 120960 62169 1 0 5898240 4423680 4423680 4426431 4492800 156 150 174 150 1902 1 0 0 0 44 0 0 0 0 0 +2316 1783753454126905400 DEPTH 55 1 0.68981015322069239 1 14 1 14 1 0 128 16 2596 23664850 81600 861.57383728027344 5.8434999999999997 1036.9536000000001 120960 57955 1 0 5898240 4423680 4423680 4426448 4492800 244 150 174 237 1791 0 0 0 2 14 0 0 0 2 0 +2317 1783753455182654700 DEPTH 40 1 0.66309248060786929 1 12 1 12 1 0 115 41 2569 23664877 81600 861.19601440429688 5.8686999999999996 1030.8918000000001 120960 60345 1 0 5898240 4423680 4423680 4426476 4492800 207 150 169 316 1727 0 0 0 0 41 0 0 0 0 1 +2318 1783753456492598900 DEPTH 31 1 0.68293877500918654 2 6 2 6 0 0 122 15 2629 23664914 81600 858.09445190429688 5.8450999999999995 1270.058 120960 65252 1 0 5898240 4423680 4423680 4426512 4492800 965 150 180 310 1024 0 0 0 0 15 0 0 0 0 0 +2319 1783753457595757700 DEPTH 16 1 0.65233356316330138 2 7 2 7 1 0 167 53 2513 23664846 81600 867.03025817871094 5.8747999999999996 1101.9942000000001 120960 63840 1 0 5898240 4423680 4423680 4426446 4492800 157 156 156 561 1483 0 0 0 0 53 0 0 0 0 1 +2320 1783753458628472600 DEPTH 43 1 0.64837630642351285 2 13 2 13 0 0 122 32 2545 23664883 81600 860.31721496582031 5.8632999999999997 1031.5372 120960 56850 1 0 5898240 4423680 4423680 4426481 4492800 276 156 175 180 1758 0 0 0 0 32 0 0 0 0 0 +2321 1783753459701773600 DEPTH 15 1 0.6480368596295577 3 12 3 12 0 0 92 47 2547 23664860 81600 861.9921875 5.8908000000000005 1039.1188 120960 57258 1 0 5898240 4423680 4423680 4426459 4492800 169 150 150 150 1928 0 0 0 0 47 0 0 0 0 0 +2322 1783753460775739500 DEPTH 8 1 0.72702459367422656 2 5 2 5 0 0 213 24 2566 23664846 81600 862.05339050292969 5.8437000000000001 1072.8178 120960 55463 1 0 5898240 4423680 4423680 4426445 4492800 315 150 157 203 1741 0 0 0 0 24 0 0 0 0 0 +2323 1783753462113238800 DEPTH 17 1 0.72031194425519407 0 7 0 7 0 0 180 24 2525 23664817 81600 852.50851440429688 5.839500000000001 1296.6491000000001 120960 55082 1 0 5898240 4423680 4423680 4426413 4492800 209 156 156 223 1781 0 0 0 0 24 0 0 0 0 0 +2324 1783753463382461200 DEPTH 13 1 0.71591662980296722 1 6 1 6 0 0 175 35 2509 23664882 81600 852.35617065429688 5.8702000000000005 1268.1063999999999 120960 54318 1 0 5898240 4423680 4423680 4426481 4492800 218 154 186 219 1732 0 0 0 0 35 0 0 0 0 0 +2325 1783753464708548900 DEPTH 56 1 0.72395972323641045 2 5 2 5 0 0 195 31 2558 23664894 81600 849.01249694824219 5.8606999999999996 1286.1211000000001 120960 54243 1 0 5898240 4423680 4423680 4426492 4492800 468 156 170 300 1464 0 0 0 0 31 0 0 0 0 0 +2326 1783753466025873900 DEPTH 11 1 0.69144784044022656 0 8 0 8 0 0 97 12 2530 23664902 81600 853.23744201660156 5.8342999999999998 1297.9650999999999 120960 63312 1 0 5898240 4423680 4423680 4426502 4492800 286 150 218 234 1642 0 0 0 0 12 0 0 0 0 0 +2327 1783753467284149600 DEPTH 33 1 0.69021358834945234 1 7 1 7 0 0 178 35 2554 23664781 81600 868.01507568359375 5.8378999999999994 1232.9996000000001 120960 66051 1 0 5898240 4423680 4423680 4426381 4492800 186 153 156 150 1909 0 0 0 0 35 0 0 0 0 0 +2328 1783753468343110300 DEPTH 29 1 0.64945402977975553 2 12 2 12 1 0 113 40 2533 23664816 81600 860.19277954101562 5.9049999999999994 1032.2138 120960 56694 1 0 5898240 4423680 4423680 4426415 4492800 236 150 189 192 1766 0 0 0 0 40 0 0 0 0 1 +2329 1783753469430903500 DEPTH 27 1 0.64926055906699398 0 14 0 14 0 0 128 44 2561 23664786 81600 858.05145263671875 5.8355999999999995 1032.1658 120960 56901 1 0 5898240 4423680 4423680 4426383 4492800 195 156 156 164 1890 0 0 0 0 44 0 0 0 0 0 +2330 1783753470665298800 DEPTH 2 1 0.71959723718223811 2 8 2 8 0 0 130 38 2559 23664852 81600 849.50733947753906 6.1685999999999996 1233.2882 120960 49616 1 0 5898240 4423680 4423680 4426450 4492800 156 150 150 150 1953 0 0 0 0 38 0 0 0 0 0 +2331 1783753471718755200 DEPTH 39 1 0.69037090144693969 3 10 3 10 0 0 155 64 2555 23664835 81600 850.00558471679688 5.8328999999999995 1024.7642000000001 120960 46321 1 0 5898240 4423680 4423680 4426434 4492800 201 150 150 156 1898 0 0 0 0 64 0 0 0 0 0 +2332 1783753472894563300 DEPTH 3 1 0.67495237988549661 2 9 2 9 1 0 136 62 2571 23664839 81600 856.07917785644531 5.8332999999999995 1174.6940999999999 120960 59462 1 0 5898240 4423680 4423680 4426439 4492800 372 150 156 245 1648 5 0 0 4 53 4 0 0 0 0 +2333 1783753474236124200 DEPTH 21 1 0.65061864231154332 0 10 0 10 0 0 171 28 2605 23664787 81600 862.00567626953125 5.8527999999999993 1295.5261 120960 61323 1 0 5898240 4423680 4423680 4426384 4492800 362 150 157 288 1648 0 0 0 0 28 0 0 0 0 0 +2334 1783753475286800300 DEPTH 18 1 0.64893326978497079 4 15 4 15 1 0 101 45 2610 23664830 81600 856.90089416503906 5.8677000000000001 1026.5859 120960 56826 1 0 5898240 4423680 4423680 4426428 4492800 150 150 150 156 2004 0 0 0 1 44 0 0 0 0 1 +2335 1783753476617012500 DEPTH 44 1 0.64884919578809663 2 7 2 7 0 0 129 24 2586 23664849 81600 858.95980834960938 5.8421000000000003 1302.3520000000001 120960 63635 1 0 5898240 4423680 4423680 4426448 4492800 208 150 224 171 1833 0 0 0 0 24 0 0 0 0 0 +2336 1783753477676666300 DEPTH 46 1 0.64809143811167624 2 15 2 15 0 0 103 46 2571 23664808 81600 859.65681457519531 5.8551000000000002 1033.6338000000001 120960 56788 1 0 5898240 4423680 4423680 4426405 4492800 171 150 162 172 1916 0 0 0 0 46 0 0 0 0 0 +2337 1783753478777785400 DEPTH 36 1 0.64804611798712419 3 10 3 10 1 0 108 20 2619 23664786 81600 856.25958251953125 5.8464 1031.0447999999999 120960 57089 1 0 5898240 4423680 4423680 4426386 4492800 861 150 189 174 1245 0 0 1 0 19 0 0 0 0 1 +2338 1783753478999881000 REFRESH 56 0 0.69444525324928497 2 5 2 5 0 0 195 7 416 3943933 55200 150.05491638183594 0.97199999999999998 220.86369999999999 20160 13463 0 0 983040 737280 737280 737533 748800 183 26 52 65 90 0 0 0 0 7 0 0 0 0 0 +2339 1783753479181694000 REFRESH 46 0 0.42513283329996554 2 15 2 15 0 0 103 14 413 3943888 55200 150.20518493652344 0.9798 180.5915 20160 11958 0 0 983040 737280 737280 737488 748800 91 26 64 31 201 0 0 0 0 14 0 0 0 0 0 +2340 1783753479465326200 REFRESH 11 0 0.58225371122263669 0 8 0 8 0 0 97 4 421 3943908 55200 150.67546081542969 0.97750000000000004 225.10599999999999 20160 13461 0 0 983040 737280 737280 737508 748800 125 25 66 63 142 0 0 0 0 4 0 0 0 0 0 +2341 1783753479657243300 REFRESH 48 0 0.5988606361399873 2 11 2 11 0 0 75 3 433 3943890 55200 148.08883666992188 0.97270000000000001 176.94229999999999 20160 11923 0 0 983040 737280 737280 737490 748800 195 25 54 64 95 1 0 0 0 2 0 0 0 0 0 +2342 1783753479852054400 REFRESH 35 0 0.64796211146118954 2 11 2 11 0 0 145 9 416 3943882 55200 150.28530883789062 0.97330000000000005 179.31880000000001 20160 12171 0 0 983040 737280 737280 737482 748800 101 25 29 82 179 0 0 0 0 9 0 0 0 0 0 +2343 1783753480076611700 REFRESH 9 0 0.69144818876480807 2 6 2 6 0 0 123 7 436 3943903 55200 151.76499938964844 0.97929999999999995 223.4701 20160 13291 0 0 983040 737280 737280 737503 748800 123 25 77 68 143 0 0 0 0 7 0 0 0 0 0 +2344 1783753480304099200 REFRESH 41 0 0.64653723684075937 1 10 1 10 0 0 109 5 414 3943918 55200 149.18861389160156 0.97929999999999995 201.52250000000001 20160 12321 0 0 983040 737280 737280 737517 748800 122 26 42 40 184 0 0 0 0 5 0 0 0 0 0 +2345 1783753480499716500 REFRESH 25 0 0.64315326523173733 3 11 3 11 0 0 112 6 425 3943896 55200 150.77171325683594 0.98099999999999998 180.17160000000001 20160 11862 0 0 983040 737280 737280 737495 748800 83 25 60 76 181 0 0 0 0 6 0 0 0 0 0 +2346 1783753480681483000 REFRESH 55 0 0.73759913437228286 1 14 1 14 1 0 128 13 419 3943939 55200 150.92019653320312 0.97699999999999998 180.5412 20160 12112 0 0 983040 737280 737280 737539 748800 91 25 37 71 195 0 0 0 1 12 0 0 0 1 0 +2347 1783753480868735400 REFRESH 33 0 0.64040478608272333 1 7 1 7 0 0 178 11 417 3943898 55200 151.98789978027344 0.97150000000000003 186.05090000000001 20160 13410 0 0 983040 737280 737280 737497 748800 101 26 39 37 214 0 0 0 0 11 0 0 0 0 0 +2348 1783753481059317600 REFRESH 4 0 0.59941781873067113 1 13 1 13 1 0 48 2 422 3943899 55200 148.60493469238281 0.9768 175.7183 20160 12204 0 0 983040 737280 737280 737499 748800 26 25 36 31 304 0 0 0 0 2 0 0 0 0 1 +2349 1783753481255802800 REFRESH 58 0 0.64077190592808253 2 12 2 12 0 0 116 7 421 3943900 55200 149.99346923828125 0.97729999999999995 178.95570000000001 20160 12494 0 0 983040 737280 737280 737500 748800 99 26 62 58 176 0 0 0 0 7 0 0 0 0 0 +2350 1783753481441639900 REFRESH 8 0 0.81726238444963828 2 5 2 5 0 0 213 4 415 3943904 55200 152.24832153320312 0.97619999999999996 184.6301 20160 13390 0 0 983040 737280 737280 737504 748800 155 26 28 80 126 0 0 0 0 4 0 0 0 0 0 +2351 1783753481641657300 REFRESH 13 0 0.80743092669383731 1 6 1 6 0 0 175 3 415 3943928 55200 150.99392700195312 0.98029999999999995 198.9101 20160 13534 0 0 983040 737280 737280 737528 748800 145 26 54 86 104 0 0 0 0 3 0 0 0 0 0 +2352 1783753481821546500 REFRESH 43 0 0.64571533096792355 2 13 2 13 0 0 122 10 414 3943919 55200 150.21229553222656 0.97550000000000003 178.6781 20160 12021 0 0 983040 737280 737280 737518 748800 144 26 42 58 144 0 0 0 0 10 0 0 0 0 0 +2353 1783753482003314100 REFRESH 27 0 0.63666727485440555 0 14 0 14 0 0 131 15 412 3943893 55200 150.619140625 0.97219999999999995 180.5668 20160 12041 0 0 983040 737280 737280 737493 748800 61 26 28 31 266 1 0 0 0 14 0 0 0 0 0 +2354 1783753482185184100 REFRESH 29 0 0.64707239507986802 2 12 2 12 0 0 113 6 416 3943918 55200 150.55258178710938 0.98650000000000004 180.7105 20160 11985 0 0 983040 737280 737280 737518 748800 136 25 50 49 156 0 0 0 0 6 0 0 0 0 0 +2355 1783753482391419500 REFRESH 7 0 0.64388910382153708 1 12 1 12 0 0 128 10 420 3943927 55200 151.06764221191406 0.97870000000000001 181.02799999999999 20160 12199 0 0 983040 737280 737280 737527 748800 147 26 29 32 186 0 0 0 0 10 0 0 0 0 0 +2356 1783753482572656100 REFRESH 39 0 0.72839096084913435 3 10 3 10 0 0 155 9 409 3943925 55200 150.03852844238281 0.96840000000000004 180.065 20160 12350 0 0 983040 737280 737280 737525 748800 90 29 30 34 226 0 0 0 0 9 0 0 0 0 0 +2357 1783753482791891700 REFRESH 31 0 0.68444588347208435 2 6 2 6 0 0 122 9 427 3943911 55200 150.9447021484375 0.97519999999999996 218.08590000000001 20160 13406 0 0 983040 737280 737280 737511 748800 222 25 30 71 79 0 0 0 0 9 0 0 0 0 0 +2358 1783753482979071300 REFRESH 30 0 0.67004023876317342 1 9 1 9 0 0 128 8 411 3943924 55200 150.71539306640625 0.97389999999999999 186.00659999999999 20160 13016 0 0 983040 737280 737280 737523 748800 77 25 44 33 232 0 0 0 0 8 0 0 0 0 0 +2359 1783753483198671000 REFRESH 50 0 0.64243611023212088 2 9 2 9 0 0 121 8 418 3943901 55200 149.78355407714844 0.97870000000000001 182.7199 20160 12121 0 0 983040 737280 737280 737501 748800 169 25 37 54 133 0 0 0 0 8 0 0 0 0 0 +2360 1783753483392194900 REFRESH 26 0 0.6435984259731653 1 13 1 13 0 0 75 4 422 3943885 55200 148.85580444335938 0.97489999999999999 177.05179999999999 20160 12221 0 0 983040 737280 737280 737485 748800 33 25 32 43 289 0 0 0 0 4 0 0 0 0 0 +2361 1783753483579754700 REFRESH 2 0 0.75651229455712155 2 8 2 8 0 0 130 8 413 3943907 55200 150.0948486328125 0.97260000000000002 186.4622 20160 12770 0 0 983040 737280 737280 737507 748800 27 25 55 83 223 0 0 0 0 8 0 0 0 0 0 +2362 1783753483760753300 REFRESH 36 0 0.64597862701917719 3 10 3 10 0 0 108 8 432 3943924 55200 150.46553039550781 0.97209999999999996 179.84119999999999 20160 12139 0 0 983040 737280 737280 737524 748800 203 25 34 45 125 0 0 0 0 8 0 0 0 0 0 +2363 1783753483985838700 REFRESH 17 0 0.8112689437206777 0 7 0 7 0 0 180 2 413 3943892 55200 150.835205078125 0.97570000000000001 223.91650000000001 20160 13310 0 0 983040 737280 737280 737492 748800 111 26 35 106 135 0 0 0 0 2 0 0 0 0 0 +2364 1783753484182331600 REFRESH 42 0 0.64632128191992633 4 12 4 12 0 0 121 12 411 3943894 55200 150.76658630371094 0.97860000000000003 180.53299999999999 20160 11975 0 0 983040 737280 737280 737493 748800 170 25 25 38 153 0 0 0 0 12 0 0 0 0 0 +2365 1783753484376576100 REFRESH 5 0 0.63917142745388522 2 11 2 11 0 0 91 9 411 3943906 55200 149.08416748046875 0.97499999999999998 178.52940000000001 20160 13463 0 0 983040 737280 737280 737506 748800 64 26 85 113 123 0 0 1 0 8 0 0 0 0 0 +2366 1783753484572287900 REFRESH 57 0 0.63048609873390371 2 12 2 12 0 0 120 5 415 3943906 55200 149.90130615234375 0.97489999999999999 179.5241 20160 12076 0 0 983040 737280 737280 737506 748800 112 26 92 89 96 0 1 0 0 4 0 0 0 0 0 +2367 1783753484764909000 REFRESH 34 0 0.64527332432498963 1 13 1 13 0 0 101 8 432 3943933 55200 148.45849609375 0.97409999999999997 176.9572 20160 13183 0 0 983040 737280 737280 737533 748800 103 25 60 73 171 0 0 0 1 7 0 0 0 0 0 +2368 1783753484945704700 REFRESH 15 0 0.64595294324045027 3 12 3 12 0 0 92 5 420 3943925 55200 150.85670471191406 0.98140000000000005 179.67949999999999 20160 11920 0 0 983040 737280 737280 737525 748800 38 26 29 25 302 0 0 0 0 5 0 0 0 0 0 +2369 1783753485150714300 REFRESH 38 0 0.63303992122842845 4 14 4 14 0 0 82 6 423 3943910 55200 152.2003173828125 0.97999999999999998 180.6816 20160 12049 0 0 983040 737280 737280 737510 748800 51 26 41 39 266 0 0 0 0 6 0 0 0 0 0 +2370 1783753485362966500 REFRESH 10 0 0.63791420243886865 1 11 1 11 0 0 106 12 424 3943925 55200 149.11692810058594 0.97470000000000001 178.18979999999999 20160 12887 0 0 983040 737280 737280 737525 748800 138 26 49 37 174 0 0 0 0 12 0 0 0 0 0 +2371 1783753485558392800 REFRESH 49 0 0.6470766190163395 3 10 3 10 0 0 125 8 421 3943884 55200 149.85011291503906 0.97430000000000005 179.63229999999999 20160 12456 0 0 983040 737280 737280 737484 748800 110 26 68 59 158 0 0 0 0 8 0 0 0 0 0 +2372 1783753485754429300 REFRESH 22 0 0.63480981572062944 3 11 3 11 0 0 116 7 419 3943928 55200 150.18290710449219 0.97189999999999999 180.3801 20160 12154 0 0 983040 737280 737280 737528 748800 121 25 29 26 218 0 0 0 0 7 0 0 0 0 0 +2373 1783753485949788300 REFRESH 0 0 0.63634741207712697 1 12 1 12 0 0 89 5 426 3943906 55200 149.17222595214844 0.97950000000000004 177.369 20160 12170 0 0 983040 737280 737280 737506 748800 73 25 44 35 249 0 0 0 0 5 0 0 0 0 0 +2374 1783753486135830000 REFRESH 16 0 0.65238501625214185 2 7 2 7 0 0 167 3 415 3943905 55200 152.12031555175781 0.9728 184.8613 20160 13266 0 0 983040 737280 737280 737505 748800 31 26 26 233 99 0 0 0 0 3 0 0 0 0 0 +2375 1783753486315992300 REFRESH 40 0 0.65808988805054258 1 12 1 12 1 0 115 9 422 3943903 55200 149.93510437011719 0.97440000000000004 178.9041 20160 13190 0 0 983040 737280 737280 737503 748800 160 25 34 76 127 0 0 0 1 8 0 0 0 1 0 +2376 1783753486539309900 REFRESH 12 0 0.64703236858396518 3 8 3 8 0 0 170 10 413 3943899 55200 150.02828979492188 0.97770000000000001 180.4205 20160 12090 0 0 983040 737280 737280 737498 748800 137 26 38 99 113 0 0 0 0 10 0 0 0 0 0 +2377 1783753486733083800 REFRESH 37 0 0.64746343089924341 1 12 1 12 0 0 131 7 425 3943909 55200 148.89266967773438 0.97640000000000005 178.2835 20160 12349 0 0 983040 737280 737280 737509 748800 124 26 47 32 196 0 0 0 0 7 0 0 0 0 0 +2378 1783753486929192900 REFRESH 51 0 0.64714482569341969 3 12 3 12 0 0 90 11 424 3943917 55200 151.33287048339844 0.97260000000000002 179.91839999999999 20160 12272 0 0 983040 737280 737280 737517 748800 44 26 123 85 146 0 0 0 0 11 0 0 0 0 0 +2379 1783753487109169900 REFRESH 18 0 0.64596332593969352 4 15 4 15 0 0 102 12 426 3943903 55200 150.26687622070312 0.97509999999999997 178.8389 20160 11884 0 0 983040 737280 737280 737503 748800 33 25 25 31 312 0 0 0 0 12 0 0 0 0 0 +2380 1783753487313453000 REFRESH 19 0 0.64630231171902075 2 11 2 11 0 0 119 11 423 3943894 55200 150.05667114257812 1.0004 179.3458 20160 12015 0 0 983040 737280 737280 737494 748800 131 25 26 54 187 0 0 0 0 11 0 0 0 0 0 +2381 1783753487510973100 REFRESH 28 0 0.64090248023284058 1 12 1 12 0 0 143 9 404 3943936 55200 150.92428588867188 0.98199999999999998 181.30969999999999 20160 12202 0 0 983040 737280 737280 737536 748800 126 25 30 29 194 1 0 0 0 8 0 0 0 0 0 +2382 1783753487696630500 REFRESH 3 0 0.67076424363496945 2 9 2 9 0 0 136 8 420 3943906 55200 150.13375854492188 0.97629999999999995 184.5753 20160 12963 0 0 983040 737280 737280 737506 748800 201 25 36 57 101 0 0 0 0 8 0 0 0 0 0 +2383 1783753487888874400 REFRESH 53 0 0.69582202954899863 0 8 0 8 0 0 140 6 416 3943892 55200 151.45779418945312 1.2845 191.00899999999999 20160 13482 0 0 983040 737280 737280 737492 748800 123 26 27 45 195 0 0 0 0 6 0 0 0 0 0 +2384 1783753488094019000 REFRESH 20 0 0.64777866156571096 3 12 3 12 0 0 106 11 428 3943918 55200 150.65702819824219 0.97409999999999997 179.38120000000001 20160 11891 0 0 983040 737280 737280 737518 748800 151 26 66 69 116 0 0 0 0 11 0 0 0 0 0 +2385 1783753488272849300 REFRESH 47 0 0.64424861223568719 2 11 2 11 0 0 111 8 416 3943918 55200 149.31277465820312 0.98240000000000005 177.6292 20160 12293 0 0 983040 737280 737280 737517 748800 127 26 46 32 185 0 0 0 0 8 0 0 0 0 0 +2386 1783753488483301200 REFRESH 1 0 0.6932224070248828 1 7 1 7 0 0 122 5 420 3943893 55200 151.49874877929688 0.97619999999999996 209.3716 20160 13410 0 0 983040 737280 737280 737493 748800 129 26 81 82 102 0 0 0 0 5 0 0 0 0 0 +2387 1783753488728565600 REFRESH 54 0 0.64584368373666878 1 8 1 8 0 0 111 2 424 3943920 55200 150.33139038085938 0.97409999999999997 220.0026 20160 12657 0 0 983040 737280 737280 737519 748800 150 25 57 116 76 0 0 0 0 2 0 0 0 0 0 +2388 1783753488922135100 REFRESH 32 0 0.6475307960991481 2 14 2 14 0 0 116 8 428 3943886 55200 149.38438415527344 0.97589999999999999 177.90440000000001 20160 12059 0 0 983040 737280 737280 737486 748800 196 25 35 35 137 0 0 0 0 8 0 0 0 0 0 +2389 1783753489114049000 REFRESH 45 0 0.6482257960820369 2 7 2 7 0 0 125 3 418 3943941 55200 150.89152526855469 0.98140000000000005 190.7586 20160 13216 0 0 983040 737280 737280 737541 748800 116 25 50 46 181 0 0 0 0 3 0 0 0 0 0 +2390 1783753489362943100 REFRESH 52 0 0.64328360077730284 1 8 1 8 0 0 106 4 426 3943914 55200 150.12825012207031 0.98740000000000006 224.16419999999999 20160 12421 0 0 983040 737280 737280 737514 748800 134 25 33 154 80 0 0 0 0 4 0 0 0 0 0 +2391 1783753489556342000 REFRESH 6 0 0.61542169640484401 3 11 3 11 0 0 114 1 416 3943912 55200 149.33094787597656 0.98409999999999997 179.06780000000001 20160 12357 0 0 983040 737280 737280 737512 748800 26 25 25 25 315 0 0 0 0 1 0 0 0 0 0 +2392 1783753489772249700 REFRESH 23 0 0.64825295730024424 3 14 3 14 0 0 98 11 411 3943896 55200 149.71084594726562 0.99760000000000004 178.8877 20160 11892 0 0 983040 737280 737280 737496 748800 35 25 59 41 251 0 0 0 0 11 0 0 0 0 0 +2393 1783753490007664300 REFRESH 44 0 0.64969893241111798 2 7 2 7 0 0 130 7 420 3943893 55200 149.90745544433594 0.97450000000000003 224.46780000000001 20160 13215 0 0 983040 737280 737280 737492 748800 68 26 53 31 242 0 0 0 0 7 0 0 0 0 0 +2394 1783753490199843400 REFRESH 24 0 0.6481300782519257 4 11 4 11 0 0 131 8 412 3943911 55200 150.08256530761719 1.0038 180.04409999999999 20160 11966 0 0 983040 737280 737280 737510 748800 47 26 43 50 246 0 1 0 0 7 0 0 0 0 0 +2395 1783753490397969700 REFRESH 14 0 0.63982568471653856 0 12 0 12 0 0 109 8 420 3943904 55200 149.897216796875 0.97599999999999998 185.22999999999999 20160 11960 0 0 983040 737280 737280 737504 748800 102 26 30 48 214 0 0 0 0 8 0 0 0 0 0 +2396 1783753490602527400 REFRESH 21 0 0.64959772318592668 0 10 0 10 0 0 171 7 416 3943903 55200 151.37075805664062 0.97709999999999997 203.39779999999999 20160 12891 0 0 983040 737280 737280 737503 748800 103 26 31 77 179 0 0 0 0 7 0 0 0 0 0 +2397 1783753491895739200 DEPTH 56 1 0.81198486119810842 2 5 2 5 0 0 195 34 2552 23664834 81600 856.43470764160156 5.8238000000000003 1291.9475 120960 65062 1 0 5898240 4423680 4423680 4426433 4492800 475 156 174 260 1487 0 0 0 0 34 0 0 0 0 0 +2398 1783753493015804700 DEPTH 8 1 0.81148110970472542 2 5 2 5 0 0 214 28 2566 23664847 81600 868.49186706542969 5.8545000000000007 1081.9512 120960 65955 1 0 5898240 4423680 4423680 4426447 4492800 235 150 158 169 1854 0 0 0 0 28 0 0 0 0 0 +2399 1783753494319344100 DEPTH 17 1 0.80404447438595983 0 7 0 7 1 0 180 21 2525 23664829 81600 857.74336242675781 5.8395999999999999 1302.4760000000001 120960 64936 1 0 5898240 4423680 4423680 4426426 4492800 208 156 156 220 1785 0 0 0 0 21 0 0 0 0 1 +2400 1783753495622853200 DEPTH 13 1 0.80180458059683768 1 6 1 6 0 0 175 32 2510 23664869 81600 860.06884765625 5.8540999999999999 1272.2277999999999 120960 65717 1 0 5898240 4423680 4423680 4426468 4492800 238 156 186 211 1719 0 0 0 0 32 0 0 0 0 0 +2401 1783753496875840000 DEPTH 2 1 0.74263268301889829 2 8 2 8 0 0 130 37 2558 23664789 81600 861.45938110351562 5.846000000000001 1230.8859 120960 62107 1 0 5898240 4423680 4423680 4426387 4492800 156 150 150 150 1952 0 0 0 0 37 0 0 0 0 0 +2402 1783753497933399700 DEPTH 55 1 0.72642704009982739 1 14 1 14 1 0 128 19 2599 23664817 81600 860.54798889160156 5.8325999999999993 1036.3607999999999 120960 57132 1 0 5898240 4423680 4423680 4426416 4492800 286 150 181 255 1727 1 0 0 2 16 0 0 0 2 0 +2403 1783753498985389500 DEPTH 39 1 0.71654859871108612 3 10 3 10 0 0 155 35 2539 23664807 81600 858.9713134765625 5.8230000000000004 1030.8769 120960 58100 1 0 5898240 4423680 4423680 4426405 4492800 201 151 151 156 1880 0 0 0 0 35 0 0 0 0 0 +2404 1783753500242511300 DEPTH 33 1 0.69063173100764053 1 7 1 7 0 0 179 34 2553 23664757 81600 868.94242858886719 5.8653000000000004 1213.1337000000001 120960 65781 1 0 5898240 4423680 4423680 4426357 4492800 195 154 156 150 1898 0 0 0 0 34 0 0 0 0 0 +2405 1783753501539913600 DEPTH 9 1 0.68896229062687775 2 6 2 6 0 0 123 7 2617 23664780 81600 863.26939392089844 5.8414000000000001 1296.2949000000001 120960 65162 1 0 5898240 4423680 4423680 4426378 4492800 696 150 391 469 911 0 0 0 0 7 0 0 0 0 0 +2406 1783753502865360300 DEPTH 11 1 0.68709683638276675 0 8 0 8 0 0 97 15 2551 23664904 81600 854.45600891113281 5.846000000000001 1302.7955999999999 120960 64605 1 0 5898240 4423680 4423680 4426501 4492800 288 150 209 225 1679 0 0 0 0 15 0 0 0 0 0 +2407 1783753504134781700 DEPTH 31 1 0.68473781090623187 2 6 2 6 0 0 122 15 2626 23664746 81600 858.25103759765625 5.8203999999999994 1268.2809 120960 64799 1 0 5898240 4423680 4423680 4426345 4492800 969 150 180 308 1019 0 0 0 0 15 0 0 0 0 0 +2408 1783753505409573600 DEPTH 30 1 0.66454220001334008 1 9 1 9 0 0 128 45 2534 23664773 81600 858.56559753417969 5.8421000000000003 1220.5186000000001 120960 62535 1 0 5898240 4423680 4423680 4426372 4492800 156 150 174 150 1904 0 0 0 0 45 0 0 0 0 0 +2409 1783753506676431800 DEPTH 53 1 0.69174843466008662 0 8 0 8 0 0 140 23 2513 23664816 81600 861.01683044433594 5.8511999999999995 1252.8677 120960 65509 1 0 5898240 4423680 4423680 4426415 4492800 189 156 150 167 1851 0 0 0 0 23 0 0 0 0 0 +2410 1783753507727265100 DEPTH 40 1 0.65235346071314193 1 12 1 12 1 0 115 39 2565 23664833 81600 857.17605590820312 5.8308 1028.1614 120960 62552 1 0 5898240 4423680 4423680 4426432 4492800 219 150 169 320 1707 1 0 0 1 37 0 0 0 1 1 +2411 1783753508812168800 DEPTH 12 1 0.64598276066057492 3 8 3 8 0 0 171 55 2518 23664853 81600 857.59175109863281 5.8607000000000005 1028.999 120960 57816 1 0 5898240 4423680 4423680 4426452 4492800 264 150 174 218 1712 0 0 0 0 55 0 0 0 0 0 +2412 1783753509884422700 DEPTH 51 1 0.6458156229154326 3 12 3 12 0 0 91 27 2576 23664843 81600 851.97077941894531 5.8556000000000008 1022.7161 120960 61529 1 0 5898240 4423680 4423680 4426443 4492800 186 150 351 267 1622 0 0 1 0 26 0 0 0 0 0 +2413 1783753511177150300 DEPTH 56 1 0.72254130410802142 2 5 2 5 0 0 195 26 2563 23664865 81600 848.79432678222656 5.8372999999999999 1291.4813999999999 120960 53315 1 0 5898240 4423680 4423680 4426462 4492800 484 156 174 333 1416 0 0 0 0 26 0 0 0 0 0 +2414 1783753512245960800 DEPTH 8 1 0.72208827250701191 2 5 2 5 0 0 214 21 2536 23664829 81600 861.76194763183594 5.8356000000000003 1067.6768 120960 54445 1 0 5898240 4423680 4423680 4426428 4492800 419 153 164 236 1564 0 0 0 0 21 0 0 0 0 0 +2415 1783753513559221600 DEPTH 17 1 0.71539575965669544 0 7 0 7 1 0 181 25 2532 23664799 81600 850.25477600097656 5.8488000000000007 1291.2734 120960 53479 1 0 5898240 4423680 4423680 4426397 4492800 205 156 156 217 1798 0 0 0 0 25 0 0 0 0 1 +2416 1783753514873305300 DEPTH 1 1 0.68855528263203114 1 7 1 7 0 0 122 7 2614 23664850 81600 862.45547485351562 5.8743999999999996 1313.0151000000001 120960 65277 1 0 5898240 4423680 4423680 4426450 4492800 416 156 303 293 1446 0 0 0 0 7 0 0 0 0 0 +2417 1783753516163048500 DEPTH 13 1 0.72354791589632483 1 6 1 6 0 0 175 22 2511 23664813 81600 852.42060852050781 5.8300000000000001 1266.6847 120960 54736 1 0 5898240 4423680 4423680 4426411 4492800 237 156 197 236 1685 0 0 0 0 22 0 0 0 0 0 +2418 1783753517397239800 DEPTH 3 1 0.66427517647365419 2 9 2 9 1 0 137 48 2566 23664876 81600 856.41836547851562 5.8495000000000008 1183.8244 120960 61338 1 0 5898240 4423680 4423680 4426474 4492800 348 150 156 234 1678 4 0 0 1 43 2 0 0 0 0 +2419 1783753518449255000 DEPTH 20 1 0.64544750617233615 3 12 3 12 1 0 106 15 2621 23664871 81600 858.01950073242188 5.8420999999999994 1030.596 120960 56259 1 0 5898240 4423680 4423680 4426468 4492800 421 156 289 395 1360 0 0 0 0 15 0 0 0 0 2 +2420 1783753519544783000 DEPTH 16 1 0.64526849164712008 2 7 2 7 0 0 167 36 2529 23664808 81600 866.40318298339844 5.9101999999999997 1094.4484 120960 64501 1 0 5898240 4423680 4423680 4426408 4492800 157 156 156 535 1525 0 0 0 0 36 0 0 0 0 0 +2421 1783753520816604400 DEPTH 2 1 0.6818985735883184 2 8 2 8 0 0 131 38 2558 23664732 81600 853.23309326171875 5.8673000000000002 1229.9381000000001 120960 51098 1 0 5898240 4423680 4423680 4426330 4492800 156 150 150 150 1952 0 0 0 0 38 0 0 0 0 0 +2422 1783753521846465400 DEPTH 55 1 0.66614206104470353 1 14 1 14 1 0 128 17 2600 23664843 81600 853.33171081542969 5.8502999999999998 1028.5831000000001 120960 46191 1 0 5898240 4423680 4423680 4426442 4492800 321 150 183 304 1642 2 0 3 1 11 0 0 3 0 1 +2423 1783753523194641900 DEPTH 44 1 0.64720321759504773 2 7 2 7 0 0 131 16 2589 23664802 81600 864.03790283203125 5.8247 1305.7684999999999 120960 63635 1 0 5898240 4423680 4423680 4426401 4492800 213 150 235 162 1829 0 0 0 0 16 0 0 0 0 0 +2424 1783753524253284900 DEPTH 23 1 0.64548252603076572 3 14 3 14 1 0 101 70 2547 23664876 81600 859.35513305664062 5.8560999999999996 1032.8052 120960 55725 1 0 5898240 4423680 4423680 4426473 4492800 150 150 150 158 1939 0 0 0 0 70 0 0 0 0 1 +2425 1783753525551944700 DEPTH 21 1 0.6453681779348126 0 10 0 10 1 0 171 21 2605 23664871 81600 860.68836975097656 5.8508000000000004 1297.5449000000001 120960 61960 1 0 5898240 4423680 4423680 4426471 4492800 362 150 163 272 1658 1 0 0 0 20 0 0 0 0 2 +2426 1783753526613290600 DEPTH 35 1 0.64517403420065245 2 11 2 11 0 0 146 55 2544 23664911 81600 860.05802917480469 5.8315999999999999 1034.6488999999999 120960 57349 1 0 5898240 4423680 4423680 4426510 4492800 203 150 155 221 1815 0 0 0 0 55 0 0 0 0 0 +2427 1783753527674456000 DEPTH 27 1 0.64441993595473868 0 14 0 14 1 0 131 37 2560 23664801 81600 859.33526611328125 5.8464000000000009 1035.0445999999999 120960 57124 1 0 5898240 4423680 4423680 4426399 4492800 197 156 156 160 1891 0 0 0 0 37 0 0 0 0 1 +2428 1783753528727792200 DEPTH 24 1 0.64422488331274341 4 11 4 11 0 0 132 39 2523 23664829 81600 857.53060913085938 5.8338999999999999 1030.2752 120960 56460 1 0 5898240 4423680 4423680 4426426 4492800 165 154 162 158 1884 1 0 0 0 38 0 0 0 0 0 +2429 1783753528920992900 REFRESH 0 0 0.63100649648715079 1 12 1 12 0 0 89 7 426 3943901 55200 149.18963623046875 0.97209999999999996 177.81819999999999 20160 12042 0 0 983040 737280 737280 737501 748800 77 25 44 37 243 0 0 0 0 7 0 0 0 0 0 +2430 1783753529101634700 REFRESH 55 0 0.53737188446004047 1 14 1 14 1 0 128 9 425 3943906 55200 150.29554748535156 0.97260000000000002 179.44649999999999 20160 12167 0 0 983040 737280 737280 737506 748800 92 25 33 67 208 0 0 1 0 8 0 0 1 0 0 +2431 1783753529305262100 REFRESH 32 0 0.64294012744393703 2 14 2 14 0 0 116 9 430 3943906 55200 149.62380981445312 0.97799999999999998 178.42359999999999 20160 12081 0 0 983040 737280 737280 737506 748800 193 25 35 34 143 0 0 0 0 9 0 0 0 0 0 +2432 1783753529499567000 REFRESH 48 0 0.59546038589566519 2 11 2 11 0 0 76 7 431 3943900 55200 150.07948303222656 0.97409999999999997 178.75059999999999 20160 12390 0 0 983040 737280 737280 737500 748800 190 25 55 62 99 1 0 0 0 6 0 0 0 0 0 +2433 1783753529691762100 REFRESH 22 0 0.6300676484622626 3 11 3 11 0 0 116 8 423 3943929 55200 149.50399780273438 0.97519999999999996 179.1591 20160 12257 0 0 983040 737280 737280 737529 748800 137 25 31 29 201 0 0 0 0 8 0 0 0 0 0 +2434 1783753529872687500 REFRESH 39 0 0.70663380146771071 3 10 3 10 0 0 155 4 403 3943882 55200 150.52082824707031 0.97629999999999995 179.77379999999999 20160 12410 0 0 983040 737280 737280 737482 748800 69 28 28 33 245 0 0 0 0 4 0 0 0 0 0 +2435 1783753530075503700 REFRESH 26 0 0.63728870918007918 1 13 1 13 1 0 76 4 423 3943888 55200 149.61561584472656 0.97619999999999996 177.95750000000001 20160 12107 0 0 983040 737280 737280 737488 748800 34 25 33 46 285 0 1 0 0 3 0 0 0 0 1 +2436 1783753530336267500 REFRESH 31 0 0.68579541741213601 2 6 2 6 0 0 122 4 426 3943907 55200 150.80653381347656 0.97850000000000004 217.79859999999999 20160 13193 0 0 983040 737280 737280 737507 748800 226 25 30 71 74 0 0 0 0 4 0 0 0 0 0 +2437 1783753530522137100 REFRESH 30 0 0.66135781105941494 1 9 1 9 0 0 128 5 410 3943945 55200 150.02418518066406 0.97719999999999996 184.71629999999999 20160 13006 0 0 983040 737280 737280 737545 748800 94 26 57 35 198 0 0 0 0 5 0 0 0 0 0 +2438 1783753530707680400 REFRESH 16 0 0.57561596934429904 2 7 2 7 0 0 168 6 413 3943924 55200 151.56201171875 0.97170000000000001 184.3965 20160 13295 0 0 983040 737280 737280 737523 748800 32 26 26 242 87 0 0 0 0 6 0 0 0 0 0 +2439 1783753530906071200 REFRESH 34 0 0.64228889882641016 1 13 1 13 0 0 101 5 427 3943908 55200 149.60426330566406 0.97150000000000003 177.4742 20160 13075 0 0 983040 737280 737280 737508 748800 98 25 54 58 192 0 0 0 0 5 0 0 0 0 0 +2440 1783753531100759000 REFRESH 38 0 0.62851467251562654 4 14 4 14 0 0 82 10 422 3943902 55200 150.108154296875 0.9748 178.5642 20160 12448 0 0 983040 737280 737280 737502 748800 56 26 42 41 257 0 0 0 0 10 0 0 0 0 0 +2441 1783753531295724900 REFRESH 57 0 0.62445143107217183 2 12 2 12 0 0 121 9 415 3943924 55200 150.28530883789062 0.97870000000000001 178.9477 20160 12179 0 0 983040 737280 737280 737524 748800 111 26 91 85 102 0 0 0 0 9 0 0 0 0 0 +2442 1783753531519801900 REFRESH 44 0 0.5877739671486778 2 7 2 7 0 0 131 9 421 3943926 55200 151.18438720703125 0.97230000000000005 222.69149999999999 20160 13236 0 0 983040 737280 737280 737526 748800 97 26 70 31 197 0 0 0 0 9 0 0 0 0 0 +2443 1783753531744971800 REFRESH 17 0 0.80658250567166934 0 7 0 7 0 0 181 5 412 3943931 55200 150.37254333496094 0.97419999999999995 224.05289999999999 20160 13579 0 0 983040 737280 737280 737530 748800 119 26 37 110 120 0 0 0 0 5 0 0 0 0 0 +2444 1783753531924954700 REFRESH 15 0 0.63903947425129859 3 12 3 12 0 0 92 9 418 3943931 55200 149.81427001953125 0.97260000000000002 178.8655 20160 11829 0 0 983040 737280 737280 737531 748800 44 26 33 25 290 0 0 0 0 9 0 0 0 0 0 +2445 1783753532130665200 REFRESH 29 0 0.64109778587435184 2 12 2 12 0 0 114 13 416 3943933 55200 151.3009033203125 0.97330000000000005 180.81489999999999 20160 11989 0 0 983040 737280 737280 737533 748800 137 25 50 47 157 0 0 0 0 13 0 0 0 0 0 +2446 1783753532325630500 REFRESH 19 0 0.64417708084907621 2 11 2 11 0 0 119 13 425 3943894 55200 150.32319641113281 0.97570000000000001 179.489 20160 12098 0 0 983040 737280 737280 737494 748800 131 25 26 55 188 0 0 0 0 13 0 0 0 0 0 +2447 1783753532512665500 REFRESH 33 0 0.69067459096235384 1 7 1 7 0 0 179 5 417 3943883 55200 151.15673828125 0.9758 185.85990000000001 20160 13437 0 0 983040 737280 737280 737483 748800 105 26 42 33 211 0 0 0 0 5 0 0 0 0 0 +2448 1783753532694096900 REFRESH 12 0 0.64487430517647615 3 8 3 8 0 0 171 3 413 3943913 55200 150.466552734375 0.97409999999999997 180.31100000000001 20160 12319 0 0 983040 737280 737280 737513 748800 123 26 33 95 136 0 0 0 0 3 0 0 0 0 0 +2449 1783753532917273600 REFRESH 25 0 0.63809283862286303 3 11 3 11 0 0 112 10 423 3943924 55200 150.8802490234375 0.9758 180.41139999999999 20160 11825 0 0 983040 737280 737280 737524 748800 83 25 57 76 182 0 0 0 0 10 0 0 0 0 0 +2450 1783753533112409200 REFRESH 58 0 0.63605367531889534 2 12 2 12 0 0 117 10 422 3943894 55200 150.32421875 0.97409999999999997 179.2834 20160 12329 0 0 983040 737280 737280 737494 748800 99 26 62 59 176 0 0 0 0 10 0 0 0 0 0 +2451 1783753533306555500 REFRESH 10 0 0.63873330649503113 1 11 1 11 0 0 106 8 423 3943903 55200 149.18861389160156 0.97550000000000003 178.1806 20160 12826 0 0 983040 737280 737280 737503 748800 140 26 48 37 172 0 0 0 0 8 0 0 0 0 0 +2452 1783753533551505600 REFRESH 52 0 0.63984870637601587 1 8 1 8 0 0 106 2 431 3943912 55200 149.33197021484375 0.97889999999999999 220.0701 20160 12621 0 0 983040 737280 737280 737512 748800 135 25 34 157 80 0 0 0 0 2 0 0 0 0 0 +2453 1783753533749273100 REFRESH 50 0 0.64035712181888838 2 9 2 9 0 0 121 6 417 3943890 55200 148.72166442871094 0.9758 181.24799999999999 20160 12060 0 0 983040 737280 737280 737490 748800 171 25 37 57 127 1 0 0 0 5 0 0 0 0 0 +2454 1783753533945397700 REFRESH 43 0 0.64352194107041227 2 13 2 13 0 0 122 10 414 3943951 55200 151.06253051757812 0.97440000000000004 180.4606 20160 12133 0 0 983040 737280 737280 737551 748800 127 26 37 47 177 0 0 0 0 10 0 0 0 0 0 +2455 1783753534140853200 REFRESH 47 0 0.64076787762669807 2 11 2 11 0 0 111 8 419 3943916 55200 150.39590454101562 0.97389999999999999 178.96719999999999 20160 12368 0 0 983040 737280 737280 737515 748800 129 26 45 34 185 0 0 0 0 8 0 0 0 0 0 +2456 1783753534332449200 REFRESH 4 0 0.59573103759279644 1 13 1 13 0 0 48 2 418 3943881 55200 148.30079650878906 0.97240000000000004 175.50110000000001 20160 12139 0 0 983040 737280 737280 737481 748800 26 25 36 31 300 0 0 0 0 2 0 0 0 0 0 +2457 1783753534524657500 REFRESH 6 0 0.60571832952844462 3 11 3 11 0 0 115 6 414 3943889 55200 149.94227600097656 0.97609999999999997 177.48910000000001 20160 12327 0 0 983040 737280 737280 737489 748800 26 25 25 25 313 0 0 0 0 6 0 0 0 0 0 +2458 1783753534736658600 REFRESH 1 0 0.68629299592776627 1 7 1 7 0 0 122 7 423 3943915 55200 151.32467651367188 0.98570000000000002 210.90899999999999 20160 13345 0 0 983040 737280 737280 737514 748800 129 26 81 80 107 0 0 0 0 7 0 0 0 0 0 +2459 1783753534931041900 REFRESH 53 0 0.69207479376234349 0 8 0 8 0 0 140 6 415 3943904 55200 151.71072387695312 0.97999999999999998 193.19820000000001 20160 13479 0 0 983040 737280 737280 737504 748800 125 27 27 45 191 0 0 0 0 6 0 0 0 0 0 +2460 1783753535146944900 REFRESH 45 0 0.6419272267659043 2 7 2 7 0 0 125 8 420 3943912 55200 152.43904113769531 0.97389999999999999 190.21870000000001 20160 13138 0 0 983040 737280 737280 737511 748800 122 25 50 47 176 0 0 0 0 8 0 0 0 0 0 +2461 1783753535341560100 REFRESH 37 0 0.64295321803515781 1 12 1 12 0 0 131 12 411 3943883 55200 149.5941162109375 0.97509999999999997 178.25040000000001 20160 12489 0 0 983040 737280 737280 737483 748800 126 26 49 34 176 0 0 0 0 12 0 0 0 0 0 +2462 1783753535608355400 REFRESH 11 0 0.68829829262076048 0 8 0 8 0 0 97 6 419 3943899 55200 149.97605895996094 0.97770000000000001 224.70580000000001 20160 13489 0 0 983040 737280 737280 737498 748800 124 25 65 63 142 0 0 0 0 6 0 0 0 0 0 +2463 1783753535802870100 REFRESH 18 0 0.64330613071395581 4 15 4 15 0 0 102 11 428 3943908 55200 149.03500366210938 0.97260000000000002 177.94589999999999 20160 11935 0 0 983040 737280 737280 737507 748800 27 25 25 27 324 0 0 0 0 11 0 0 0 0 0 +2464 1783753535983564600 REFRESH 20 0 0.64322291589362701 3 12 3 12 0 0 106 9 430 3943898 55200 150.2423095703125 0.97609999999999997 179.54769999999999 20160 11907 0 0 983040 737280 737280 737497 748800 163 26 63 69 109 1 0 0 0 8 0 0 0 0 0 +2465 1783753536175075500 REFRESH 46 0 0.64297848444393679 2 15 2 15 1 0 104 14 414 3943901 55200 150.71641540527344 0.98040000000000005 180.7389 20160 11904 0 0 983040 737280 737280 737501 748800 78 26 47 31 232 0 0 0 0 14 0 0 0 0 1 +2466 1783753536370304400 REFRESH 7 0 0.64184353195858956 1 12 1 12 0 0 128 11 416 3943912 55200 149.56442260742188 0.97889999999999999 179.6652 20160 12294 0 0 983040 737280 737280 737512 748800 157 26 29 39 165 0 0 0 0 11 0 0 0 0 0 +2467 1783753536570471000 REFRESH 14 0 0.63773173105528791 0 12 0 12 0 0 109 5 420 3943913 55200 149.54905700683594 0.97550000000000003 183.4049 20160 12097 0 0 983040 737280 737280 737513 748800 105 26 30 50 209 0 0 0 0 5 0 0 0 0 0 +2468 1783753536772647700 REFRESH 3 0 0.66045271216287027 2 9 2 9 0 0 137 11 420 3943912 55200 149.39442443847656 0.97499999999999998 183.5471 20160 13078 0 0 983040 737280 737280 737512 748800 198 25 36 59 102 0 0 0 1 10 0 0 0 0 0 +2469 1783753536952297000 REFRESH 36 0 0.64231263692875595 3 10 3 10 0 0 108 4 428 3943920 55200 149.59922790527344 0.97919999999999996 178.4761 20160 12056 0 0 983040 737280 737280 737520 748800 206 25 35 47 115 0 0 0 0 4 0 0 0 0 0 +2470 1783753537156391100 REFRESH 21 0 0.644519788059982 0 10 0 10 0 0 171 4 413 3943882 55200 152.15718078613281 0.97330000000000005 202.95140000000001 20160 12845 0 0 983040 737280 737280 737482 748800 106 26 33 85 163 0 0 0 0 4 0 0 0 0 0 +2471 1783753537342866300 REFRESH 2 0 0.72223783807930353 2 8 2 8 0 0 132 8 411 3943923 55200 150.6007080078125 0.97750000000000004 185.38659999999999 20160 13014 0 0 983040 737280 737280 737523 748800 36 25 64 99 187 0 0 0 0 8 0 0 0 0 0 +2472 1783753537568465600 REFRESH 41 0 0.64122838674033 1 10 1 10 0 0 109 8 417 3943907 55200 149.1937255859375 0.97689999999999999 199.45480000000001 20160 12375 0 0 983040 737280 737280 737507 748800 127 26 45 41 178 0 0 0 1 7 0 0 0 0 0 +2473 1783753537774457700 REFRESH 49 0 0.6437052801367682 3 10 3 10 0 0 125 10 413 3943921 55200 148.96333312988281 0.97340000000000004 177.7894 20160 12394 0 0 983040 737280 737280 737521 748800 107 26 61 49 170 0 0 0 0 10 0 0 0 0 0 +2474 1783753537971888800 REFRESH 28 0 0.63787431889997415 1 12 1 12 1 0 143 12 408 3943908 55200 150.82086181640625 0.97589999999999999 181.02950000000001 20160 12107 0 0 983040 737280 737280 737508 748800 165 25 30 30 158 0 0 0 0 12 0 0 0 0 1 +2475 1783753538152814300 REFRESH 27 0 0.64207063941165998 0 14 0 14 1 0 131 16 412 3943904 55200 150.10406494140625 0.99890000000000001 179.7861 20160 11996 0 0 983040 737280 737280 737504 748800 68 26 32 32 254 0 0 0 0 16 0 0 0 0 1 +2476 1783753538337782100 REFRESH 8 0 0.81273322308911644 2 5 2 5 0 0 214 5 414 3943928 55200 152.0975341796875 0.97040000000000004 183.85929999999999 20160 13573 0 0 983040 737280 737280 737527 748800 157 26 28 79 124 0 0 0 0 5 0 0 0 0 0 +2477 1783753538518771600 REFRESH 24 0 0.64257996604147882 4 11 4 11 0 0 132 6 414 3943903 55200 150.53840637207031 0.97719999999999996 179.6617 20160 12036 0 0 983040 737280 737280 737503 748800 59 26 46 51 232 0 0 0 0 6 0 0 0 0 0 +2478 1783753538699367600 REFRESH 40 0 0.6483419229004026 1 12 1 12 0 0 115 8 420 3943896 55200 150.81161499023438 0.97160000000000002 179.40710000000001 20160 13244 0 0 983040 737280 737280 737496 748800 171 25 37 80 107 0 0 0 0 8 0 0 0 0 0 +2479 1783753538963457800 REFRESH 5 0 0.63834355431047762 2 11 2 11 1 0 91 4 412 3943918 55200 149.40559387207031 0.96950000000000003 176.96039999999999 20160 13520 0 0 983040 737280 737280 737517 748800 67 26 89 114 116 0 0 0 0 4 0 0 0 0 1 +2480 1783753539211167700 REFRESH 54 0 0.63948541784873991 1 8 1 8 0 0 111 1 425 3943905 55200 150.27711486816406 0.97919999999999996 220.04820000000001 20160 12693 0 0 983040 737280 737280 737505 748800 145 25 55 119 81 0 0 0 0 1 0 0 0 0 0 +2481 1783753539434035800 REFRESH 56 0 0.81316306782481718 2 5 2 5 0 0 195 7 415 3943920 55200 149.686279296875 0.97409999999999997 221.6602 20160 13486 0 0 983040 737280 737280 737520 748800 182 26 52 63 92 0 0 0 0 7 0 0 0 0 0 +2482 1783753539637959400 REFRESH 42 0 0.64405188165247906 4 12 4 12 0 0 121 11 417 3943928 55200 150.11430358886719 0.9768 178.61940000000001 20160 11919 0 0 983040 737280 737280 737528 748800 150 25 25 25 192 0 0 0 0 11 0 0 0 0 0 +2483 1783753539816952300 REFRESH 51 0 0.64461409756659516 3 12 3 12 1 0 91 6 420 3943915 55200 149.26950073242188 0.98170000000000002 177.767 20160 13417 0 0 983040 737280 737280 737515 748800 63 25 127 91 114 0 0 0 0 6 0 0 0 0 1 +2484 1783753540064526600 REFRESH 13 0 0.80523012126230675 1 6 1 6 0 0 175 5 415 3943921 55200 151.63075256347656 0.97360000000000002 198.7809 20160 13253 0 0 983040 737280 737280 737521 748800 152 26 56 80 101 0 0 0 0 5 0 0 0 0 0 +2485 1783753540244440600 REFRESH 23 0 0.64296645933497865 3 14 3 14 0 0 101 13 411 3943905 55200 149.78355407714844 0.97540000000000004 178.78309999999999 20160 11898 0 0 983040 737280 737280 737503 748800 46 25 49 42 249 0 0 0 0 13 0 0 0 0 0 +2486 1783753540426196000 REFRESH 35 0 0.64335061309638175 2 11 2 11 0 0 147 10 416 3943918 55200 150.31887817382812 0.97360000000000002 180.60429999999999 20160 12174 0 0 983040 737280 737280 737518 748800 128 25 30 94 139 1 0 0 0 9 0 0 0 0 0 +2487 1783753540648411300 REFRESH 9 0 0.68670773304725974 2 6 2 6 0 0 123 6 436 3943904 55200 151.0830078125 0.97270000000000001 221.0795 20160 13220 0 0 983040 737280 737280 737504 748800 131 25 77 74 129 0 0 0 0 6 0 0 0 0 0 +2488 1783753541953914100 DEPTH 17 1 0.80264328271217456 0 7 0 7 0 0 182 37 2527 23664781 81600 857.75547790527344 5.8333000000000004 1304.3278 120960 66007 1 0 5898240 4423680 4423680 4426381 4492800 204 156 156 236 1775 0 0 0 0 37 0 0 0 0 0 +2489 1783753542994045300 DEPTH 55 1 0.69759323424386599 1 14 1 14 1 0 128 28 2604 23664857 81600 863.16014099121094 5.8413000000000004 1038.8903 120960 57813 1 0 5898240 4423680 4423680 4426454 4492800 383 150 186 298 1587 7 0 0 0 21 2 0 0 0 1 +2490 1783753544049002200 DEPTH 39 1 0.6916693636727409 3 10 3 10 0 0 157 36 2535 23664944 81600 859.23707580566406 5.8563000000000001 1033.2942 120960 58695 1 0 5898240 4423680 4423680 4426543 4492800 205 150 151 156 1873 0 0 0 0 36 0 0 0 0 0 +2491 1783753545295621300 DEPTH 53 1 0.68818374297767049 0 8 0 8 0 0 140 47 2516 23664862 81600 862.62875366210938 5.8569999999999993 1245.4037000000001 120960 65270 1 0 5898240 4423680 4423680 4426460 4492800 186 192 150 160 1828 0 0 0 0 47 0 0 0 0 0 +2492 1783753546540843000 DEPTH 33 1 0.68561994824204464 1 7 1 7 1 0 179 36 2540 23664849 81600 868.49678039550781 5.8723999999999998 1220.2012999999999 120960 65876 1 0 5898240 4423680 4423680 4426449 4492800 192 154 156 150 1888 0 0 0 0 36 0 0 0 0 1 +2493 1783753547903455200 DEPTH 11 1 0.68515659048564104 0 8 0 8 0 0 97 13 2553 23664943 81600 854.61189270019531 5.8277999999999999 1301.1741 120960 65130 1 0 5898240 4423680 4423680 4426540 4492800 281 150 212 245 1665 0 0 0 0 13 0 0 0 0 0 +2494 1783753549229210700 DEPTH 1 1 0.68412006183892615 1 7 1 7 0 0 122 21 2618 23664772 81600 862.05819702148438 5.8622999999999994 1310.1821 120960 64985 1 0 5898240 4423680 4423680 4426371 4492800 409 156 300 323 1430 0 0 0 0 21 0 0 0 0 0 +2495 1783753550512557300 DEPTH 31 1 0.68076583177287764 2 6 2 6 0 0 122 10 2627 23664902 81600 861.40937805175781 5.8614999999999995 1282.2094 120960 64289 1 0 5898240 4423680 4423680 4426501 4492800 968 150 180 359 970 0 0 0 0 10 0 0 0 0 0 +2496 1783753551645216000 DEPTH 8 1 0.75809687982804053 2 5 2 5 0 0 214 31 2563 23664718 81600 868.78166198730469 5.8341000000000003 1089.1732999999999 120960 66165 1 0 5898240 4423680 4423680 4426316 4492800 287 151 158 178 1789 0 0 0 0 31 0 0 0 0 0 +2497 1783753552879513000 DEPTH 2 1 0.71129456009499137 2 8 2 8 0 0 132 48 2564 23664877 81600 860.30125427246094 5.8270999999999997 1233.1998000000001 120960 63096 1 0 5898240 4423680 4423680 4426475 4492800 156 150 150 150 1958 0 0 0 0 48 0 0 0 0 0 +2498 1783753554201034300 DEPTH 56 1 0.73047432207660068 2 5 2 5 0 0 195 30 2559 23664748 81600 857.9825439453125 5.8340999999999994 1290.9287999999999 120960 65849 1 0 5898240 4423680 4423680 4426347 4492800 482 156 174 309 1438 0 0 0 0 30 0 0 0 0 0 +2499 1783753555500313500 DEPTH 13 1 0.7014878657482192 1 6 1 6 0 0 176 29 2510 23664847 81600 858.16085815429688 5.8578000000000001 1273.9188999999999 120960 65135 1 0 5898240 4423680 4423680 4426446 4492800 235 155 193 206 1721 0 0 0 0 29 0 0 0 0 0 +2500 1783753556723633800 DEPTH 3 1 0.65668153417010577 2 9 2 9 0 0 140 67 2560 23664840 81600 857.69242858886719 5.8478999999999992 1201.7373 120960 62417 1 0 5898240 4423680 4423680 4426439 4492800 318 150 156 199 1737 3 0 0 2 62 0 0 0 0 0 +2501 1783753557996250200 DEPTH 30 1 0.65352053619951311 1 9 1 9 0 0 129 24 2538 23664807 81600 858.76210021972656 5.8362999999999996 1243.5813000000001 120960 63289 1 0 5898240 4423680 4423680 4426406 4492800 156 150 174 150 1908 0 0 2 0 22 0 0 0 0 0 +2502 1783753559324595800 DEPTH 44 1 0.64734535177264929 2 7 2 7 0 0 132 16 2579 23664845 81600 859.99923706054688 5.8281999999999998 1303.2103999999999 120960 64193 1 0 5898240 4423680 4423680 4426445 4492800 209 150 241 173 1806 0 0 0 0 16 0 0 0 0 0 +2503 1783753560413901700 DEPTH 19 1 0.64204024617093236 2 11 2 11 1 0 119 79 2596 23664774 81600 859.08988952636719 5.8627000000000002 1035.3951 120960 57326 1 0 5898240 4423680 4423680 4426372 4492800 228 150 150 159 1909 0 0 0 0 79 0 0 0 0 2 +2504 1783753561707524300 DEPTH 17 1 0.71392700284626553 0 7 0 7 0 0 182 32 2524 23664822 81600 849.91842651367188 5.8353000000000002 1292.4918 120960 54287 1 0 5898240 4423680 4423680 4426420 4492800 211 156 156 248 1753 0 0 0 0 32 0 0 0 0 0 +2505 1783753562762021600 DEPTH 40 1 0.64220902901615617 1 12 1 12 1 0 116 32 2553 23664874 81600 861.52700805664062 5.8402999999999992 1030.5075999999999 120960 63717 1 0 5898240 4423680 4423680 4426471 4492800 233 150 172 329 1669 0 0 0 1 31 0 0 0 1 0 +2506 1783753563839215500 DEPTH 49 1 0.64210768600441837 3 10 3 10 0 0 126 50 2573 23664878 81600 857.87692260742188 5.8536000000000001 1030.0209 120960 59232 1 0 5898240 4423680 4423680 4426476 4492800 194 150 180 177 1872 0 0 2 0 48 0 0 0 0 0 +2507 1783753564924684700 DEPTH 16 1 0.64203456833897798 2 7 2 7 0 0 171 34 2529 23664887 81600 865.55987548828125 5.8452000000000011 1084.2978000000001 120960 65253 1 0 5898240 4423680 4423680 4426487 4492800 162 156 156 643 1412 0 0 0 0 34 0 0 0 0 0 +2508 1783753566007408200 DEPTH 37 1 0.6415031606941648 1 12 1 12 1 0 133 19 2604 23664841 81600 856.8287353515625 5.8474000000000004 1030.4970000000001 120960 58969 1 0 5898240 4423680 4423680 4426440 4492800 393 156 167 174 1714 1 0 0 0 18 0 0 0 0 2 +2509 1783753567079765900 DEPTH 43 1 0.64110402323610716 2 13 2 13 1 0 122 33 2546 23664792 81600 858.4825439453125 5.8646999999999991 1029.7927999999999 120960 57277 1 0 5898240 4423680 4423680 4426391 4492800 310 155 180 187 1714 2 0 0 0 31 2 0 0 0 1 +2510 1783753568363926400 DEPTH 45 1 0.6410435505186638 2 7 2 7 0 0 127 13 2626 23664781 81600 867.64854431152344 5.8435000000000006 1242.3657000000001 120960 64609 1 0 5898240 4423680 4423680 4426380 4492800 212 150 199 207 1858 0 0 0 0 13 0 0 0 0 0 +2511 1783753569473123200 DEPTH 18 1 0.64050644754609309 4 15 4 15 1 0 102 42 2611 23664868 81600 857.22158813476562 5.8464999999999998 1029.6164000000001 120960 56890 1 0 5898240 4423680 4423680 4426467 4492800 150 150 150 160 2001 0 0 0 4 38 0 0 0 0 2 +2512 1783753570588577500 DEPTH 8 1 0.71883787249236708 2 5 2 5 0 0 214 15 2567 23664824 81600 859.41766357421875 5.8312999999999997 1073.0972999999999 120960 55244 1 0 5898240 4423680 4423680 4426422 4492800 244 151 158 183 1831 0 0 0 0 15 0 0 0 0 0 +2513 1783753571873499100 DEPTH 56 1 0.71097458108403655 2 5 2 5 0 0 196 24 2571 23664904 81600 846.08700561523438 5.8407 1283.7018 120960 54278 1 0 5898240 4423680 4423680 4426503 4492800 488 156 174 378 1375 0 0 0 0 24 0 0 0 0 0 +2514 1783753573167643900 DEPTH 9 1 0.68334182155434564 2 6 2 6 0 0 123 4 2623 23664863 81600 863.27182006835938 5.8700000000000001 1293.0174 120960 65811 1 0 5898240 4423680 4423680 4426463 4492800 694 150 395 500 884 0 0 0 0 4 0 0 0 0 0 +2515 1783753574456838900 DEPTH 13 1 0.71304817296431044 1 6 1 6 0 0 176 24 2506 23664924 81600 853.95967102050781 5.8367000000000004 1263.2431999999999 120960 53818 1 0 5898240 4423680 4423680 4426524 4492800 241 156 188 254 1667 0 0 0 0 24 0 0 0 0 0 +2516 1783753575490390100 DEPTH 55 1 0.69015597343068602 1 14 1 14 1 0 129 22 2607 23664681 81600 856.14572143554688 5.8672999999999993 1032.2845 120960 46877 1 0 5898240 4423680 4423680 4426281 4492800 401 150 194 368 1494 1 0 0 0 21 0 0 0 0 1 +2517 1783753576513211900 DEPTH 39 1 0.6838927625821456 3 10 3 10 0 0 160 40 2537 23664920 81600 848.47698974609375 5.8449 1021.6324 120960 47375 1 0 5898240 4423680 4423680 4426520 4492800 214 150 150 156 1867 0 0 0 0 40 0 0 0 0 0 +2518 1783753577795136500 DEPTH 53 1 0.6885512984739659 0 8 0 8 0 0 142 38 2514 23664865 81600 853.77987670898438 5.8567999999999998 1256.6454000000001 120960 53875 1 0 5898240 4423680 4423680 4426465 4492800 189 181 150 162 1832 0 0 0 0 38 0 0 0 0 0 +2519 1783753578834031900 DEPTH 35 1 0.64138292571461686 2 11 2 11 0 0 148 63 2550 23664848 81600 859.26882934570312 5.8801999999999994 1037.7076999999999 120960 57495 1 0 5898240 4423680 4423680 4426448 4492800 228 150 156 243 1773 0 0 0 0 63 0 0 0 0 0 +2520 1783753579054825500 REFRESH 31 0 0.68198839188868743 2 6 2 6 0 0 122 8 431 3943899 55200 150.94271850585938 0.98370000000000002 219.66820000000001 20160 13538 0 0 983040 737280 737280 737499 748800 214 25 30 69 93 0 0 0 0 8 0 0 0 0 0 +2521 1783753579251437700 REFRESH 10 0 0.63720425594562058 1 11 1 11 0 0 106 9 426 3943911 55200 149.8101806640625 1.018 180.43870000000001 20160 12732 0 0 983040 737280 737280 737511 748800 153 26 49 38 160 1 0 0 0 8 0 0 0 0 0 +2522 1783753579443741500 REFRESH 20 0 0.64006988203540205 3 12 3 12 0 0 106 8 426 3943910 55200 149.78469848632812 0.98699999999999999 180.55699999999999 20160 11897 0 0 983040 737280 737280 737510 748800 152 26 60 70 118 0 0 0 1 7 0 0 0 0 0 +2523 1783753579643943800 REFRESH 28 0 0.63641560001797437 1 12 1 12 0 0 144 8 408 3943924 55200 150.68876647949219 0.98470000000000002 183.54050000000001 20160 12284 0 0 983040 737280 737280 737523 748800 130 25 30 28 195 1 0 0 0 7 0 0 0 0 0 +2524 1783753579832572900 REFRESH 30 0 0.63115215912215661 1 9 1 9 0 0 129 7 413 3943920 55200 150.43276977539062 0.97199999999999998 187.46109999999999 20160 13091 0 0 983040 737280 737280 737519 748800 76 25 42 32 238 0 0 0 0 7 0 0 0 0 0 +2525 1783753580078376600 REFRESH 54 0 0.63241079809862777 1 8 1 8 0 0 111 6 427 3943894 55200 149.855224609375 0.98040000000000005 220.36850000000001 20160 12713 0 0 983040 737280 737280 737494 748800 152 25 57 119 74 0 0 0 0 6 0 0 0 0 0 +2526 1783753580304290700 REFRESH 44 0 0.63767919336696011 2 7 2 7 0 0 133 5 419 3943892 55200 150.22079467773438 0.97909999999999997 224.667 20160 13146 0 0 983040 737280 737280 737492 748800 90 26 66 30 207 0 0 0 0 5 0 0 0 0 0 +2527 1783753580489908300 REFRESH 16 0 0.59248732870370135 2 7 2 7 0 0 171 7 416 3943893 55200 151.552001953125 0.96999999999999997 184.47110000000001 20160 13349 0 0 983040 737280 737280 737493 748800 32 26 26 234 98 0 0 0 0 7 0 0 0 0 0 +2528 1783753580693799100 REFRESH 57 0 0.62290935921053536 2 12 2 12 0 0 121 7 416 3943919 55200 149.76614379882812 0.97499999999999998 178.70490000000001 20160 12169 0 0 983040 737280 737280 737519 748800 106 26 88 83 113 0 0 0 0 7 0 0 0 0 0 +2529 1783753580886871200 REFRESH 51 0 0.63918402888154058 3 12 3 12 0 0 91 11 417 3943924 55200 148.66227722167969 0.97199999999999998 177.70089999999999 20160 13164 0 0 983040 737280 737280 737524 748800 66 25 126 88 112 0 0 0 0 11 0 0 0 0 0 +2530 1783753581112354200 REFRESH 17 0 0.80504664191786435 0 7 0 7 0 0 182 3 412 3943916 55200 150.74508666992188 0.97240000000000004 224.38 20160 13444 0 0 983040 737280 737280 737516 748800 102 26 35 108 141 0 0 0 0 3 0 0 0 0 0 +2531 1783753581325489100 REFRESH 1 0 0.68505860838247579 1 7 1 7 0 0 122 7 424 3943918 55200 151.76495361328125 0.97850000000000004 212.03739999999999 20160 13430 0 0 983040 737280 737280 737518 748800 130 26 83 79 106 0 0 0 0 7 0 0 0 0 0 +2532 1783753581525722500 REFRESH 4 0 0.59200089829986413 1 13 1 13 0 0 48 4 420 3943912 55200 148.32435607910156 0.97089999999999999 175.72749999999999 20160 12026 0 0 983040 737280 737280 737512 748800 27 25 38 36 294 0 0 0 0 4 0 0 0 0 0 +2533 1783753581733153500 REFRESH 48 0 0.59626364956924283 2 11 2 11 0 0 77 5 432 3943914 55200 149.24287414550781 0.97409999999999997 178.14189999999999 20160 13841 0 0 983040 737280 737280 737514 748800 192 25 52 61 102 0 0 0 0 5 0 0 0 0 0 +2534 1783753581934264700 REFRESH 13 0 0.74438936915030274 1 6 1 6 0 0 176 2 416 3943903 55200 151.13932800292969 0.97709999999999997 199.36340000000001 20160 13700 0 0 983040 737280 737280 737503 748800 150 26 53 85 102 0 0 0 0 2 0 0 0 0 0 +2535 1783753582138770700 REFRESH 34 0 0.63653145352124763 1 13 1 13 0 0 101 9 429 3943908 55200 150.26176452636719 0.97509999999999997 178.61060000000001 20160 12923 0 0 983040 737280 737280 737508 748800 101 25 53 59 191 0 0 0 0 9 0 0 0 0 0 +2536 1783753582330970100 REFRESH 26 0 0.63154903848817112 1 13 1 13 0 0 76 10 425 3943916 55200 149.4886474609375 0.97799999999999998 178.0959 20160 12034 0 0 983040 737280 737280 737516 748800 34 25 33 48 285 0 0 0 0 10 0 0 0 0 0 +2537 1783753582530170900 REFRESH 50 0 0.63626574102782807 2 9 2 9 0 0 122 11 422 3943888 55200 150.15525817871094 0.97099999999999997 182.35050000000001 20160 12165 0 0 983040 737280 737280 737488 748800 175 25 38 61 123 0 0 0 0 11 0 0 0 0 0 +2538 1783753582725344300 REFRESH 25 0 0.63725793949609277 3 11 3 11 0 0 112 11 419 3943937 55200 150.62220764160156 0.97260000000000002 179.79910000000001 20160 11874 0 0 983040 737280 737280 737537 748800 94 25 61 83 156 0 0 0 0 11 0 0 0 0 0 +2539 1783753582909991800 REFRESH 3 0 0.65317475567966365 2 9 2 9 0 0 140 10 421 3943917 55200 149.91871643066406 0.97440000000000004 183.56450000000001 20160 12929 0 0 983040 737280 737280 737517 748800 200 25 36 62 98 1 0 0 0 9 0 0 0 0 0 +2540 1783753583122850400 REFRESH 14 0 0.63266318641719854 0 12 0 12 0 0 109 6 419 3943903 55200 150.68553161621094 0.97289999999999999 186.96530000000001 20160 12228 0 0 983040 737280 737280 737503 748800 95 26 29 41 228 0 0 0 0 6 0 0 0 0 0 +2541 1783753583318029400 REFRESH 29 0 0.63956089256232607 2 12 2 12 0 0 114 9 418 3943914 55200 149.52447509765625 0.97689999999999999 179.3535 20160 12023 0 0 983040 737280 737280 737514 748800 141 25 52 47 153 0 0 0 0 9 0 0 0 0 0 +2542 1783753583498884700 REFRESH 24 0 0.63698088904557704 4 11 4 11 0 0 132 9 411 3943913 55200 149.69036865234375 0.97789999999999999 179.62629999999999 20160 11855 0 0 983040 737280 737280 737513 748800 67 26 52 62 204 0 0 0 0 9 0 0 0 0 0 +2543 1783753583722759600 REFRESH 56 0 0.8114066467249601 2 5 2 5 0 0 196 5 419 3943874 55200 150.11708068847656 0.97940000000000005 222.65790000000001 20160 13585 0 0 983040 737280 737280 737474 748800 184 26 52 65 92 0 0 0 0 5 0 0 0 0 0 +2544 1783753583928499300 REFRESH 12 0 0.63701081739167431 3 8 3 8 0 0 171 1 413 3943924 55200 150.29551696777344 0.98240000000000005 180.51140000000001 20160 12464 0 0 983040 737280 737280 737524 748800 134 26 34 97 122 0 0 0 0 1 0 0 0 0 0 +2545 1783753584109862200 REFRESH 27 0 0.63989672570529355 0 14 0 14 0 0 131 12 412 3943904 55200 150.97651672363281 0.9879 179.9161 20160 11944 0 0 983040 737280 737280 737504 748800 64 26 31 32 259 0 0 0 0 12 0 0 0 0 0 +2546 1783753584337673800 REFRESH 53 0 0.68877778912455423 0 8 0 8 0 0 142 9 418 3943900 55200 151.30316162109375 0.97689999999999999 190.68819999999999 20160 13562 0 0 983040 737280 737280 737499 748800 128 26 27 49 188 0 0 0 0 9 0 0 0 0 0 +2547 1783753584523614100 REFRESH 8 0 0.80950124028159243 2 5 2 5 0 0 214 4 413 3943896 55200 151.8919677734375 0.97399999999999998 184.8058 20160 13352 0 0 983040 737280 737280 737496 748800 161 26 28 78 120 0 0 0 0 4 0 0 0 0 0 +2548 1783753584726963400 REFRESH 6 0 0.60195779308431474 3 11 3 11 0 0 115 6 414 3943916 55200 149.79685974121094 0.97360000000000002 178.1396 20160 12372 0 0 983040 737280 737280 737516 748800 26 25 25 25 313 0 0 0 0 6 0 0 0 0 0 +2549 1783753584922396000 REFRESH 47 0 0.63758009831614748 2 11 2 11 0 0 111 4 420 3943936 55200 150.26687622070312 0.97989999999999999 179.11510000000001 20160 12171 0 0 983040 737280 737280 737536 748800 138 26 47 33 176 0 0 0 0 4 0 0 0 0 0 +2550 1783753585102785200 REFRESH 18 0 0.63785572648070976 4 15 4 15 0 0 102 6 424 3943892 55200 150.26383972167969 0.97770000000000001 179.2491 20160 11896 0 0 983040 737280 737280 737492 748800 29 25 25 27 318 0 0 0 0 6 0 0 0 0 0 +2551 1783753585283008400 REFRESH 40 0 0.63881765429973103 1 12 1 12 0 0 116 7 422 3943911 55200 150.793212890625 0.99980000000000002 179.03219999999999 20160 12978 0 0 983040 737280 737280 737510 748800 160 25 37 78 122 0 0 0 0 7 0 0 0 0 0 +2552 1783753585489209900 REFRESH 22 0 0.62693170859518799 3 11 3 11 0 0 116 8 423 3943902 55200 151.20384216308594 0.98050000000000004 181.02109999999999 20160 12119 0 0 983040 737280 737280 737502 748800 134 25 31 29 204 0 0 0 0 8 0 0 0 0 0 +2553 1783753585678370700 REFRESH 5 0 0.63218438048509773 2 11 2 11 0 0 91 7 414 3943916 55200 148.357177734375 0.97740000000000005 176.18510000000001 20160 13319 0 0 983040 737280 737280 737515 748800 68 26 90 117 113 0 0 0 1 6 0 0 0 0 0 +2554 1783753585858444900 REFRESH 19 0 0.64007772197854251 2 11 2 11 0 0 121 17 424 3943907 55200 150.12351989746094 0.97299999999999998 178.92429999999999 20160 12164 0 0 983040 737280 737280 737507 748800 114 25 26 41 218 0 0 0 0 17 0 0 0 0 0 +2555 1783753586062149200 REFRESH 32 0 0.64006059132010795 2 14 2 14 0 0 116 12 424 3943899 55200 150.21466064453125 0.97140000000000004 178.4905 20160 12048 0 0 983040 737280 737280 737499 748800 201 25 35 34 129 0 0 0 0 12 0 0 0 0 0 +2556 1783753586255869400 REFRESH 36 0 0.63473078407117145 3 10 3 10 0 0 108 4 431 3943907 55200 150.01295471191406 0.98050000000000004 178.95089999999999 20160 12117 0 0 983040 737280 737280 737507 748800 207 25 35 47 117 0 0 0 0 4 0 0 0 0 0 +2557 1783753586436223800 REFRESH 37 0 0.64001902251797849 1 12 1 12 0 0 134 8 422 3943905 55200 149.78253173828125 0.97709999999999997 179.1961 20160 12425 0 0 983040 737280 737280 737505 748800 144 26 50 32 170 0 0 0 0 8 0 0 0 0 0 +2558 1783753586646796300 REFRESH 33 0 0.68998928292321327 1 7 1 7 0 0 180 5 419 3943952 55200 153.16377258300781 0.97130000000000005 187.57220000000001 20160 13510 0 0 983040 737280 737280 737552 748800 102 26 39 40 212 0 0 0 0 5 0 0 0 0 0 +2559 1783753586879604900 REFRESH 41 0 0.63907159027414839 1 10 1 10 0 0 109 9 415 3943900 55200 149.25311279296875 0.97629999999999995 202.68039999999999 20160 12033 0 0 983040 737280 737280 737499 748800 125 26 43 38 183 0 0 0 0 9 0 0 0 0 0 +2560 1783753587074224500 REFRESH 46 0 0.64067730829671343 2 15 2 15 0 0 105 13 417 3943927 55200 151.1014404296875 0.97419999999999995 179.99359999999999 20160 11972 0 0 983040 737280 737280 737526 748800 76 26 46 30 239 0 0 0 0 13 0 0 0 0 0 +2561 1783753587269777800 REFRESH 15 0 0.63684789452500146 3 12 3 12 0 0 93 11 420 3943887 55200 150.508544921875 0.98070000000000002 179.745 20160 12000 0 0 983040 737280 737280 737487 748800 44 26 31 25 294 0 0 1 0 10 0 0 0 0 0 +2562 1783753587491162100 REFRESH 9 0 0.67829100188524794 2 6 2 6 1 0 123 8 432 3943937 55200 151.0963134765625 0.97889999999999999 220.27969999999999 20160 13590 0 0 983040 737280 737280 737537 748800 135 25 84 76 112 0 0 0 0 8 0 0 0 0 1 +2563 1783753587672701600 REFRESH 35 0 0.63948500400164954 2 11 2 11 0 0 148 12 416 3943890 55200 150.26873779296875 0.98029999999999995 180.3794 20160 12128 0 0 983040 737280 737280 737490 748800 143 25 30 90 128 0 0 0 0 12 0 0 0 0 0 +2564 1783753587897819500 REFRESH 11 0 0.68638706580418596 0 8 0 8 0 0 97 9 417 3943881 55200 150.62527465820312 0.97340000000000004 223.99520000000001 20160 13272 0 0 983040 737280 737280 737481 748800 117 25 64 63 148 0 0 0 0 9 0 0 0 0 0 +2565 1783753588112796100 REFRESH 45 0 0.6421495033232002 2 7 2 7 0 0 127 5 420 3943932 55200 151.82745361328125 0.97340000000000004 189.19139999999999 20160 13194 0 0 983040 737280 737280 737532 748800 116 25 48 43 188 0 0 0 0 5 0 0 0 0 0 +2566 1783753588332107000 REFRESH 21 0 0.63783196605460035 0 10 0 10 0 0 172 13 417 3943913 55200 150.57203674316406 0.97419999999999995 202.10939999999999 20160 12892 0 0 983040 737280 737280 737513 748800 104 26 33 83 171 0 0 0 0 13 0 0 0 0 0 +2567 1783753588526989600 REFRESH 58 0 0.63471525170626375 2 12 2 12 0 0 117 12 423 3943918 55200 150.26380920410156 0.97840000000000005 178.96250000000001 20160 12285 0 0 983040 737280 737280 737518 748800 86 26 49 51 211 0 0 0 0 12 0 0 0 0 0 +2568 1783753588721885600 REFRESH 7 0 0.63979345659941278 1 12 1 12 0 0 128 5 418 3943932 55200 150.22079467773438 0.97689999999999999 179.63130000000001 20160 12091 0 0 983040 737280 737280 737532 748800 140 26 29 29 194 0 0 0 0 5 0 0 0 0 0 +2569 1783753588902756400 REFRESH 43 0 0.63885574021841274 2 13 2 13 0 0 122 14 414 3943914 55200 149.95455932617188 0.97040000000000004 179.7071 20160 12033 0 0 983040 737280 737280 737514 748800 138 26 37 51 162 0 0 0 0 14 0 0 0 0 0 +2570 1783753589092257100 REFRESH 2 0 0.70352492095600372 2 8 2 8 0 0 132 11 421 3943902 55200 152.51046752929688 0.97419999999999995 188.3844 20160 13213 0 0 983040 737280 737280 737499 748800 27 25 57 88 224 0 0 0 0 11 0 0 0 0 0 +2571 1783753589272722200 REFRESH 49 0 0.64064775957947928 3 10 3 10 1 0 126 10 417 3943906 55200 150.16038513183594 0.9798 179.2165 20160 12475 0 0 983040 737280 737280 737506 748800 114 26 62 50 165 0 0 0 0 10 0 0 0 0 1 +2572 1783753589490315400 REFRESH 38 0 0.62858016359722579 4 14 4 14 0 0 82 12 422 3943895 55200 149.05343627929688 0.97899999999999998 177.93989999999999 20160 12404 0 0 983040 737280 737280 737495 748800 57 26 42 44 253 0 0 0 0 12 0 0 0 0 0 +2573 1783753589683418000 REFRESH 0 0 0.62849094497760571 1 12 1 12 0 0 89 7 428 3943939 55200 148.96028137207031 0.97209999999999996 177.64599999999999 20160 12000 0 0 983040 737280 737280 737539 748800 111 25 47 42 203 0 0 0 0 7 0 0 0 0 0 +2574 1783753589878074900 REFRESH 23 0 0.64063329319140583 3 14 3 14 0 0 101 9 411 3943933 55200 149.58489990234375 0.97709999999999997 178.9068 20160 11833 0 0 983040 737280 737280 737533 748800 53 25 63 47 223 0 0 0 0 9 0 0 0 0 0 +2575 1783753590057977700 REFRESH 39 0 0.67688229668153688 3 10 3 10 0 0 160 4 402 3943930 55200 150.28839111328125 0.97860000000000003 178.72149999999999 20160 12497 0 0 983040 737280 737280 737530 748800 72 28 29 33 240 0 0 0 0 4 0 0 0 0 0 +2576 1783753590261923600 REFRESH 42 0 0.64168728795622598 4 12 4 12 0 0 121 12 418 3943925 55200 150.58940124511719 0.99880000000000002 179.55189999999999 20160 12003 0 0 983040 737280 737280 737525 748800 149 25 25 26 193 0 0 0 0 12 0 0 0 0 0 +2577 1783753590486686500 REFRESH 55 0 0.68271979131579208 1 14 1 14 0 0 129 10 426 3943902 55200 150.01907348632812 0.98119999999999996 179.14420000000001 20160 12143 0 0 983040 737280 737280 737502 748800 110 25 38 78 175 0 0 0 0 10 0 0 0 0 0 +2578 1783753590732283400 REFRESH 52 0 0.63492208539646744 1 8 1 8 0 0 106 4 432 3943915 55200 148.65306091308594 0.9708 220.67150000000001 20160 12414 0 0 983040 737280 737280 737515 748800 136 25 34 156 81 0 0 0 0 4 0 0 0 0 0 +2579 1783753592030796900 DEPTH 56 1 0.80674950879246077 2 5 2 5 0 0 196 24 2574 23664805 81600 856.80363464355469 5.8542000000000005 1297.3015 120960 65803 1 0 5898240 4423680 4423680 4426405 4492800 496 156 174 303 1445 0 0 0 0 24 0 0 0 0 0 +2580 1783753593134467500 DEPTH 8 1 0.80402525512575362 2 5 2 5 0 0 214 23 2570 23664851 81600 869.42181396484375 5.8628 1084.0318 120960 65925 1 0 5898240 4423680 4423680 4426451 4492800 305 150 158 180 1777 0 0 0 0 23 0 0 0 0 0 +2581 1783753594467832800 DEPTH 17 1 0.79907465029193037 0 7 0 7 0 0 182 21 2525 23664927 81600 860.62255859375 5.8445 1303.8632 120960 64911 1 0 5898240 4423680 4423680 4426525 4492800 216 156 156 249 1748 0 0 0 0 21 0 0 0 0 0 +2582 1783753595737586800 DEPTH 13 1 0.79762805229731037 1 6 1 6 0 0 176 23 2509 23664834 81600 858.48779296875 5.8593000000000002 1268.4876999999999 120960 66325 1 0 5898240 4423680 4423680 4426432 4492800 262 156 199 220 1672 0 0 0 0 23 0 0 0 0 0 +2583 1783753597034431600 DEPTH 53 1 0.68791257256332716 0 8 0 8 0 0 142 39 2511 23664827 81600 861.57618713378906 5.8449 1249.4541999999999 120960 65081 1 0 5898240 4423680 4423680 4426426 4492800 194 156 150 164 1847 0 0 0 0 39 0 0 0 0 0 +2584 1783753598413440200 DEPTH 1 1 0.68286268433432917 1 7 1 7 0 0 122 20 2619 23664851 81600 863.13395690917969 5.8529999999999998 1309.6829 120960 65636 1 0 5898240 4423680 4423680 4426451 4492800 408 156 301 308 1446 0 0 0 0 20 0 0 0 0 0 +2585 1783753599750147800 DEPTH 31 1 0.68114639273840827 2 6 2 6 0 0 122 6 2630 23664880 81600 859.01927185058594 5.8479999999999999 1269.3938000000001 120960 65288 1 0 5898240 4423680 4423680 4426480 4492800 971 150 180 356 973 0 0 0 0 6 0 0 0 0 0 +2586 1783753600984171600 DEPTH 3 1 0.64991468780164285 2 9 2 9 1 0 141 63 2551 23664941 81600 857.79925537109375 5.8342000000000001 1192.7048 120960 62230 1 0 5898240 4423680 4423680 4426539 4492800 357 150 156 227 1661 4 0 0 1 58 0 0 0 0 1 +2587 1783753602190046700 DEPTH 33 1 0.68474735283545562 1 7 1 7 0 0 180 34 2541 23664895 81600 869.16261291503906 5.8537999999999997 1204.6709000000001 120960 65930 1 0 5898240 4423680 4423680 4426493 4492800 198 154 156 151 1882 2 0 0 0 32 0 0 0 0 0 +2588 1783753603485478400 DEPTH 9 1 0.67765992369320227 2 6 2 6 0 0 123 10 2619 23664807 81600 862.56639099121094 5.8448000000000002 1294.3208999999999 120960 65737 1 0 5898240 4423680 4423680 4426407 4492800 709 150 407 499 854 0 0 0 0 10 0 0 0 0 0 +2589 1783753604798823200 DEPTH 11 1 0.68619533503385199 0 8 0 8 0 0 97 10 2542 23664912 81600 853.18547058105469 5.8264999999999993 1296.8602000000001 120960 64782 1 0 5898240 4423680 4423680 4426512 4492800 272 150 215 216 1689 0 0 0 0 10 0 0 0 0 0 +2590 1783753606055939600 DEPTH 30 1 0.64608120262816682 1 9 1 9 0 0 129 25 2545 23664767 81600 859.79574584960938 5.8540999999999999 1246.9558 120960 63353 1 0 5898240 4423680 4423680 4426363 4492800 156 150 174 150 1915 0 2 1 0 22 0 0 0 0 0 +2591 1783753607362359100 DEPTH 44 1 0.64303492594420908 2 7 2 7 0 0 133 23 2588 23664835 81600 859.5606689453125 5.8280000000000003 1305.173 120960 63691 1 0 5898240 4423680 4423680 4426434 4492800 210 150 242 167 1819 0 0 0 0 23 0 0 0 0 0 +2592 1783753608471252100 DEPTH 16 1 0.63996931490267328 2 7 2 7 0 0 173 43 2532 23664695 81600 865.96455383300781 5.8621999999999996 1091.7520999999999 120960 64906 1 0 5898240 4423680 4423680 4426293 4492800 163 156 156 641 1416 0 0 0 0 43 0 0 0 0 0 +2593 1783753609504441300 DEPTH 51 1 0.63816972805338379 3 12 3 12 1 0 91 24 2580 23664761 81600 854.00962829589844 5.9074999999999998 1031.6216999999999 120960 62622 1 0 5898240 4423680 4423680 4426357 4492800 212 150 338 289 1591 0 0 0 0 24 0 0 0 0 1 +2594 1783753610541580500 DEPTH 46 1 0.63807985185247351 2 15 2 15 0 0 106 41 2562 23664820 81600 861.06523132324219 5.8522999999999996 1035.8477 120960 56678 1 0 5898240 4423680 4423680 4426418 4492800 192 150 162 165 1893 0 0 0 0 41 0 0 0 0 0 +2595 1783753611867609000 DEPTH 56 1 0.71742366006857428 2 5 2 5 0 0 196 32 2566 23664842 81600 847.63407897949219 5.8477999999999994 1285.3191999999999 120960 54148 1 0 5898240 4423680 4423680 4426439 4492800 494 156 174 356 1386 0 0 0 0 32 0 0 0 0 0 +2596 1783753612938636600 DEPTH 8 1 0.71497214694774935 2 5 2 5 0 0 214 30 2557 23664827 81600 861.30580139160156 5.8513000000000002 1069.8814 120960 55010 1 0 5898240 4423680 4423680 4426426 4492800 306 151 162 188 1750 0 0 0 0 30 0 0 0 0 0 +2597 1783753614180847500 DEPTH 2 1 0.69620098635498651 2 8 2 8 0 0 132 39 2571 23664810 81600 860.55906677246094 5.8530999999999995 1240.9663 120960 63176 1 0 5898240 4423680 4423680 4426408 4492800 156 150 150 150 1965 0 0 0 0 39 0 0 0 0 0 +2598 1783753615525151900 DEPTH 17 1 0.72052040352589197 0 7 0 7 0 0 182 22 2531 23664839 81600 850.33964538574219 5.8618999999999994 1301.7437 120960 53826 1 0 5898240 4423680 4423680 4426436 4492800 217 156 156 225 1777 0 0 0 0 22 0 0 0 0 0 +2599 1783753616809681000 DEPTH 13 1 0.71937009318794554 1 6 1 6 0 0 176 21 2505 23664845 81600 851.57487487792969 5.8428999999999993 1264.2075 120960 54757 1 0 5898240 4423680 4423680 4426444 4492800 225 155 178 211 1736 0 0 0 0 21 0 0 0 0 0 +2600 1783753617872445700 DEPTH 19 1 0.63794912969516393 2 11 2 11 1 0 122 67 2615 23664872 81600 858.20135498046875 5.8507999999999996 1031.6759 120960 57811 1 0 5898240 4423680 4423680 4426472 4492800 210 150 150 151 1954 2 0 0 0 65 0 0 0 0 1 +2601 1783753619136805200 DEPTH 45 1 0.63794446548755246 2 7 2 7 0 0 127 20 2630 23664822 81600 866.13737487792969 5.8339999999999996 1246.1581000000001 120960 64503 1 0 5898240 4423680 4423680 4426422 4492800 209 150 196 190 1885 0 0 0 0 20 0 0 0 0 0 +2602 1783753620183622800 DEPTH 32 1 0.63786588603486416 2 14 2 14 1 0 116 22 2614 23664827 81600 854.78727722167969 5.8531999999999993 1029.2724000000001 120960 57321 1 0 5898240 4423680 4423680 4426427 4492800 693 150 185 199 1387 1 0 0 0 21 0 0 0 0 1 +2603 1783753621264281400 DEPTH 55 1 0.6756659357336684 1 14 1 12 1 0 130 30 2601 23664798 81600 864.02252197265625 5.8604999999999992 1040.9087999999999 120960 58126 1 0 5898240 4423680 4423680 4426398 4492800 457 150 215 297 1482 3 0 0 0 27 3 0 0 0 1 +2604 1783753622296492500 DEPTH 39 1 0.66427893003331095 3 10 3 10 0 0 160 38 2535 23664863 81600 859.84927368164062 5.8696999999999999 1031.0364999999999 120960 59737 1 0 5898240 4423680 4423680 4426461 4492800 214 150 150 161 1860 0 0 0 0 38 0 0 0 0 0 +2605 1783753623362365200 DEPTH 42 1 0.6390282561428664 4 12 4 12 1 0 123 38 2588 23664796 81600 860.15773010253906 5.8329000000000004 1033.5907999999999 120960 57387 1 0 5898240 4423680 4423680 4426393 4492800 166 150 150 150 1972 0 0 1 0 37 0 0 0 0 1 +2606 1783753624395054100 DEPTH 49 1 0.63899835182801556 3 10 3 10 0 0 126 40 2571 23664864 81600 859.6656494140625 5.8281999999999998 1031.4639999999999 120960 59513 1 0 5898240 4423680 4423680 4426463 4492800 207 150 184 173 1857 0 0 0 0 40 0 0 0 0 0 +2607 1783753625667499200 DEPTH 53 1 0.67797889719612947 0 8 0 8 0 0 142 37 2514 23664897 81600 853.25204467773438 5.8327000000000009 1243.7910999999999 120960 53433 1 0 5898240 4423680 4423680 4426495 4492800 196 156 150 168 1844 0 0 0 0 37 0 0 0 0 0 +2608 1783753626951678400 DEPTH 56 1 0.68795093168955967 2 5 2 5 0 0 199 28 2575 23664778 81600 843.25456237792969 5.8382000000000005 1282.9811 120960 43205 1 0 5898240 4423680 4423680 4426376 4492800 486 156 174 416 1343 0 0 0 0 28 0 0 0 0 0 +2609 1783753628263404600 DEPTH 41 1 0.63777997347065984 1 10 1 10 0 0 110 38 2569 23664833 81600 853.96633911132812 5.8843000000000005 1268.6333999999999 120960 58672 1 0 5898240 4423680 4423680 4426432 4492800 388 154 196 184 1647 0 0 0 1 37 0 0 0 0 0 +2610 1783753629357166100 DEPTH 27 1 0.63773044948674351 0 14 0 14 1 0 132 38 2571 23664803 81600 861.23812866210938 5.8455999999999992 1033.9838 120960 57105 1 0 5898240 4423680 4423680 4426400 4492800 191 156 155 162 1907 1 0 0 0 37 0 0 0 0 2 +2611 1783753629535265500 REFRESH 51 0 0.56679719613999868 3 12 3 12 0 0 91 5 421 3943887 55200 148.48101806640625 0.98419999999999996 176.85059999999999 20160 12836 0 0 983040 737280 737280 737487 748800 77 25 110 82 127 0 0 0 0 5 0 0 0 0 0 +2612 1783753629813242300 REFRESH 44 0 0.60355325942445015 2 7 2 7 0 0 133 10 421 3943891 55200 151.33491516113281 0.97350000000000003 224.3442 20160 13385 0 0 983040 737280 737280 737491 748800 91 26 67 30 207 0 0 0 0 10 0 0 0 0 0 +2613 1783753630002151200 REFRESH 0 0 0.62549464879343608 1 12 1 12 0 0 89 6 429 3943922 55200 148.90599060058594 0.97360000000000002 177.22300000000001 20160 11909 0 0 983040 737280 737280 737522 748800 76 25 45 36 247 0 0 0 0 6 0 0 0 0 0 +2614 1783753630183675000 REFRESH 49 0 0.46718892054906391 3 10 3 10 0 0 126 3 414 3943908 55200 150.53004455566406 0.97419999999999995 180.30170000000001 20160 12315 0 0 983040 737280 737280 737508 748800 108 26 62 40 178 0 0 0 0 3 0 0 0 0 0 +2615 1783753630364331400 REFRESH 35 0 0.63764009093755303 2 11 2 11 0 0 148 11 414 3943903 55200 150.48005676269531 0.97960000000000003 179.46520000000001 20160 12107 0 0 983040 737280 737280 737503 748800 129 25 30 90 140 0 0 0 0 11 0 0 0 0 0 +2616 1783753630565652100 REFRESH 12 0 0.62765996729903561 3 8 3 8 0 0 171 7 414 3943898 55200 150.36927795410156 0.97850000000000004 179.56110000000001 20160 12394 0 0 983040 737280 737280 737498 748800 128 26 36 98 126 0 0 0 0 7 0 0 0 0 0 +2617 1783753630769839500 REFRESH 41 0 0.46724227279579966 1 10 1 10 0 0 110 3 418 3943906 55200 149.25724792480469 0.98019999999999996 203.06540000000001 20160 12920 0 0 983040 737280 737280 737506 748800 130 26 46 47 169 0 0 0 1 2 0 0 0 0 0 +2618 1783753630984130900 REFRESH 32 0 0.54563111291695465 2 14 2 14 0 0 116 4 429 3943904 55200 149.39033508300781 0.97060000000000002 177.81659999999999 20160 12475 0 0 983040 737280 737280 737504 748800 218 25 33 33 120 0 0 0 0 4 0 0 0 0 0 +2619 1783753631176023100 REFRESH 43 0 0.63650833503971904 2 13 2 13 0 0 122 10 417 3943897 55200 150.05903625488281 0.97899999999999998 179.8904 20160 12006 0 0 983040 737280 737280 737497 748800 148 26 38 60 145 0 0 0 0 10 0 0 0 0 0 +2620 1783753631357132600 REFRESH 42 0 0.53641280837133298 4 12 4 12 0 0 124 8 417 3943907 55200 150.329345703125 0.97770000000000001 179.94030000000001 20160 12169 0 0 983040 737280 737280 737507 748800 127 25 25 25 215 0 0 0 0 8 0 0 0 0 0 +2621 1783753631559190200 REFRESH 5 0 0.62939616816174471 2 11 2 11 0 0 91 5 414 3943940 55200 149.32508850097656 0.97489999999999999 177.22309999999999 20160 13275 0 0 983040 737280 737280 737540 748800 70 26 90 115 113 0 0 0 0 5 0 0 0 0 0 +2622 1783753631753486100 REFRESH 37 0 0.63658104936433801 1 12 1 12 0 0 135 12 425 3943912 55200 149.21420288085938 0.97289999999999999 179.07339999999999 20160 12353 0 0 983040 737280 737280 737512 748800 155 26 54 32 158 0 0 0 0 12 0 0 0 0 0 +2623 1783753631969980600 REFRESH 21 0 0.63750835381742521 0 10 0 10 0 0 172 11 415 3943903 55200 150.19123840332031 0.97330000000000005 199.69390000000001 20160 12724 0 0 983040 737280 737280 737503 748800 109 26 33 92 155 0 0 0 0 11 0 0 0 0 0 +2624 1783753632157556300 REFRESH 33 0 0.68496112189126301 1 7 1 7 0 0 180 5 420 3943885 55200 151.625732421875 0.97260000000000002 186.35650000000001 20160 13606 0 0 983040 737280 737280 737485 748800 114 26 49 43 188 0 0 0 0 5 0 0 0 0 0 +2625 1783753632342908600 REFRESH 8 0 0.80580000580046618 2 5 2 5 0 0 214 3 414 3943904 55200 151.27655029296875 0.98060000000000003 184.24299999999999 20160 13416 0 0 983040 737280 737280 737504 748800 151 26 29 70 138 0 0 0 0 3 0 0 0 0 0 +2626 1783753632566084100 REFRESH 9 0 0.67892468080018298 2 6 2 6 0 0 123 1 437 3943932 55200 151.4599609375 0.98340000000000005 222.09559999999999 20160 13483 0 0 983040 737280 737280 737532 748800 126 25 79 70 137 0 0 0 0 1 0 0 0 0 0 +2627 1783753632803433100 REFRESH 52 0 0.6319895731460643 1 8 1 8 0 0 106 4 428 3943917 55200 149.69664001464844 0.97970000000000002 220.73679999999999 20160 12489 0 0 983040 737280 737280 737517 748800 135 25 33 154 81 0 0 0 0 4 0 0 0 0 0 +2628 1783753632997540500 REFRESH 18 0 0.63135425301104009 4 15 4 15 1 0 103 13 418 3943917 55200 149.51628112792969 0.97919999999999996 178.22620000000001 20160 11987 0 0 983040 737280 737280 737517 748800 26 25 25 27 315 0 0 0 0 13 0 0 0 0 1 +2629 1783753633178464100 REFRESH 39 0 0.65875878398626675 3 10 3 10 0 0 160 10 411 3943900 55200 149.88902282714844 0.9738 179.73670000000001 20160 12587 0 0 983040 737280 737280 737500 748800 75 28 29 31 248 0 0 0 0 10 0 0 0 0 0 +2630 1783753633363809100 REFRESH 16 0 0.64048404759470257 2 7 2 7 0 0 173 8 417 3943899 55200 151.59706115722656 0.97670000000000001 184.1987 20160 13274 0 0 983040 737280 737280 737499 748800 33 26 26 234 98 0 0 0 0 8 0 0 0 0 0 +2631 1783753633567773500 REFRESH 38 0 0.62801790115276501 4 14 4 14 0 0 82 11 424 3943912 55200 149.84463500976562 0.97809999999999997 178.6962 20160 12398 0 0 983040 737280 737280 737512 748800 56 26 42 40 260 1 0 0 0 10 0 0 0 0 0 +2632 1783753633763237500 REFRESH 29 0 0.63696910116509686 2 12 2 12 0 0 114 9 416 3943923 55200 150.108154296875 0.97760000000000002 179.77029999999999 20160 12047 0 0 983040 737280 737280 737523 748800 145 25 52 51 143 0 0 0 0 9 0 0 0 0 0 +2633 1783753633944040400 REFRESH 46 0 0.6355694418516229 2 15 2 15 1 0 107 11 413 3943913 55200 149.82450866699219 0.97340000000000004 179.56659999999999 20160 11989 0 0 983040 737280 737280 737512 748800 90 26 48 30 219 0 0 0 0 11 0 0 0 0 1 +2634 1783753634138777400 REFRESH 23 0 0.63718583348919933 3 14 3 14 0 0 101 6 414 3943923 55200 150.63551330566406 0.9748 180.01349999999999 20160 11878 0 0 983040 737280 737280 737523 748800 51 25 50 42 246 0 0 0 0 6 0 0 0 0 0 +2635 1783753634382662100 REFRESH 54 0 0.63120569837830254 1 8 1 8 0 0 111 4 424 3943904 55200 149.49888610839844 0.97529999999999994 219.18010000000001 20160 12749 0 0 983040 737280 737280 737504 748800 151 25 59 116 73 0 0 0 0 4 0 0 0 0 0 +2636 1783753634576698200 REFRESH 36 0 0.62769743895308094 3 10 3 10 1 0 108 7 433 3943902 55200 149.43641662597656 0.97199999999999998 178.33770000000001 20160 12005 0 0 983040 737280 737280 737502 748800 210 25 35 49 114 0 0 0 0 7 0 0 0 0 1 +2637 1783753634821693200 REFRESH 11 0 0.68700482877238789 0 8 0 8 0 0 97 3 420 3943898 55200 150.25074768066406 0.97770000000000001 224.53149999999999 20160 13157 0 0 983040 737280 737280 737498 748800 115 25 63 62 155 0 0 0 0 3 0 0 0 0 0 +2638 1783753635009028800 REFRESH 2 0 0.68953830448527254 2 8 2 8 0 0 133 11 410 3943904 55200 150.90483093261719 0.97789999999999999 186.24090000000001 20160 13084 0 0 983040 737280 737280 737504 748800 36 25 62 98 189 0 0 0 0 11 0 0 0 0 0 +2639 1783753635192379100 REFRESH 27 0 0.63554776259278323 0 14 0 14 0 0 133 9 414 3943900 55200 151.86419677734375 0.97540000000000004 182.18219999999999 20160 12073 0 0 983040 737280 737280 737500 748800 73 26 29 29 257 0 0 0 0 9 0 0 0 0 0 +2640 1783753635419104100 REFRESH 17 0 0.80183856084160743 0 7 0 7 0 0 182 3 416 3943922 55200 151.61447143554688 0.99939999999999996 225.60079999999999 20160 13544 0 0 983040 737280 737280 737521 748800 119 27 38 106 126 0 0 0 0 3 0 0 0 0 0 +2641 1783753635611748800 REFRESH 45 0 0.63905697035146547 2 7 2 7 0 0 128 3 423 3943928 55200 152.07901000976562 0.97419999999999995 191.4083 20160 13419 0 0 983040 737280 737280 737527 748800 116 25 48 48 186 0 0 0 0 3 0 0 0 0 0 +2642 1783753635800335600 REFRESH 30 0 0.64433530804369776 1 9 1 9 0 0 130 12 414 3943901 55200 150.7398681640625 0.97260000000000002 187.43209999999999 20160 13279 0 0 983040 737280 737280 737500 748800 84 25 50 32 223 0 0 0 0 12 0 0 0 0 0 +2643 1783753636004182000 REFRESH 7 0 0.63265609978120962 1 12 1 12 0 0 128 10 416 3943905 55200 150.12864685058594 0.97909999999999997 179.5428 20160 12318 0 0 983040 737280 737280 737505 748800 138 26 29 29 194 0 0 0 0 10 0 0 0 0 0 +2644 1783753636185346500 REFRESH 40 0 0.63265290864017665 1 12 1 12 1 0 117 11 418 3943909 55200 151.23866271972656 0.97340000000000004 179.97980000000001 20160 12957 0 0 983040 737280 737280 737507 748800 168 25 37 87 101 0 0 0 1 10 0 0 0 1 0 +2645 1783753636388505800 REFRESH 57 0 0.61950386484508835 2 12 2 12 0 0 121 11 418 3943897 55200 149.90130615234375 0.97540000000000004 178.78299999999999 20160 12080 0 0 983040 737280 737280 737497 748800 114 26 93 90 95 0 0 0 0 11 0 0 0 0 0 +2646 1783753636585498000 REFRESH 4 0 0.59064234099456236 1 13 1 13 0 0 48 1 418 3943912 55200 147.91270446777344 0.97160000000000002 177.554 20160 11939 0 0 983040 737280 737280 737512 748800 26 25 36 31 300 0 0 0 0 1 0 0 0 0 0 +2647 1783753636769461300 REFRESH 3 0 0.6469080945914365 2 9 2 9 1 0 141 9 419 3943899 55200 149.22444152832031 0.97270000000000001 182.88499999999999 20160 12908 0 0 983040 737280 737280 737499 748800 196 25 37 63 98 0 0 0 0 9 0 0 0 0 1 +2648 1783753636963819800 REFRESH 53 0 0.68800271885255693 0 8 0 8 0 0 142 9 413 3943913 55200 151.81948852539062 0.9849 193.07759999999999 20160 13529 0 0 983040 737280 737280 737512 748800 136 26 27 52 172 0 0 0 0 9 0 0 0 0 0 +2649 1783753637174684200 REFRESH 50 0 0.63655791218685409 2 9 2 9 0 0 122 7 418 3943899 55200 151.18949890136719 0.99080000000000001 184.7062 20160 12816 0 0 983040 737280 737280 737499 748800 177 26 44 66 105 0 0 0 0 7 0 0 0 0 0 +2650 1783753637372582700 REFRESH 28 0 0.63267316664689566 1 12 1 12 0 0 144 6 403 3943908 55200 150.63142395019531 0.98270000000000002 182.1327 20160 12339 0 0 983040 737280 737280 737508 748800 136 25 30 28 184 1 0 0 0 5 0 0 0 0 0 +2651 1783753637585143600 REFRESH 1 0 0.68384110161838441 1 7 1 7 0 0 122 3 423 3943884 55200 150.9539794921875 0.97370000000000001 211.47380000000001 20160 13629 0 0 983040 737280 737280 737484 748800 131 26 84 83 99 0 0 0 0 3 0 0 0 0 0 +2652 1783753637786400400 REFRESH 34 0 0.63526163717493001 1 13 1 13 0 0 101 6 431 3943919 55200 148.853759765625 0.97919999999999996 176.35239999999999 20160 12912 0 0 983040 737280 737280 737519 748800 106 25 55 64 181 0 0 0 0 6 0 0 0 0 0 +2653 1783753637979641500 REFRESH 6 0 0.59849439008188465 3 11 3 11 0 0 115 8 416 3943903 55200 149.62074279785156 0.97489999999999999 177.7765 20160 12357 0 0 983040 737280 737280 737503 748800 26 25 25 25 315 0 0 0 0 8 0 0 0 0 0 +2654 1783753638174426300 REFRESH 22 0 0.62386177875415338 3 11 3 11 0 0 116 11 423 3943908 55200 150.88128662109375 0.97809999999999997 181.33160000000001 20160 12208 0 0 983040 737280 737280 737508 748800 124 25 29 27 218 0 0 0 0 11 0 0 0 0 0 +2655 1783753638376244400 REFRESH 14 0 0.62913581560847143 0 12 0 12 1 0 109 12 415 3943916 55200 149.44358825683594 0.98209999999999997 185.21879999999999 20160 12300 0 0 983040 737280 737280 737516 748800 109 26 29 46 205 0 0 0 0 12 0 0 0 0 1 +2656 1783753638570758500 REFRESH 58 0 0.63319701514260285 2 12 2 12 0 0 117 8 426 3943913 55200 150.21363830566406 0.98440000000000005 179.1036 20160 12286 0 0 983040 737280 737280 737513 748800 103 26 66 66 165 0 0 0 0 8 0 0 0 0 0 +2657 1783753638763532300 REFRESH 20 0 0.63644879489554684 3 12 3 12 0 0 106 9 428 3943900 55200 149.3504638671875 0.97589999999999999 177.37379999999999 20160 11919 0 0 983040 737280 737280 737500 748800 168 26 66 68 100 0 0 0 0 9 0 0 0 0 0 +2658 1783753638958534500 REFRESH 15 0 0.63557771808371588 3 12 3 12 0 0 94 8 419 3943911 55200 150.48396301269531 0.97919999999999996 179.3981 20160 11949 0 0 983040 737280 737280 737511 748800 45 26 33 25 290 0 0 0 0 8 0 0 0 0 0 +2659 1783753639185242400 REFRESH 56 0 0.808485693740986 2 5 2 5 0 0 199 6 418 3943915 55200 150.71026611328125 0.98370000000000002 225.52590000000001 20160 13488 0 0 983040 737280 737280 737515 748800 185 26 50 65 92 0 0 0 0 6 0 0 0 0 0 +2660 1783753639430758500 REFRESH 31 0 0.67832923548331769 2 6 2 6 0 0 122 5 430 3943904 55200 150.41535949707031 0.98780000000000001 219.8115 20160 13503 0 0 983040 737280 737280 737504 748800 211 25 31 69 94 0 0 1 0 4 0 0 0 0 0 +2661 1783753639622966300 REFRESH 48 0 0.59494156220549699 2 11 2 11 0 0 79 8 431 3943945 55200 148.68479919433594 0.98699999999999999 178.7963 20160 13750 0 0 983040 737280 737280 737545 748800 189 25 53 59 105 0 0 0 0 8 0 0 0 0 0 +2662 1783753639821914500 REFRESH 13 0 0.8010259734387315 1 6 1 6 0 0 176 3 417 3943906 55200 150.830078125 0.97150000000000003 197.81739999999999 20160 13398 0 0 983040 737280 737280 737506 748800 151 26 54 87 99 0 0 0 0 3 0 0 0 0 0 +2663 1783753640020116300 REFRESH 24 0 0.63504341961572264 4 11 4 11 0 0 132 6 409 3943922 55200 150.05354309082031 0.9829 179.90039999999999 20160 11779 0 0 983040 737280 737280 737522 748800 58 26 45 51 229 0 0 0 0 6 0 0 0 0 0 +2664 1783753640215172200 REFRESH 47 0 0.63064088756304104 2 11 2 11 0 0 111 6 422 3943893 55200 149.56544494628906 0.97460000000000002 178.31659999999999 20160 12230 0 0 983040 737280 737280 737493 748800 126 26 38 31 201 0 0 0 0 6 0 0 0 0 0 +2665 1783753640396743900 REFRESH 55 0 0.87883925017274456 1 12 1 12 1 0 130 13 428 3943898 55200 150.14399719238281 0.98250000000000004 180.38120000000001 20160 12022 0 0 983040 737280 737280 737498 748800 112 25 40 78 173 1 0 0 0 12 1 0 0 0 0 +2666 1783753640601198900 REFRESH 10 0 0.63703462714403536 1 11 1 11 0 0 107 4 425 3943911 55200 150.26278686523438 0.97340000000000004 179.70580000000001 20160 12698 0 0 983040 737280 737280 737511 748800 145 26 48 37 169 0 0 0 0 4 0 0 0 0 0 +2667 1783753640793627000 REFRESH 26 0 0.63233171950478839 1 13 1 13 0 0 77 4 425 3943907 55200 148.97254943847656 0.99370000000000003 176.66130000000001 20160 11872 0 0 983040 737280 737280 737507 748800 34 25 35 49 282 0 0 0 0 4 0 0 0 0 0 +2668 1783753640988532900 REFRESH 25 0 0.63653183098636967 3 11 3 11 0 0 113 6 419 3943902 55200 150.10421752929688 0.98050000000000004 179.2397 20160 11856 0 0 983040 737280 737280 737501 748800 93 25 61 76 164 0 0 0 0 6 0 0 0 0 0 +2669 1783753641168728600 REFRESH 19 0 0.63601645866652867 2 11 2 11 0 0 122 10 423 3943905 55200 149.92282104492188 0.97260000000000002 179.0386 20160 12303 0 0 983040 737280 737280 737505 748800 117 25 25 41 215 0 0 0 0 10 0 0 0 0 0 +2670 1783753642281978500 DEPTH 8 1 0.79953424025040865 2 5 2 5 0 0 214 22 2563 23664873 81600 869.92381286621094 5.8509999999999991 1087.6233 120960 66157 1 0 5898240 4423680 4423680 4426472 4492800 288 150 157 177 1791 0 0 0 0 22 0 0 0 0 0 +2671 1783753643589912000 DEPTH 17 1 0.79592604564933667 0 7 0 7 1 0 182 31 2532 23664830 81600 859.68040466308594 5.8532000000000002 1306.8661 120960 66086 1 0 5898240 4423680 4423680 4426429 4492800 216 180 156 239 1741 0 0 0 0 31 0 0 0 0 1 +2672 1783753644829157100 DEPTH 2 1 0.68338488678068743 2 8 2 8 0 0 133 30 2558 23664861 81600 861.46952819824219 5.8696999999999999 1238.143 120960 63885 1 0 5898240 4423680 4423680 4426459 4492800 156 150 150 150 1952 0 0 0 0 30 0 0 0 0 0 +2673 1783753646169074600 DEPTH 11 1 0.68057876537976647 0 8 0 8 0 0 97 8 2545 23664809 81600 854.31842041015625 5.8620999999999999 1299.6188 120960 63885 1 0 5898240 4423680 4423680 4426407 4492800 276 150 225 230 1664 0 0 0 0 8 0 0 0 0 0 +2674 1783753647419645700 DEPTH 33 1 0.68010757446058123 1 7 1 7 0 0 181 26 2546 23664952 81600 868.56880187988281 5.8552999999999997 1222.6727000000001 120960 66349 1 0 5898240 4423680 4423680 4426551 4492800 194 154 156 150 1892 0 0 0 0 26 0 0 0 0 0 +2675 1783753648751360200 DEPTH 9 1 0.67100469992719092 2 6 2 6 0 0 123 10 2616 23664865 81600 861.66421508789062 5.8451999999999993 1291.6429000000001 120960 65863 1 0 5898240 4423680 4423680 4426464 4492800 702 150 407 509 848 0 0 0 0 10 0 0 0 0 0 +2676 1783753650077075300 DEPTH 56 1 0.72479473702553687 2 5 2 5 0 0 200 33 2566 23664858 81600 857.94285583496094 5.8285 1300.0741 120960 65648 1 0 5898240 4423680 4423680 4426454 4492800 505 156 174 311 1420 0 0 0 0 33 0 0 0 0 0 +2677 1783753651369363400 DEPTH 53 1 0.68687944691850955 0 8 0 8 0 0 142 40 2518 23664902 81600 861.89892578125 5.8663999999999996 1237.8095000000001 120960 65338 1 0 5898240 4423680 4423680 4426502 4492800 194 156 150 164 1854 0 0 0 0 40 0 0 0 0 0 +2678 1783753652409295400 DEPTH 55 1 0.73272289400251178 1 12 1 12 1 0 132 35 2602 23664822 81600 863.66427612304688 5.8411999999999997 1038.6456000000001 120960 57900 1 0 5898240 4423680 4423680 4426422 4492800 478 150 220 377 1377 2 0 0 2 31 2 0 0 0 1 +2679 1783753653713894500 DEPTH 13 1 0.71530168104313285 1 6 1 6 0 0 177 29 2502 23664768 81600 859.50660705566406 5.8336000000000006 1269.8556000000001 120960 65527 1 0 5898240 4423680 4423680 4426368 4492800 249 156 197 208 1692 0 0 0 0 29 0 0 0 0 0 +2680 1783753655023338000 DEPTH 1 1 0.67747253623881132 1 7 1 7 1 0 122 19 2622 23664797 81600 864.18818664550781 5.8694000000000006 1308.3411000000001 120960 65900 1 0 5898240 4423680 4423680 4426397 4492800 412 156 296 298 1460 0 0 0 0 19 0 0 0 0 1 +2681 1783753656077840000 DEPTH 39 1 0.65376031280012992 3 10 3 10 0 0 160 34 2555 23664760 81600 859.62702941894531 5.8567 1033.3498999999999 120960 60244 1 0 5898240 4423680 4423680 4426358 4492800 220 150 150 156 1879 0 0 0 0 34 0 0 0 0 0 +2682 1783753657378493000 DEPTH 44 1 0.6441042608587455 2 7 2 7 0 0 133 16 2576 23664881 81600 859.99581909179688 5.8567999999999998 1299.4717000000001 120960 64678 1 0 5898240 4423680 4423680 4426481 4492800 216 150 253 163 1794 0 0 0 0 16 0 0 0 0 0 +2683 1783753658629574300 DEPTH 3 1 0.64296457054115619 2 9 2 9 0 0 141 65 2550 23664851 81600 860.43255615234375 5.8661999999999992 1203.2157 120960 61747 1 0 5898240 4423680 4423680 4426449 4492800 359 150 156 205 1680 2 0 0 0 63 0 0 0 0 0 +2684 1783753659997551500 DEPTH 30 1 0.64259981867391258 1 9 1 9 0 0 130 26 2544 23664817 81600 859.03968811035156 5.8491 1246.6215 120960 63798 1 0 5898240 4423680 4423680 4426416 4492800 156 150 174 150 1914 0 0 0 0 26 0 0 0 0 0 +2685 1783753661134652400 DEPTH 16 1 0.63890648881633283 2 7 2 7 0 0 174 39 2550 23664809 81600 866.7305908203125 5.8429000000000002 1093.3875 120960 64756 1 0 5898240 4423680 4423680 4426407 4492800 158 156 156 583 1497 0 0 0 0 39 0 0 0 0 0 +2686 1783753662215797400 DEPTH 8 1 0.71073841295087192 2 5 2 5 0 0 214 25 2576 23664753 81600 862.15719604492188 5.8399000000000001 1079.9994999999999 120960 54696 1 0 5898240 4423680 4423680 4426351 4492800 296 150 156 183 1791 0 0 0 0 25 0 0 0 0 0 +2687 1783753663514644700 DEPTH 17 1 0.70749969077248764 0 7 0 7 0 0 185 31 2525 23664903 81600 851.63986206054688 5.8410000000000002 1297.692 120960 54219 1 0 5898240 4423680 4423680 4426500 4492800 215 180 156 257 1717 0 0 0 0 31 0 0 0 0 0 +2688 1783753664787725800 DEPTH 31 1 0.6745109095401004 2 6 2 6 0 0 123 10 2627 23664863 81600 859.2803955078125 5.8394000000000004 1271.9713999999999 120960 66017 1 0 5898240 4423680 4423680 4426461 4492800 974 150 187 341 975 0 0 0 0 10 0 0 0 0 0 +2689 1783753665845657400 DEPTH 55 1 0.68920493482324119 1 12 1 12 1 0 132 29 2599 23664788 81600 855.82920837402344 5.8593999999999999 1032.3835999999999 120960 47578 1 0 5898240 4423680 4423680 4426388 4492800 491 150 236 383 1339 3 0 0 2 24 2 0 0 0 0 +2690 1783753667131976200 DEPTH 56 1 0.69539670639065843 2 5 2 5 0 0 200 18 2568 23664929 81600 847.95442199707031 5.8460999999999999 1285.0824 120960 54380 1 0 5898240 4423680 4423680 4426528 4492800 493 156 174 377 1368 0 0 0 0 18 0 0 0 0 0 +2691 1783753668462701200 DEPTH 21 1 0.63713428843237085 0 10 0 10 1 0 173 38 2600 23664855 81600 862.47036743164062 5.8517000000000001 1299.4365 120960 62450 1 0 5898240 4423680 4423680 4426455 4492800 373 150 168 284 1625 0 0 0 0 38 0 0 0 0 1 +2692 1783753669518686100 DEPTH 35 1 0.63593097820187472 2 11 2 11 1 0 148 64 2535 23664921 81600 860.26316833496094 5.8940999999999999 1039.6697999999999 120960 57726 1 0 5898240 4423680 4423680 4426521 4492800 271 150 155 249 1710 0 0 0 0 64 0 0 0 0 1 +2693 1783753670574875000 DEPTH 37 1 0.63533915581646538 1 12 1 12 1 0 135 18 2616 23664871 81600 856.9422607421875 5.8552 1031.6610000000001 120960 59256 1 0 5898240 4423680 4423680 4426471 4492800 463 156 164 173 1660 3 0 0 1 14 0 0 0 0 1 +2694 1783753671834726800 DEPTH 13 1 0.69707402443781907 1 6 1 6 0 0 177 27 2503 23664874 81600 849.88519287109375 5.8369 1258.7265 120960 53762 1 0 5898240 4423680 4423680 4426474 4492800 243 154 188 255 1663 0 0 0 0 27 0 0 0 0 0 +2695 1783753673099011800 DEPTH 2 1 0.65767391912955508 2 8 2 8 0 0 133 32 2551 23664925 81600 856.66647338867188 5.8561999999999994 1236.5949000000001 120960 53277 1 0 5898240 4423680 4423680 4426522 4492800 156 150 150 150 1945 0 0 0 0 32 0 0 0 0 0 +2696 1783753674387667100 DEPTH 11 1 0.65963640893701969 0 8 0 8 0 0 97 6 2543 23664813 81600 844.7720947265625 5.8447999999999993 1287.6004 120960 52842 1 0 5898240 4423680 4423680 4426412 4492800 243 150 197 233 1720 0 0 0 0 6 0 0 0 0 0 +2697 1783753675443965000 DEPTH 43 1 0.63435533993873827 2 13 2 13 1 0 123 39 2548 23664746 81600 859.5828857421875 5.8713999999999995 1032.7801999999999 120960 57486 1 0 5898240 4423680 4423680 4426345 4492800 335 156 181 186 1690 0 0 0 0 39 0 0 0 0 1 +2698 1783753676516778400 DEPTH 29 1 0.63433193705340107 2 12 1 12 1 0 116 40 2546 23664999 81600 862.35801696777344 5.878400000000001 1036.5653 120960 56981 1 0 5898240 4423680 4423680 4426598 4492800 252 150 200 202 1742 1 0 3 0 36 0 0 3 0 1 +2699 1783753677547570100 DEPTH 19 1 0.63389210000896634 2 11 2 11 0 0 123 39 2614 23664881 81600 857.92626953125 5.8418999999999999 1029.6454000000001 120960 58094 1 0 5898240 4423680 4423680 4426479 4492800 205 150 150 150 1959 0 0 0 0 39 0 0 0 0 0 +2700 1783753678602806600 DEPTH 20 1 0.63354433966309454 3 12 2 11 1 0 106 13 2621 23664837 81600 857.02719116210938 5.8489000000000004 1029.9680000000001 120960 56185 1 0 5898240 4423680 4423680 4426437 4492800 479 156 303 406 1277 0 0 0 1 12 0 0 0 1 2 +2701 1783753679779995200 DEPTH 50 1 0.63337399276299344 2 9 2 9 0 0 122 36 2569 23664880 81600 855.97343444824219 5.8317999999999994 1134.4254000000001 120960 60707 1 0 5898240 4423680 4423680 4426478 4492800 185 150 171 178 1885 0 0 0 0 36 0 0 0 0 0 +2702 1783753679975112600 REFRESH 7 0 0.63099693427462022 1 12 1 12 1 0 128 12 414 3943905 55200 150.03152465820312 0.97809999999999997 179.59049999999999 20160 12257 0 0 983040 737280 737280 737504 748800 142 26 29 31 186 0 0 0 0 12 0 0 0 0 1 +2703 1783753680172170100 REFRESH 32 0 0.62767567834658577 2 14 2 14 0 0 116 14 430 3943914 55200 149.67808532714844 0.99929999999999997 178.65129999999999 20160 12427 0 0 983040 737280 737280 737514 748800 189 25 33 34 149 0 0 0 0 14 0 0 0 0 0 +2704 1783753680354504900 REFRESH 27 0 0.63246148830485449 0 14 0 14 0 0 136 18 410 3943920 55200 151.12704467773438 0.98199999999999998 181.1936 20160 12196 0 0 983040 737280 737280 737520 748800 74 26 32 32 246 0 0 0 1 17 0 0 0 0 0 +2705 1783753680535001200 REFRESH 49 0 0.62878602585971766 3 10 3 10 0 0 126 9 422 3943909 55200 150.27813720703125 0.98180000000000001 179.2362 20160 12265 0 0 983040 737280 737280 737509 748800 124 26 68 51 153 0 0 0 0 9 0 0 0 0 0 +2706 1783753680757636300 REFRESH 9 0 0.67270861778374247 2 6 2 6 0 0 123 4 433 3943906 55200 151.31234741210938 0.97989999999999999 221.5239 20160 13360 0 0 983040 737280 737280 737506 748800 135 25 84 76 113 0 0 0 0 4 0 0 0 0 0 +2707 1783753680950798100 REFRESH 6 0 0.59700414440465555 3 11 3 11 0 0 115 6 417 3943933 55200 149.94102478027344 0.97060000000000002 178.2261 20160 12430 0 0 983040 737280 737280 737533 748800 26 25 25 25 316 0 0 0 0 6 0 0 0 0 0 +2708 1783753681145454900 REFRESH 15 0 0.63200609179550749 3 12 3 12 0 0 94 8 422 3943912 55200 150.90789794921875 0.97940000000000005 179.90639999999999 20160 12026 0 0 983040 737280 737280 737512 748800 45 26 33 25 293 0 0 1 0 7 0 0 0 0 0 +2709 1783753681370598100 REFRESH 35 0 0.55395080621443271 2 11 2 11 0 0 148 10 420 3943918 55200 149.97708129882812 0.9758 179.51609999999999 20160 12177 0 0 983040 737280 737280 737518 748800 138 25 29 95 133 0 0 0 0 10 0 0 0 0 0 +2710 1783753681617016500 REFRESH 54 0 0.62784826697224205 1 8 1 8 0 0 111 5 425 3943902 55200 149.86956787109375 0.97389999999999999 220.9016 20160 12752 0 0 983040 737280 737280 737502 748800 152 25 60 117 71 0 0 0 0 5 0 0 0 0 0 +2711 1783753681809573200 REFRESH 38 0 0.62741182530231043 4 14 4 14 0 0 82 6 425 3943909 55200 148.92851257324219 0.97829999999999995 177.70070000000001 20160 12569 0 0 983040 737280 737280 737508 748800 54 26 41 41 263 1 0 0 0 5 0 0 0 0 0 +2712 1783753681991561400 REFRESH 29 0 0.62788110287146792 1 12 1 12 0 0 116 9 418 3943888 55200 150.73075866699219 0.97399999999999998 180.82050000000001 20160 12115 0 0 983040 737280 737280 737488 748800 147 25 48 53 145 1 0 0 0 8 0 0 0 0 0 +2713 1783753682203439000 REFRESH 1 0 0.67909127445349105 1 7 1 7 0 0 122 5 423 3943916 55200 151.64486694335938 0.97619999999999996 210.73400000000001 20160 13510 0 0 983040 737280 737280 737516 748800 132 26 81 86 98 0 0 0 0 5 0 0 0 0 0 +2714 1783753682430953900 REFRESH 31 0 0.67596148088940333 2 6 2 6 0 0 123 7 426 3943920 55200 150.17471313476562 0.97540000000000004 216.8878 20160 13452 0 0 983040 737280 737280 737520 748800 216 25 32 71 82 0 0 0 0 7 0 0 0 0 0 +2715 1783753682625813600 REFRESH 25 0 0.63126982879162918 3 11 3 11 0 0 113 6 424 3943910 55200 150.15731811523438 0.97389999999999999 179.1311 20160 11856 0 0 983040 737280 737280 737510 748800 85 25 58 74 182 0 0 0 0 6 0 0 0 0 0 +2716 1783753682820948400 REFRESH 40 0 0.629925411854247 1 12 1 12 1 0 117 9 422 3943914 55200 150.76760864257812 0.98040000000000005 179.4435 20160 12844 0 0 983040 737280 737280 737513 748800 171 25 37 84 105 0 0 0 1 8 0 0 0 1 0 +2717 1783753683022594100 REFRESH 14 0 0.62951989971565547 0 12 0 12 0 0 110 10 420 3943907 55200 150.29248046875 0.97399999999999998 185.4205 20160 12209 0 0 983040 737280 737280 737507 748800 116 26 30 45 203 0 1 0 0 9 0 0 0 0 0 +2718 1783753683204880500 REFRESH 55 0 0.80800469970998423 1 12 1 12 0 0 133 15 428 3943924 55200 151.73735046386719 0.97809999999999997 181.03649999999999 20160 12432 0 0 983040 737280 737280 737524 748800 122 25 47 86 148 0 0 0 0 15 0 0 0 0 0 +2719 1783753683419678900 REFRESH 33 0 0.68062805502368873 1 7 1 7 0 0 181 6 418 3943894 55200 152.06057739257812 0.97560000000000002 188.22730000000001 20160 13398 0 0 983040 737280 737280 737494 748800 102 26 37 35 218 0 0 0 0 6 0 0 0 0 0 +2720 1783753683600191300 REFRESH 39 0 0.64905737446110012 3 10 3 10 0 0 160 7 407 3943916 55200 149.61561584472656 0.97499999999999998 178.75460000000001 20160 12618 0 0 983040 737280 737280 737516 748800 79 29 29 34 236 0 0 0 0 7 0 0 0 0 0 +2721 1783753683803198400 REFRESH 30 0 0.64089541679840778 1 9 1 9 0 0 130 10 415 3943918 55200 150.83750915527344 0.97909999999999997 186.50909999999999 20160 13354 0 0 983040 737280 737280 737518 748800 84 25 50 32 224 0 0 0 0 10 0 0 0 0 0 +2722 1783753684000020200 REFRESH 28 0 0.62689716931168005 1 12 1 12 0 0 145 6 408 3943913 55200 150.33343505859375 0.97189999999999999 180.71430000000001 20160 12261 0 0 983040 737280 737280 737513 748800 156 26 30 31 165 0 0 0 0 6 0 0 0 0 0 +2723 1783753684193535600 REFRESH 12 0 0.62525404514378979 3 8 3 8 0 0 172 14 414 3943929 55200 150.31295776367188 0.97460000000000002 179.60570000000001 20160 12428 0 0 983040 737280 737280 737529 748800 143 26 36 104 105 0 0 0 0 14 0 0 0 0 0 +2724 1783753684393742900 REFRESH 13 0 0.79865013858005129 1 6 1 6 0 0 177 5 416 3943924 55200 151.43014526367188 0.98229999999999995 199.06360000000001 20160 13576 0 0 983040 737280 737280 737523 748800 153 26 56 82 99 0 0 0 0 5 0 0 0 0 0 +2725 1783753684590543700 REFRESH 10 0 0.63124845249990913 1 11 1 10 1 0 108 6 426 3943884 55200 149.01338195800781 0.97340000000000004 178.994 20160 12562 0 0 983040 737280 737280 737484 748800 147 26 49 37 167 0 0 0 0 6 0 0 0 0 1 +2726 1783753684784069400 REFRESH 18 0 0.62942765560529579 4 15 4 15 0 0 103 10 419 3943918 55200 149.01554870605469 0.9728 177.03469999999999 20160 11822 0 0 983040 737280 737280 737518 748800 26 25 25 27 316 0 0 0 0 10 0 0 0 0 0 +2727 1783753684976992800 REFRESH 0 0 0.62198446005277463 1 12 1 12 0 0 89 4 425 3943903 55200 148.19532775878906 0.97299999999999998 177.4511 20160 12004 0 0 983040 737280 737280 737503 748800 75 25 44 36 245 0 0 0 0 4 0 0 0 0 0 +2728 1783753685168953000 REFRESH 51 0 0.63087535780707549 3 12 3 12 0 0 91 9 419 3943940 55200 150.12147521972656 0.97760000000000002 178.1671 20160 12769 0 0 983040 737280 737280 737540 748800 82 25 118 89 105 0 0 0 0 9 0 0 0 0 0 +2729 1783753685394012300 REFRESH 11 0 0.67671919761011545 0 8 0 8 0 0 98 6 421 3943910 55200 149.97503662109375 0.97919999999999996 223.94120000000001 20160 13484 0 0 983040 737280 737280 737510 748800 115 25 63 66 152 0 0 1 0 5 0 0 0 0 0 +2730 1783753685573856200 REFRESH 19 0 0.63181896043292496 2 11 2 11 1 0 123 12 419 3943911 55200 149.83680725097656 0.98599999999999999 178.7054 20160 12313 0 0 983040 737280 737280 737511 748800 108 25 26 38 222 0 0 0 0 12 0 0 0 0 1 +2731 1783753685778181200 REFRESH 58 0 0.62959227739457135 2 12 2 12 0 0 117 9 422 3943916 55200 150.555419921875 0.97119999999999995 179.46559999999999 20160 12261 0 0 983040 737280 737280 737516 748800 101 26 63 62 170 0 0 0 0 9 0 0 0 0 0 +2732 1783753685973037100 REFRESH 42 0 0.63230862776786922 4 12 4 12 0 0 126 11 414 3943930 55200 149.90745544433594 0.97250000000000003 178.83449999999999 20160 12015 0 0 983040 737280 737280 737530 748800 158 25 26 27 178 0 0 0 0 11 0 0 0 0 0 +2733 1783753686157555300 REFRESH 3 0 0.64033818573735601 2 9 2 9 0 0 141 14 417 3943921 55200 149.69036865234375 0.97760000000000002 183.39340000000001 20160 12742 0 0 983040 737280 737280 737521 748800 192 25 36 63 101 0 0 0 1 13 0 0 0 0 0 +2734 1783753686381528700 REFRESH 56 0 0.80597018623567995 2 5 2 5 0 0 200 5 416 3943903 55200 150.84748840332031 0.97609999999999997 222.8236 20160 13467 0 0 983040 737280 737280 737503 748800 185 26 50 65 90 0 0 0 0 5 0 0 0 0 0 +2735 1783753686585670900 REFRESH 36 0 0.62430225010445972 3 10 3 10 0 0 109 7 428 3943897 55200 150.00064086914062 0.97330000000000005 178.6773 20160 12236 0 0 983040 737280 737280 737497 748800 211 25 36 47 109 0 1 0 0 6 0 0 0 0 0 +2736 1783753686779578800 REFRESH 47 0 0.62601206475072257 2 11 2 11 0 0 112 11 417 3943892 55200 150.28121948242188 0.97719999999999996 179.51089999999999 20160 12331 0 0 983040 737280 737280 737491 748800 127 26 42 32 190 0 0 0 0 11 0 0 0 0 0 +2737 1783753687004572400 REFRESH 17 0 0.7989525206975735 0 7 0 7 0 0 186 2 411 3943920 55200 150.37132263183594 0.97340000000000004 223.8519 20160 13470 0 0 983040 737280 737280 737520 748800 115 26 40 105 125 0 0 0 0 2 0 0 0 0 0 +2738 1783753687199093300 REFRESH 23 0 0.63111622624898445 3 14 3 14 0 0 102 19 414 3943913 55200 150.49420166015625 0.98170000000000002 179.63939999999999 20160 11825 0 0 983040 737280 737280 737512 748800 57 25 60 44 228 0 0 0 0 19 0 0 0 0 0 +2739 1783753687388605800 REFRESH 45 0 0.63318151084667484 2 7 2 7 0 0 128 9 422 3943925 55200 150.96217346191406 0.99129999999999996 188.32339999999999 20160 13355 0 0 983040 737280 737280 737525 748800 130 25 54 53 160 0 0 0 0 9 0 0 0 0 0 +2740 1783753687576507300 REFRESH 16 0 0.6393820195405554 2 7 2 7 0 0 174 10 415 3943883 55200 151.77626037597656 0.98519999999999996 186.7732 20160 13359 0 0 983040 737280 737280 737482 748800 33 26 26 240 90 0 0 0 0 10 0 0 0 0 0 +2741 1783753687777342700 REFRESH 5 0 0.62496092102260303 2 11 2 11 0 0 91 8 413 3943910 55200 148.54450988769531 0.97119999999999995 176.10230000000001 20160 13105 0 0 983040 737280 737280 737510 748800 71 26 91 121 104 0 0 0 0 8 0 0 0 0 0 +2742 1783753687971116900 REFRESH 26 0 0.62652969038094941 1 13 1 13 1 0 77 7 423 3943910 55200 149.13433837890625 0.98119999999999996 177.69730000000001 20160 11896 0 0 983040 737280 737280 737510 748800 34 25 34 45 285 0 0 0 0 7 0 0 0 0 1 +2743 1783753688166976700 REFRESH 24 0 0.62989724388666446 4 11 4 11 0 0 132 9 415 3943940 55200 150.98162841796875 0.97840000000000005 180.31739999999999 20160 11910 0 0 983040 737280 737280 737540 748800 64 26 49 54 222 0 0 0 0 9 0 0 0 0 0 +2744 1783753688370067900 REFRESH 21 0 0.63661274670010837 0 10 0 10 0 0 173 9 415 3943932 55200 150.64472961425781 0.97989999999999999 201.965 20160 12825 0 0 983040 737280 737280 737532 748800 103 26 33 88 165 0 0 0 0 9 0 0 0 0 0 +2745 1783753688554620900 REFRESH 2 0 0.67252000052683192 2 8 2 8 0 0 133 8 412 3943945 55200 150.51776123046875 0.97160000000000002 183.489 20160 13226 0 0 983040 737280 737280 737544 748800 39 25 68 112 168 0 0 0 0 8 0 0 0 0 0 +2746 1783753688784626000 REFRESH 46 0 0.63350911471863003 2 15 2 15 0 0 108 8 417 3943893 55200 150.60581970214844 0.96989999999999998 180.4742 20160 12073 0 0 983040 737280 737280 737493 748800 90 26 49 31 221 0 0 0 0 8 0 0 0 0 0 +2747 1783753688963661100 REFRESH 20 0 0.84128614564508675 2 11 2 11 1 0 106 10 428 3943936 55200 149.1876220703125 0.97650000000000003 177.90049999999999 20160 11977 0 0 983040 737280 737280 737535 748800 174 26 61 71 96 0 0 0 0 10 0 0 0 0 1 +2748 1783753689205192200 REFRESH 52 0 0.62953123341309625 1 8 1 8 0 0 106 0 431 3943915 55200 151.38201904296875 0.9758 222.73480000000001 20160 12486 0 0 983040 737280 737280 737514 748800 135 25 33 157 81 0 0 0 0 0 0 0 0 0 0 +2749 1783753689401151900 REFRESH 22 0 0.62290521048176861 3 11 3 11 0 0 117 10 427 3943885 55200 150.89459228515625 0.97650000000000003 180.4529 20160 12174 0 0 983040 737280 737280 737484 748800 146 25 31 29 196 0 0 0 0 10 0 0 0 0 0 +2750 1783753689586546700 REFRESH 50 0 0.63333024764090051 2 9 2 9 0 0 122 10 420 3943890 55200 150.16960144042969 0.97819999999999996 184.197 20160 12991 0 0 983040 737280 737280 737490 748800 150 25 36 45 164 0 0 0 0 10 0 0 0 0 0 +2751 1783753689787907500 REFRESH 4 0 0.58616298837660918 1 13 1 13 1 0 49 2 421 3943941 55200 149.13020324707031 0.99839999999999995 176.61420000000001 20160 11951 0 0 983040 737280 737280 737541 748800 26 25 37 34 299 0 0 0 1 1 0 0 0 0 1 +2752 1783753690083687300 REFRESH 53 0 0.68694554602564972 0 8 0 8 0 0 142 7 417 3943904 55200 151.00621032714844 0.97240000000000004 189.1223 20160 13502 0 0 983040 737280 737280 737504 748800 135 26 27 48 181 0 0 0 0 7 0 0 0 0 0 +2753 1783753690274030400 REFRESH 34 0 0.63083807268292791 1 13 1 13 0 0 101 5 429 3943916 55200 148.29875183105469 0.97250000000000003 176.20820000000001 20160 12957 0 0 983040 737280 737280 737516 748800 106 25 55 64 179 0 0 0 0 5 0 0 0 0 0 +2754 1783753690453372900 REFRESH 37 0 0.63400020200017515 1 12 1 12 0 0 136 9 429 3943903 55200 149.52345275878906 0.97889999999999999 178.16409999999999 20160 12233 0 0 983040 737280 737280 737503 748800 154 26 48 33 168 0 0 0 0 9 0 0 0 0 0 +2755 1783753690683145400 REFRESH 41 0 0.63020576387161831 1 10 1 10 0 0 110 8 414 3943906 55200 149.32479858398438 0.98360000000000003 203.4821 20160 12824 0 0 983040 737280 737280 737506 748800 131 26 44 45 168 0 0 0 0 8 0 0 0 0 0 +2756 1783753690863894800 REFRESH 43 0 0.63215433382024377 2 13 2 13 1 0 123 11 416 3943906 55200 150.03955078125 0.98050000000000004 179.59139999999999 20160 12135 0 0 983040 737280 737280 737506 748800 156 26 40 57 137 0 0 0 0 11 0 0 0 0 1 +2757 1783753691066341000 REFRESH 57 0 0.6192510567917302 2 12 2 12 0 0 121 7 416 3943914 55200 150.13273620605469 0.97570000000000001 179.35900000000001 20160 12165 0 0 983040 737280 737280 737512 748800 115 26 93 81 101 0 0 0 0 7 0 0 0 0 0 +2758 1783753691283567100 REFRESH 8 0 0.80193857231463594 2 5 2 5 0 0 214 5 414 3943906 55200 151.62982177734375 0.9718 183.4503 20160 13628 0 0 983040 737280 737280 737506 748800 167 26 29 81 111 0 0 0 0 5 0 0 0 0 0 +2759 1783753691477679500 REFRESH 48 0 0.59641970536513478 2 11 2 11 0 0 80 9 431 3943919 55200 149.29306030273438 0.97440000000000004 177.9427 20160 13825 0 0 983040 737280 737280 737519 748800 183 25 50 59 114 0 0 0 0 9 0 0 0 0 0 +2760 1783753691728075600 REFRESH 44 0 0.64452408573406061 2 7 2 7 0 0 133 9 420 3943909 55200 150.46963500976562 0.97309999999999997 223.93000000000001 20160 13429 0 0 983040 737280 737280 737509 748800 88 26 65 30 211 0 0 0 0 9 0 0 0 0 0 +2761 1783753693026006600 DEPTH 56 1 0.80137368565060751 2 5 2 5 0 0 201 42 2572 23664860 81600 856.80009460449219 5.827 1296.7128 120960 65950 1 0 5898240 4423680 4423680 4426460 4492800 493 156 174 298 1451 0 0 0 0 42 0 0 0 0 0 +2762 1783753694297905300 DEPTH 13 1 0.79503060577227647 1 6 1 6 0 0 177 24 2500 23664778 81600 862.34266662597656 5.8344000000000005 1270.7781 120960 65687 1 0 5898240 4423680 4423680 4426378 4492800 253 156 195 189 1707 0 0 0 0 24 0 0 0 0 0 +2763 1783753695341236700 DEPTH 55 1 0.78859260591403635 1 12 1 12 1 0 134 29 2604 23664757 81600 865.32083129882812 5.8687999999999994 1042.0854999999999 120960 59228 1 0 5898240 4423680 4423680 4426356 4492800 508 150 247 371 1328 1 0 0 2 26 1 0 0 0 1 +2764 1783753696672700400 DEPTH 17 1 0.79212838598662938 0 7 0 7 1 0 186 28 2525 23664758 81600 859.22200012207031 5.8486000000000002 1306.6491000000001 120960 66130 1 0 5898240 4423680 4423680 4426357 4492800 215 156 157 225 1772 0 0 0 0 28 0 0 0 0 1 +2765 1783753697710970500 DEPTH 10 1 0.73775110571032321 1 10 1 10 0 0 110 16 2567 23664812 81600 854.02207946777344 5.8431999999999995 1037.0958000000001 120960 61099 1 0 5898240 4423680 4423680 4426411 4492800 507 156 188 189 1527 0 0 0 0 16 0 0 0 0 0 +2766 1783753698773232600 DEPTH 29 1 0.72526073772613509 1 12 1 12 1 0 116 37 2548 23664811 81600 863.49525451660156 5.8449 1036.0827999999999 120960 57295 1 0 5898240 4423680 4423680 4426409 4492800 267 150 209 210 1712 0 0 0 0 37 0 0 0 0 1 +2767 1783753699831596500 DEPTH 20 1 0.76936846252100688 2 11 2 11 0 0 107 15 2623 23664867 81600 857.908203125 5.8983999999999996 1033.2501 120960 56846 1 0 5898240 4423680 4423680 4426466 4492800 556 156 300 431 1180 2 0 0 0 13 0 0 0 0 0 +2768 1783753701058800400 DEPTH 33 1 0.67701952010318245 1 7 1 7 0 0 181 31 2539 23664901 81600 868.07237243652344 5.8199999999999994 1210.7561000000001 120960 65743 1 0 5898240 4423680 4423680 4426500 4492800 198 154 156 150 1881 1 0 0 0 30 0 0 0 0 0 +2769 1783753702368963200 DEPTH 1 1 0.67509514530102943 1 7 1 7 0 0 122 13 2619 23664854 81600 865.20912170410156 5.8376000000000001 1309.0544 120960 65949 1 0 5898240 4423680 4423680 4426452 4492800 393 154 300 309 1463 0 0 0 0 13 0 0 0 0 0 +2770 1783753703650165200 DEPTH 31 1 0.67427862507182568 2 6 2 6 0 0 123 11 2628 23664732 81600 859.22654724121094 5.8372999999999999 1265.9729 120960 65385 1 0 5898240 4423680 4423680 4426329 4492800 975 150 190 336 977 0 0 0 0 11 0 0 0 0 0 +2771 1783753704947544000 DEPTH 11 1 0.6740244953746547 0 8 0 8 0 0 99 16 2535 23664866 81600 853.326416015625 5.8546999999999993 1296.3161 120960 64896 1 0 5898240 4423680 4423680 4426466 4492800 264 150 207 233 1681 0 0 0 1 15 0 0 0 0 0 +2772 1783753706263845900 DEPTH 9 1 0.66827539057292962 2 6 2 6 0 0 123 9 2625 23664841 81600 861.40585327148438 5.8473000000000006 1290.8634999999999 120960 65251 1 0 5898240 4423680 4423680 4426440 4492800 704 150 403 509 859 0 0 0 0 9 0 0 0 0 0 +2773 1783753707375014500 DEPTH 8 1 0.69778333713768059 2 5 2 5 0 0 214 16 2555 23664843 81600 869.30415344238281 5.8415999999999997 1078.4494 120960 66411 1 0 5898240 4423680 4423680 4426442 4492800 293 151 164 201 1746 0 0 0 0 16 0 0 0 0 0 +2774 1783753708638207600 DEPTH 2 1 0.66567846426804622 2 8 2 8 0 0 134 26 2556 23664869 81600 863.3621826171875 5.8398000000000003 1238.2077999999999 120960 64686 1 0 5898240 4423680 4423680 4426468 4492800 156 150 150 150 1950 0 0 0 0 26 0 0 0 0 0 +2775 1783753709670295400 DEPTH 39 1 0.64174969056784481 3 10 3 10 0 0 160 33 2547 23664825 81600 859.52409362792969 5.8309999999999995 1030.8855000000001 120960 60420 1 0 5898240 4423680 4423680 4426425 4492800 220 150 150 156 1871 0 0 0 0 33 0 0 0 0 0 +2776 1783753710815891300 DEPTH 16 1 0.63963315190533043 2 7 2 7 0 0 174 41 2538 23664862 81600 867.34414672851562 5.8349999999999991 1090.5902000000001 120960 64950 1 0 5898240 4423680 4423680 4426462 4492800 162 156 156 519 1545 0 0 0 0 41 0 0 0 0 0 +2777 1783753712145234400 DEPTH 56 1 0.71214066603644766 2 5 2 5 0 0 201 34 2575 23664821 81600 848.56083679199219 5.8850999999999996 1283.8132000000001 120960 54446 1 0 5898240 4423680 4423680 4426419 4492800 477 156 174 318 1450 0 0 0 0 34 0 0 0 0 0 +2778 1783753713437182300 DEPTH 13 1 0.70664106434446083 1 6 1 6 0 0 178 25 2499 23664732 81600 851.14666748046875 6.4068999999999994 1263.6556 120960 54495 1 0 5898240 4423680 4423680 4426331 4492800 236 156 186 209 1712 0 0 0 0 25 0 0 0 0 0 +2779 1783753714726967200 DEPTH 53 1 0.68373868970837859 0 8 0 8 0 0 142 32 2515 23664924 81600 860.67692565917969 5.8249999999999993 1248.9791 120960 65709 1 0 5898240 4423680 4423680 4426524 4492800 198 156 150 168 1843 0 0 0 0 32 0 0 0 0 0 +2780 1783753716024657300 DEPTH 17 1 0.70388949560268965 0 7 0 7 0 0 186 28 2532 23664819 81600 852.85386657714844 5.8415999999999997 1296.5915 120960 54179 1 0 5898240 4423680 4423680 4426419 4492800 211 156 156 245 1764 0 0 0 0 28 0 0 0 0 0 +2781 1783753717064515700 DEPTH 55 1 0.70087171579384955 1 12 1 12 1 0 134 34 2609 23664797 81600 857.73178100585938 5.8545000000000007 1038.6172999999999 120960 48376 1 0 5898240 4423680 4423680 4426396 4492800 525 150 241 437 1256 4 0 0 3 27 4 0 0 0 0 +2782 1783753718090711600 DEPTH 20 1 0.69943256619987304 2 11 2 11 1 0 107 15 2630 23664817 81600 849.01856994628906 5.9462000000000002 1025.0473 120960 45989 1 0 5898240 4423680 4423680 4426415 4492800 639 156 293 567 975 0 0 0 0 15 0 0 0 0 1 +2783 1783753719382906600 DEPTH 30 1 0.63934317628798853 1 9 1 9 0 0 130 22 2531 23664896 81600 862.77944946289062 5.8289 1244.8634 120960 64455 1 0 5898240 4423680 4423680 4426493 4492800 156 150 174 150 1901 0 0 0 0 22 0 0 0 0 0 +2784 1783753720662412100 DEPTH 3 1 0.63785069126720328 2 9 2 9 1 0 142 57 2544 23664892 81600 861.65911865234375 5.8475999999999999 1196.203 120960 62979 1 0 5898240 4423680 4423680 4426488 4492800 334 150 156 241 1663 0 0 0 6 51 0 0 0 0 1 +2785 1783753721729744400 DEPTH 10 1 0.67831061042236007 1 10 1 10 0 0 111 14 2587 23664803 81600 845.5469970703125 5.8679999999999994 1023.8695 120960 49217 1 0 5898240 4423680 4423680 4426402 4492800 805 156 196 204 1226 0 0 0 0 14 0 0 0 0 0 +2786 1783753722814184800 DEPTH 8 1 0.67897202799324152 2 5 2 5 0 0 214 26 2561 23664775 81600 864.56362915039062 5.8413000000000004 1083.3468 120960 55115 1 0 5898240 4423680 4423680 4426375 4492800 274 150 160 197 1780 0 0 0 0 26 0 0 0 0 0 +2787 1783753723843146100 DEPTH 29 1 0.67457908213438755 1 12 1 12 1 0 118 55 2552 23664859 81600 854.15869140625 5.9120000000000008 1027.8357000000001 120960 46369 1 0 5898240 4423680 4423680 4426459 4492800 282 150 213 239 1668 0 0 0 0 55 0 0 0 0 2 +2788 1783753725174493500 DEPTH 44 1 0.64359944895294374 2 7 2 7 0 0 134 20 2582 23664834 81600 860.61592102050781 5.8647000000000009 1303.7293 120960 64728 1 0 5898240 4423680 4423680 4426433 4492800 207 150 240 163 1822 0 0 0 0 20 0 0 0 0 0 +2789 1783753726475253600 DEPTH 21 1 0.63497619083947865 0 10 0 10 0 0 176 29 2603 23664824 81600 862.87477111816406 5.8582999999999998 1299.6380999999999 120960 63019 1 0 5898240 4423680 4423680 4426422 4492800 374 150 167 288 1624 0 0 0 0 29 0 0 0 0 0 +2790 1783753727763858100 DEPTH 45 1 0.63360188718551314 2 7 2 7 0 0 129 19 2628 23664829 81600 865.94485473632812 5.8320999999999996 1249.3390999999999 120960 64972 1 0 5898240 4423680 4423680 4426428 4492800 202 150 198 193 1885 0 0 0 0 19 0 0 0 0 0 +2791 1783753728926068000 DEPTH 50 1 0.63309291838897641 2 9 2 9 0 0 122 32 2571 23664776 81600 855.90521240234375 5.8556999999999997 1135.3748000000001 120960 62099 1 0 5898240 4423680 4423680 4426376 4492800 181 150 172 176 1892 0 0 0 0 32 0 0 0 0 0 +2792 1783753730247634500 DEPTH 56 1 0.70276453080391721 2 5 2 5 0 0 201 24 2577 23664886 81600 845.62522888183594 6.1277999999999997 1294.8294000000001 120960 43113 1 0 5898240 4423680 4423680 4426486 4492800 496 156 174 418 1333 0 0 0 0 24 0 0 0 0 0 +2793 1783753730443498900 REFRESH 7 0 0.62949286101679403 1 12 1 12 0 0 128 11 410 3943935 55200 149.98323059082031 0.97499999999999998 179.4187 20160 12332 0 0 983040 737280 737280 737533 748800 170 26 30 43 141 1 0 0 0 10 0 0 0 0 0 +2794 1783753730636062400 REFRESH 12 0 0.6257773797887094 3 8 3 8 0 0 172 9 413 3943930 55200 150.75640869140625 0.97250000000000003 179.69380000000001 20160 12377 0 0 983040 737280 737280 737530 748800 143 26 37 107 100 0 0 0 0 9 0 0 0 0 0 +2795 1783753730823818400 REFRESH 33 0 0.67760166730636517 1 7 1 7 0 0 181 6 419 3943910 55200 151.69638061523438 0.96889999999999998 186.61259999999999 20160 13443 0 0 983040 737280 737280 737510 748800 110 26 47 41 195 0 0 0 0 6 0 0 0 0 0 +2796 1783753731017067800 REFRESH 49 0 0.62705753956834864 3 10 3 10 0 0 126 6 420 3943885 55200 150.07096862792969 0.97529999999999994 179.4462 20160 12153 0 0 983040 737280 737280 737485 748800 127 26 66 50 151 0 0 0 0 6 0 0 0 0 0 +2797 1783753731197206400 REFRESH 19 0 0.62995620310413436 2 11 2 11 0 0 123 11 424 3943922 55200 150.2791748046875 0.9758 179.03059999999999 20160 12235 0 0 983040 737280 737280 737521 748800 83 25 26 36 254 0 0 0 0 11 0 0 0 0 0 +2798 1783753731406630900 REFRESH 14 0 0.62977856183691805 0 12 0 12 0 0 111 7 417 3943908 55200 149.89823913574219 0.97440000000000004 184.2191 20160 12161 0 0 983040 737280 737280 737508 748800 112 26 29 44 206 0 0 0 0 7 0 0 0 0 0 +2799 1783753731651755400 REFRESH 54 0 0.62576227666520612 1 8 1 8 0 0 112 5 426 3943898 55200 150.37644958496094 0.97589999999999999 219.31739999999999 20160 12880 0 0 983040 737280 737280 737498 748800 147 25 57 120 77 0 0 0 0 5 0 0 0 0 0 +2800 1783753731830619500 REFRESH 20 0 0.71135214061793151 2 11 2 11 0 0 107 3 430 3943903 55200 149.37190246582031 0.97419999999999995 177.75110000000001 20160 12021 0 0 983040 737280 737280 737503 748800 174 26 66 74 90 0 0 0 0 3 0 0 0 0 0 +2801 1783753732035236300 REFRESH 15 0 0.62881453827772149 3 12 3 12 0 0 95 13 420 3943926 55200 150.22361755371094 0.98260000000000003 180.00620000000001 20160 11882 0 0 983040 737280 737280 737526 748800 45 26 33 25 291 0 0 0 1 12 0 0 0 0 0 +2802 1783753732230118800 REFRESH 27 0 0.63067340161859509 0 14 0 14 0 0 138 11 415 3943914 55200 149.98629760742188 0.97529999999999994 179.7773 20160 12118 0 0 983040 737280 737280 737513 748800 80 26 33 33 243 0 0 0 0 11 0 0 0 0 0 +2803 1783753732423522300 REFRESH 42 0 0.63024496213452152 4 12 4 12 0 0 126 10 410 3943916 55200 149.30125427246094 0.97370000000000001 177.82220000000001 20160 12075 0 0 983040 737280 737280 737516 748800 157 25 25 25 178 0 0 0 0 10 0 0 0 0 0 +2804 1783753732618671100 REFRESH 32 0 0.62641406829302893 2 14 2 14 0 0 116 11 429 3943933 55200 150.62629699707031 0.97729999999999995 179.01580000000001 20160 12408 0 0 983040 737280 737280 737533 748800 201 25 33 33 137 0 0 0 0 11 0 0 0 0 0 +2805 1783753732811930200 REFRESH 48 0 0.59831954438649726 2 11 2 11 0 0 81 13 431 3943930 55200 149.28489685058594 0.97489999999999999 178.08410000000001 20160 13799 0 0 983040 737280 737280 737530 748800 173 25 47 55 131 1 0 0 0 12 0 0 0 0 0 +2806 1783753733001081700 REFRESH 53 0 0.68375591156287518 0 8 0 8 0 0 142 7 416 3943891 55200 150.39181518554688 0.97199999999999998 187.93190000000001 20160 13612 0 0 983040 737280 737280 737491 748800 139 26 27 50 174 0 0 0 0 7 0 0 0 0 0 +2807 1783753733225914600 REFRESH 9 0 0.66907888331913989 2 6 2 6 0 0 123 4 439 3943930 55200 151.24581909179688 0.97589999999999999 223.7225 20160 13284 0 0 983040 737280 737280 737530 748800 129 25 81 75 129 0 0 0 0 4 0 0 0 0 0 +2808 1783753733420862400 REFRESH 25 0 0.62657067235641228 3 11 3 11 0 0 113 11 425 3943894 55200 150.06224060058594 0.97340000000000004 179.5129 20160 11904 0 0 983040 737280 737280 737493 748800 90 25 59 74 177 0 0 0 0 11 0 0 0 0 0 +2809 1783753733612691800 REFRESH 34 0 0.6254379044226841 1 13 1 13 0 0 101 7 434 3943911 55200 149.39852905273438 0.97330000000000005 176.7594 20160 12830 0 0 983040 737280 737280 737510 748800 108 25 56 62 183 0 0 0 0 7 0 0 0 0 0 +2810 1783753733822622500 REFRESH 6 0 0.59373464345682514 3 11 3 11 0 0 115 3 416 3943913 55200 150.11123657226562 0.97550000000000003 177.68809999999999 20160 12341 0 0 983040 737280 737280 737513 748800 26 25 25 25 315 0 0 0 0 3 0 0 0 0 0 +2811 1783753734015544100 REFRESH 51 0 0.6291824164040476 3 12 3 12 0 0 91 8 425 3943913 55200 148.59365844726562 0.97540000000000004 177.2312 20160 12820 0 0 983040 737280 737280 737513 748800 79 25 111 83 127 0 0 0 0 8 0 0 0 0 0 +2812 1783753734210604300 REFRESH 38 0 0.62276936058004639 4 14 4 14 0 0 82 7 424 3943925 55200 150.484130859375 0.97709999999999997 178.83109999999999 20160 12373 0 0 983040 737280 737280 737525 748800 56 26 41 39 262 1 0 0 0 6 0 0 0 0 0 +2813 1783753734395746200 REFRESH 50 0 0.60263406518433404 2 9 2 9 0 0 123 6 423 3943884 55200 149.14457702636719 0.97770000000000001 183.9469 20160 12848 0 0 983040 737280 737280 737484 748800 156 25 37 48 157 0 0 0 0 6 0 0 0 0 0 +2814 1783753734593852800 REFRESH 13 0 0.79808804251707466 1 6 1 6 0 0 179 3 415 3943916 55200 150.86492919921875 0.97689999999999999 196.9734 20160 13593 0 0 983040 737280 737280 737515 748800 155 26 55 83 96 0 0 0 0 3 0 0 0 0 0 +2815 1783753734775149000 REFRESH 29 0 0.70492748103750902 1 12 1 12 0 0 118 10 417 3943906 55200 150.71647644042969 0.97989999999999999 180.14269999999999 20160 12138 0 0 983040 737280 737280 737505 748800 151 25 53 58 130 0 0 0 0 10 0 0 0 0 0 +2816 1783753734956456000 REFRESH 35 0 0.63240752519853727 2 11 2 11 0 0 148 12 417 3943907 55200 150.73280334472656 0.97929999999999995 180.1379 20160 12274 0 0 983040 737280 737280 737507 748800 144 25 29 94 125 0 0 0 0 12 0 0 0 0 0 +2817 1783753735151865800 REFRESH 8 0 0.80003340982008231 2 5 2 5 0 0 214 2 416 3943921 55200 152.80931091308594 0.98160000000000003 184.77209999999999 20160 13531 0 0 983040 737280 737280 737520 748800 164 26 29 78 119 0 0 0 0 2 0 0 0 0 0 +2818 1783753735344143700 REFRESH 5 0 0.62356924740056874 2 11 2 11 0 0 91 8 411 3943966 55200 149.03602600097656 0.97670000000000001 176.90539999999999 20160 12957 0 0 983040 737280 737280 737566 748800 66 25 85 116 119 0 0 0 0 8 0 0 0 0 0 +2819 1783753735543007600 REFRESH 37 0 0.63164311063851275 1 12 1 12 0 0 136 4 427 3943892 55200 149.67404174804688 0.9728 178.68600000000001 20160 12076 0 0 983040 737280 737280 737491 748800 160 26 52 34 155 0 0 0 0 4 0 0 0 0 0 +2820 1783753735735727100 REFRESH 46 0 0.62927324882241331 2 15 2 15 0 0 109 9 411 3943901 55200 150.42457580566406 0.96909999999999996 178.9853 20160 12093 0 0 983040 737280 737280 737501 748800 89 26 48 30 218 0 0 0 0 9 0 0 0 0 0 +2821 1783753735958728900 REFRESH 56 0 0.80330671483835481 2 5 2 5 0 0 201 6 417 3943944 55200 150.44096374511719 0.98309999999999997 221.80109999999999 20160 13515 0 0 983040 737280 737280 737544 748800 185 26 51 64 91 0 0 0 0 6 0 0 0 0 0 +2822 1783753736162379900 REFRESH 26 0 0.62412680085651839 1 13 1 13 0 0 78 9 425 3943892 55200 149.86341857910156 0.97519999999999996 178.37639999999999 20160 11890 0 0 983040 737280 737280 737492 748800 37 25 36 51 276 0 0 0 0 9 0 0 0 0 0 +2823 1783753736392035600 REFRESH 41 0 0.62840600956959158 1 10 1 10 0 0 110 8 416 3943917 55200 148.41958618164062 0.97919999999999996 202.8913 20160 12833 0 0 983040 737280 737280 737517 748800 132 26 46 51 161 0 0 0 1 7 0 0 0 0 0 +2824 1783753736575974600 REFRESH 39 0 0.63800797721636293 3 10 3 10 0 0 162 10 411 3943910 55200 150.13580322265625 1.5946 182.74870000000001 20160 12786 0 0 983040 737280 737280 737510 748800 91 28 29 32 231 0 0 0 0 10 0 0 0 0 0 +2825 1783753736775742800 REFRESH 4 0 0.58276911997518011 1 13 1 13 1 0 49 6 414 3943921 55200 148.33648681640625 0.97370000000000001 175.42519999999999 20160 11889 0 0 983040 737280 737280 737521 748800 31 25 48 56 254 0 0 0 0 6 0 0 0 0 1 +2826 1783753736961174100 REFRESH 3 0 0.63544967056963086 2 9 2 9 0 0 142 10 416 3943916 55200 150.47782897949219 0.96970000000000001 184.31540000000001 20160 13366 0 0 983040 737280 737280 737515 748800 191 25 37 63 100 0 0 0 0 10 0 0 0 0 0 +2827 1783753737152932700 REFRESH 45 0 0.63481489897183774 2 7 2 7 0 0 129 5 424 3943905 55200 152.16026306152344 0.9819 190.54400000000001 20160 13369 0 0 983040 737280 737280 737505 748800 126 25 53 51 169 0 0 0 0 5 0 0 0 0 0 +2828 1783753737359112200 REFRESH 28 0 0.62169982855402628 1 12 1 12 0 0 145 9 406 3943915 55200 150.56179809570312 0.97860000000000003 180.78880000000001 20160 12425 0 0 983040 737280 737280 737515 748800 162 26 30 30 158 0 0 0 0 9 0 0 0 0 0 +2829 1783753737580129200 REFRESH 2 0 0.66150454207549658 2 8 2 8 0 0 135 11 419 3943910 55200 150.02726745605469 0.97309999999999997 184.6345 20160 13474 0 0 983040 737280 737280 737508 748800 31 25 61 96 206 0 0 0 0 11 0 0 0 0 0 +2830 1783753737774529400 REFRESH 43 0 0.63007229219268102 2 13 2 13 0 0 124 11 418 3943905 55200 150.26995849609375 0.97140000000000004 179.31960000000001 20160 12076 0 0 983040 737280 737280 737504 748800 153 26 40 57 142 0 0 0 0 11 0 0 0 0 0 +2831 1783753737967837000 REFRESH 36 0 0.62105439021583186 3 10 3 10 0 0 109 10 433 3943911 55200 149.15072631835938 0.97789999999999999 177.81700000000001 20160 12148 0 0 983040 737280 737280 737511 748800 214 25 37 48 109 1 0 0 0 9 0 0 0 0 0 +2832 1783753738165121300 REFRESH 22 0 0.62183191906459756 3 11 3 11 0 0 117 8 424 3943901 55200 151.24070739746094 0.98070000000000002 180.8013 20160 12151 0 0 983040 737280 737280 737500 748800 138 25 31 30 200 0 0 0 0 8 0 0 0 0 0 +2833 1783753738379186100 REFRESH 1 0 0.67643334360252472 1 7 1 7 0 0 122 7 429 3943896 55200 150.73075866699219 0.97660000000000002 212.9855 20160 13256 0 0 983040 737280 737280 737496 748800 132 26 79 79 113 0 0 0 0 7 0 0 0 0 0 +2834 1783753738600702500 REFRESH 31 0 0.67569875388494927 2 6 2 6 0 0 123 5 430 3943890 55200 150.34367370605469 0.97299999999999998 220.3638 20160 13303 0 0 983040 737280 737280 737490 748800 222 25 32 72 79 0 0 0 0 5 0 0 0 0 0 +2835 1783753738818524200 REFRESH 58 0 0.62731598185932125 2 12 2 12 0 0 118 5 426 3943906 55200 150.25730895996094 0.9718 178.13890000000001 20160 12219 0 0 983040 737280 737280 737506 748800 91 26 52 55 202 1 0 0 0 4 0 0 0 0 0 +2836 1783753739010606200 REFRESH 18 0 0.62755695283501356 4 15 4 15 0 0 103 9 414 3943922 55200 149.23878479003906 0.9698 177.376 20160 11948 0 0 983040 737280 737280 737522 748800 27 25 25 27 310 0 0 0 0 9 0 0 0 0 0 +2837 1783753739195432400 REFRESH 16 0 0.63984911189292715 2 7 2 7 0 0 175 6 416 3943925 55200 151.46304321289062 0.97450000000000003 183.483 20160 13411 0 0 983040 737280 737280 737525 748800 33 26 26 234 97 0 0 0 0 6 0 0 0 0 0 +2838 1783753739419755900 REFRESH 44 0 0.64373906140176462 2 7 2 7 0 0 134 5 416 3943926 55200 150.96205139160156 0.98160000000000003 223.0438 20160 13432 0 0 983040 737280 737280 737525 748800 94 26 70 33 193 0 0 0 0 5 0 0 0 0 0 +2839 1783753739600857800 REFRESH 10 0 0.71978384736210965 1 10 1 10 0 0 111 1 429 3943916 55200 150.08665466308594 0.97870000000000001 179.92490000000001 20160 12064 0 0 983040 737280 737280 737516 748800 212 26 43 36 112 0 0 0 0 1 0 0 0 0 0 +2840 1783753739827614100 REFRESH 11 0 0.67560073117149344 0 8 0 8 0 0 99 2 423 3943926 55200 151.70559692382812 0.96970000000000001 225.66329999999999 20160 13465 0 0 983040 737280 737280 737526 748800 122 25 67 74 135 0 0 0 0 2 0 0 0 0 0 +2841 1783753740030656300 REFRESH 21 0 0.63440526270990749 0 10 0 10 0 0 176 7 417 3943915 55200 151.19871520996094 0.97270000000000001 201.9623 20160 13102 0 0 983040 737280 737280 737514 748800 107 26 33 93 158 0 0 0 0 7 0 0 0 0 0 +2842 1783753740234805200 REFRESH 40 0 0.62654440731929895 1 12 1 12 0 0 117 5 417 3943885 55200 150.76153564453125 0.97599999999999998 179.5573 20160 12853 0 0 983040 737280 737280 737485 748800 169 25 38 84 101 0 0 0 0 5 0 0 0 0 0 +2843 1783753740423830700 REFRESH 47 0 0.62583892384035278 2 11 2 11 0 0 112 7 421 3943912 55200 148.7247314453125 0.98129999999999995 177.51840000000001 20160 12358 0 0 983040 737280 737280 737512 748800 135 26 49 33 178 0 0 0 0 7 0 0 0 0 0 +2844 1783753740618593600 REFRESH 23 0 0.62948004898850529 3 14 3 14 0 0 102 9 410 3943907 55200 150.47987365722656 0.97330000000000005 179.54060000000001 20160 11958 0 0 983040 737280 737280 737506 748800 58 25 66 47 214 0 0 0 0 9 0 0 0 0 0 +2845 1783753740856615900 REFRESH 0 0 0.61666659220437592 1 12 1 12 0 0 89 8 425 3943901 55200 148.73703002929688 0.97599999999999998 177.46549999999999 20160 11991 0 0 983040 737280 737280 737501 748800 83 25 46 38 233 0 0 0 0 8 0 0 0 0 0 +2846 1783753741037877900 REFRESH 55 0 0.75521144426429854 1 12 1 12 0 0 134 11 429 3943909 55200 150.69900512695312 0.97799999999999998 180.09739999999999 20160 12378 0 0 983040 737280 737280 737509 748800 128 25 51 88 137 0 0 0 1 10 0 0 0 0 0 +2847 1783753741281767800 REFRESH 52 0 0.62309032484685367 1 8 1 8 0 0 106 3 428 3943908 55200 149.55110168457031 0.97650000000000003 220.14240000000001 20160 12830 0 0 983040 737280 737280 737508 748800 133 25 33 155 82 0 0 0 0 3 0 0 0 0 0 +2848 1783753741506730500 REFRESH 17 0 0.79557282423182885 0 7 0 7 0 0 186 4 411 3943916 55200 150.80960083007812 0.97829999999999995 223.8442 20160 13283 0 0 983040 737280 737280 737516 748800 128 26 41 114 102 0 0 0 0 4 0 0 0 0 0 +2849 1783753741712107300 REFRESH 24 0 0.62820356989679182 4 11 4 11 0 0 132 11 413 3943893 55200 150.13069152832031 0.97970000000000002 179.7397 20160 11957 0 0 983040 737280 737280 737493 748800 73 26 54 63 197 0 0 0 0 11 0 0 0 0 0 +2850 1783753741906619800 REFRESH 57 0 0.61577594240934586 2 12 2 12 0 0 121 7 418 3943921 55200 150.19622802734375 0.97299999999999998 178.9958 20160 12073 0 0 983040 737280 737280 737520 748800 116 26 92 83 101 0 0 0 0 7 0 0 0 0 0 +2851 1783753742094115700 REFRESH 30 0 0.63785701534286687 1 9 1 9 0 0 130 8 413 3943902 55200 150.64576721191406 0.97850000000000004 186.3503 20160 13318 0 0 983040 737280 737280 737502 748800 66 25 41 32 249 0 0 0 0 8 0 0 0 0 0 +2852 1783753743419896400 DEPTH 56 1 0.79974215645536417 2 5 2 5 0 0 201 31 2577 23664798 81600 858.34342956542969 5.8567999999999998 1295.7899 120960 65717 1 0 5898240 4423680 4423680 4426398 4492800 526 156 174 320 1401 0 0 0 0 31 0 0 0 0 0 +2853 1783753744513278500 DEPTH 8 1 0.79294427048535876 2 5 2 5 0 0 214 21 2561 23664914 81600 868.90179443359375 5.8523000000000005 1079.441 120960 65904 1 0 5898240 4423680 4423680 4426513 4492800 270 150 160 177 1804 0 0 0 0 21 0 0 0 0 0 +2854 1783753745821208500 DEPTH 13 1 0.79234239516791272 1 6 1 6 0 0 179 24 2498 23664822 81600 861.96572875976562 5.8245000000000005 1271.9879000000001 120960 66248 1 0 5898240 4423680 4423680 4426421 4492800 250 155 187 195 1711 0 0 0 0 24 0 0 0 0 0 +2855 1783753746851131600 DEPTH 20 1 0.75804144290786202 2 11 2 11 0 0 109 28 2626 23664892 81600 857.71751403808594 5.8513999999999999 1028.771 120960 57679 1 0 5898240 4423680 4423680 4426490 4492800 683 156 300 471 1016 2 0 0 0 26 0 0 0 0 0 +2856 1783753747886778600 DEPTH 29 1 0.69601776810894611 1 12 1 12 1 0 118 39 2558 23664833 81600 863.12496948242188 5.8632000000000009 1034.4177999999999 120960 57487 1 0 5898240 4423680 4423680 4426432 4492800 283 150 208 216 1701 3 0 0 0 36 0 0 0 0 1 +2857 1783753749136945700 DEPTH 53 1 0.68076314138086169 0 8 0 8 0 0 142 33 2517 23664880 81600 863.661376953125 5.8361999999999998 1248.8677 120960 65313 1 0 5898240 4423680 4423680 4426480 4492800 197 156 150 174 1840 0 0 0 0 33 0 0 0 0 0 +2858 1783753750398666600 DEPTH 33 1 0.6741617860990391 1 7 1 7 0 0 181 33 2537 23664794 81600 869.46101379394531 5.8431000000000006 1222.0494000000001 120960 66043 1 0 5898240 4423680 4423680 4426393 4492800 198 153 156 150 1880 0 0 0 0 33 0 0 0 0 0 +2859 1783753751810552100 DEPTH 9 1 0.66476775010994382 2 6 2 6 0 0 123 8 2618 23664892 81600 867.931884765625 5.8307000000000002 1298.6076 120960 64751 1 0 5898240 4423680 4423680 4426490 4492800 692 150 382 507 887 0 0 0 0 8 0 0 0 0 0 +2860 1783753753121906000 DEPTH 1 1 0.67441057351351419 1 7 1 7 0 0 122 12 2624 23664857 81600 864.46159362792969 5.8643000000000001 1310.2043000000001 120960 65689 1 0 5898240 4423680 4423680 4426457 4492800 391 156 300 292 1485 0 0 0 0 12 0 0 0 0 0 +2861 1783753754390826900 DEPTH 31 1 0.67174975841173701 2 6 2 6 0 0 123 11 2621 23664840 81600 860.67698669433594 5.8739999999999997 1267.7802999999999 120960 65189 1 0 5898240 4423680 4423680 4426438 4492800 978 150 190 348 955 0 0 0 0 11 0 0 0 0 0 +2862 1783753755439230600 DEPTH 10 1 0.68278200137888967 1 10 1 10 0 0 111 17 2580 23664834 81600 854.29901123046875 5.8340000000000005 1032.3204000000001 120960 59106 1 0 5898240 4423680 4423680 4426433 4492800 882 156 199 196 1147 0 0 0 0 17 0 0 0 0 0 +2863 1783753756742349000 DEPTH 17 1 0.6908736086059134 0 7 0 7 0 0 186 22 2539 23664768 81600 858.902587890625 5.8677999999999999 1302.0181 120960 64758 1 0 5898240 4423680 4423680 4426365 4492800 211 156 156 227 1789 0 0 0 0 22 0 0 0 0 0 +2864 1783753758030091000 DEPTH 2 1 0.65755793240467852 2 8 2 8 0 0 135 24 2557 23664904 81600 863.42088317871094 5.8647000000000009 1248.5703000000001 120960 64754 1 0 5898240 4423680 4423680 4426501 4492800 156 150 150 150 1951 0 0 0 0 24 0 0 0 0 0 +2865 1783753759088673800 DEPTH 39 1 0.63446928753684284 3 10 3 8 1 0 163 37 2546 23664902 81600 859.31491088867188 5.8532000000000002 1032.673 120960 61590 1 0 5898240 4423680 4423680 4426502 4492800 222 150 150 161 1863 0 0 0 0 37 0 0 0 0 1 +2866 1783753760311228700 DEPTH 3 1 0.63315571805530424 2 9 2 9 1 0 142 39 2536 23664874 81600 860.34033203125 5.8682999999999996 1199.5516 120960 64066 1 0 5898240 4423680 4423680 4426474 4492800 374 150 156 231 1625 0 0 0 0 39 0 0 0 0 1 +2867 1783753761555878600 DEPTH 45 1 0.63080639504262459 2 7 2 7 0 0 129 27 2629 23664756 81600 866.0924072265625 5.8338000000000001 1243.4079999999999 120960 64535 1 0 5898240 4423680 4423680 4426355 4492800 210 150 200 208 1861 0 0 0 0 27 0 0 0 0 0 +2868 1783753762599223600 DEPTH 55 1 0.71051106352473115 1 12 1 12 0 0 134 32 2600 23664885 81600 866.96868896484375 5.8659999999999997 1042.0842 120960 59697 1 0 5898240 4423680 4423680 4426484 4492800 537 150 246 467 1200 2 0 0 3 27 0 0 0 0 0 +2869 1783753763906828600 DEPTH 56 1 0.72043435695391145 2 5 2 5 0 0 201 26 2583 23664825 81600 848.25729370117188 5.8239000000000001 1286.2923000000001 120960 54100 1 0 5898240 4423680 4423680 4426423 4492800 524 156 174 375 1354 0 0 0 0 26 0 0 0 0 0 +2870 1783753764989710100 DEPTH 8 1 0.71444830582794272 2 5 2 5 0 0 214 23 2556 23664748 81600 862.6917724609375 6.1934000000000005 1081.7430999999999 120960 55121 1 0 5898240 4423680 4423680 4426346 4492800 302 151 163 204 1736 0 0 0 0 23 0 0 0 0 0 +2871 1783753766260175700 DEPTH 13 1 0.71404201509411658 1 6 1 6 0 0 181 22 2502 23664914 81600 852.66720581054688 5.8700000000000001 1262.1389999999999 120960 54082 1 0 5898240 4423680 4423680 4426514 4492800 258 156 200 232 1656 0 0 0 0 22 0 0 0 0 0 +2872 1783753767594162100 DEPTH 11 1 0.66879082488607522 0 8 0 8 1 0 100 12 2539 23664950 81600 855.56639099121094 5.8940000000000001 1296.5381 120960 65556 1 0 5898240 4423680 4423680 4426550 4492800 234 150 200 215 1740 0 0 0 0 12 0 0 0 0 1 +2873 1783753768923499200 DEPTH 44 1 0.63870106112715175 2 7 2 7 0 0 134 18 2585 23664858 81600 861.00567626953125 5.8242999999999991 1307.8603000000001 120960 64216 1 0 5898240 4423680 4423680 4426455 4492800 217 150 254 179 1785 0 0 0 0 18 0 0 0 0 0 +2874 1783753770018386600 DEPTH 16 1 0.63585600748452042 2 7 2 7 0 0 175 30 2551 23664881 81600 866.46174621582031 5.8315000000000001 1093.7969000000001 120960 65220 1 0 5898240 4423680 4423680 4426480 4492800 157 156 156 617 1465 0 0 0 0 30 0 0 0 0 0 +2875 1783753771334764300 DEPTH 21 1 0.63069655498728061 0 10 0 10 0 0 176 36 2582 23664891 81600 863.93099975585938 5.8543999999999992 1293.5428999999999 120960 64014 1 0 5898240 4423680 4423680 4426489 4492800 377 150 169 302 1584 0 0 0 0 36 0 0 0 0 0 +2876 1783753772366116300 DEPTH 39 1 0.70816669486119921 3 8 3 8 0 0 165 40 2549 23664959 81600 852.73905944824219 5.8279000000000005 1030.1735000000001 120960 50749 1 0 5898240 4423680 4423680 4426559 4492800 221 150 151 162 1865 0 0 0 0 40 0 0 0 0 0 +2877 1783753773415503400 DEPTH 20 1 0.71374901855133399 2 11 2 11 0 0 110 19 2624 23664972 81600 851.68919372558594 5.8453999999999997 1025.3807999999999 120960 46938 1 0 5898240 4423680 4423680 4426572 4492800 697 152 301 597 877 5 0 0 0 14 0 0 0 0 0 +2878 1783753774735727500 DEPTH 17 1 0.69258139737717661 0 7 0 7 0 0 186 32 2529 23664849 81600 852.12757873535156 5.8162999999999991 1295.9083000000001 120960 53723 1 0 5898240 4423680 4423680 4426446 4492800 210 156 158 269 1736 0 0 0 0 32 0 0 0 0 0 +2879 1783753775765037200 DEPTH 29 1 0.66777334640151698 1 12 1 12 1 0 119 55 2598 23664877 81600 852.91517639160156 5.8439999999999994 1028.1594 120960 46661 1 0 5898240 4423680 4423680 4426474 4492800 223 150 179 188 1858 0 0 2 0 53 0 0 2 0 0 +2880 1783753777031111100 DEPTH 30 1 0.6342589595200181 1 9 1 9 1 0 130 29 2538 23664831 81600 861.02122497558594 5.8703000000000003 1243.5275999999999 120960 65008 1 0 5898240 4423680 4423680 4426429 4492800 156 150 174 150 1908 0 0 0 0 29 0 0 0 0 1 +2881 1783753778089502700 DEPTH 35 1 0.63067931750772899 2 11 2 11 0 0 149 72 2530 23664798 81600 860.73432922363281 5.8689 1035.2926 120960 57965 1 0 5898240 4423680 4423680 4426394 4492800 333 150 156 221 1670 0 1 0 0 71 0 0 0 0 0 +2882 1783753779145762300 DEPTH 27 1 0.62882562625001559 0 14 0 14 1 0 140 39 2567 23664768 81600 858.97923278808594 5.8464 1031.808 120960 57721 1 0 5898240 4423680 4423680 4426368 4492800 212 156 156 172 1871 0 0 0 0 39 0 0 0 0 1 +2883 1783753780333688800 DEPTH 50 1 0.62827120928994595 2 9 2 9 0 0 123 27 2590 23664840 81600 854.63453674316406 5.8669000000000002 1164.5862999999999 120960 61394 1 0 5898240 4423680 4423680 4426440 4492800 175 150 168 169 1928 1 0 0 0 26 0 0 0 0 0 +2884 1783753780556848500 REFRESH 7 0 0.62798854965493334 1 12 1 12 0 0 128 10 416 3943915 55200 149.89208984375 0.97709999999999997 180.0829 20160 12312 0 0 983040 737280 737280 737515 748800 147 26 29 32 182 1 0 0 0 9 0 0 0 0 0 +2885 1783753780769338100 REFRESH 1 0 0.67548415852774202 1 7 1 7 0 0 122 4 427 3943887 55200 149.81222534179688 0.97360000000000002 211.42060000000001 20160 13449 0 0 983040 737280 737280 737487 748800 133 26 78 80 110 0 0 0 0 4 0 0 0 0 0 +2886 1783753780956089100 REFRESH 50 0 0.40791075168312008 2 9 2 9 0 0 123 10 421 3943911 55200 151.12294006347656 0.97240000000000004 185.57140000000001 20160 12415 0 0 983040 737280 737280 737510 748800 152 25 36 47 161 1 0 0 0 9 0 0 0 0 0 +2887 1783753781156652000 REFRESH 57 0 0.61224011792297817 2 12 2 12 0 0 121 5 418 3943903 55200 150.77151489257812 0.97089999999999999 179.49529999999999 20160 12178 0 0 983040 737280 737280 737503 748800 118 26 92 82 100 0 0 0 0 5 0 0 0 0 0 +2888 1783753781345642600 REFRESH 51 0 0.62643892618192398 3 12 3 12 0 0 91 10 418 3943911 55200 149.32684326171875 0.98050000000000004 177.26060000000001 20160 12680 0 0 983040 737280 737280 737511 748800 83 25 110 83 117 0 0 0 0 10 0 0 0 0 0 +2889 1783753781538032500 REFRESH 43 0 0.6279655674933966 2 13 2 13 0 0 125 13 418 3943939 55200 150.52595520019531 0.97230000000000005 179.96559999999999 20160 12039 0 0 983040 737280 737280 737539 748800 159 26 41 61 131 0 0 0 0 13 0 0 0 0 0 +2890 1783753781797022300 REFRESH 22 0 0.61859954504903147 3 11 3 11 0 0 117 13 424 3943894 55200 151.49055480957031 0.97160000000000002 180.98830000000001 20160 12050 0 0 983040 737280 737280 737493 748800 141 25 31 29 198 0 0 0 0 13 0 0 0 0 0 +2891 1783753781989879900 REFRESH 24 0 0.62719140848734345 4 11 4 11 0 0 132 8 413 3943922 55200 150.43891906738281 0.97519999999999996 180.756 20160 11947 0 0 983040 737280 737280 737521 748800 59 26 43 50 235 0 0 0 0 8 0 0 0 0 0 +2892 1783753782209623400 REFRESH 31 0 0.6731114066667645 2 6 2 6 0 0 123 7 429 3943954 55200 150.9959716796875 0.97409999999999997 218.5752 20160 13362 0 0 983040 737280 737280 737554 748800 221 25 32 73 78 0 0 0 0 7 0 0 0 0 0 +2893 1783753782411236000 REFRESH 25 0 0.6261237032169138 3 11 3 11 0 0 113 10 418 3943937 55200 150.46134948730469 0.9798 178.8638 20160 11852 0 0 983040 737280 737280 737537 748800 79 25 56 73 185 0 0 0 0 10 0 0 0 0 0 +2894 1783753782601585200 REFRESH 34 0 0.62252373880165424 1 13 1 13 0 0 101 6 429 3943905 55200 148.73394775390625 0.99929999999999997 177.38140000000001 20160 12741 0 0 983040 737280 737280 737505 748800 111 25 55 62 176 0 0 0 0 6 0 0 0 0 0 +2895 1783753782825862200 REFRESH 11 0 0.65053025758446426 0 8 0 8 0 0 100 6 413 3943895 55200 150.4215087890625 0.98219999999999996 223.23060000000001 20160 13289 0 0 983040 737280 737280 737495 748800 92 25 56 62 178 0 0 0 0 6 0 0 0 0 0 +2896 1783753783027083200 REFRESH 19 0 0.62826881532115486 2 11 2 11 0 0 123 10 425 3943890 55200 150.74534606933594 0.97819999999999996 179.6703 20160 12327 0 0 983040 737280 737280 737490 748800 119 25 26 42 213 0 0 0 0 10 0 0 0 0 0 +2897 1783753783207976400 REFRESH 35 0 0.53875507897304786 2 11 2 11 0 0 150 9 418 3943898 55200 149.36268615722656 0.97270000000000001 179.69 20160 12433 0 0 983040 737280 737280 737498 748800 146 25 30 98 119 0 0 0 0 9 0 0 0 0 0 +2898 1783753783399149600 REFRESH 42 0 0.62832547980375808 4 12 4 11 1 0 126 17 409 3943888 55200 151.16595458984375 0.98270000000000002 178.91980000000001 20160 12058 0 0 983040 737280 737280 737488 748800 158 25 26 31 169 0 0 0 0 17 0 0 0 0 1 +2899 1783753783596044800 REFRESH 14 0 0.62693207674661522 0 12 0 12 0 0 111 9 421 3943905 55200 149.8787841796875 0.97829999999999995 184.1139 20160 12161 0 0 983040 737280 737280 737505 748800 115 26 29 47 204 0 0 0 0 9 0 0 0 0 0 +2900 1783753783785193700 REFRESH 4 0 0.5835170956144744 1 13 1 13 1 0 49 3 425 3943888 55200 150.37849426269531 0.97519999999999996 177.80090000000001 20160 13019 0 0 983040 737280 737280 737488 748800 26 25 38 35 301 0 0 0 0 3 0 0 0 0 1 +2901 1783753783977057700 REFRESH 18 0 0.62448330599975854 4 15 4 15 0 0 103 9 415 3943937 55200 149.50912475585938 0.97230000000000005 178.1027 20160 11947 0 0 983040 737280 737280 737537 748800 28 25 25 27 310 0 0 0 0 9 0 0 0 0 0 +2902 1783753784167064400 REFRESH 33 0 0.67491528932765077 1 7 1 7 0 0 181 4 417 3943924 55200 152.89958190917969 0.98240000000000005 188.8434 20160 13553 0 0 983040 737280 737280 737524 748800 109 26 40 34 208 0 0 0 0 4 0 0 0 0 0 +2903 1783753784360748400 REFRESH 23 0 0.62660801262617882 3 14 3 14 0 0 102 15 410 3943911 55200 150.35494995117188 0.9758 178.8921 20160 11964 0 0 983040 737280 737280 737510 748800 58 25 55 45 227 0 0 0 0 15 0 0 0 0 0 +2904 1783753784554421700 REFRESH 40 0 0.61909446200186258 1 12 1 12 0 0 117 9 419 3943924 55200 150.31500244140625 0.97230000000000005 178.99690000000001 20160 12881 0 0 983040 737280 737280 737523 748800 166 25 38 87 103 0 0 0 0 9 0 0 0 0 0 +2905 1783753784743096200 REFRESH 30 0 0.63319512158679458 1 9 1 9 0 0 131 11 417 3943913 55200 150.83212280273438 0.97319999999999995 187.4795 20160 13282 0 0 983040 737280 737280 737513 748800 63 25 43 33 253 0 0 0 0 11 0 0 0 0 0 +2906 1783753784947060400 REFRESH 58 0 0.62095755573524536 2 12 2 12 0 0 119 7 425 3943936 55200 150.97062683105469 0.97289999999999999 179.3075 20160 12349 0 0 983040 737280 737280 737535 748800 100 26 59 61 179 0 0 0 0 7 0 0 0 0 0 +2907 1783753785128734900 REFRESH 55 0 0.72719864702151316 1 12 1 12 1 0 134 8 430 3943900 55200 150.69801330566406 0.97570000000000001 180.52860000000001 20160 12484 0 0 983040 737280 737280 737500 748800 137 25 54 102 112 0 0 0 0 8 0 0 0 0 1 +2908 1783753785353256300 REFRESH 56 0 0.80106287968631928 2 5 2 5 0 0 201 4 416 3943908 55200 150.83993530273438 0.97050000000000003 223.35249999999999 20160 13378 0 0 983040 737280 737280 737508 748800 186 26 51 64 89 0 0 0 0 4 0 0 0 0 0 +2909 1783753785557136600 REFRESH 5 0 0.62219698463774753 2 11 2 11 0 0 91 3 418 3943910 55200 149.89888000488281 0.97219999999999995 177.06479999999999 20160 12924 0 0 983040 737280 737280 737510 748800 74 26 92 118 108 0 0 0 0 3 0 0 0 0 0 +2910 1783753785737742100 REFRESH 27 0 0.62685200032080712 0 14 0 14 0 0 141 9 411 3943921 55200 150.37338256835938 1.0037 179.4067 20160 12166 0 0 983040 737280 737280 737521 748800 81 26 33 32 239 0 0 0 0 9 0 0 0 0 0 +2911 1783753785940786100 REFRESH 28 0 0.61977721025242549 1 12 1 12 0 0 146 8 403 3943906 55200 151.18234252929688 0.97489999999999999 181.13650000000001 20160 12337 0 0 983040 737280 737280 737506 748800 166 26 31 31 149 0 0 0 0 8 0 0 0 0 0 +2912 1783753786123685500 REFRESH 10 0 0.69641970915817675 1 10 1 10 0 0 111 3 432 3943919 55200 150.65907287597656 0.98550000000000004 181.80350000000001 20160 12985 0 0 983040 737280 737280 737519 748800 243 26 43 36 84 0 0 0 0 3 0 0 0 0 0 +2913 1783753786326920300 REFRESH 6 0 0.58765667574585911 3 11 3 11 0 0 115 6 411 3943932 55200 150.68022155761719 0.9798 178.2636 20160 12414 0 0 983040 737280 737280 737532 748800 26 25 25 25 310 0 0 0 0 6 0 0 0 0 0 +2914 1783753786521941200 REFRESH 15 0 0.62785681025398643 3 12 3 12 0 0 95 13 417 3943893 55200 150.56793212890625 0.9768 179.4171 20160 12033 0 0 983040 737280 737280 737492 748800 45 26 33 25 288 0 0 1 1 11 0 0 0 0 0 +2915 1783753786703316600 REFRESH 20 0 0.73078731321460855 2 11 2 11 0 0 110 8 433 3943924 55200 149.65863037109375 0.97099999999999997 179.98339999999999 20160 12028 0 0 983040 737280 737280 737524 748800 169 26 69 79 90 0 0 0 0 8 0 0 0 0 0 +2916 1783753786910136300 REFRESH 53 0 0.68100971580582248 0 8 0 8 0 0 142 5 415 3943897 55200 151.98208618164062 0.99450000000000005 190.4847 20160 13415 0 0 983040 737280 737280 737497 748800 140 26 27 50 172 0 0 0 0 5 0 0 0 0 0 +2917 1783753787105343300 REFRESH 47 0 0.62236822699633043 2 11 2 11 0 0 112 6 423 3943918 55200 150.22079467773438 0.99119999999999997 179.48269999999999 20160 12208 0 0 983040 737280 737280 737518 748800 129 26 47 31 190 0 0 0 0 6 0 0 0 0 0 +2918 1783753787303282500 REFRESH 49 0 0.62247984454424898 3 10 3 10 0 0 126 9 423 3943925 55200 150.7799072265625 0.97629999999999995 183.60300000000001 20160 12288 0 0 983040 737280 737280 737525 748800 141 26 75 61 120 0 0 0 0 9 0 0 0 0 0 +2919 1783753787507250900 REFRESH 21 0 0.63027341982375384 0 10 0 10 0 0 176 11 417 3943918 55200 150.51469421386719 0.97319999999999995 202.8108 20160 13175 0 0 983040 737280 737280 737518 748800 104 26 33 85 169 0 0 0 0 11 0 0 0 0 0 +2920 1783753787708792200 REFRESH 12 0 0.6253385805082381 3 8 3 8 0 0 172 13 413 3943902 55200 150.02009582519531 0.97460000000000002 179.6677 20160 12328 0 0 983040 737280 737280 737502 748800 136 26 37 98 116 0 0 0 0 13 0 0 0 0 0 +2921 1783753787903747300 REFRESH 0 0 0.61551285532861133 1 12 1 12 0 0 89 5 427 3943926 55200 150.62937927246094 0.97599999999999998 178.75219999999999 20160 11874 0 0 983040 737280 737280 737525 748800 87 25 46 42 227 0 0 0 0 5 0 0 0 0 0 +2922 1783753788154884300 REFRESH 54 0 0.62390232935491252 1 8 1 8 0 0 112 5 425 3943903 55200 151.04716491699219 0.9778 220.6764 20160 13194 0 0 983040 737280 737280 737503 748800 147 25 58 118 77 0 0 0 0 5 0 0 0 0 0 +2923 1783753788345032500 REFRESH 38 0 0.61944125022685326 4 14 4 14 0 0 82 4 422 3943907 55200 149.62380981445312 0.97950000000000004 177.99889999999999 20160 12501 0 0 983040 737280 737280 737507 748800 63 26 44 40 249 0 0 0 0 4 0 0 0 0 0 +2924 1783753788544800400 REFRESH 13 0 0.79561738217599842 1 6 1 6 0 0 181 3 416 3943909 55200 150.30680847167969 0.98050000000000004 198.65190000000001 20160 13380 0 0 983040 737280 737280 737509 748800 149 26 51 89 101 0 0 0 0 3 0 0 0 0 0 +2925 1783753788746264700 REFRESH 26 0 0.62387636070775343 1 13 1 13 0 0 78 6 424 3943911 55200 150.85874938964844 0.97099999999999997 178.6765 20160 12460 0 0 983040 737280 737280 737511 748800 36 25 33 45 285 0 0 0 0 6 0 0 0 0 0 +2926 1783753788936633900 REFRESH 45 0 0.63216105945693302 2 7 2 7 0 0 130 5 428 3943916 55200 151.66770935058594 0.97840000000000005 189.15799999999999 20160 13486 0 0 983040 737280 737280 737516 748800 129 25 55 51 168 0 0 0 0 5 0 0 0 0 0 +2927 1783753789155492800 REFRESH 2 0 0.65399818317831437 2 8 2 8 0 0 136 8 415 3943915 55200 151.43116760253906 0.98470000000000002 188.22630000000001 20160 13503 0 0 983040 737280 737280 737515 748800 38 25 66 109 177 0 0 0 0 8 0 0 0 0 0 +2928 1783753789351721600 REFRESH 46 0 0.62644163065511926 2 15 2 15 0 0 109 16 413 3943894 55200 150.79525756835938 0.98560000000000003 181.53190000000001 20160 12062 0 0 983040 737280 737280 737494 748800 90 26 50 31 216 0 0 0 0 16 0 0 0 0 0 +2929 1783753789603748400 REFRESH 9 0 0.66486051858349826 2 6 2 6 0 0 123 2 435 3943914 55200 150.86796569824219 1.0081 225.273 20160 13654 0 0 983040 737280 737280 737514 748800 148 25 86 80 96 0 0 0 0 2 0 0 0 0 0 +2930 1783753789789396000 REFRESH 3 0 0.63106239000313269 2 9 2 9 0 0 142 4 419 3943879 55200 150.13786315917969 0.99819999999999998 183.9769 20160 13341 0 0 983040 737280 737280 737479 748800 199 25 38 64 93 0 0 0 0 4 0 0 0 0 0 +2931 1783753790027625900 REFRESH 52 0 0.62009860628486257 1 8 1 8 0 0 107 5 432 3943914 55200 150.19212341308594 0.98080000000000001 222.10470000000001 20160 12658 0 0 983040 737280 737280 737513 748800 134 25 33 156 84 0 0 0 0 5 0 0 0 0 0 +2932 1783753790252898700 REFRESH 44 0 0.63914808362503628 2 7 2 7 0 0 134 4 421 3943921 55200 150.84748840332031 0.97409999999999997 224.09110000000001 20160 13370 0 0 983040 737280 737280 737521 748800 87 26 63 30 215 0 0 0 0 4 0 0 0 0 0 +2933 1783753790457783400 REFRESH 8 0 0.79587811638486483 2 5 2 5 0 0 214 7 413 3943903 55200 151.32365417480469 0.97760000000000002 183.23769999999999 20160 13669 0 0 983040 737280 737280 737503 748800 148 26 29 66 144 0 0 0 0 7 0 0 0 0 0 +2934 1783753790638554900 REFRESH 39 0 0.82511486204590079 3 8 3 8 0 0 165 8 410 3943924 55200 150.37542724609375 0.97419999999999995 179.6223 20160 13066 0 0 983040 737280 737280 737524 748800 79 28 29 32 242 0 0 0 0 8 0 0 0 0 0 +2935 1783753790819205100 REFRESH 29 0 0.68051614348679101 1 12 1 12 0 0 119 15 420 3943907 55200 150.44163513183594 0.97589999999999999 179.47900000000001 20160 12302 0 0 983040 737280 737280 737507 748800 100 25 42 36 217 0 0 0 0 15 0 0 0 0 0 +2936 1783753791015656700 REFRESH 36 0 0.62100962371552626 3 10 3 10 0 0 110 8 434 3943893 55200 150.5350341796875 0.97819999999999996 179.86080000000001 20160 12084 0 0 983040 737280 737280 737493 748800 214 25 37 49 109 0 0 0 1 7 0 0 0 0 0 +2937 1783753791241523000 REFRESH 17 0 0.79418787088346132 0 7 0 7 0 0 186 6 411 3943928 55200 150.48704528808594 0.97270000000000001 224.76750000000001 20160 13845 0 0 983040 737280 737280 737528 748800 120 26 40 110 115 0 0 0 0 6 0 0 0 0 0 +2938 1783753791441723000 REFRESH 48 0 0.60125369118203542 2 11 2 10 1 0 83 15 428 3943901 55200 149.36781311035156 0.97170000000000001 177.90649999999999 20160 13840 0 0 983040 737280 737280 737501 748800 139 25 42 50 172 1 0 0 0 14 0 0 0 0 1 +2939 1783753791625552500 REFRESH 16 0 0.63626247055374652 2 7 2 7 0 0 175 7 417 3943929 55200 150.99494934082031 0.97140000000000004 182.7056 20160 13604 0 0 983040 737280 737280 737529 748800 34 26 26 238 93 0 0 0 0 7 0 0 0 0 0 +2940 1783753791854238700 REFRESH 41 0 0.62684637702645007 1 10 1 10 0 0 110 8 416 3943930 55200 150.06690979003906 0.97670000000000001 202.67420000000001 20160 12913 0 0 983040 737280 737280 737529 748800 133 26 47 51 159 0 0 0 1 7 0 0 0 0 0 +2941 1783753792046792000 REFRESH 32 0 0.62527129504664458 2 14 2 14 0 0 116 12 428 3943890 55200 149.24595642089844 0.97599999999999998 177.8535 20160 12354 0 0 983040 737280 737280 737490 748800 239 25 33 33 98 0 0 0 0 12 0 0 0 0 0 +2942 1783753792241000700 REFRESH 37 0 0.62461693518454198 1 12 1 12 0 0 136 6 427 3943911 55200 150.08256530761719 0.97940000000000005 179.1686 20160 12270 0 0 983040 737280 737280 737511 748800 160 26 54 34 153 0 0 0 0 6 0 0 0 0 0 +2943 1783753793538432700 DEPTH 56 1 0.79556237619590764 2 5 2 5 0 0 201 21 2573 23664808 81600 858.52659606933594 5.8222999999999994 1296.2239999999999 120960 65086 1 0 5898240 4423680 4423680 4426407 4492800 524 156 174 309 1410 0 0 0 0 21 0 0 0 0 0 +2944 1783753794830951800 DEPTH 13 1 0.73988249866651068 1 6 1 6 0 0 181 20 2499 23664897 81600 862.42459106445312 5.8445999999999998 1267.2668000000001 120960 65584 1 0 5898240 4423680 4423680 4426495 4492800 250 156 196 204 1693 0 0 0 0 20 0 0 0 0 0 +2945 1783753795866394700 DEPTH 42 1 0.72954950153923903 4 11 4 11 1 0 127 28 2576 23664826 81600 859.20846557617188 5.8872 1034.2618 120960 57541 1 0 5898240 4423680 4423680 4426425 4492800 171 150 150 150 1955 0 0 0 0 28 0 0 0 0 1 +2946 1783753796897927200 DEPTH 20 1 0.71693023396747169 2 11 2 11 0 0 111 24 2614 23664879 81600 857.89913940429688 5.8723000000000001 1030.3784000000001 120960 58058 1 0 5898240 4423680 4423680 4426478 4492800 758 152 333 478 893 2 0 0 0 22 0 0 0 0 0 +2947 1783753797981904800 DEPTH 55 1 0.7130764781111345 1 12 1 12 0 0 135 30 2596 23664857 81600 867.17791748046875 5.8445 1044.0510999999999 120960 59874 1 0 5898240 4423680 4423680 4426456 4492800 544 150 255 448 1199 1 1 0 0 28 0 0 0 0 0 +2948 1783753799034131000 DEPTH 10 1 0.68345631184624978 1 10 1 10 0 0 112 12 2580 23664837 81600 856.23468017578125 5.8469999999999995 1036.8818000000001 120960 60445 1 0 5898240 4423680 4423680 4426436 4492800 880 156 206 206 1132 0 0 0 0 12 0 0 0 0 0 +2949 1783753800288229100 DEPTH 53 1 0.67605694868473898 0 8 0 8 0 0 142 44 2515 23664823 81600 863.75718688964844 5.8395000000000001 1252.893 120960 65020 1 0 5898240 4423680 4423680 4426420 4492800 196 156 150 168 1845 0 0 0 0 44 0 0 0 0 0 +2950 1783753801575478200 DEPTH 31 1 0.67133624560663241 2 6 2 6 0 0 124 10 2625 23664903 81600 860.87322998046875 5.8413000000000004 1271.2518 120960 65137 1 0 5898240 4423680 4423680 4426501 4492800 982 150 190 321 982 0 0 0 0 10 0 0 0 0 0 +2951 1783753802664951600 DEPTH 8 1 0.72398165106818668 2 5 2 5 0 0 214 29 2556 23664875 81600 868.96914672851562 5.8296000000000001 1088.2947999999999 120960 66659 1 0 5898240 4423680 4423680 4426475 4492800 331 150 161 205 1709 0 0 0 0 29 0 0 0 0 0 +2952 1783753803728749000 DEPTH 39 1 0.73208225914950154 3 8 3 8 0 0 166 36 2546 23664847 81600 862.57868957519531 5.8472 1033.8997999999999 120960 62575 1 0 5898240 4423680 4423680 4426446 4492800 221 150 151 156 1868 0 1 0 0 35 0 0 0 0 0 +2953 1783753805053391800 DEPTH 17 1 0.70145561633273978 0 7 0 7 0 0 186 35 2539 23664834 81600 857.77818298339844 5.8376999999999999 1301.0830000000001 120960 65601 1 0 5898240 4423680 4423680 4426434 4492800 210 156 157 227 1789 0 0 0 0 35 0 0 0 0 0 +2954 1783753806361401000 DEPTH 1 1 0.67050854711535635 1 7 1 7 0 0 123 19 2624 23664822 81600 863.60560607910156 5.8537999999999997 1306.8960999999999 120960 65322 1 0 5898240 4423680 4423680 4426422 4492800 397 156 305 321 1445 0 1 0 0 18 0 0 0 0 0 +2955 1783753807600416700 DEPTH 33 1 0.66953768377427547 1 7 1 7 0 0 181 28 2540 23664862 81600 868.43536376953125 5.8479000000000001 1215.2989 120960 65956 1 0 5898240 4423680 4423680 4426460 4492800 202 153 156 150 1879 0 0 0 0 28 0 0 0 0 0 +2956 1783753808920958600 DEPTH 11 1 0.66813081722997247 0 8 0 8 1 0 100 16 2541 23664778 81600 855.53288269042969 5.8257000000000003 1298.4921999999999 120960 64809 1 0 5898240 4423680 4423680 4426377 4492800 228 150 207 197 1759 0 0 0 0 16 0 0 0 0 1 +2957 1783753810185613100 DEPTH 2 1 0.6485649760106964 2 8 2 8 0 0 136 23 2562 23664917 81600 865.5325927734375 5.8388 1242.0842 120960 65469 1 0 5898240 4423680 4423680 4426514 4492800 156 150 150 150 1956 0 0 0 0 23 0 0 0 0 0 +2958 1783753811480630400 DEPTH 30 1 0.63192146603157107 1 9 1 9 0 0 131 28 2534 23664893 81600 862.55354309082031 5.8727 1241.3556000000001 120960 64881 1 0 5898240 4423680 4423680 4426491 4492800 156 150 174 150 1904 0 0 0 0 28 0 0 0 0 0 +2959 1783753812845289500 DEPTH 56 1 0.70650235006293172 2 5 2 5 0 0 201 24 2576 23664896 81600 850.51385498046875 5.8440999999999992 1285.3110999999999 120960 54053 1 0 5898240 4423680 4423680 4426493 4492800 523 156 174 382 1341 0 0 0 0 24 0 0 0 0 0 +2960 1783753814119338600 DEPTH 13 1 0.7016482257981087 1 6 1 6 0 0 181 28 2492 23664817 81600 851.86831665039062 5.9040999999999997 1258.7537 120960 54493 1 0 5898240 4423680 4423680 4426416 4492800 250 155 183 229 1675 0 0 0 0 28 0 0 0 0 0 +2961 1783753815262403500 DEPTH 48 1 0.69037696693554296 2 10 2 9 1 0 97 128 2582 23664835 81600 854.49188232421875 5.8339999999999996 1141.8610000000001 120960 65298 1 0 5898240 4423680 4423680 4426434 4492800 167 150 174 197 1894 3 0 0 0 125 0 0 0 0 3 +2962 1783753816318227900 DEPTH 29 1 0.67350566032032866 1 12 1 12 1 0 119 60 2626 23664933 81600 857.93534851074219 5.8945999999999996 1033.9038 120960 58495 1 0 5898240 4423680 4423680 4426533 4492800 179 150 162 157 1978 0 0 2 0 58 0 0 2 0 1 +2963 1783753817654533900 DEPTH 9 1 0.65873273280292666 2 6 2 6 0 0 124 12 2618 23664882 81600 867.954345703125 5.8497999999999992 1308.5038 120960 65377 1 0 5898240 4423680 4423680 4426482 4492800 716 150 408 503 841 0 0 0 0 12 0 0 0 0 0 +2964 1783753818982939100 DEPTH 44 1 0.63335104464434955 2 7 2 7 0 0 140 39 2590 23664846 81600 860.33200073242188 5.8421000000000003 1304.0782999999999 120960 65348 1 0 5898240 4423680 4423680 4426445 4492800 223 150 259 167 1791 0 0 0 0 39 0 0 0 0 0 +2965 1783753820332898500 DEPTH 21 1 0.62978035425377277 0 10 0 10 0 0 176 39 2600 23664830 81600 863.08139038085938 5.8884999999999996 1307.5535 120960 64258 1 0 5898240 4423680 4423680 4426428 4492800 376 150 168 310 1596 0 0 0 0 39 0 0 0 0 0 +2966 1783753821615127600 DEPTH 45 1 0.62820743967725767 2 7 2 7 0 0 131 24 2618 23664888 81600 865.80738830566406 5.8407 1239.0291 120960 64914 1 0 5898240 4423680 4423680 4426486 4492800 214 150 204 192 1858 0 0 0 0 24 0 0 0 0 0 +2967 1783753822693727400 DEPTH 8 1 0.70520900460022506 2 5 2 5 0 0 214 23 2572 23664894 81600 860.36628723144531 5.8482999999999992 1077.4664 120960 55355 1 0 5898240 4423680 4423680 4426492 4492800 264 150 159 182 1817 0 0 0 0 23 0 0 0 0 0 +2968 1783753823719895300 DEPTH 42 1 0.69737475650315761 4 11 4 11 0 0 129 28 2557 23664866 81600 851.20620727539062 5.8520000000000003 1024.9727 120960 46550 1 0 5898240 4423680 4423680 4426464 4492800 170 150 150 150 1937 0 0 0 0 28 0 0 0 0 0 +2969 1783753824748279600 DEPTH 39 1 0.70321424565307422 3 8 3 8 0 0 167 37 2537 23664816 81600 853.0084228515625 5.8367000000000004 1027.1510000000001 120960 51667 1 0 5898240 4423680 4423680 4426415 4492800 222 155 150 156 1854 0 0 0 0 37 0 0 0 0 0 +2970 1783753826044277600 DEPTH 17 1 0.71293902002490672 0 7 0 7 0 0 186 23 2534 23664765 81600 849.42729187011719 5.9024999999999999 1294.8434999999999 120960 54029 1 0 5898240 4423680 4423680 4426363 4492800 217 156 157 248 1756 0 0 0 0 23 0 0 0 0 0 +2971 1783753827073802400 DEPTH 20 1 0.7062737490614347 2 11 2 11 0 0 111 15 2624 23664859 81600 850.77159118652344 5.8436000000000003 1027.8362 120960 47358 1 0 5898240 4423680 4423680 4426458 4492800 752 150 311 486 925 1 0 0 0 14 0 0 0 0 0 +2972 1783753828133107300 DEPTH 55 1 0.70215986714375367 1 12 1 12 1 0 137 42 2589 23664834 81600 859.56913757324219 5.8325000000000005 1037.5903000000001 120960 49119 1 0 5898240 4423680 4423680 4426433 4492800 559 150 255 543 1082 2 0 0 1 39 2 0 0 0 0 +2973 1783753829267982100 DEPTH 16 1 0.6334238822002094 2 7 2 7 0 0 176 38 2543 23664886 81600 868.98704528808594 5.8584000000000005 1098.9664 120960 65279 1 0 5898240 4423680 4423680 4426486 4492800 166 155 156 632 1434 0 0 0 0 38 0 0 0 0 0 +2974 1783753830459592300 DEPTH 50 1 0.62778476581992382 2 9 2 9 0 0 123 38 2604 23664818 81600 855.30909729003906 5.868199999999999 1190.4106999999999 120960 60273 1 0 5898240 4423680 4423680 4426418 4492800 162 150 160 160 1972 0 0 0 0 38 0 0 0 0 0 +2975 1783753830672888900 REFRESH 1 0 0.63177827293921562 1 7 1 7 0 0 123 4 422 3943911 55200 151.91845703125 0.97240000000000004 212.2123 20160 13450 0 0 983040 737280 737280 737511 748800 134 26 82 85 95 0 0 0 0 4 0 0 0 0 0 +2976 1783753830874984100 REFRESH 24 0 0.62429083288667608 4 11 4 11 0 0 132 7 407 3943917 55200 151.17689514160156 0.97089999999999999 181.50360000000001 20160 11881 0 0 983040 737280 737280 737517 748800 61 26 41 51 228 0 0 0 0 7 0 0 0 0 0 +2977 1783753831064941400 REFRESH 26 0 0.62021433752344279 1 13 1 13 0 0 78 3 425 3943906 55200 149.34835815429688 0.97999999999999998 178.06200000000001 20160 12603 0 0 983040 737280 737280 737506 748800 35 25 32 49 284 0 0 0 0 3 0 0 0 0 0 +2978 1783753831255208100 REFRESH 18 0 0.62159191563022365 4 15 4 15 1 0 103 12 420 3943926 55200 150.61811828613281 0.97330000000000005 178.48140000000001 20160 11908 0 0 983040 737280 737280 737524 748800 27 25 25 28 315 0 1 0 0 11 0 0 0 0 1 +2979 1783753831446971000 REFRESH 7 0 0.62650421936168788 1 12 1 12 0 0 129 6 417 3943897 55200 149.4835205078125 0.99719999999999998 179.8861 20160 12352 0 0 983040 737280 737280 737497 748800 163 26 29 40 159 1 0 0 0 5 0 0 0 0 0 +2980 1783753831651924600 REFRESH 12 0 0.62552750628659082 3 8 3 8 0 0 172 9 415 3943894 55200 150.0948486328125 0.98019999999999996 180.29230000000001 20160 12369 0 0 983040 737280 737280 737494 748800 134 26 37 98 120 0 0 0 0 9 0 0 0 0 0 +2981 1783753831842198400 REFRESH 6 0 0.58491140449416701 3 11 3 11 0 0 115 10 414 3943910 55200 150.11839294433594 0.97189999999999999 178.21029999999999 20160 12442 0 0 983040 737280 737280 737510 748800 26 25 25 25 313 0 0 0 0 10 0 0 0 0 0 +2982 1783753832035476400 REFRESH 28 0 0.61685145957997189 1 12 1 12 0 0 146 9 412 3943904 55200 150.56282043457031 1.0003 181.1542 20160 12236 0 0 983040 737280 737280 737504 748800 155 26 31 31 169 0 0 0 0 9 0 0 0 0 0 +2983 1783753832224222700 REFRESH 33 0 0.6705302193213365 1 7 1 7 0 0 181 9 416 3943899 55200 150.830078125 0.97560000000000002 187.57660000000001 20160 13505 0 0 983040 737280 737280 737499 748800 109 26 38 36 207 0 0 0 0 9 0 0 0 0 0 +2984 1783753832436142400 REFRESH 21 0 0.56911738089433572 0 10 0 10 0 0 176 7 416 3943912 55200 150.64472961425781 0.97399999999999998 201.2972 20160 13123 0 0 983040 737280 737280 737512 748800 110 26 33 97 150 0 0 0 0 7 0 0 0 0 0 +2985 1783753832617887400 REFRESH 35 0 0.62616798470997725 2 11 2 11 0 0 150 8 418 3943943 55200 150.65498352050781 0.97309999999999997 180.5421 20160 12411 0 0 983040 737280 737280 737541 748800 150 25 30 102 111 0 0 0 0 8 0 0 0 0 0 +2986 1783753832803860300 REFRESH 16 0 0.51369610719849257 2 7 2 7 0 0 176 4 417 3943928 55200 151.94505310058594 0.97430000000000005 184.83160000000001 20160 13363 0 0 983040 737280 737280 737528 748800 33 26 26 214 118 0 0 0 0 4 0 0 0 0 0 +2987 1783753832993270500 REFRESH 48 0 0.81199091721911221 2 9 2 9 0 0 98 16 417 3943903 55200 149.66374206542969 0.97160000000000002 188.1772 20160 13768 0 0 983040 737280 737280 737502 748800 33 25 38 40 281 0 0 0 0 16 0 0 0 0 0 +2988 1783753833186299200 REFRESH 22 0 0.61770596289727386 3 11 3 11 0 0 117 12 423 3943905 55200 150.89561462402344 0.98009999999999997 180.35419999999999 20160 12102 0 0 983040 737280 737280 737505 748800 139 25 31 29 199 0 0 0 1 11 0 0 0 0 0 +2989 1783753833376338600 REFRESH 23 0 0.62496534475525189 3 14 3 14 0 0 102 8 412 3943910 55200 149.51628112792969 0.97270000000000001 178.4906 20160 11901 0 0 983040 737280 737280 737510 748800 47 25 50 44 246 0 0 0 0 8 0 0 0 0 0 +2990 1783753833556818500 REFRESH 20 0 0.63649997088350374 2 11 2 11 0 0 111 10 431 3943917 55200 150.16549682617188 0.97409999999999997 179.3527 20160 12296 0 0 983040 737280 737280 737517 748800 153 25 73 87 93 1 0 0 0 9 0 0 0 0 0 +2991 1783753833780256400 REFRESH 51 0 0.62590394692690643 3 12 3 12 0 0 91 9 420 3943927 55200 149.16096496582031 0.97950000000000004 178.01820000000001 20160 12415 0 0 983040 737280 737280 737527 748800 84 25 108 79 124 0 0 0 0 9 0 0 0 0 0 +2992 1783753833970972700 REFRESH 58 0 0.61713856764500497 2 12 2 12 0 0 119 7 429 3943918 55200 150.33343505859375 0.97319999999999995 178.68430000000001 20160 12116 0 0 983040 737280 737280 737518 748800 106 26 66 66 165 0 0 0 0 7 0 0 0 0 0 +2993 1783753834161727700 REFRESH 32 0 0.62369627071159017 2 14 2 14 0 0 117 8 430 3943904 55200 149.317626953125 0.97640000000000005 178.65880000000001 20160 12403 0 0 983040 737280 737280 737504 748800 221 25 33 34 117 0 0 0 0 8 0 0 0 0 0 +2994 1783753834385980000 REFRESH 9 0 0.66111511899713549 2 6 2 6 0 0 124 2 438 3943890 55200 151.80595397949219 0.97699999999999998 223.17339999999999 20160 13602 0 0 983040 737280 737280 737490 748800 131 25 81 72 129 0 0 0 0 2 0 0 0 0 0 +2995 1783753834571274200 REFRESH 8 0 0.79628847872210373 2 5 2 5 0 0 214 5 413 3943895 55200 151.54995727539062 0.97699999999999998 184.1962 20160 13389 0 0 983040 737280 737280 737494 748800 175 26 29 80 103 0 0 0 0 5 0 0 0 0 0 +2996 1783753834758753200 REFRESH 50 0 0.59726507605593449 2 9 2 9 0 0 123 10 420 3943879 55200 149.85728454589844 0.9728 186.27539999999999 20160 12383 0 0 983040 737280 737280 737479 748800 136 25 34 46 179 0 0 0 0 10 0 0 0 0 0 +2997 1783753834958431300 REFRESH 38 0 0.61307696770174014 4 14 4 14 1 0 82 6 422 3943882 55200 149.197021484375 0.97209999999999996 178.26410000000001 20160 12496 0 0 983040 737280 737280 737481 748800 59 26 42 39 256 0 0 0 0 6 0 0 0 0 1 +2998 1783753835155631000 REFRESH 39 0 0.76614710332190161 3 8 3 8 0 0 167 7 405 3943908 55200 150.88844299316406 0.98080000000000001 180.11940000000001 20160 13186 0 0 983040 737280 737280 737508 748800 85 28 29 30 233 0 0 0 0 7 0 0 0 0 0 +2999 1783753835354899100 REFRESH 13 0 0.79324304302857296 1 6 1 6 0 0 181 1 414 3943918 55200 150.46759033203125 0.97670000000000001 198.15209999999999 20160 13666 0 0 983040 737280 737280 737518 748800 151 26 52 87 98 0 0 0 0 1 0 0 0 0 0 +3000 1783753835556106200 REFRESH 0 0 0.61131417583683167 1 12 1 12 0 0 89 4 428 3943909 55200 151.29679870605469 0.97370000000000001 180.08519999999999 20160 12388 0 0 983040 737280 737280 737509 748800 96 25 46 40 221 0 0 0 0 4 0 0 0 0 0 +3001 1783753835736192700 REFRESH 10 0 0.67869020372002953 1 10 1 10 0 0 112 1 426 3943932 55200 149.317626953125 0.97409999999999997 178.97730000000001 20160 12861 0 0 983040 737280 737280 737532 748800 242 26 36 36 86 0 0 0 0 1 0 0 0 0 0 +3002 1783753835958671700 REFRESH 41 0 0.62506724638547162 1 10 1 10 0 0 110 6 419 3943903 55200 149.82144165039062 0.97430000000000005 205.33840000000001 20160 12925 0 0 983040 737280 737280 737503 748800 123 26 45 47 178 0 0 0 0 6 0 0 0 0 0 +3003 1783753836148898500 REFRESH 45 0 0.62953294368254342 2 7 2 7 0 0 131 3 420 3943911 55200 150.90687561035156 0.97360000000000002 188.95599999999999 20160 13354 0 0 983040 737280 737280 737510 748800 119 25 52 52 172 0 0 0 0 3 0 0 0 0 0 +3004 1783753836348476800 REFRESH 47 0 0.6181361792538822 2 11 2 11 0 0 112 6 419 3943926 55200 149.94943237304688 0.97999999999999998 178.77719999999999 20160 12123 0 0 983040 737280 737280 737526 748800 129 26 41 32 191 0 0 0 0 6 0 0 0 0 0 +3005 1783753836536979800 REFRESH 5 0 0.61580406754692674 2 11 2 11 0 0 91 9 409 3943929 55200 148.8486328125 0.98129999999999995 176.6414 20160 12720 0 0 983040 737280 737280 737529 748800 77 26 93 115 98 0 0 0 0 9 0 0 0 0 0 +3006 1783753836728794800 REFRESH 53 0 0.67659135698806117 0 8 0 8 0 0 142 8 417 3943897 55200 152.28314208984375 0.97099999999999997 190.6113 20160 13495 0 0 983040 737280 737280 737497 748800 141 26 27 51 172 0 0 0 0 8 0 0 0 0 0 +3007 1783753836929030000 REFRESH 36 0 0.61866485934164395 3 10 3 10 0 0 110 12 432 3943922 55200 149.83856201171875 0.97670000000000001 179.04859999999999 20160 12114 0 0 983040 737280 737280 737522 748800 219 25 38 54 96 0 0 0 1 11 0 0 0 0 0 +3008 1783753837109392800 REFRESH 42 0 0.70631712594527163 4 11 4 11 0 0 130 9 418 3943902 55200 150.78707885742188 1.0055000000000001 179.18709999999999 20160 12147 0 0 983040 737280 737280 737502 748800 126 25 25 25 217 0 0 0 0 9 0 0 0 0 0 +3009 1783753837327246400 REFRESH 31 0 0.67265322686777795 2 6 2 6 1 0 124 3 426 3943900 55200 151.05229187011719 0.97709999999999997 216.70529999999999 20160 13580 0 0 983040 737280 737280 737500 748800 213 25 32 72 84 0 0 0 0 3 0 0 0 0 1 +3010 1783753837528903000 REFRESH 46 0 0.62460716376284409 2 15 2 15 0 0 109 12 415 3943914 55200 151.19462585449219 0.97640000000000005 180.28989999999999 20160 12144 0 0 983040 737280 737280 737514 748800 109 26 56 32 192 0 0 0 0 12 0 0 0 0 0 +3011 1783753837732059000 REFRESH 15 0 0.62674835865672707 3 12 3 12 0 0 95 13 417 3943919 55200 149.76921081542969 0.99990000000000001 179.13890000000001 20160 11956 0 0 983040 737280 737280 737519 748800 61 26 35 26 269 0 0 0 0 13 0 0 0 0 0 +3012 1783753837921069100 REFRESH 34 0 0.61886807346571504 1 13 1 13 0 0 101 6 427 3943931 55200 149.25004577636719 0.97350000000000003 176.91999999999999 20160 12571 0 0 983040 737280 737280 737531 748800 115 25 59 65 163 0 0 0 0 6 0 0 0 0 0 +3013 1783753838112021600 REFRESH 57 0 0.60727923262215366 2 12 2 12 0 0 121 11 418 3943910 55200 150.17471313476562 0.97689999999999999 178.92269999999999 20160 12299 0 0 983040 737280 737280 737510 748800 116 26 94 85 97 0 0 0 0 11 0 0 0 0 0 +3014 1783753838303894200 REFRESH 43 0 0.62619393908843191 2 13 2 13 0 0 125 9 417 3943928 55200 150.33753967285156 0.97289999999999999 179.55070000000001 20160 12125 0 0 983040 737280 737280 737528 748800 148 26 38 56 149 0 0 0 0 9 0 0 0 0 0 +3015 1783753838494020500 REFRESH 37 0 0.61992192262604184 1 12 1 12 0 0 136 10 427 3943898 55200 149.60946655273438 0.97750000000000004 178.19710000000001 20160 12071 0 0 983040 737280 737280 737498 748800 158 26 51 34 158 0 0 0 1 9 0 0 0 0 0 +3016 1783753838692253800 REFRESH 14 0 0.62627479501222849 0 12 0 12 0 0 111 6 423 3943927 55200 150.82392883300781 0.97640000000000005 185.79689999999999 20160 12170 0 0 983040 737280 737280 737526 748800 121 26 30 46 200 0 0 0 0 6 0 0 0 0 0 +3017 1783753838938024100 REFRESH 17 0 0.79430072480905412 0 7 0 7 0 0 186 5 411 3943901 55200 150.40921020507812 0.97130000000000005 224.1849 20160 13430 0 0 983040 737280 737280 737500 748800 119 26 40 107 119 0 0 0 0 5 0 0 0 0 0 +3018 1783753839171488300 REFRESH 56 0 0.79741270370986694 2 5 2 5 0 0 201 6 415 3943894 55200 151.72198486328125 0.97519999999999996 222.77440000000001 20160 13535 0 0 983040 737280 737280 737493 748800 181 26 45 67 96 0 0 0 0 6 0 0 0 0 0 +3019 1783753839355854400 REFRESH 2 0 0.64568015313796456 2 8 2 8 0 0 136 6 415 3943910 55200 149.81546020507812 0.97440000000000004 183.20840000000001 20160 13416 0 0 983040 737280 737280 737510 748800 34 25 64 104 188 0 0 0 0 6 0 0 0 0 0 +3020 1783753839558253500 REFRESH 25 0 0.62573512891212391 3 11 3 11 0 0 113 10 424 3943904 55200 151.21612548828125 0.97350000000000003 181.7199 20160 11911 0 0 983040 737280 737280 737503 748800 83 25 58 71 187 0 0 0 0 10 0 0 0 0 0 +3021 1783753839740128800 REFRESH 55 0 0.69229859679607242 1 12 1 12 0 0 137 5 430 3943931 55200 150.88333129882812 0.97189999999999999 180.54660000000001 20160 12789 0 0 983040 737280 737280 737531 748800 137 25 57 102 109 0 0 0 0 5 0 0 0 0 0 +3022 1783753839976393600 REFRESH 52 0 0.61930215659276699 1 8 1 8 0 0 107 7 432 3943905 55200 150.18905639648438 0.97299999999999998 222.85900000000001 20160 12651 0 0 983040 737280 737280 737505 748800 137 25 33 156 81 0 0 0 0 7 0 0 0 0 0 +3023 1783753840162558000 REFRESH 30 0 0.630712181420924 1 9 1 9 0 0 132 6 417 3943913 55200 150.07334899902344 0.97799999999999998 184.9803 20160 13425 0 0 983040 737280 737280 737513 748800 85 25 53 33 221 0 0 0 0 6 0 0 0 0 0 +3024 1783753840369626200 REFRESH 3 0 0.62317626082657362 2 9 2 9 0 0 142 11 416 3943913 55200 150.60479736328125 0.97840000000000005 185.4751 20160 13316 0 0 983040 737280 737280 737513 748800 194 25 37 63 97 0 0 0 0 11 0 0 0 0 0 +3025 1783753840560980500 REFRESH 40 0 0.61649401078012933 1 12 1 12 1 0 118 15 420 3943897 55200 150.18006896972656 0.97509999999999997 178.8734 20160 12862 0 0 983040 737280 737280 737497 748800 164 25 39 84 108 0 0 0 0 15 0 0 0 0 1 +3026 1783753840784986400 REFRESH 44 0 0.63413553127442435 2 7 2 7 0 0 140 3 415 3943915 55200 150.287353515625 0.97789999999999999 222.78399999999999 20160 13428 0 0 983040 737280 737280 737515 748800 97 26 71 31 190 0 0 0 0 3 0 0 0 0 0 +3027 1783753840977229400 REFRESH 49 0 0.62114723275669625 3 10 3 10 0 0 126 6 418 3943917 55200 150.00373840332031 0.97509999999999997 179.727 20160 12052 0 0 983040 737280 737280 737517 748800 138 26 71 62 121 0 0 0 0 6 0 0 0 0 0 +3028 1783753841164801100 REFRESH 4 0 0.581244465919453 1 13 1 13 0 0 49 3 414 3943890 55200 148.80665588378906 0.97309999999999997 175.5504 20160 13574 0 0 983040 737280 737280 737490 748800 29 25 44 40 276 0 0 0 0 3 0 0 0 0 0 +3029 1783753841356319800 REFRESH 19 0 0.62674857549645058 2 11 2 11 0 0 124 14 420 3943910 55200 150.02418518066406 0.97999999999999998 178.9555 20160 12313 0 0 983040 737280 737280 737509 748800 110 25 26 40 219 0 0 0 0 14 0 0 0 0 0 +3030 1783753841590332400 REFRESH 29 0 0.66727726712381075 1 12 1 12 0 0 119 12 420 3943904 55200 151.31546020507812 0.97419999999999995 180.9639 20160 12405 0 0 983040 737280 737280 737504 748800 118 25 50 41 186 0 0 0 0 12 0 0 0 0 0 +3031 1783753841785512100 REFRESH 27 0 0.62423588733854829 0 14 0 14 0 0 141 13 410 3943884 55200 148.88447570800781 0.97460000000000002 178.48220000000001 20160 12244 0 0 983040 737280 737280 737484 748800 80 26 32 32 240 0 0 0 0 13 0 0 0 0 0 +3032 1783753842011263400 REFRESH 11 0 0.66994435957514875 0 8 0 8 0 0 100 5 418 3943887 55200 150.28428649902344 0.97240000000000004 224.65430000000001 20160 13210 0 0 983040 737280 737280 737487 748800 109 25 63 66 155 0 0 0 0 5 0 0 0 0 0 +3033 1783753842259154400 REFRESH 54 0 0.62206842297152831 1 8 1 8 0 0 112 6 424 3943927 55200 150.75736999511719 0.97150000000000003 221.9477 20160 13117 0 0 983040 737280 737280 737527 748800 151 25 60 115 73 0 0 0 0 6 0 0 0 0 0 +3034 1783753843576208400 DEPTH 48 1 0.79435815603627202 2 9 2 9 0 0 102 65 2555 23664815 81600 853.90243530273438 5.8300000000000001 1237.0808999999999 120960 65895 1 0 5898240 4423680 4423680 4426414 4492800 150 150 150 150 1955 5 0 0 0 60 0 0 0 0 0 +3035 1783753844683620500 DEPTH 8 1 0.79223769607627026 2 5 2 5 0 0 214 29 2555 23664813 81600 869.887939453125 5.8398000000000003 1084.1967 120960 66395 1 0 5898240 4423680 4423680 4426411 4492800 311 151 162 188 1743 0 0 0 0 29 0 0 0 0 0 +3036 1783753845951979300 DEPTH 13 1 0.78561710659410999 1 6 1 6 0 0 181 33 2495 23664809 81600 858.24615478515625 5.8363000000000005 1267.2366999999999 120960 65654 1 0 5898240 4423680 4423680 4426408 4492800 259 156 194 178 1708 0 0 0 0 33 0 0 0 0 0 +3037 1783753847010223700 DEPTH 39 1 0.74769804809062834 3 8 3 8 0 0 167 33 2540 23664920 81600 862.71542358398438 5.8740999999999994 1039.1636000000001 120960 63754 1 0 5898240 4423680 4423680 4426519 4492800 222 150 151 156 1861 0 0 0 0 33 0 0 0 0 0 +3038 1783753848340861600 DEPTH 17 1 0.75040041321011686 0 7 0 7 0 0 186 30 2522 23664810 81600 860.99018859863281 5.8254000000000001 1304.9255000000001 120960 65622 1 0 5898240 4423680 4423680 4426410 4492800 212 156 156 242 1756 0 0 0 0 30 0 0 0 0 0 +3039 1783753849674261800 DEPTH 56 1 0.75407702492993733 2 5 2 5 0 0 202 30 2573 23664940 81600 857.05130004882812 5.8804999999999996 1305.0636 120960 65583 1 0 5898240 4423680 4423680 4426540 4492800 522 156 174 374 1347 0 0 0 0 30 0 0 0 0 0 +3040 1783753850743656100 DEPTH 42 1 0.69516614756645678 4 11 4 11 0 0 132 22 2562 23664790 81600 858.10456848144531 5.8466000000000005 1030.0342000000001 120960 57700 1 0 5898240 4423680 4423680 4426390 4492800 171 150 150 150 1941 0 0 0 0 22 0 0 0 0 0 +3041 1783753851821620200 DEPTH 20 1 0.68767881234330064 2 11 2 11 1 0 112 26 2621 23664887 81600 858.8543701171875 5.8641000000000005 1033.3552999999999 120960 58968 1 0 5898240 4423680 4423680 4426487 4492800 749 150 311 455 956 1 0 0 0 25 0 0 0 0 1 +3042 1783753853065414400 DEPTH 53 1 0.67491988029606564 0 8 0 8 1 0 142 32 2514 23664963 81600 862.69132995605469 5.8541000000000007 1242.5771 120960 64937 1 0 5898240 4423680 4423680 4426561 4492800 197 156 150 168 1843 0 0 0 0 32 0 0 0 0 1 +3043 1783753854265352700 DEPTH 33 1 0.67044175854055665 1 7 1 7 0 0 181 25 2538 23664861 81600 868.88844299316406 5.8515999999999995 1198.798 120960 66063 1 0 5898240 4423680 4423680 4426459 4492800 205 155 156 150 1872 0 0 0 0 25 0 0 0 0 0 +3044 1783753855535795300 DEPTH 31 1 0.66701512519430606 2 6 2 6 0 0 124 18 2626 23664830 81600 857.84562683105469 5.8434999999999997 1269.2493999999999 120960 65655 1 0 5898240 4423680 4423680 4426430 4492800 988 150 190 374 924 1 0 0 0 17 0 0 0 0 0 +3045 1783753856846211500 DEPTH 1 1 0.66699201896613391 1 7 1 7 0 0 123 11 2623 23664723 81600 863.80206298828125 5.8729999999999993 1309.3175000000001 120960 66155 1 0 5898240 4423680 4423680 4426322 4492800 397 155 306 336 1429 0 0 0 0 11 0 0 0 0 0 +3046 1783753857884650400 DEPTH 10 1 0.66520043564087417 1 10 1 10 0 0 113 13 2582 23664896 81600 855.5438232421875 5.8333000000000004 1037.3176000000001 120960 61140 1 0 5898240 4423680 4423680 4426494 4492800 1052 156 205 229 940 0 0 0 0 13 0 0 0 0 0 +3047 1783753859211392600 DEPTH 9 1 0.65524167905492392 2 6 2 6 0 0 125 5 2621 23664852 81600 870.82713317871094 5.8756000000000004 1301.9422 120960 66421 1 0 5898240 4423680 4423680 4426451 4492800 720 150 401 496 854 0 0 0 0 5 0 0 0 0 0 +3048 1783753860294872800 DEPTH 55 1 0.67818958798995399 1 12 1 12 1 0 137 32 2592 23664807 81600 868.32913208007812 5.8719999999999999 1043.5485000000001 120960 61534 1 0 5898240 4423680 4423680 4426407 4492800 559 150 251 538 1094 0 0 0 0 32 0 0 0 0 1 +3049 1783753861403617900 DEPTH 16 1 0.62801130701093544 2 7 2 7 0 0 176 25 2547 23664822 81600 866.16615295410156 5.8692000000000011 1107.5902000000001 120960 65406 1 0 5898240 4423680 4423680 4426421 4492800 162 155 156 476 1598 0 0 0 0 25 0 0 0 0 0 +3050 1783753862513141800 DEPTH 8 1 0.69346884935242681 2 5 2 5 0 0 214 27 2576 23664906 81600 861.51637268066406 5.8734999999999999 1086.7185999999999 120960 55132 1 0 5898240 4423680 4423680 4426506 4492800 241 150 160 183 1842 0 0 0 0 27 0 0 0 0 0 +3051 1783753863782917100 DEPTH 48 1 0.69819332650250587 2 9 2 9 0 0 111 54 2549 23664916 81600 846.04231262207031 5.8238999999999992 1228.9902 120960 54043 1 0 5898240 4423680 4423680 4426512 4492800 150 150 150 150 1949 0 0 0 0 54 0 0 0 0 0 +3052 1783753865046237500 DEPTH 13 1 0.69763921964106423 1 6 1 6 0 0 181 19 2496 23664842 81600 852.14804077148438 5.8357000000000001 1262.2040999999999 120960 54378 1 0 5898240 4423680 4423680 4426442 4492800 263 155 196 267 1615 0 0 0 0 19 0 0 0 0 0 +3053 1783753866369335800 DEPTH 17 1 0.69181606784208582 0 7 0 7 0 0 186 23 2537 23664779 81600 848.83551025390625 5.8366000000000007 1292.8296 120960 54241 1 0 5898240 4423680 4423680 4426379 4492800 211 156 160 247 1763 0 0 0 0 23 0 0 0 0 0 +3054 1783753867658481400 DEPTH 56 1 0.69500242831134684 2 5 2 5 0 0 202 33 2577 23664856 81600 848.86412048339844 5.8948 1287.9023999999999 120960 54783 1 0 5898240 4423680 4423680 4426456 4492800 510 156 174 469 1268 0 0 0 0 33 0 0 0 0 0 +3055 1783753868922697000 DEPTH 2 1 0.6388880409847828 2 8 2 8 0 0 136 24 2555 23664847 81600 861.83837890625 5.8491999999999997 1238.3396 120960 65641 1 0 5898240 4423680 4423680 4426445 4492800 156 150 150 150 1949 0 0 0 0 24 0 0 0 0 0 +3056 1783753870086535900 DEPTH 50 1 0.62680137133058089 2 9 2 9 0 0 124 30 2590 23664867 81600 859.35676574707031 5.8407 1162.6204 120960 60512 1 0 5898240 4423680 4423680 4426467 4492800 162 150 165 170 1943 1 0 0 0 29 0 0 0 0 0 +3057 1783753871386085400 DEPTH 21 1 0.62559918473688203 0 10 0 10 1 0 176 30 2592 23664857 81600 864.43611145019531 5.8264999999999993 1298.4121 120960 63756 1 0 5898240 4423680 4423680 4426456 4492800 377 150 173 309 1583 0 0 0 0 30 0 0 0 0 2 +3058 1783753872461845100 DEPTH 39 1 0.69390511808683708 3 8 3 8 0 0 167 24 2547 23664824 81600 854.47657775878906 5.8355000000000006 1027.9974 120960 52590 1 0 5898240 4423680 4423680 4426424 4492800 221 150 150 163 1863 0 0 0 0 24 0 0 0 0 0 +3059 1783753873860863700 DEPTH 11 1 0.66631443496415554 0 8 0 8 0 0 101 11 2550 23664962 81600 855.13931274414062 5.8468999999999998 1297.432 120960 64690 1 0 5898240 4423680 4423680 4426561 4492800 226 150 207 194 1773 0 0 0 0 11 0 0 0 0 0 +3060 1783753874918583800 DEPTH 29 1 0.66130588539694113 1 12 1 12 1 0 120 45 2604 23664812 81600 858.33203125 5.8286999999999995 1032.3572999999999 120960 59276 1 0 5898240 4423680 4423680 4426411 4492800 167 150 162 151 1974 0 1 0 0 44 0 0 0 0 1 +3061 1783753876224416500 DEPTH 44 1 0.62765031065238475 2 7 2 7 0 0 141 30 2581 23664804 81600 860.92979431152344 5.8370999999999995 1304.6238000000001 120960 65051 1 0 5898240 4423680 4423680 4426400 4492800 217 150 263 172 1779 0 0 0 0 30 0 0 0 0 0 +3062 1783753877525613900 DEPTH 30 1 0.6254287653976609 1 9 1 9 0 0 132 29 2542 23664819 81600 862.8848876953125 5.8510000000000009 1254.1918000000001 120960 64972 1 0 5898240 4423680 4423680 4426418 4492800 156 150 174 150 1912 0 0 0 0 29 0 0 0 0 0 +3063 1783753878594481700 DEPTH 15 1 0.62538243025304752 3 12 3 12 0 0 95 52 2552 23664877 81600 861.42427062988281 5.8354999999999997 1035.6183000000001 120960 56775 1 0 5898240 4423680 4423680 4426477 4492800 194 150 156 150 1902 0 0 3 0 49 0 0 0 0 0 +3064 1783753879663625600 DEPTH 25 1 0.6248550419703901 3 11 3 11 0 0 113 20 2578 23664873 81600 861.53286743164062 5.8919000000000006 1043.4387999999999 120960 56513 1 0 5898240 4423680 4423680 4426470 4492800 192 150 159 156 1921 0 0 0 0 20 0 0 0 0 0 +3065 1783753880721046200 DEPTH 19 1 0.62485409062296582 2 11 2 11 1 0 124 32 2618 23664897 81600 859.68374633789062 5.861600000000001 1032.0708999999999 120960 58989 1 0 5898240 4423680 4423680 4426495 4492800 195 150 150 152 1971 0 0 0 0 32 0 0 0 0 1 +3066 1783753880935040200 REFRESH 25 0 0.39370471119225425 3 11 3 11 0 0 113 6 422 3943921 55200 150.33445739746094 0.97299999999999998 180.31489999999999 20160 12019 0 0 983040 737280 737280 737521 748800 100 25 63 73 161 0 0 0 0 6 0 0 0 0 0 +3067 1783753881129534500 REFRESH 46 0 0.62267870912421697 2 15 2 15 0 0 110 16 417 3943937 55200 150.06822204589844 0.97209999999999996 179.6096 20160 12109 0 0 983040 737280 737280 737537 748800 97 26 52 31 211 0 0 0 0 16 0 0 0 0 0 +3068 1783753881354492600 REFRESH 11 0 0.50789293883156839 0 8 0 8 0 0 101 5 419 3943890 55200 150.19132995605469 0.97719999999999996 223.82079999999999 20160 13546 0 0 983040 737280 737280 737490 748800 111 25 61 64 158 0 0 0 0 5 0 0 0 0 0 +3069 1783753881565065300 REFRESH 3 0 0.62178954575735168 2 9 2 9 0 0 142 11 418 3943927 55200 150.21568298339844 0.97999999999999998 184.47460000000001 20160 13284 0 0 983040 737280 737280 737527 748800 190 25 37 64 102 0 0 0 0 11 0 0 0 0 0 +3070 1783753881758019700 REFRESH 4 0 0.57861982565380699 1 13 1 13 0 0 49 3 416 3943923 55200 148.71347045898438 0.97629999999999995 177.20320000000001 20160 13574 0 0 983040 737280 737280 737523 748800 27 25 42 36 286 0 0 0 0 3 0 0 0 0 0 +3071 1783753882019475200 REFRESH 17 0 0.7230405393836743 0 7 0 7 0 0 186 2 411 3943929 55200 151.88992309570312 0.97889999999999999 225.82429999999999 20160 13666 0 0 983040 737280 737280 737528 748800 119 26 41 107 118 0 0 0 0 2 0 0 0 0 0 +3072 1783753882214191700 REFRESH 36 0 0.61837068557192776 3 10 3 10 0 0 111 4 433 3943918 55200 150.68978881835938 0.97560000000000002 180.0241 20160 12112 0 0 983040 737280 737280 737517 748800 216 25 38 49 105 0 0 0 0 4 0 0 0 0 0 +3073 1783753882461168900 REFRESH 54 0 0.62104179217114919 1 8 1 8 0 0 112 5 422 3943899 55200 149.91154479980469 0.999 220.80029999999999 20160 13127 0 0 983040 737280 737280 737498 748800 149 25 60 117 71 0 0 0 0 5 0 0 0 0 0 +3074 1783753882649626900 REFRESH 33 0 0.67118867383737812 1 7 1 7 0 0 181 6 419 3943919 55200 151.47109985351562 0.97040000000000004 187.20820000000001 20160 13648 0 0 983040 737280 737280 737519 748800 100 26 34 35 224 0 0 0 0 6 0 0 0 0 0 +3075 1783753882839063000 REFRESH 30 0 0.50447620293574802 1 9 1 9 0 0 132 8 411 3943908 55200 151.41683959960938 0.97350000000000003 187.97649999999999 20160 13492 0 0 983040 737280 737280 737507 748800 77 25 44 35 230 0 0 0 0 8 0 0 0 0 0 +3076 1783753883023612500 REFRESH 8 0 0.79454947901850526 2 5 2 5 0 0 215 5 415 3943887 55200 151.27757263183594 0.97529999999999994 183.43770000000001 20160 13656 0 0 983040 737280 737280 737487 748800 162 26 29 71 127 0 0 0 0 5 0 0 0 0 0 +3077 1783753883248614000 REFRESH 44 0 0.53864696817178992 2 7 2 7 0 0 141 5 413 3943906 55200 150.67237854003906 0.97350000000000003 223.8091 20160 13479 0 0 983040 737280 737280 737506 748800 92 26 66 30 199 0 0 0 0 5 0 0 0 0 0 +3078 1783753883452747000 REFRESH 27 0 0.62243409531262306 0 14 0 14 0 0 142 14 413 3943910 55200 150.39788818359375 0.97330000000000005 181.18610000000001 20160 12180 0 0 983040 737280 737280 737510 748800 81 26 31 31 244 0 0 0 0 14 0 0 0 0 0 +3079 1783753883636938300 REFRESH 16 0 0.62869379091760602 2 7 2 7 0 0 176 4 415 3943937 55200 150.51673889160156 0.97440000000000004 182.95009999999999 20160 13348 0 0 983040 737280 737280 737537 748800 34 26 26 239 90 0 0 0 0 4 0 0 0 0 0 +3080 1783753883839830500 REFRESH 0 0 0.60637014639087039 1 12 1 12 0 0 89 5 428 3943896 55200 150.28530883789062 0.96930000000000005 178.8853 20160 12856 0 0 983040 737280 737280 737496 748800 85 25 45 42 231 0 0 0 0 5 0 0 0 0 0 +3081 1783753884040262600 REFRESH 14 0 0.62230064661369644 0 12 0 12 0 0 111 8 420 3943915 55200 150.14707946777344 0.97250000000000003 185.4427 20160 12182 0 0 983040 737280 737280 737515 748800 121 26 29 49 195 0 0 0 0 8 0 0 0 0 0 +3082 1783753884236188700 REFRESH 43 0 0.62320920786369016 2 13 2 13 0 0 125 9 419 3943898 55200 150.33241271972656 0.96950000000000003 180.2654 20160 12083 0 0 983040 737280 737280 737498 748800 149 26 39 54 151 0 0 0 0 9 0 0 0 0 0 +3083 1783753884433681600 REFRESH 7 0 0.62106099444871088 1 12 1 12 0 0 129 9 418 3943925 55200 149.68934631347656 0.99980000000000002 180.08430000000001 20160 12331 0 0 983040 737280 737280 737525 748800 155 26 29 33 175 1 0 0 0 8 0 0 0 0 0 +3084 1783753884626992500 REFRESH 6 0 0.58644403746421514 3 11 3 11 0 0 116 10 417 3943915 55200 149.47747802734375 0.99770000000000003 177.15559999999999 20160 12419 0 0 983040 737280 737280 737515 748800 26 25 25 25 316 0 0 0 0 10 0 0 0 0 0 +3085 1783753884817811400 REFRESH 48 0 0.76354466334836335 2 9 2 9 0 0 112 10 411 3943896 55200 149.48556518554688 0.97450000000000003 189.59739999999999 20160 12297 0 0 983040 737280 737280 737495 748800 33 25 35 36 282 0 0 0 0 10 0 0 0 0 0 +3086 1783753885019387700 REFRESH 58 0 0.61357874999359918 2 12 2 12 0 0 119 11 426 3943911 55200 150.68978881835938 0.99919999999999998 180.22470000000001 20160 12180 0 0 983040 737280 737280 737511 748800 104 26 62 63 171 0 0 0 0 11 0 0 0 0 0 +3087 1783753885212178400 REFRESH 49 0 0.6165900012043819 3 10 3 10 0 0 126 11 418 3943902 55200 149.58285522460938 0.97660000000000002 179.3819 20160 12143 0 0 983040 737280 737280 737502 748800 119 26 65 43 165 0 0 0 0 11 0 0 0 0 0 +3088 1783753885408643500 REFRESH 35 0 0.62275583520322897 2 11 2 11 0 0 150 11 417 3943914 55200 150.37338256835938 0.99360000000000004 180.32679999999999 20160 12333 0 0 983040 737280 737280 737514 748800 149 25 29 103 111 0 0 0 0 11 0 0 0 0 0 +3089 1783753885603097300 REFRESH 47 0 0.6141587005235758 2 11 2 11 0 0 112 10 418 3943945 55200 149.15583801269531 0.97340000000000004 177.43180000000001 20160 12253 0 0 983040 737280 737280 737545 748800 143 26 52 35 162 0 0 0 0 10 0 0 0 0 0 +3090 1783753885821749900 REFRESH 31 0 0.66854179784890688 2 6 2 6 0 0 124 5 429 3943885 55200 150.78399658203125 0.97319999999999995 217.50239999999999 20160 13640 0 0 983040 737280 737280 737484 748800 217 25 32 72 83 0 0 0 0 5 0 0 0 0 0 +3091 1783753886026830300 REFRESH 37 0 0.61955058556414389 1 12 1 12 0 0 136 11 428 3943897 55200 150.20407104492188 0.97330000000000005 179.46440000000001 20160 12132 0 0 983040 737280 737280 737497 748800 158 26 51 35 158 1 0 0 0 10 0 0 0 0 0 +3092 1783753886250328400 REFRESH 56 0 0.79584185814367925 2 5 2 5 0 0 202 1 416 3943923 55200 150.21875 0.97360000000000002 222.262 20160 13580 0 0 983040 737280 737280 737523 748800 180 26 46 69 95 0 0 0 0 1 0 0 0 0 0 +3093 1783753886447220000 REFRESH 12 0 0.62476650718914928 3 8 3 8 0 0 172 10 415 3943910 55200 149.84294128417969 0.9758 180.3741 20160 12408 0 0 983040 737280 737280 737510 748800 143 26 38 106 102 0 0 0 0 10 0 0 0 0 0 +3094 1783753886626971500 REFRESH 42 0 0.68605803907346974 4 11 4 11 0 0 132 6 416 3943916 55200 150.42048645019531 0.98060000000000003 178.47380000000001 20160 12085 0 0 983040 737280 737280 737516 748800 118 25 25 25 223 0 0 0 0 6 0 0 0 0 0 +3095 1783753886809105200 REFRESH 55 0 0.67051770380738818 1 12 1 12 0 0 137 6 431 3943906 55200 151.25187683105469 0.9839 180.81059999999999 20160 12798 0 0 983040 737280 737280 737506 748800 137 25 58 100 111 0 0 0 0 6 0 0 0 0 0 +3096 1783753887005074500 REFRESH 24 0 0.62065788217160689 4 11 4 11 0 0 132 7 416 3943889 55200 151.099365234375 0.99960000000000004 181.0898 20160 11842 0 0 983040 737280 737280 737489 748800 62 26 40 53 235 0 0 0 0 7 0 0 0 0 0 +3097 1783753887194968500 REFRESH 26 0 0.61403406952374895 1 13 1 13 0 0 79 6 424 3943912 55200 149.93919372558594 0.97889999999999999 177.8657 20160 12724 0 0 983040 737280 737280 737512 748800 36 25 35 47 281 0 0 0 0 6 0 0 0 0 0 +3098 1783753887389827700 REFRESH 57 0 0.60749669159126674 2 12 2 12 0 0 121 8 416 3943957 55200 150.45529174804688 0.97260000000000002 179.3878 20160 12239 0 0 983040 737280 737280 737557 748800 117 26 93 86 94 0 0 0 0 8 0 0 0 0 0 +3099 1783753887582861700 REFRESH 32 0 0.62033862106180959 2 14 2 14 0 0 117 9 430 3943921 55200 149.32479858398438 0.97319999999999995 177.9282 20160 12518 0 0 983040 737280 737280 737520 748800 208 25 34 33 130 0 0 0 0 9 0 0 0 0 0 +3100 1783753887769867500 REFRESH 2 0 0.63669991036064899 2 8 2 8 0 0 136 10 409 3943916 55200 150.73689270019531 0.98480000000000001 185.9014 20160 13398 0 0 983040 737280 737280 737516 748800 30 25 61 92 201 0 0 0 0 10 0 0 0 0 0 +3101 1783753887975229600 REFRESH 40 0 0.61486322737786669 1 12 1 12 0 0 118 5 422 3943932 55200 151.23251342773438 0.97199999999999998 180.2304 20160 12800 0 0 983040 737280 737280 737532 748800 160 25 40 84 113 0 0 0 0 5 0 0 0 0 0 +3102 1783753888170593500 REFRESH 51 0 0.6242778886534559 3 12 3 12 0 0 92 8 424 3943882 55200 150.15525817871094 0.97309999999999997 179.25790000000001 20160 12442 0 0 983040 737280 737280 737482 748800 90 25 113 84 112 0 0 0 0 8 0 0 0 0 0 +3103 1783753888417015200 REFRESH 52 0 0.62041812232218252 1 8 1 8 0 0 107 5 426 3943895 55200 149.52345275878906 0.97619999999999996 220.6463 20160 12745 0 0 983040 737280 737280 737495 748800 135 25 33 152 81 0 0 0 0 5 0 0 0 0 0 +3104 1783753888597263200 REFRESH 39 0 0.72145924422986529 3 8 3 8 0 0 167 8 411 3943910 55200 150.03750610351562 0.97289999999999999 179.08799999999999 20160 13278 0 0 983040 737280 737280 737510 748800 95 28 29 34 225 0 0 0 0 8 0 0 0 0 0 +3105 1783753888788912700 REFRESH 53 0 0.67542689303805181 0 8 0 8 0 0 142 8 415 3943894 55200 151.86842346191406 0.97289999999999999 190.43270000000001 20160 13523 0 0 983040 737280 737280 737493 748800 128 26 27 47 187 0 0 0 0 8 0 0 0 0 0 +3106 1783753888979826300 REFRESH 5 0 0.61589613464863735 2 11 2 11 0 0 91 5 419 3943935 55200 148.86306762695312 0.97940000000000005 176.27699999999999 20160 12564 0 0 983040 737280 737280 737535 748800 71 25 84 110 129 0 0 1 0 4 0 0 0 0 0 +3107 1783753889160850100 REFRESH 10 0 0.6619622287041167 1 10 1 10 0 0 113 2 429 3943898 55200 149.48045349121094 0.97589999999999999 179.91 20160 12402 0 0 983040 737280 737280 737498 748800 241 26 37 37 88 0 0 0 0 2 0 0 0 0 0 +3108 1783753889387796800 REFRESH 45 0 0.62385988341393961 2 7 2 7 0 0 131 9 423 3943929 55200 151.77113342285156 0.96930000000000005 189.56829999999999 20160 13312 0 0 983040 737280 737280 737529 748800 126 25 53 51 168 0 0 0 0 9 0 0 0 0 0 +3109 1783753889580676200 REFRESH 38 0 0.60933218470463668 4 14 4 14 0 0 82 5 422 3943902 55200 149.28895568847656 0.97030000000000005 177.28030000000001 20160 12423 0 0 983040 737280 737280 737502 748800 57 26 42 39 258 0 0 0 0 5 0 0 0 0 0 +3110 1783753889775959400 REFRESH 23 0 0.62146670295411277 3 14 3 14 0 0 103 12 410 3943897 55200 150.3795166015625 0.97560000000000002 179.80160000000001 20160 12025 0 0 983040 737280 737280 737497 748800 44 25 51 43 247 0 0 0 0 12 0 0 0 0 0 +3111 1783753889995956900 REFRESH 41 0 0.62150802968257224 1 10 1 10 0 0 110 6 418 3943903 55200 148.97152709960938 0.97189999999999999 202.83240000000001 20160 12972 0 0 983040 737280 737280 737503 748800 134 26 48 48 162 0 0 1 0 5 0 0 0 0 0 +3112 1783753890209105400 REFRESH 1 0 0.66859051293040472 1 7 1 7 0 0 123 2 424 3943915 55200 151.1383056640625 0.97529999999999994 212.05959999999999 20160 13467 0 0 983040 737280 737280 737515 748800 131 26 78 86 103 0 0 0 0 2 0 0 0 0 0 +3113 1783753890419396500 REFRESH 34 0 0.61532347640027374 1 13 1 13 0 0 101 5 431 3943928 55200 149.64633178710938 0.97219999999999995 178.80289999999999 20160 12587 0 0 983040 737280 737280 737528 748800 127 25 59 67 153 0 0 0 0 5 0 0 0 0 0 +3114 1783753890621164600 REFRESH 21 0 0.62528180227900076 0 10 0 10 0 0 176 6 414 3943935 55200 150.56997680664062 0.98080000000000001 200.62540000000001 20160 13243 0 0 983040 737280 737280 737535 748800 105 26 33 84 166 0 0 0 0 6 0 0 0 0 0 +3115 1783753890820894700 REFRESH 13 0 0.78953072159173554 1 6 1 6 0 0 181 2 414 3943899 55200 150.39181518554688 0.97440000000000004 198.63040000000001 20160 13296 0 0 983040 737280 737280 737499 748800 151 26 53 85 99 0 0 0 0 2 0 0 0 0 0 +3116 1783753891023961900 REFRESH 18 0 0.6201244292800181 4 15 4 15 0 0 103 9 414 3943921 55200 150.05081176757812 0.97570000000000001 179.11689999999999 20160 11898 0 0 983040 737280 737280 737521 748800 29 25 25 27 308 0 0 0 0 9 0 0 0 0 0 +3117 1783753891219030300 REFRESH 28 0 0.61533243231212031 1 12 1 12 0 0 146 8 407 3943907 55200 149.97811889648438 0.97570000000000001 179.71619999999999 20160 12293 0 0 983040 737280 737280 737507 748800 131 25 30 29 192 0 0 0 0 8 0 0 0 0 0 +3118 1783753891403454200 REFRESH 50 0 0.62625506927371632 2 9 2 9 0 0 125 8 423 3943920 55200 149.85317993164062 0.97519999999999996 183.2022 20160 13315 0 0 983040 737280 737280 737520 748800 146 25 38 43 171 0 0 0 0 8 0 0 0 0 0 +3119 1783753891583262400 REFRESH 19 0 0.62307609581716394 2 11 2 11 0 0 124 15 417 3943915 55200 150.54643249511719 0.97199999999999998 178.66929999999999 20160 12311 0 0 983040 737280 737280 737515 748800 113 25 26 42 211 0 0 0 0 15 0 0 0 0 0 +3120 1783753891763489700 REFRESH 15 0 0.62399953677828734 3 12 3 12 0 0 95 8 418 3943894 55200 150.3037109375 0.97789999999999999 179.09540000000001 20160 12166 0 0 983040 737280 737280 737494 748800 52 26 32 26 282 0 0 0 0 8 0 0 0 0 0 +3121 1783753891961058600 REFRESH 22 0 0.61689744485022424 3 11 3 11 0 0 120 15 422 3943899 55200 151.99334716796875 0.99909999999999999 181.84700000000001 20160 12108 0 0 983040 737280 737280 737498 748800 135 25 29 28 205 0 0 0 0 15 0 0 0 0 0 +3122 1783753892142529900 REFRESH 29 0 0.65596143867651469 1 12 1 12 0 0 120 13 418 3943922 55200 151.0697021484375 0.97529999999999994 180.3169 20160 12504 0 0 983040 737280 737280 737521 748800 129 25 61 46 157 0 1 0 0 12 0 0 0 0 0 +3123 1783753892367286000 REFRESH 9 0 0.65294522153364676 2 6 2 6 0 0 125 0 433 3943891 55200 152.4703369140625 0.97699999999999998 223.66239999999999 20160 13387 0 0 983040 737280 737280 737491 748800 132 25 81 73 122 0 0 0 0 0 0 0 0 0 0 +3124 1783753892581817700 REFRESH 20 0 0.67972685898650886 2 11 2 11 0 0 112 7 433 3943921 55200 150.60755920410156 0.98119999999999996 178.81890000000001 20160 12423 0 0 983040 737280 737280 737520 748800 140 25 72 91 105 0 0 0 0 7 0 0 0 0 0 +3125 1783753893666737100 DEPTH 8 1 0.79052995627234313 2 5 2 5 0 0 215 26 2567 23664914 81600 868.87583923339844 5.8615999999999993 1083.7532000000001 120960 66056 1 0 5898240 4423680 4423680 4426514 4492800 307 151 160 182 1767 0 0 0 0 26 0 0 0 0 0 +3126 1783753895004025700 DEPTH 56 1 0.78753547384486167 2 5 2 5 0 0 203 22 2569 23664794 81600 858.5888671875 5.8210000000000006 1295.6995999999999 120960 65443 1 0 5898240 4423680 4423680 4426394 4492800 533 156 174 340 1366 0 0 0 0 22 0 0 0 0 0 +3127 1783753896310590400 DEPTH 17 1 0.78618982642273472 0 7 0 7 0 0 186 23 2528 23664799 81600 858.86610412597656 5.8240999999999996 1305.2203 120960 65803 1 0 5898240 4423680 4423680 4426397 4492800 210 156 161 218 1783 0 0 0 0 23 0 0 0 0 0 +3128 1783753897579316900 DEPTH 48 1 0.75023447827843648 2 9 2 9 1 0 116 56 2529 23664864 81600 855.76646423339844 5.8610000000000007 1241.9411 120960 59956 1 0 5898240 4423680 4423680 4426455 4492800 150 150 150 150 1929 1 0 0 0 55 0 0 0 0 1 +3129 1783753898619815000 DEPTH 42 1 0.67362890964519262 4 11 4 11 0 0 132 17 2558 23664861 81600 861.37162780761719 5.8639999999999999 1039.2467999999999 120960 57784 1 0 5898240 4423680 4423680 4426460 4492800 170 150 156 150 1932 0 0 0 0 17 0 0 0 0 0 +3130 1783753899680185800 DEPTH 39 1 0.70807051592389691 3 8 3 8 0 0 167 34 2533 23664878 81600 863.27397155761719 5.8510999999999997 1035.6001000000001 120960 64781 1 0 5898240 4423680 4423680 4426477 4492800 219 150 150 156 1858 0 0 0 0 34 0 0 0 0 0 +3131 1783753900904922600 DEPTH 33 1 0.66785919841179342 1 7 1 7 0 0 181 25 2545 23664902 81600 866.07646179199219 5.8310000000000004 1223.5844999999999 120960 66505 1 0 5898240 4423680 4423680 4426502 4492800 202 153 156 150 1884 0 0 0 0 25 0 0 0 0 0 +3132 1783753902179720100 DEPTH 31 1 0.66481572229812047 2 6 2 6 0 0 124 7 2625 23664836 81600 861.20536804199219 5.8535000000000004 1273.6369 120960 66271 1 0 5898240 4423680 4423680 4426432 4492800 992 150 189 387 907 0 0 0 0 7 0 0 0 0 0 +3133 1783753903483422000 DEPTH 13 1 0.71306117359817556 1 6 1 6 0 0 181 18 2494 23664872 81600 859.99270629882812 5.8431999999999995 1270.8590999999999 120960 64928 1 0 5898240 4423680 4423680 4426471 4492800 257 153 187 199 1698 0 0 0 0 18 0 0 0 0 0 +3134 1783753904814745200 DEPTH 53 1 0.67368609325408912 0 8 0 8 0 0 142 36 2511 23664853 81600 863.031005859375 5.8285 1244.7704000000001 120960 65254 1 0 5898240 4423680 4423680 4426450 4492800 205 175 150 167 1814 0 0 0 0 36 0 0 0 0 0 +3135 1783753906134881000 DEPTH 11 1 0.66440706506185943 0 8 0 8 1 0 101 12 2549 23664856 81600 852.02229309082031 5.8351000000000006 1294.6516999999999 120960 65219 1 0 5898240 4423680 4423680 4426455 4492800 229 150 203 199 1768 0 0 0 0 12 0 0 0 0 1 +3136 1783753907180140100 DEPTH 55 1 0.65937221360386933 1 12 1 12 1 0 137 31 2584 23664847 81600 868.63566589355469 5.8866999999999994 1044.0385000000001 120960 62405 1 0 5898240 4423680 4423680 4426447 4492800 578 150 253 556 1047 2 0 0 0 29 1 0 0 0 1 +3137 1783753908250899700 DEPTH 10 1 0.65076439816709009 1 10 1 10 0 0 114 10 2577 23664913 81600 856.99583435058594 5.8688000000000002 1040.7577000000001 120960 59981 1 0 5898240 4423680 4423680 4426512 4492800 1075 156 215 242 889 0 0 0 0 10 0 0 0 0 0 +3138 1783753909532217800 DEPTH 2 1 0.63460356803880158 2 8 2 8 0 0 137 28 2554 23664796 81600 862.71647644042969 5.8629999999999995 1245.9383 120960 65646 1 0 5898240 4423680 4423680 4426394 4492800 156 150 150 150 1948 0 0 0 0 28 0 0 0 0 0 +3139 1783753910587824500 DEPTH 12 1 0.62468444566113157 3 8 3 8 0 0 172 48 2536 23664920 81600 856.14474487304688 5.9038000000000004 1030.1104 120960 59015 1 0 5898240 4423680 4423680 4426520 4492800 293 150 171 247 1675 0 0 0 0 48 0 0 0 0 0 +3140 1783753911929064900 DEPTH 44 1 0.62459908552838284 2 7 2 7 0 0 142 26 2592 23664903 81600 861.982666015625 5.8339999999999996 1304.9845 120960 65164 1 0 5898240 4423680 4423680 4426503 4492800 221 150 267 170 1784 0 0 0 0 26 0 0 0 0 0 +3141 1783753913053832500 DEPTH 8 1 0.7017740326873807 2 5 2 5 0 0 215 23 2574 23664864 81600 860.3466796875 5.8404999999999996 1081.7156 120960 54868 1 0 5898240 4423680 4423680 4426462 4492800 234 150 157 177 1856 0 0 0 0 23 0 0 0 0 0 +3142 1783753914342815500 DEPTH 56 1 0.69896045398002593 2 5 2 5 0 0 203 32 2587 23664829 81600 850.50965881347656 5.8415999999999997 1287.713 120960 54563 1 0 5898240 4423680 4423680 4426429 4492800 512 156 174 416 1329 0 0 0 0 32 0 0 0 0 0 +3143 1783753915642070600 DEPTH 17 1 0.6978684106544798 0 7 0 7 0 0 186 21 2528 23664865 81600 851.46609497070312 5.8731999999999998 1298.1266000000001 120960 54287 1 0 5898240 4423680 4423680 4426464 4492800 209 156 161 268 1734 0 0 0 0 21 0 0 0 0 0 +3144 1783753916979757000 DEPTH 1 1 0.66183316953965621 1 7 1 7 0 0 124 19 2623 23664895 81600 863.97200012207031 5.8598999999999997 1310.7892999999999 120960 66046 1 0 5898240 4423680 4423680 4426492 4492800 394 155 305 348 1421 0 0 0 0 19 0 0 0 0 0 +3145 1783753918214885500 DEPTH 45 1 0.62443287723774166 2 7 2 7 0 0 131 24 2630 23664856 81600 865.960693359375 5.8431000000000006 1233.8981000000001 120960 65284 1 0 5898240 4423680 4423680 4426455 4492800 215 150 200 198 1867 0 0 0 0 24 0 0 0 0 0 +3146 1783753919319742900 DEPTH 16 1 0.62333521917312074 2 7 2 7 0 0 176 32 2536 23664748 81600 868.67939758300781 5.8513000000000002 1103.7057 120960 65371 1 0 5898240 4423680 4423680 4426346 4492800 166 156 156 523 1535 0 0 0 0 32 0 0 0 0 0 +3147 1783753920621023900 DEPTH 30 1 0.62171221110718955 1 9 1 9 1 0 132 27 2543 23664822 81600 861.49673461914062 5.8829000000000002 1244.7147 120960 65229 1 0 5898240 4423680 4423680 4426422 4492800 156 150 174 150 1913 0 0 0 0 27 0 0 0 0 1 +3148 1783753921674382700 DEPTH 35 1 0.62137533811473 2 11 2 11 0 0 151 64 2540 23664869 81600 862.53445434570312 5.8447000000000005 1037.0192 120960 59085 1 0 5898240 4423680 4423680 4426467 4492800 342 150 155 263 1630 0 0 0 0 64 0 0 0 0 0 +3149 1783753922938234100 DEPTH 48 1 0.69828094580168065 2 9 2 9 0 0 122 52 2528 23664845 81600 846.64971923828125 5.8317000000000005 1235.0653 120960 50288 1 0 5898240 4423680 4423680 4426437 4492800 150 150 150 150 1928 0 0 0 0 52 0 0 0 0 0 +3150 1783753924200888000 DEPTH 13 1 0.70517843144425885 1 6 1 6 0 0 181 16 2493 23664831 81600 853.21861267089844 5.8237000000000005 1261.4867999999999 120960 53966 1 0 5898240 4423680 4423680 4426429 4492800 254 155 186 229 1669 0 0 0 0 16 0 0 0 0 0 +3151 1783753925289830900 DEPTH 20 1 0.66921298147259867 2 11 2 11 0 0 113 22 2633 23664916 81600 858.80186462402344 5.8307000000000002 1033.3964000000001 120960 59108 1 0 5898240 4423680 4423680 4426515 4492800 786 150 344 527 826 0 0 0 1 21 0 0 0 0 0 +3152 1783753926321384200 DEPTH 29 1 0.65083509822879226 1 12 1 12 1 0 121 56 2596 23664797 81600 859.14414978027344 5.8463000000000003 1030.377 120960 59670 1 0 5898240 4423680 4423680 4426394 4492800 182 150 162 152 1950 0 0 0 0 56 0 0 0 0 1 +3153 1783753927649417100 DEPTH 9 1 0.64565139061395538 2 6 2 6 0 0 125 6 2620 23664836 81600 870.11300659179688 5.8571 1299.4607000000001 120960 65543 1 0 5898240 4423680 4423680 4426434 4492800 755 150 431 502 782 0 0 0 0 6 0 0 0 0 0 +3154 1783753928679139200 DEPTH 39 1 0.68789537002742107 3 8 3 8 0 0 167 32 2537 23664734 81600 854.97453308105469 5.8962000000000003 1028.5854999999999 120960 53814 1 0 5898240 4423680 4423680 4426333 4492800 221 150 151 163 1852 0 0 0 0 32 0 0 0 0 0 +3155 1783753929895587200 DEPTH 50 1 0.62353475594068153 2 9 2 9 0 0 126 38 2607 23664877 81600 860.40565490722656 5.8277000000000001 1200.6071999999999 120960 62448 1 0 5898240 4423680 4423680 4426473 4492800 191 150 165 168 1933 0 0 0 0 38 0 0 0 0 0 +3156 1783753930975195000 DEPTH 8 1 0.69283522658838681 2 5 2 5 1 0 215 20 2573 23664932 81600 857.19221496582031 5.8549999999999995 1078.5316 120960 43601 1 0 5898240 4423680 4423680 4426531 4492800 284 150 161 188 1790 0 0 0 0 20 0 0 0 0 1 +3157 1783753931177828100 REFRESH 51 0 0.62139862561351333 3 12 3 12 0 0 92 8 423 3943909 55200 149.58988952636719 0.9768 177.87649999999999 20160 12448 0 0 983040 737280 737280 737509 748800 92 25 108 83 115 0 0 0 0 8 0 0 0 0 0 +3158 1783753931370447500 REFRESH 32 0 0.61795849001901282 2 14 2 14 0 0 118 10 430 3943900 55200 149.71084594726562 0.97409999999999997 178.1893 20160 12451 0 0 983040 737280 737280 737500 748800 211 25 35 33 126 0 0 0 0 10 0 0 0 0 0 +3159 1783753931550915600 REFRESH 25 0 0.61887064475347542 3 11 3 11 0 0 113 7 425 3943916 55200 150.13580322265625 0.97450000000000003 179.3185 20160 12019 0 0 983040 737280 737280 737515 748800 101 25 63 72 164 0 0 0 0 7 0 0 0 0 0 +3160 1783753931755707800 REFRESH 27 0 0.62079972845214093 0 14 0 14 1 0 142 9 414 3943933 55200 150.51571655273438 0.97599999999999998 179.9136 20160 12265 0 0 983040 737280 737280 737533 748800 83 26 31 30 244 0 0 0 0 9 0 0 0 0 1 +3161 1783753931948091000 REFRESH 5 0 0.61161184475648056 2 11 2 11 0 0 91 7 417 3943916 55200 148.69606018066406 0.97070000000000001 177.08410000000001 20160 12398 0 0 983040 737280 737280 737515 748800 75 25 88 118 111 0 0 0 0 7 0 0 0 0 0 +3162 1783753932133382200 REFRESH 16 0 0.5342609088361322 2 7 2 7 0 0 176 2 416 3943921 55200 151.38919067382812 0.97609999999999997 184.16130000000001 20160 13606 0 0 983040 737280 737280 737521 748800 34 27 26 235 94 0 0 0 0 2 0 0 0 0 0 +3163 1783753932380029500 REFRESH 52 0 0.61921606820549169 1 8 1 8 0 0 107 5 431 3943914 55200 150.03546142578125 0.97450000000000003 220.97479999999999 20160 12685 0 0 983040 737280 737280 737514 748800 137 25 33 154 82 0 0 0 0 5 0 0 0 0 0 +3164 1783753932594512100 REFRESH 1 0 0.61362442349733159 1 7 1 7 0 0 124 4 425 3943908 55200 150.95318603515625 0.99919999999999998 213.4323 20160 13420 0 0 983040 737280 737280 737508 748800 132 26 78 85 104 0 0 0 0 4 0 0 0 0 0 +3165 1783753932773609700 REFRESH 19 0 0.6212993400512532 2 11 2 11 0 0 124 14 414 3943897 55200 149.72723388671875 0.97140000000000004 177.9682 20160 12343 0 0 983040 737280 737280 737497 748800 86 25 26 35 242 0 0 0 0 14 0 0 0 0 0 +3166 1783753932977300900 REFRESH 38 0 0.60453307307100634 4 14 4 14 0 0 82 11 418 3943914 55200 149.5521240234375 0.97589999999999999 177.8022 20160 12498 0 0 983040 737280 737280 737514 748800 63 26 47 41 241 0 0 0 0 11 0 0 0 0 0 +3167 1783753933157148000 REFRESH 20 0 0.57256355913109458 2 11 2 11 0 0 114 7 431 3943888 55200 150.20442199707031 0.97519999999999996 178.68940000000001 20160 12536 0 0 983040 737280 737280 737488 748800 147 25 77 95 87 1 0 0 0 6 0 0 0 0 0 +3168 1783753933348913000 REFRESH 45 0 0.60580048297983935 2 7 2 7 0 0 131 5 423 3943916 55200 151.85600280761719 0.97660000000000002 190.54470000000001 20160 13396 0 0 983040 737280 737280 737516 748800 122 25 52 48 176 0 0 0 0 5 0 0 0 0 0 +3169 1783753933581507900 REFRESH 43 0 0.62044419361977932 2 13 2 13 1 0 126 9 420 3943883 55200 151.11640930175781 0.97850000000000004 181.40010000000001 20160 12180 0 0 983040 737280 737280 737483 748800 151 26 41 59 143 0 0 0 0 9 0 0 0 0 1 +3170 1783753933807926400 REFRESH 56 0 0.79022017832706748 2 5 2 5 0 0 203 3 416 3943963 55200 150.21589660644531 0.97260000000000002 225.20689999999999 20160 13412 0 0 983040 737280 737280 737563 748800 185 26 48 65 92 0 0 0 0 3 0 0 0 0 0 +3171 1783753933996942500 REFRESH 34 0 0.61077280565316783 1 13 1 13 0 0 102 3 428 3943878 55200 149.0145263671875 0.97319999999999995 177.2073 20160 12426 0 0 983040 737280 737280 737478 748800 123 25 52 60 168 0 0 0 0 3 0 0 0 0 0 +3172 1783753934190147700 REFRESH 0 0 0.60280488408788235 1 12 1 12 0 0 90 10 425 3943897 55200 149.5572509765625 0.97670000000000001 177.7089 20160 12885 0 0 983040 737280 737280 737497 748800 88 25 46 38 228 0 0 0 0 10 0 0 0 0 0 +3173 1783753934382161400 REFRESH 6 0 0.58764279929046492 3 11 3 11 0 0 116 8 413 3943898 55200 149.46406555175781 0.97619999999999996 176.90450000000001 20160 12515 0 0 983040 737280 737280 737498 748800 26 25 25 25 312 0 0 0 0 8 0 0 0 0 0 +3174 1783753934572532400 REFRESH 53 0 0.67406872986076116 0 8 0 8 0 0 142 11 415 3943919 55200 150.90911865234375 0.97470000000000001 189.1705 20160 13523 0 0 983040 737280 737280 737519 748800 142 26 27 53 167 0 0 0 0 11 0 0 0 0 0 +3175 1783753934856212600 REFRESH 47 0 0.61442597490603146 2 11 2 11 0 0 112 5 423 3943908 55200 149.65350341796875 0.97389999999999999 178.70910000000001 20160 12205 0 0 983040 737280 737280 737508 748800 145 26 52 35 165 0 0 0 0 5 0 0 0 0 0 +3176 1783753935052045400 REFRESH 57 0 0.60551480651172429 2 12 2 12 1 0 121 11 419 3943909 55200 150.91404724121094 0.97709999999999997 180.17250000000001 20160 12410 0 0 983040 737280 737280 737508 748800 117 26 93 88 95 0 0 0 0 11 0 0 0 0 1 +3177 1783753935232435500 REFRESH 35 0 0.61986917502304872 2 11 2 11 0 0 152 9 415 3943918 55200 149.83287048339844 0.99770000000000003 179.2407 20160 12425 0 0 983040 737280 737280 737518 748800 153 25 30 103 104 0 0 1 0 8 0 0 0 0 0 +3178 1783753935420180900 REFRESH 30 0 0.62114007918924097 1 9 1 9 0 0 132 9 414 3943916 55200 150.96115112304688 0.97699999999999998 186.58070000000001 20160 13329 0 0 983040 737280 737280 737516 748800 65 25 43 35 246 0 0 0 0 9 0 0 0 0 0 +3179 1783753935601497200 REFRESH 15 0 0.62059317628933208 3 12 3 12 0 0 95 8 417 3943922 55200 150.61299133300781 0.99919999999999998 180.15379999999999 20160 12154 0 0 983040 737280 737280 737522 748800 57 26 34 26 274 0 0 0 0 8 0 0 0 0 0 +3180 1783753935793685000 REFRESH 48 0 0.72713088429490058 2 9 2 9 0 0 123 13 412 3943917 55200 150.22079467773438 0.97309999999999997 191.00880000000001 20160 14000 0 0 983040 737280 737280 737516 748800 42 25 36 37 272 0 0 0 0 13 0 0 0 0 0 +3181 1783753935997271100 REFRESH 21 0 0.62090792705772535 0 10 0 10 0 0 176 9 415 3943892 55200 151.67564392089844 0.97019999999999995 202.39769999999999 20160 13113 0 0 983040 737280 737280 737492 748800 108 26 33 95 153 0 0 0 0 9 0 0 0 0 0 +3182 1783753936208719000 REFRESH 40 0 0.60829133804362323 1 12 1 12 0 0 118 5 424 3943917 55200 150.73075866699219 0.97209999999999996 186.20359999999999 20160 12653 0 0 983040 737280 737280 737517 748800 165 25 41 88 105 0 0 0 0 5 0 0 0 0 0 +3183 1783753936402248000 REFRESH 42 0 0.66636205301989837 4 11 4 11 0 0 132 5 416 3943903 55200 149.74668884277344 0.97709999999999997 178.10830000000001 20160 12306 0 0 983040 737280 737280 737503 748800 91 25 26 25 249 0 0 0 0 5 0 0 0 0 0 +3184 1783753936593127800 REFRESH 4 0 0.57638146177503624 1 13 1 13 1 0 49 2 416 3943909 55200 148.70527648925781 0.97650000000000003 176.20070000000001 20160 13571 0 0 983040 737280 737280 737509 748800 28 25 44 41 278 0 0 1 0 1 0 0 0 0 1 +3185 1783753936789516000 REFRESH 37 0 0.61913449711187329 1 12 1 12 0 0 136 8 430 3943891 55200 150.71955871582031 0.9748 179.6747 20160 12197 0 0 983040 737280 737280 737491 748800 167 26 57 34 146 1 0 0 0 7 0 0 0 0 0 +3186 1783753936989325700 REFRESH 22 0 0.61576150040214972 3 11 3 11 0 0 120 9 421 3943933 55200 150.51487731933594 0.98609999999999998 183.32759999999999 20160 12188 0 0 983040 737280 737280 737533 748800 151 25 31 29 185 0 0 0 0 9 0 0 0 0 0 +3187 1783753937222366500 REFRESH 11 0 0.66615582454061573 0 8 0 8 0 0 101 5 418 3943900 55200 150.38668823242188 0.98499999999999999 231.857 20160 13514 0 0 983040 737280 737280 737500 748800 112 25 64 68 149 0 0 0 0 5 0 0 0 0 0 +3188 1783753937425112500 REFRESH 13 0 0.78708320323302827 1 6 1 6 0 0 181 2 415 3943937 55200 150.72665405273438 0.97929999999999995 201.5729 20160 13580 0 0 983040 737280 737280 737537 748800 149 26 50 89 101 0 0 0 0 2 0 0 0 0 0 +3189 1783753937651379200 REFRESH 17 0 0.78940304903017511 0 7 0 7 0 0 186 5 413 3943907 55200 150.98777770996094 0.97389999999999999 225.125 20160 13550 0 0 983040 737280 737280 737506 748800 101 26 37 101 148 0 0 0 0 5 0 0 0 0 0 +3190 1783753937832477000 REFRESH 29 0 0.64611910366982106 1 12 1 12 0 0 121 12 418 3943898 55200 150.34880065917969 0.97309999999999997 179.90299999999999 20160 12502 0 0 983040 737280 737280 737498 748800 107 25 52 45 189 0 0 0 0 12 0 0 0 0 0 +3191 1783753938021523700 REFRESH 33 0 0.66879395847679757 1 7 1 7 0 0 181 7 418 3943926 55200 151.26322937011719 0.97240000000000004 187.9341 20160 13402 0 0 983040 737280 737280 737526 748800 117 26 46 40 189 0 0 0 0 7 0 0 0 0 0 +3192 1783753938223621300 REFRESH 3 0 0.62070467127837703 2 9 2 9 0 0 142 9 417 3943899 55200 150.47987365722656 0.97799999999999998 185.2252 20160 13285 0 0 983040 737280 737280 737499 748800 190 25 37 64 101 0 0 0 0 9 0 0 0 0 0 +3193 1783753938439422000 REFRESH 12 0 0.62449799544302675 3 8 3 8 0 0 172 7 416 3943911 55200 150.32832336425781 0.96899999999999997 180.63910000000001 20160 12347 0 0 983040 737280 737280 737511 748800 139 26 39 105 107 0 0 0 0 7 0 0 0 0 0 +3194 1783753938640333100 REFRESH 14 0 0.62075790514656282 0 12 0 12 0 0 111 7 418 3943896 55200 150.35084533691406 0.98350000000000004 185.13229999999999 20160 12161 0 0 983040 737280 737280 737496 748800 108 26 29 41 214 0 0 0 0 7 0 0 0 0 0 +3195 1783753938826042900 REFRESH 8 0 0.79384502173578753 2 5 2 5 0 0 215 6 415 3943926 55200 151.31033325195312 0.99870000000000003 184.57390000000001 20160 13520 0 0 983040 737280 737280 737526 748800 162 26 30 70 127 0 0 0 0 6 0 0 0 0 0 +3196 1783753939008068900 REFRESH 39 0 0.68868396567811285 3 8 3 8 0 0 167 8 407 3943905 55200 150.78707885742188 0.97419999999999995 180.86240000000001 20160 13292 0 0 983040 737280 737280 737505 748800 78 28 29 33 239 0 0 0 0 8 0 0 0 0 0 +3197 1783753939215532800 REFRESH 24 0 0.61713760458353784 4 11 4 11 0 0 132 13 409 3943914 55200 150.52175903320312 1.0327999999999999 182.70959999999999 20160 11872 0 0 983040 737280 737280 737514 748800 59 26 39 52 233 0 0 0 1 12 0 0 0 0 0 +3198 1783753939398806800 REFRESH 55 0 0.65344555359089518 1 12 1 12 0 0 137 6 428 3943906 55200 151.58988952636719 0.98199999999999998 182.03110000000001 20160 12885 0 0 983040 737280 737280 737506 748800 137 25 57 102 107 0 0 0 0 6 0 0 0 0 0 +3199 1783753939676660900 REFRESH 54 0 0.61930810482641185 1 8 1 8 0 0 112 1 426 3943922 55200 150.25357055664062 0.98670000000000002 223.9785 20160 13248 0 0 983040 737280 737280 737522 748800 149 25 59 117 76 0 0 0 0 1 0 0 0 0 0 +3200 1783753939872054100 REFRESH 7 0 0.61907256650370146 1 12 1 12 0 0 129 9 419 3943919 55200 149.823486328125 0.97699999999999998 179.84700000000001 20160 12240 0 0 983040 737280 737280 737519 748800 162 26 29 37 165 0 0 0 0 9 0 0 0 0 0 +3201 1783753940058107700 REFRESH 50 0 0.62298375938465544 2 9 2 9 0 0 128 9 423 3943905 55200 150.84442138671875 0.97870000000000001 184.81440000000001 20160 13134 0 0 983040 737280 737280 737505 748800 154 25 38 51 155 0 0 0 0 9 0 0 0 0 0 +3202 1783753940261547100 REFRESH 49 0 0.61655336717731557 3 10 3 10 0 0 126 6 419 3943876 55200 150.08026123046875 0.99639999999999995 179.03630000000001 20160 12174 0 0 983040 737280 737280 737476 748800 128 26 66 53 146 0 0 0 0 6 0 0 0 0 0 +3203 1783753940456564000 REFRESH 23 0 0.62003533867937244 3 14 3 14 0 0 103 8 415 3943898 55200 150.33241271972656 0.97560000000000002 180.0977 20160 12003 0 0 983040 737280 737280 737497 748800 55 25 53 45 237 0 0 0 0 8 0 0 0 0 0 +3204 1783753940705069100 REFRESH 44 0 0.62586699239127097 2 7 2 7 0 0 142 6 422 3943908 55200 150.33549499511719 0.97729999999999995 224.22370000000001 20160 13363 0 0 983040 737280 737280 737508 748800 97 26 70 30 199 0 0 0 0 6 0 0 0 0 0 +3205 1783753940896278400 REFRESH 26 0 0.61123499882716037 1 13 1 13 0 0 79 8 427 3943954 55200 148.45030212402344 0.97599999999999998 176.7175 20160 12703 0 0 983040 737280 737280 737554 748800 39 25 36 50 277 0 0 0 0 8 0 0 0 0 0 +3206 1783753941083747800 REFRESH 2 0 0.63271495670454447 2 8 2 8 0 0 137 7 418 3943906 55200 151.00314331054688 0.97719999999999996 186.37389999999999 20160 13572 0 0 983040 737280 737280 737506 748800 36 25 65 102 190 0 0 0 0 7 0 0 0 0 0 +3207 1783753941286727900 REFRESH 58 0 0.61333132888592523 2 12 2 12 0 0 120 14 425 3943938 55200 150.45529174804688 0.97470000000000001 178.49039999999999 20160 12152 0 0 983040 737280 737280 737538 748800 101 26 58 57 183 0 0 0 0 14 0 0 0 0 0 +3208 1783753941467698500 REFRESH 10 0 0.64868890985396233 1 10 1 10 0 0 114 3 427 3943903 55200 149.40159606933594 0.97619999999999996 179.86750000000001 20160 12168 0 0 983040 737280 737280 737503 748800 240 26 37 41 83 0 0 0 0 3 0 0 0 0 0 +3209 1783753941694307000 REFRESH 41 0 0.61812200580123422 1 10 1 10 0 0 110 5 420 3943907 55200 149.1435546875 0.97519999999999996 202.60489999999999 20160 12882 0 0 983040 737280 737280 737507 748800 134 26 48 48 164 0 0 0 0 5 0 0 0 0 0 +3210 1783753941889320700 REFRESH 36 0 0.61224469500639356 3 10 3 10 0 0 112 4 430 3943896 55200 150.1265869140625 0.96940000000000004 179.30369999999999 20160 12175 0 0 983040 737280 737280 737496 748800 227 25 39 50 89 0 0 0 0 4 0 0 0 0 0 +3211 1783753942158250400 REFRESH 9 0 0.64508722463113966 2 6 2 6 0 0 125 1 433 3943896 55200 152.82893371582031 0.97160000000000002 223.87950000000001 20160 13280 0 0 983040 737280 737280 737496 748800 134 25 82 73 119 0 0 0 0 1 0 0 0 0 0 +3212 1783753942351124500 REFRESH 18 0 0.61742183956775221 4 15 4 15 0 0 103 6 416 3943921 55200 149.86854553222656 0.9728 177.5478 20160 11946 0 0 983040 737280 737280 737521 748800 33 25 25 27 306 0 0 0 0 6 0 0 0 0 0 +3213 1783753942547048900 REFRESH 28 0 0.61268077089352113 1 12 1 12 0 0 146 6 399 3943899 55200 150.150146484375 0.97629999999999995 180.4812 20160 12356 0 0 983040 737280 737280 737499 748800 143 26 30 29 171 0 0 0 0 6 0 0 0 0 0 +3214 1783753942743131400 REFRESH 46 0 0.62114892890611184 2 15 2 15 0 0 110 10 419 3943908 55200 150.91818237304688 0.99260000000000004 180.2473 20160 12062 0 0 983040 737280 737280 737508 748800 95 26 54 31 213 0 0 0 0 10 0 0 0 0 0 +3215 1783753942961224800 REFRESH 31 0 0.66350557201504212 2 6 2 6 0 0 124 5 430 3943910 55200 149.51116943359375 0.97550000000000003 216.9511 20160 13459 0 0 983040 737280 737280 737510 748800 217 25 32 74 82 0 0 0 0 5 0 0 0 0 0 +3216 1783753944303025700 DEPTH 17 1 0.78568540295018141 0 7 0 7 0 0 186 20 2523 23664784 81600 858.88410949707031 5.8247 1300.3411000000001 120960 65903 1 0 5898240 4423680 4423680 4426384 4492800 210 156 159 244 1754 0 0 0 0 20 0 0 0 0 0 +3217 1783753945605339500 DEPTH 56 1 0.78435195479287922 2 5 2 5 0 0 203 27 2576 23664820 81600 859.29629516601562 5.8385999999999996 1301.095 120960 65431 1 0 5898240 4423680 4423680 4426417 4492800 533 156 174 306 1407 0 0 0 0 27 0 0 0 0 0 +3218 1783753946874529400 DEPTH 13 1 0.78072437125472827 1 6 1 6 0 0 181 23 2498 23664949 81600 859.78384399414062 5.8273000000000001 1268.0441000000001 120960 65887 1 0 5898240 4423680 4423680 4426549 4492800 263 156 191 233 1655 0 0 0 0 23 0 0 0 0 0 +3219 1783753947989038300 DEPTH 8 1 0.78061821515131802 2 5 2 5 0 0 216 27 2560 23665000 81600 870.19931030273438 5.8483000000000001 1089.3444999999999 120960 66430 1 0 5898240 4423680 4423680 4426599 4492800 339 150 162 176 1733 0 0 0 0 27 0 0 0 0 0 +3220 1783753949234450700 DEPTH 48 1 0.7169769728665224 2 9 2 9 0 0 126 52 2526 23664793 81600 853.94728088378906 5.8218000000000005 1244.2156 120960 65130 1 0 5898240 4423680 4423680 4426392 4492800 150 150 150 150 1926 0 0 0 0 52 0 0 0 0 0 +3221 1783753950542682600 DEPTH 53 1 0.67435311703724066 0 8 0 8 0 0 142 43 2511 23664823 81600 912.52325439453125 5.8638000000000003 1307.0255999999999 120960 65449 1 0 5898240 4423680 4423680 4426420 4492800 204 156 150 171 1830 0 0 0 0 43 0 0 0 0 0 +3222 1783753951992508500 DEPTH 33 1 0.66647067260341786 1 7 1 7 0 0 181 27 2548 23664858 81600 1022.4199523925781 5.8840000000000003 1390.2260000000001 120960 65705 1 0 5898240 4423680 4423680 4426457 4492800 199 151 156 150 1892 0 0 0 0 27 0 0 0 0 0 +3223 1783753953355949600 DEPTH 11 1 0.66257739230509061 0 8 0 8 1 0 101 10 2532 23664838 81600 892.01152038574219 5.8936999999999999 1342.4093 120960 65517 1 0 5898240 4423680 4423680 4426436 4492800 238 150 206 199 1739 0 0 0 0 10 0 0 0 0 1 +3224 1783753954420576200 DEPTH 39 1 0.67823558907635362 3 8 3 8 0 0 168 38 2544 23664836 81600 887.50387573242188 5.8860999999999999 1063.3518999999999 120960 64754 1 0 5898240 4423680 4423680 4426434 4492800 222 150 151 156 1865 0 0 0 0 38 0 0 0 0 0 +3225 1783753955777108300 DEPTH 1 1 0.65927504724159702 1 7 1 7 0 0 124 16 2622 23664850 81600 872.67234802246094 5.883 1321.606 120960 65847 1 0 5898240 4423680 4423680 4426449 4492800 408 156 306 319 1433 0 0 0 0 16 0 0 0 0 0 +3226 1783753956820016900 DEPTH 42 1 0.6546309119479663 4 11 4 11 0 0 132 24 2550 23664846 81600 867.24876403808594 5.8574999999999999 1041.7031999999999 120960 58023 1 0 5898240 4423680 4423680 4426445 4492800 172 150 156 150 1922 0 0 0 0 24 0 0 0 0 0 +3227 1783753957886383800 DEPTH 20 1 0.65359949142082874 2 11 2 11 0 0 114 27 2629 23664895 81600 867.05256652832031 5.859 1041.0082 120960 59853 1 0 5898240 4423680 4423680 4426492 4492800 760 150 345 566 808 0 0 0 0 27 0 0 0 0 0 +3228 1783753958986389600 DEPTH 55 1 0.64371708755355184 1 12 1 12 1 0 137 34 2579 23664825 81600 917.62687683105469 5.8820999999999994 1098.7651000000001 120960 62483 1 0 5898240 4423680 4423680 4426425 4492800 585 150 249 563 1032 0 0 0 0 34 0 0 0 0 1 +3229 1783753960133636300 DEPTH 29 1 0.64172790350597764 1 12 1 12 1 0 122 51 2568 23664879 81600 949.61148071289062 5.9012000000000002 1126.4675 120960 59234 1 0 5898240 4423680 4423680 4426479 4492800 199 150 163 157 1899 0 0 0 0 51 0 0 0 0 1 +3230 1783753961427134400 DEPTH 45 1 0.62205724946405039 2 7 2 7 0 0 133 25 2612 23664785 81600 915.21649169921875 5.8933 1291.9906000000001 120960 65396 1 0 5898240 4423680 4423680 4426383 4492800 241 150 205 217 1799 0 0 0 0 25 0 0 0 0 0 +3231 1783753962524976700 DEPTH 12 1 0.62113139022137531 3 8 3 8 0 0 174 38 2522 23664848 81600 919.2510986328125 5.9087000000000005 1096.6601000000001 120960 58711 1 0 5898240 4423680 4423680 4426447 4492800 289 150 172 266 1645 0 0 0 0 38 0 0 0 0 0 +3232 1783753963907319300 DEPTH 17 1 0.69725875040535445 0 7 0 7 0 0 186 22 2524 23664851 81600 895.31312561035156 5.8754 1343.4482 120960 54392 1 0 5898240 4423680 4423680 4426451 4492800 212 156 163 260 1733 0 0 0 0 22 0 0 0 0 0 +3233 1783753965286971100 DEPTH 56 1 0.69594394451372754 2 5 2 5 1 0 204 19 2583 23664772 81600 856.42135620117188 5.8764000000000003 1296.0344 120960 54301 1 0 5898240 4423680 4423680 4426372 4492800 549 156 174 388 1316 0 0 0 0 19 0 0 0 0 1 +3234 1783753966582512500 DEPTH 13 1 0.69291189800501962 1 6 1 6 0 0 181 25 2496 23664806 81600 857.85191345214844 5.8627000000000002 1270.7116000000001 120960 54652 1 0 5898240 4423680 4423680 4426406 4492800 256 156 184 276 1624 0 0 0 0 25 0 0 0 0 0 +3235 1783753967671826100 DEPTH 8 1 0.70164119847112272 2 5 2 5 0 0 216 27 2562 23664826 81600 867.08834838867188 5.8603000000000005 1088.1167 120960 55357 1 0 5898240 4423680 4423680 4426426 4492800 321 150 163 193 1735 0 0 0 0 27 0 0 0 0 0 +3236 1783753968739866700 DEPTH 10 1 0.63950562914640829 1 10 1 10 0 0 116 15 2580 23664770 81600 863.39918518066406 5.867 1049.3248000000001 120960 58443 1 0 5898240 4423680 4423680 4426369 4492800 1174 156 216 244 790 1 0 0 0 14 0 0 0 0 0 +3237 1783753970028427700 DEPTH 2 1 0.62779858187016002 2 8 2 8 0 0 137 33 2549 23664911 81600 869.95777893066406 5.8933999999999997 1260.1148000000001 120960 65867 1 0 5898240 4423680 4423680 4426510 4492800 156 150 150 150 1943 0 0 0 0 33 0 0 0 0 0 +3238 1783753971341403200 DEPTH 44 1 0.62282093765549007 2 7 2 7 0 0 142 26 2592 23664904 81600 870.52706909179688 5.8486999999999991 1311.7507000000001 120960 64939 1 0 5898240 4423680 4423680 4426503 4492800 223 150 271 172 1776 0 0 0 0 26 0 0 0 0 0 +3239 1783753972529181300 DEPTH 50 1 0.62132701697386383 2 9 2 9 0 0 128 16 2606 23664814 81600 865.76947021484375 5.8521000000000001 1186.5243 120960 63153 1 0 5898240 4423680 4423680 4426413 4492800 173 150 163 163 1957 0 0 0 0 16 0 0 0 0 0 +3240 1783753973810950400 DEPTH 31 1 0.66006914945062312 2 6 2 6 0 0 124 15 2626 23664918 81600 866.0892333984375 5.8426 1280.5740000000001 120960 65144 1 0 5898240 4423680 4423680 4426515 4492800 995 150 188 356 937 0 0 0 0 15 0 0 0 0 0 +3241 1783753975095746000 DEPTH 48 1 0.66761770998230108 2 9 2 9 0 0 132 51 2509 23664850 81600 851.80825805664062 5.8667999999999996 1240.9487999999999 120960 53874 1 0 5898240 4423680 4423680 4426450 4492800 150 150 150 150 1909 0 0 0 0 51 0 0 0 0 0 +3242 1783753976439648900 DEPTH 9 1 0.639415468218692 2 6 2 6 0 0 126 8 2624 23664858 81600 875.65412902832031 5.8771999999999993 1320.0216 120960 65112 1 0 5898240 4423680 4423680 4426457 4492800 751 150 406 509 808 0 0 0 0 8 0 0 0 0 0 +3243 1783753977769945000 DEPTH 21 1 0.61984910927252135 0 10 0 10 1 0 176 38 2597 23664786 81600 870.75430297851562 5.8720000000000008 1310.4123 120960 64947 1 0 5898240 4423680 4423680 4426386 4492800 376 150 172 312 1587 0 0 0 0 38 0 0 0 0 1 +3244 1783753978851938800 DEPTH 19 1 0.61968417769868989 2 11 2 11 0 0 124 23 2624 23664849 81600 867.15266418457031 5.8555999999999999 1041.7326 120960 58795 1 0 5898240 4423680 4423680 4426449 4492800 197 150 150 156 1971 0 0 0 0 23 0 0 0 0 0 +3245 1783753980117695200 DEPTH 30 1 0.61949221457735337 1 9 1 9 0 0 132 27 2532 23664831 81600 866.84400939941406 5.8681999999999999 1237.7936999999999 120960 64861 1 0 5898240 4423680 4423680 4426430 4492800 156 150 174 150 1902 0 0 0 0 27 0 0 0 0 0 +3246 1783753981186841200 DEPTH 46 1 0.61915754382115795 2 15 2 15 0 0 112 32 2581 23664893 81600 866.56065368652344 5.8921000000000001 1041.9864 120960 57299 1 0 5898240 4423680 4423680 4426490 4492800 210 150 162 166 1893 0 0 0 0 32 0 0 0 0 0 +3247 1783753982286696700 DEPTH 51 1 0.61877456406868103 3 12 3 12 1 0 92 17 2589 23664824 81600 859.7421875 5.8759000000000006 1042.7983999999999 120960 59930 1 0 5898240 4423680 4423680 4426424 4492800 258 150 346 291 1544 0 0 0 0 17 0 0 0 0 1 +3248 1783753982482968600 REFRESH 58 0 0.61265197313916075 2 12 2 12 0 0 120 8 424 3943902 55200 151.36972045898438 0.98250000000000004 180.32579999999999 20160 12207 0 0 983040 737280 737280 737502 748800 111 26 65 67 155 0 0 0 0 8 0 0 0 0 0 +3249 1783753982663392400 REFRESH 19 0 0.41782734843586078 2 11 2 11 0 0 125 8 419 3943885 55200 150.793212890625 0.97509999999999997 179.26499999999999 20160 12528 0 0 983040 737280 737280 737485 748800 97 25 26 41 230 0 0 0 0 8 0 0 0 0 0 +3250 1783753982870451800 REFRESH 7 0 0.61689374263023278 1 12 1 12 0 0 130 8 420 3943897 55200 152.38841247558594 0.98960000000000004 182.53899999999999 20160 12337 0 0 983040 737280 737280 737497 748800 159 26 29 33 173 0 0 0 0 8 0 0 0 0 0 +3251 1783753983063830000 REFRESH 0 0 0.60438314805810123 1 12 1 12 0 0 90 5 430 3943906 55200 150.32115173339844 0.98089999999999999 178.93879999999999 20160 13017 0 0 983040 737280 737280 737506 748800 81 25 42 37 245 0 0 0 0 5 0 0 0 0 0 +3252 1783753983261755500 REFRESH 23 0 0.61640415704207063 3 14 3 14 0 0 103 16 413 3943909 55200 151.44242858886719 0.97260000000000002 181.2884 20160 11998 0 0 983040 737280 737280 737509 748800 59 25 53 43 233 0 0 0 0 16 0 0 0 0 0 +3253 1783753983484528200 REFRESH 21 0 0.46973517270078802 0 10 0 10 0 0 176 11 415 3943914 55200 151.34104919433594 0.97340000000000004 203.28880000000001 20160 13447 0 0 983040 737280 737280 737514 748800 103 26 33 89 164 0 0 0 0 11 0 0 0 0 0 +3254 1783753983723587900 REFRESH 52 0 0.6181190597349282 1 8 1 8 0 0 107 4 436 3943931 55200 149.85011291503906 0.97340000000000004 222.48220000000001 20160 12684 0 0 983040 737280 737280 737531 748800 139 25 34 155 83 0 0 0 0 4 0 0 0 0 0 +3255 1783753983918527500 REFRESH 47 0 0.60948916780964968 2 11 2 11 0 0 112 4 421 3943921 55200 150.90380859375 0.97870000000000001 179.6884 20160 12189 0 0 983040 737280 737280 737521 748800 139 26 51 36 169 0 0 0 0 4 0 0 0 0 0 +3256 1783753984100875300 REFRESH 42 0 0.6488758156150165 4 11 4 11 0 0 132 15 414 3943916 55200 152.22067260742188 0.98009999999999997 180.77070000000001 20160 12378 0 0 983040 737280 737280 737515 748800 59 25 27 25 278 0 0 0 0 15 0 0 0 0 0 +3257 1783753984283754100 REFRESH 29 0 0.63762632089605509 1 12 1 12 0 0 122 5 414 3943919 55200 151.84486389160156 0.97260000000000002 181.61279999999999 20160 12630 0 0 983040 737280 737280 737519 748800 152 25 67 49 121 0 0 0 0 5 0 0 0 0 0 +3258 1783753984480881300 REFRESH 15 0 0.61744219501023545 3 12 3 12 0 0 95 5 420 3943914 55200 151.69024658203125 0.97719999999999996 181.21719999999999 20160 12104 0 0 983040 737280 737280 737514 748800 56 26 35 26 277 0 0 1 0 4 0 0 0 0 0 +3259 1783753984679423500 REFRESH 37 0 0.61653309292033964 1 12 1 12 0 0 136 9 427 3943902 55200 150.98777770996094 1.0185 182.29589999999999 20160 12217 0 0 983040 737280 737280 737502 748800 161 26 51 35 154 1 0 0 0 8 0 0 0 0 0 +3260 1783753984898680900 REFRESH 31 0 0.61187317347735126 2 6 2 6 0 0 124 4 427 3943917 55200 151.22431945800781 0.98019999999999996 218.11590000000001 20160 13308 0 0 983040 737280 737280 737517 748800 212 25 32 73 85 0 0 0 0 4 0 0 0 0 0 +3261 1783753985100997200 REFRESH 13 0 0.78485378443192844 1 6 1 6 0 0 181 6 415 3943897 55200 152.6231689453125 0.99160000000000004 201.2054 20160 13415 0 0 983040 737280 737280 737497 748800 156 26 51 88 94 0 0 0 0 6 0 0 0 0 0 +3262 1783753985290890900 REFRESH 2 0 0.62625333266022865 2 8 2 8 0 0 137 9 419 3943884 55200 151.89811706542969 0.97670000000000001 188.3442 20160 13363 0 0 983040 737280 737280 737484 748800 33 25 65 103 193 0 0 0 0 9 0 0 0 0 0 +3263 1783753985519032900 REFRESH 11 0 0.66428251669808602 0 8 0 8 0 0 101 4 418 3943931 55200 151.95648193359375 0.98119999999999996 226.952 20160 13354 0 0 983040 737280 737280 737531 748800 104 25 58 68 163 0 0 0 0 4 0 0 0 0 0 +3264 1783753985709587600 REFRESH 45 0 0.62350545285255454 2 7 2 7 0 0 133 10 424 3943925 55200 152.45210266113281 0.9889 189.29490000000001 20160 13482 0 0 983040 737280 737280 737524 748800 123 25 55 49 172 0 0 0 0 10 0 0 0 0 0 +3265 1783753985933978500 REFRESH 55 0 0.63890196566654467 1 12 1 12 0 0 137 9 426 3943910 55200 153.01426696777344 0.97840000000000005 182.46420000000001 20160 12870 0 0 983040 737280 737280 737510 748800 134 25 57 100 110 0 0 0 0 9 0 0 0 0 0 +3266 1783753986130905800 REFRESH 36 0 0.60626925891702843 3 10 3 10 0 0 112 7 435 3943919 55200 151.77317810058594 0.97319999999999995 181.10380000000001 20160 12189 0 0 983040 737280 737280 737519 748800 229 25 39 48 94 0 0 0 0 7 0 0 0 0 0 +3267 1783753986322226700 REFRESH 48 0 0.69906311662762466 2 9 2 9 0 0 132 6 412 3943923 55200 150.39488220214844 0.97589999999999999 190.0676 20160 12829 0 0 983040 737280 737280 737523 748800 41 25 36 36 274 1 0 0 0 5 0 0 0 0 0 +3268 1783753986527622100 REFRESH 24 0 0.61667879254617297 4 11 4 11 0 0 132 8 410 3943915 55200 150.99903869628906 0.97840000000000005 181.6782 20160 11982 0 0 983040 737280 737280 737515 748800 70 27 47 58 208 0 0 0 0 8 0 0 0 0 0 +3269 1783753986721179900 REFRESH 34 0 0.60466500336827234 1 13 1 13 0 0 102 7 432 3943910 55200 150.42048645019531 0.97860000000000003 177.9879 20160 12348 0 0 983040 737280 737280 737510 748800 130 25 55 67 155 0 0 0 0 7 0 0 0 0 0 +3270 1783753986903609000 REFRESH 12 0 0.62096569843530192 3 8 3 8 0 0 176 8 414 3943906 55200 151.66668701171875 0.97670000000000001 181.3065 20160 12393 0 0 983040 737280 737280 737505 748800 141 26 42 105 100 0 0 0 1 7 0 0 0 0 0 +3271 1783753987088017400 REFRESH 39 0 0.67078448086786557 3 8 3 8 0 0 168 6 417 3943924 55200 153.30601501464844 0.97870000000000001 183.2406 20160 13519 0 0 983040 737280 737280 737524 748800 86 31 29 31 240 0 0 0 0 6 0 0 0 0 0 +3272 1783753987279783600 REFRESH 10 0 0.63811642331188989 1 10 1 10 0 0 116 2 428 3943883 55200 150.97737121582031 1.0017 190.3545 20160 12922 0 0 983040 737280 737280 737483 748800 242 26 37 39 84 0 0 0 0 2 0 0 0 0 0 +3273 1783753987482520500 REFRESH 5 0 0.60981616107997338 2 11 2 11 0 0 91 10 413 3943892 55200 150.02418518066406 0.9748 178.0651 20160 12376 0 0 983040 737280 737280 737492 748800 83 26 92 118 94 0 0 0 0 10 0 0 0 0 0 +3274 1783753987684758800 REFRESH 3 0 0.61848541668440016 2 9 2 9 0 0 142 5 418 3943923 55200 151.39328002929688 0.97999999999999998 185.09829999999999 20160 13175 0 0 983040 737280 737280 737523 748800 196 25 37 69 91 0 0 0 0 5 0 0 0 0 0 +3275 1783753987882072300 REFRESH 43 0 0.61788108552260146 2 13 2 13 0 0 126 9 420 3943900 55200 151.86329650878906 0.97829999999999995 181.34620000000001 20160 12127 0 0 983040 737280 737280 737499 748800 157 26 42 58 137 0 0 0 0 9 0 0 0 0 0 +3276 1783753988084770500 REFRESH 16 0 0.61730960842724514 2 7 2 7 0 0 176 9 416 3943908 55200 153.15455627441406 0.97299999999999998 186.173 20160 13422 0 0 983040 737280 737280 737507 748800 33 27 26 232 98 0 0 0 0 9 0 0 0 0 0 +3277 1783753988310351100 REFRESH 9 0 0.64123798262157949 2 6 2 6 0 0 126 4 436 3943898 55200 152.1817626953125 0.97640000000000005 224.4744 20160 13512 0 0 983040 737280 737280 737498 748800 137 25 82 73 119 0 0 0 0 4 0 0 0 0 0 +3278 1783753988505836200 REFRESH 26 0 0.61038763272540764 1 13 1 13 1 0 79 9 424 3943922 55200 150.20133972167969 0.98150000000000004 179.2877 20160 12770 0 0 983040 737280 737280 737522 748800 41 25 38 49 271 0 0 0 0 9 0 0 0 0 1 +3279 1783753988727656600 REFRESH 41 0 0.61383095322218451 1 10 1 10 0 0 110 8 417 3943911 55200 150.47177124023438 0.97860000000000003 205.55850000000001 20160 12931 0 0 983040 737280 737280 737509 748800 132 26 48 47 164 0 0 0 0 8 0 0 0 0 0 +3280 1783753988920621700 REFRESH 18 0 0.61171225721744693 4 15 4 15 0 0 103 7 417 3943933 55200 150.73587036132812 0.97319999999999995 178.476 20160 11937 0 0 983040 737280 737280 737533 748800 33 25 25 27 307 0 0 0 0 7 0 0 0 0 0 +3281 1783753989148501600 REFRESH 44 0 0.6240129402186988 2 7 2 7 0 0 142 7 423 3943910 55200 152.59750366210938 0.98019999999999996 226.3603 20160 13433 0 0 983040 737280 737280 737510 748800 97 26 72 32 196 0 0 0 0 7 0 0 0 0 0 +3282 1783753989353580000 REFRESH 22 0 0.61371136143769878 3 11 3 11 0 0 120 11 423 3943941 55200 151.96284484863281 0.97740000000000005 181.25989999999999 20160 12252 0 0 983040 737280 737280 737541 748800 135 25 30 28 205 0 0 0 1 10 0 0 0 0 0 +3283 1783753989534135000 REFRESH 51 0 0.61803963026636222 3 12 3 12 0 0 92 9 424 3943913 55200 149.83065795898438 0.97809999999999997 179.30930000000001 20160 11984 0 0 983040 737280 737280 737513 748800 103 25 104 79 113 0 0 0 0 9 0 0 0 0 0 +3284 1783753989739836300 REFRESH 6 0 0.58667522134710515 3 11 3 11 0 0 117 9 418 3943910 55200 151.62162780761719 0.9748 181.62139999999999 20160 12566 0 0 983040 737280 737280 737509 748800 26 25 25 25 317 0 0 0 0 9 0 0 0 0 0 +3285 1783753989936241400 REFRESH 57 0 0.60593401236833233 2 12 2 12 0 0 122 8 416 3943907 55200 151.1331787109375 0.97509999999999997 180.25030000000001 20160 12437 0 0 983040 737280 737280 737507 748800 114 26 90 80 106 0 0 0 0 8 0 0 0 0 0 +3286 1783753990175917300 REFRESH 1 0 0.66128012037949602 1 7 1 7 0 0 124 3 424 3943909 55200 152.67532348632812 0.97550000000000003 213.04830000000001 20160 13461 0 0 983040 737280 737280 737509 748800 135 26 84 87 92 0 0 0 0 3 0 0 0 0 0 +3287 1783753990363299400 REFRESH 50 0 0.62074094224548237 2 9 2 9 0 0 128 3 424 3943937 55200 150.66213989257812 0.97750000000000004 186.0992 20160 12833 0 0 983040 737280 737280 737536 748800 122 25 37 44 196 0 0 0 0 3 0 0 0 0 0 +3288 1783753990545750300 REFRESH 20 0 0.6484036912445017 2 11 2 11 0 0 114 7 431 3943896 55200 152.40396118164062 0.97829999999999995 181.28790000000001 20160 12633 0 0 983040 737280 737280 737495 748800 148 25 74 98 86 0 0 1 0 6 0 0 0 0 0 +3289 1783753990778844700 REFRESH 56 0 0.79085044322822551 2 5 2 5 0 0 204 5 413 3943904 55200 152.71629333496094 0.97440000000000004 231.90100000000001 20160 13662 0 0 983040 737280 737280 737504 748800 182 26 45 67 93 0 0 0 0 5 0 0 0 0 0 +3290 1783753990984894500 REFRESH 35 0 0.61768316989388183 2 11 2 11 1 0 152 6 417 3943886 55200 151.54893493652344 0.97450000000000003 180.846 20160 12460 0 0 983040 737280 737280 737484 748800 154 25 30 99 109 0 0 0 0 6 0 0 0 0 1 +3291 1783753991180857400 REFRESH 32 0 0.61694871476671465 2 14 2 14 0 0 118 7 430 3943901 55200 150.9222412109375 0.97389999999999999 179.97300000000001 20160 12474 0 0 983040 737280 737280 737500 748800 215 25 32 31 127 0 0 0 0 7 0 0 0 0 0 +3292 1783753991378475400 REFRESH 28 0 0.60809572352052677 1 12 1 12 0 0 146 8 411 3943915 55200 151.88787841796875 0.9758 182.2929 20160 12351 0 0 983040 737280 737280 737515 748800 158 26 30 31 166 0 0 0 0 8 0 0 0 0 0 +3293 1783753991560479300 REFRESH 46 0 0.6172560481483591 2 15 2 15 0 0 112 9 416 3943900 55200 150.829345703125 0.9819 180.76419999999999 20160 11979 0 0 983040 737280 737280 737500 748800 105 26 59 35 191 0 0 0 0 9 0 0 0 0 0 +3294 1783753991772039300 REFRESH 38 0 0.60532731366783687 4 14 4 14 0 0 82 8 422 3943890 55200 150.69183349609375 0.97460000000000002 186.66829999999999 20160 12532 0 0 983040 737280 737280 737490 748800 72 26 48 41 235 0 0 0 0 8 0 0 0 0 0 +3295 1783753991976426600 REFRESH 33 0 0.66742432234860805 1 7 1 7 0 0 181 5 415 3943928 55200 151.97593688964844 0.97330000000000005 189.1148 20160 13478 0 0 983040 737280 737280 737528 748800 101 26 33 36 219 0 0 0 0 5 0 0 0 0 0 +3296 1783753992172899900 REFRESH 49 0 0.61229234304265101 3 10 3 10 0 0 126 7 417 3943921 55200 151.90835571289062 0.97470000000000001 181.2449 20160 12105 0 0 983040 737280 737280 737521 748800 132 26 69 61 129 0 0 0 0 7 0 0 0 0 0 +3297 1783753992374704200 REFRESH 14 0 0.61817530394801612 0 12 0 12 0 0 112 10 416 3943894 55200 150.76249694824219 0.97760000000000002 185.11199999999999 20160 12068 0 0 983040 737280 737280 737494 748800 124 26 30 49 187 0 0 0 0 10 0 0 0 0 0 +3298 1783753992563810100 REFRESH 30 0 0.61887029220176715 1 9 1 9 0 0 132 9 413 3943902 55200 151.6759033203125 0.98409999999999997 187.96379999999999 20160 13331 0 0 983040 737280 737280 737502 748800 67 25 45 33 243 0 0 0 0 9 0 0 0 0 0 +3299 1783753992791724900 REFRESH 17 0 0.78875081186251894 0 7 0 7 0 0 186 3 409 3943938 55200 151.85734558105469 0.97209999999999996 226.80250000000001 20160 13353 0 0 983040 737280 737280 737538 748800 126 26 42 115 100 0 0 0 0 3 0 0 0 0 0 +3300 1783753992992106000 REFRESH 4 0 0.57319477686632414 1 13 1 13 1 0 49 3 420 3943924 55200 149.57363891601562 0.97540000000000004 176.32220000000001 20160 13702 0 0 983040 737280 737280 737524 748800 26 25 35 33 301 0 0 0 0 3 0 0 0 0 1 +3301 1783753993189927100 REFRESH 27 0 0.61841079027782953 0 14 0 14 0 0 142 14 412 3943917 55200 152.05477905273438 0.98089999999999999 181.96799999999999 20160 12253 0 0 983040 737280 737280 737517 748800 83 26 33 32 238 0 0 0 0 14 0 0 0 0 0 +3302 1783753993436980700 REFRESH 54 0 0.61356095585183801 1 8 1 8 0 0 112 6 425 3943921 55200 151.52128601074219 0.97999999999999998 222.41460000000001 20160 13215 0 0 983040 737280 737280 737521 748800 149 25 59 117 75 0 0 0 0 6 0 0 0 0 0 +3303 1783753993633718200 REFRESH 40 0 0.60239906009515432 1 12 1 12 0 0 118 10 414 3943910 55200 151.33900451660156 0.98209999999999997 180.6534 20160 12620 0 0 983040 737280 737280 737510 748800 167 25 41 88 93 0 0 0 0 10 0 0 0 0 0 +3304 1783753993819941200 REFRESH 8 0 0.79264295595398326 2 5 2 5 0 0 216 8 416 3943911 55200 153.11257934570312 0.97460000000000002 185.09739999999999 20160 13465 0 0 983040 737280 737280 737511 748800 175 26 30 74 111 0 0 0 0 8 0 0 0 0 0 +3305 1783753994042865500 REFRESH 53 0 0.67464097525416622 0 8 0 8 0 0 143 6 415 3943883 55200 152.52890014648438 0.98170000000000002 191.815 20160 13443 0 0 983040 737280 737280 737482 748800 142 26 27 50 170 0 0 0 0 6 0 0 0 0 0 +3306 1783753994239152100 REFRESH 25 0 0.61557556928641621 3 11 3 11 0 0 113 8 423 3943906 55200 151.33100891113281 0.97809999999999997 180.51830000000001 20160 11915 0 0 983040 737280 737280 737506 748800 100 25 56 65 177 0 0 0 0 8 0 0 0 0 0 +3307 1783753995604562300 DEPTH 13 1 0.78259737635892035 1 6 1 6 1 0 181 24 2500 23664745 81600 866.31953430175781 5.8839999999999995 1276.7808 120960 65513 1 0 5898240 4423680 4423680 4426345 4492800 264 156 184 211 1685 0 0 0 0 24 0 0 0 0 1 +3308 1783753996938067200 DEPTH 56 1 0.72670443439035948 2 5 2 5 0 0 204 20 2579 23664833 81600 862.59037780761719 5.8487 1307.0451 120960 65492 1 0 5898240 4423680 4423680 4426431 4492800 525 156 175 334 1389 0 0 0 0 20 0 0 0 0 0 +3309 1783753998219714100 DEPTH 48 1 0.68727731858411389 2 9 2 9 1 0 135 44 2510 23664845 81600 862.02900695800781 6.2434000000000003 1280.421 120960 62937 1 0 5898240 4423680 4423680 4426445 4492800 150 150 150 150 1910 0 0 0 0 44 0 0 0 0 1 +3310 1783753999298587000 DEPTH 39 1 0.6599467788667206 3 8 3 8 0 0 168 34 2531 23664881 81600 870.07743835449219 5.8775000000000004 1049.3643999999999 120960 65374 1 0 5898240 4423680 4423680 4426481 4492800 222 151 153 156 1849 0 0 0 0 34 0 0 0 0 0 +3311 1783754000635067500 DEPTH 11 1 0.6597566260415243 0 8 0 8 0 0 103 12 2537 23664860 81600 860.00741577148438 5.8681000000000001 1310.7444 120960 65044 1 0 5898240 4423680 4423680 4426457 4492800 242 150 208 227 1710 0 0 0 0 12 0 0 0 0 0 +3312 1783754001916644300 DEPTH 31 1 0.65750587138205185 2 6 2 6 0 0 124 7 2625 23664961 81600 866.72714233398438 5.8441000000000001 1280.4367999999999 120960 65191 1 0 5898240 4423680 4423680 4426560 4492800 1001 150 187 370 917 0 0 0 0 7 0 0 0 0 0 +3313 1783754002962729800 DEPTH 42 1 0.64364893797724576 4 11 4 11 0 0 133 32 2564 23664879 81600 868.60081481933594 5.8948999999999998 1044.8503000000001 120960 58584 1 0 5898240 4423680 4423680 4426475 4492800 180 150 162 150 1922 0 1 0 0 31 0 0 0 0 0 +3314 1783754004275894900 DEPTH 9 1 0.63880128141277104 2 6 2 6 0 0 126 5 2625 23664917 81600 874.36807250976562 5.8482000000000003 1312.0228 120960 66038 1 0 5898240 4423680 4423680 4426517 4492800 758 150 398 506 813 0 0 0 0 5 0 0 0 0 0 +3315 1783754005630867300 DEPTH 17 1 0.69292210484928063 0 7 0 7 0 0 187 25 2532 23664945 81600 867.32493591308594 5.8956999999999997 1311.6470999999999 120960 65332 1 0 5898240 4423680 4423680 4426540 4492800 210 156 161 222 1783 0 0 0 0 25 0 0 0 0 0 +3316 1783754006973133000 DEPTH 1 1 0.65591252904104447 1 7 1 7 0 0 125 8 2623 23664857 81600 869.6422119140625 5.8365999999999998 1326.4257 120960 65495 1 0 5898240 4423680 4423680 4426455 4492800 402 155 303 317 1446 0 0 0 0 8 0 0 0 0 0 +3317 1783754008095861600 DEPTH 8 1 0.67136211804929613 2 5 2 5 0 0 216 29 2566 23664884 81600 877.15837097167969 5.8658000000000001 1097.1753000000001 120960 66268 1 0 5898240 4423680 4423680 4426482 4492800 316 151 163 184 1752 0 0 0 0 29 0 0 0 0 0 +3318 1783754009177855000 DEPTH 20 1 0.64048802516448133 2 11 2 11 0 0 115 18 2624 23664810 81600 868.20761108398438 5.8446000000000007 1042.7247 120960 60382 1 0 5898240 4423680 4423680 4426410 4492800 828 150 372 588 686 0 0 0 0 18 0 0 0 0 0 +3319 1783754010258503600 DEPTH 55 1 0.63346098637679082 1 12 1 12 0 0 138 34 2585 23664791 81600 875.36233520507812 5.8580999999999994 1051.633 120960 63123 1 0 5898240 4423680 4423680 4426391 4492800 589 150 247 601 998 0 0 0 0 34 0 0 0 0 0 +3320 1783754011324068700 DEPTH 29 1 0.62889745544667486 1 12 1 12 0 0 123 53 2579 23664825 81600 866.71955871582031 5.8706999999999994 1040.4641999999999 120960 60266 1 0 5898240 4423680 4423680 4426425 4492800 205 150 165 154 1905 0 0 0 0 53 0 0 0 0 0 +3321 1783754012427238900 DEPTH 10 1 0.62876511091859433 1 10 1 10 0 0 117 13 2582 23664929 81600 861.83731079101562 5.8591999999999995 1046.9576999999999 120960 60386 1 0 5898240 4423680 4423680 4426528 4492800 1322 156 228 266 610 1 0 0 0 12 0 0 0 0 0 +3322 1783754013695698200 DEPTH 45 1 0.62478785590790475 2 7 2 7 0 0 134 22 2620 23664825 81600 871.74153137207031 5.8560999999999996 1251.9811 120960 65718 1 0 5898240 4423680 4423680 4426424 4492800 241 150 202 193 1834 0 0 0 0 22 0 0 0 0 0 +3323 1783754014966951400 DEPTH 13 1 0.6944441478294382 1 6 1 6 0 0 181 26 2491 23664801 81600 855.8919677734375 5.8552999999999997 1270.1234999999999 120960 54274 1 0 5898240 4423680 4423680 4426401 4492800 255 155 185 248 1648 0 0 0 0 26 0 0 0 0 0 +3324 1783754016319433600 DEPTH 56 1 0.69791456606837532 2 5 2 5 0 0 204 26 2587 23664803 81600 855.10043334960938 5.8472999999999997 1297.8305 120960 54704 1 0 5898240 4423680 4423680 4426403 4492800 539 156 180 399 1313 0 0 0 0 26 0 0 0 0 0 +3325 1783754017551581800 DEPTH 33 1 0.66308508083230933 1 7 1 7 0 0 181 22 2542 23664856 81600 875.90411376953125 5.8545999999999996 1230.9395999999999 120960 66576 1 0 5898240 4423680 4423680 4426455 4492800 201 153 156 150 1882 0 0 0 0 22 0 0 0 0 0 +3326 1783754018797976500 DEPTH 2 1 0.62388619011202207 2 8 2 8 1 0 137 26 2545 23664768 81600 868.68684387207031 5.8511000000000006 1245.2783999999999 120960 65698 1 0 5898240 4423680 4423680 4426366 4492800 156 150 150 150 1939 0 0 0 0 26 0 0 0 0 1 +3327 1783754020113498900 DEPTH 44 1 0.62200336658868838 2 7 2 7 0 0 142 16 2589 23664939 81600 869.34544372558594 5.8292999999999999 1314.2764999999999 120960 65292 1 0 5898240 4423680 4423680 4426538 4492800 209 150 249 175 1806 0 0 0 0 16 0 0 0 0 0 +3328 1783754021448052900 DEPTH 21 1 0.61961604596066211 0 10 0 10 1 0 177 25 2593 23664736 81600 872.29031372070312 5.8439999999999994 1308.2807 120960 65142 1 0 5898240 4423680 4423680 4426334 4492800 384 150 179 340 1540 0 0 0 0 25 0 0 0 0 1 +3329 1783754022512210700 DEPTH 12 1 0.61875225224675268 3 8 3 8 0 0 179 39 2535 23664864 81600 864.99618530273438 5.8550000000000004 1038.8457000000001 120960 59239 1 0 5898240 4423680 4423680 4426463 4492800 301 150 178 263 1643 0 0 0 0 39 0 0 0 0 0 +3330 1783754023758371500 DEPTH 14 1 0.61843056138557073 0 12 0 12 1 0 112 35 2574 23664886 81600 865.396728515625 5.8730000000000002 1226.4368999999999 120960 57363 1 0 5898240 4423680 4423680 4426486 4492800 208 152 162 202 1850 0 0 0 0 35 0 0 0 0 1 +3331 1783754025092495500 DEPTH 17 1 0.69462337252755801 0 7 0 7 0 0 187 26 2526 23664977 81600 857.84492492675781 5.8496000000000006 1303.0011999999999 120960 54440 1 0 5898240 4423680 4423680 4426577 4492800 211 156 164 238 1757 0 0 0 0 26 0 0 0 0 0 +3332 1783754026273776100 DEPTH 8 1 0.69216140243044622 2 5 2 5 0 0 216 19 2557 23664785 81600 867.39047241210938 5.8384 1087.0015000000001 120960 55014 1 0 5898240 4423680 4423680 4426384 4492800 281 151 163 190 1772 0 0 0 0 19 0 0 0 0 0 +3333 1783754027546476200 DEPTH 53 1 0.67066463341516436 0 8 0 8 0 0 143 31 2515 23664858 81600 869.25627136230469 5.8589000000000002 1247.5972999999999 120960 65095 1 0 5898240 4423680 4423680 4426456 4492800 201 156 150 170 1838 0 0 0 0 31 0 0 0 0 0 +3334 1783754028789223200 DEPTH 48 1 0.68088074766163631 2 9 2 9 0 0 138 43 2506 23664854 81600 855.61160278320312 5.8649999999999993 1241.4864 120960 51644 1 0 5898240 4423680 4423680 4426454 4492800 150 150 150 150 1906 0 0 1 0 42 0 0 0 0 0 +3335 1783754029971130600 DEPTH 16 1 0.61780791944937596 2 7 2 7 0 0 176 36 2543 23664868 81600 874.58595275878906 5.8935000000000004 1140.521 120960 65803 1 0 5898240 4423680 4423680 4426468 4492800 160 154 156 390 1683 0 0 0 0 36 0 0 0 0 0 +3336 1783754031230749600 DEPTH 30 1 0.61716836335566883 1 9 1 9 0 0 132 34 2527 23664847 81600 867.57209777832031 5.8596000000000004 1229.2344000000001 120960 65322 1 0 5898240 4423680 4423680 4426446 4492800 156 150 174 150 1897 0 0 0 0 34 0 0 0 0 0 +3337 1783754032286516900 DEPTH 27 1 0.61674035668937777 0 14 0 14 0 0 143 48 2568 23664939 81600 865.31687927246094 5.8575999999999997 1038.7585999999999 120960 58380 1 0 5898240 4423680 4423680 4426539 4492800 216 156 162 164 1870 3 0 0 0 45 0 0 0 0 0 +3338 1783754033319534100 DEPTH 51 1 0.61626298598450246 3 12 3 12 0 0 92 24 2598 23664811 81600 860.59904479980469 5.8637999999999995 1031.7697000000001 120960 58723 1 0 5898240 4423680 4423680 4426411 4492800 318 150 362 276 1492 0 0 0 0 24 0 0 0 0 0 +3339 1783754033501763800 REFRESH 29 0 0.56576118439754453 1 12 1 12 0 0 123 9 418 3943896 55200 151.55917358398438 0.97940000000000005 181.01499999999999 20160 12740 0 0 983040 737280 737280 737496 748800 142 25 65 49 137 0 0 0 0 9 0 0 0 0 0 +3340 1783754033684136600 REFRESH 20 0 0.60620265718920208 2 11 2 11 1 0 115 6 427 3943909 55200 152.18789672851562 0.97640000000000005 181.18119999999999 20160 12569 0 0 983040 737280 737280 737509 748800 149 25 76 99 78 0 0 0 0 6 0 0 0 0 1 +3341 1783754033866890600 REFRESH 46 0 0.61438715383848119 2 15 2 15 0 0 113 6 416 3943893 55200 151.17417907714844 0.98080000000000001 181.5361 20160 12150 0 0 983040 737280 737280 737493 748800 111 26 60 35 184 0 0 0 0 6 0 0 0 0 0 +3342 1783754034073030300 REFRESH 24 0 0.61410932929633755 4 11 4 11 0 0 132 9 414 3943941 55200 151.62675476074219 0.98050000000000004 182.9847 20160 11895 0 0 983040 737280 737280 737541 748800 69 26 48 56 215 0 0 0 0 9 0 0 0 0 0 +3343 1783754034296801600 REFRESH 56 0 0.72895993787307689 2 5 2 5 0 0 204 2 418 3943908 55200 151.42195129394531 0.9738 222.5411 20160 13528 0 0 983040 737280 737280 737508 748800 187 26 50 65 90 0 0 0 0 2 0 0 0 0 0 +3344 1783754034504021000 REFRESH 50 0 0.61311877901463474 2 9 2 9 0 0 128 7 422 3943928 55200 151.36665344238281 0.97709999999999997 185.3047 20160 12795 0 0 983040 737280 737280 737527 748800 166 25 40 59 132 0 0 0 0 7 0 0 0 0 0 +3345 1783754034696021100 REFRESH 32 0 0.61258195065267962 2 14 2 14 0 0 118 12 431 3943875 55200 151.19462585449219 0.97870000000000001 179.964 20160 12484 0 0 983040 737280 737280 737475 748800 190 25 35 31 150 0 0 0 0 12 0 0 0 0 0 +3346 1783754034887659400 REFRESH 45 0 0.61574606430468926 2 7 2 7 0 0 135 5 426 3943915 55200 153.13612365722656 0.98029999999999995 190.52289999999999 20160 13564 0 0 983040 737280 737280 737515 748800 136 25 58 56 151 0 0 0 0 5 0 0 0 0 0 +3347 1783754035089555400 REFRESH 0 0 0.60071078797624833 1 12 1 12 0 0 90 5 427 3943917 55200 152.5718994140625 0.98119999999999996 181.49719999999999 20160 13033 0 0 983040 737280 737280 737516 748800 85 25 45 40 232 0 0 0 0 5 0 0 0 0 0 +3348 1783754035283204600 REFRESH 53 0 0.57096744396176724 0 8 0 8 0 0 143 8 414 3943896 55200 151.86431884765625 0.97850000000000004 192.4247 20160 13437 0 0 983040 737280 737280 737496 748800 127 26 27 45 189 0 0 0 0 8 0 0 0 0 0 +3349 1783754035486350100 REFRESH 58 0 0.61011359230380524 2 12 2 12 0 0 120 9 423 3943916 55200 152.58522033691406 0.98060000000000003 181.6902 20160 12204 0 0 983040 737280 737280 737516 748800 101 26 57 61 178 0 0 0 0 9 0 0 0 0 0 +3350 1783754035720986200 REFRESH 41 0 0.61283323893397368 1 10 1 10 0 0 110 7 416 3943921 55200 151.0697021484375 0.97809999999999997 204.70869999999999 20160 12926 0 0 983040 737280 737280 737520 748800 130 26 47 47 166 0 0 0 0 7 0 0 0 0 0 +3351 1783754035923913500 REFRESH 13 0 0.78608150972058444 1 6 1 6 0 0 181 5 414 3943902 55200 151.91346740722656 0.97709999999999997 201.82230000000001 20160 13329 0 0 983040 737280 737280 737502 748800 152 26 51 90 95 0 0 0 0 5 0 0 0 0 0 +3352 1783754036125100800 REFRESH 57 0 0.60378349132346754 2 12 2 12 0 0 122 9 416 3943900 55200 151.40966796875 0.98140000000000005 180.45050000000001 20160 12358 0 0 983040 737280 737280 737500 748800 118 26 95 83 94 0 0 0 0 9 0 0 0 0 0 +3353 1783754036307915900 REFRESH 42 0 0.63874427679426649 4 11 4 11 0 0 133 6 414 3943913 55200 152.13066101074219 0.97350000000000003 181.60409999999999 20160 12331 0 0 983040 737280 737280 737513 748800 108 25 27 25 229 0 0 0 0 6 0 0 0 0 0 +3354 1783754036510561700 REFRESH 35 0 0.61240835650558467 2 11 2 11 0 0 152 7 419 3943919 55200 151.76806640625 0.98170000000000002 181.89869999999999 20160 12426 0 0 983040 737280 737280 737519 748800 154 25 30 96 114 0 0 0 0 7 0 0 0 0 0 +3355 1783754036754681400 REFRESH 52 0 0.61604548168655537 1 8 1 8 0 0 107 1 428 3943907 55200 149.97196960449219 0.97609999999999997 222.94110000000001 20160 12801 0 0 983040 737280 737280 737507 748800 137 25 33 154 79 0 0 0 0 1 0 0 0 0 0 +3356 1783754036980505900 REFRESH 11 0 0.66159258084537609 0 8 0 8 0 0 103 4 415 3943907 55200 150.96115112304688 0.97640000000000005 224.73929999999999 20160 13318 0 0 983040 737280 737280 737506 748800 103 25 56 66 165 0 0 0 0 4 0 0 0 0 0 +3357 1783754037183307400 REFRESH 36 0 0.60387169332572066 3 10 3 10 0 0 112 4 433 3943906 55200 152.72653198242188 0.98129999999999995 181.67250000000001 20160 12153 0 0 983040 737280 737280 737506 748800 225 25 39 47 97 0 0 0 0 4 0 0 0 0 0 +3358 1783754037373332100 REFRESH 34 0 0.60296315182249083 1 13 1 13 0 0 102 4 434 3943930 55200 149.538818359375 0.9748 177.68860000000001 20160 12175 0 0 983040 737280 737280 737530 748800 133 25 59 66 151 0 0 0 0 4 0 0 0 0 0 +3359 1783754037561316800 REFRESH 55 0 0.62939913793442726 1 12 1 12 0 0 139 5 424 3943895 55200 152.43775939941406 0.98170000000000002 186.726 20160 13232 0 0 983040 737280 737280 737495 748800 132 25 57 100 110 0 0 0 0 5 0 0 0 0 0 +3360 1783754037748873700 REFRESH 16 0 0.61906985759939248 2 7 2 7 0 0 176 6 417 3943904 55200 152.20326232910156 0.98819999999999997 186.19370000000001 20160 13546 0 0 983040 737280 737280 737504 748800 34 27 26 239 91 0 0 0 0 6 0 0 0 0 0 +3361 1783754037953365700 REFRESH 21 0 0.6192879067633944 0 10 0 10 0 0 177 8 417 3943911 55200 152.45414733886719 0.97099999999999997 203.339 20160 13548 0 0 983040 737280 737280 737510 748800 111 26 35 96 149 0 0 0 0 8 0 0 0 0 0 +3362 1783754038178082600 REFRESH 3 0 0.61240237937384567 2 9 2 9 0 0 143 9 417 3943901 55200 152.00869750976562 0.98029999999999995 186.87029999999999 20160 13205 0 0 983040 737280 737280 737501 748800 188 25 37 63 104 0 0 0 0 9 0 0 0 0 0 +3363 1783754038359711300 REFRESH 10 0 0.6281796844805928 1 10 1 10 0 0 117 4 428 3943909 55200 150.31398010253906 0.97960000000000003 180.46350000000001 20160 12914 0 0 983040 737280 737280 737508 748800 239 26 39 43 81 1 0 0 0 3 0 0 0 0 0 +3364 1783754038563335400 REFRESH 15 0 0.61155206568685172 3 12 3 12 0 0 95 7 420 3943909 55200 153.11155700683594 0.97999999999999998 182.53370000000001 20160 12144 0 0 983040 737280 737280 737509 748800 62 26 35 26 271 0 0 1 0 6 0 0 0 0 0 +3365 1783754038744313300 REFRESH 51 0 0.61538729080378618 3 12 3 12 0 0 92 4 425 3943891 55200 150.5638427734375 0.9768 179.74180000000001 20160 13098 0 0 983040 737280 737280 737491 748800 118 25 107 75 100 0 0 0 0 4 0 0 0 0 0 +3366 1783754038938608000 REFRESH 38 0 0.60364000742178403 4 14 4 14 0 0 82 6 425 3943923 55200 150.74301147460938 0.97440000000000004 179.4983 20160 12522 0 0 983040 737280 737280 737523 748800 68 26 45 39 247 0 0 0 0 6 0 0 0 0 0 +3367 1783754039128703000 REFRESH 39 0 0.65414571782338182 3 8 3 8 0 0 168 13 407 3943910 55200 152.42854309082031 0.97809999999999997 188.88140000000001 20160 13437 0 0 983040 737280 737280 737510 748800 97 28 30 32 220 0 0 0 0 13 0 0 0 0 0 +3368 1783754039364650300 REFRESH 1 0 0.65606253475352461 1 7 1 7 0 0 125 3 425 3943878 55200 152.13772583007812 0.97430000000000005 213.48750000000001 20160 13416 0 0 983040 737280 737280 737478 748800 135 26 84 88 92 0 0 0 0 3 0 0 0 0 0 +3369 1783754039558785700 REFRESH 19 0 0.61442634009247776 2 11 2 11 0 0 125 7 417 3943907 55200 150.70719909667969 0.98009999999999997 179.40770000000001 20160 12472 0 0 983040 737280 737280 737507 748800 117 25 26 41 208 0 0 0 0 7 0 0 0 0 0 +3370 1783754039747191200 REFRESH 8 0 0.79288518225738991 2 5 2 5 0 0 216 3 413 3943929 55200 153.26722717285156 0.97719999999999996 187.26390000000001 20160 13514 0 0 983040 737280 737280 737529 748800 176 26 30 78 103 0 0 0 0 3 0 0 0 0 0 +3371 1783754039952537300 REFRESH 43 0 0.61539100853324102 2 13 2 13 0 0 126 11 418 3943897 55200 151.87557983398438 0.9768 181.70529999999999 20160 12047 0 0 983040 737280 737280 737497 748800 156 26 43 58 135 0 0 0 0 11 0 0 0 0 0 +3372 1783754040197990300 REFRESH 31 0 0.65651914607767337 2 6 2 6 0 0 124 3 428 3943907 55200 152.13670349121094 0.99150000000000005 220.3449 20160 13705 0 0 983040 737280 737280 737507 748800 215 25 32 72 84 0 0 0 0 3 0 0 0 0 0 +3373 1783754040411101100 REFRESH 47 0 0.60403919326523181 2 11 2 11 0 0 112 4 418 3943922 55200 150.46861267089844 0.9798 179.47999999999999 20160 12180 0 0 983040 737280 737280 737522 748800 138 26 43 33 178 0 0 0 0 4 0 0 0 0 0 +3374 1783754040600707000 REFRESH 30 0 0.61654030599905474 1 9 1 9 0 0 132 9 415 3943910 55200 152.02508544921875 0.98080000000000001 188.4263 20160 13478 0 0 983040 737280 737280 737510 748800 81 25 47 35 227 0 0 0 0 9 0 0 0 0 0 +3375 1783754040843998900 REFRESH 54 0 0.61318055318098053 1 8 1 8 0 0 112 3 425 3943927 55200 151.54789733886719 0.98050000000000004 221.49940000000001 20160 13109 0 0 983040 737280 737280 737527 748800 149 25 58 117 76 0 0 0 0 3 0 0 0 0 0 +3376 1783754041039205700 REFRESH 6 0 0.5866155186231321 3 11 3 11 0 0 117 8 415 3943920 55200 150.71743774414062 0.99990000000000001 179.32259999999999 20160 12574 0 0 983040 737280 737280 737520 748800 26 25 25 25 314 0 0 0 0 8 0 0 0 0 0 +3377 1783754041235371900 REFRESH 7 0 0.61407311044387525 1 12 1 12 0 0 130 6 419 3943913 55200 150.89356994628906 0.99639999999999995 180.5847 20160 12210 0 0 983040 737280 737280 737513 748800 164 26 29 37 163 1 0 0 0 5 0 0 0 0 0 +3378 1783754041444332400 REFRESH 18 0 0.60752590227715797 4 15 4 15 1 0 103 9 417 3943881 55200 151.24992370605469 0.9738 179.50190000000001 20160 11803 0 0 983040 737280 737280 737481 748800 33 25 25 27 307 0 0 0 0 9 0 0 0 0 1 +3379 1783754041638151100 REFRESH 49 0 0.60927021191252573 3 10 3 10 0 0 126 5 415 3943920 55200 151.13626098632812 0.97319999999999995 181.31440000000001 20160 12238 0 0 983040 737280 737280 737520 748800 133 26 66 53 137 0 0 0 0 5 0 0 0 0 0 +3380 1783754041834290100 REFRESH 40 0 0.60183253648762869 1 12 1 12 0 0 118 8 423 3943919 55200 151.42707824707031 0.97560000000000002 180.5111 20160 12569 0 0 983040 737280 737280 737519 748800 158 25 40 90 110 0 0 0 0 8 0 0 0 0 0 +3381 1783754042061994800 REFRESH 17 0 0.78618569690556106 0 7 0 7 0 0 187 3 414 3943933 55200 151.62492370605469 0.98219999999999996 226.58510000000001 20160 13772 0 0 983040 737280 737280 737532 748800 107 26 40 109 132 0 0 0 0 3 0 0 0 0 0 +3382 1783754042311082600 REFRESH 9 0 0.63761775413513222 2 6 2 6 0 0 126 4 438 3943883 55200 151.55711364746094 0.97970000000000002 223.55590000000001 20160 13624 0 0 983040 737280 737280 737483 748800 139 25 84 75 115 0 0 0 0 4 0 0 0 0 0 +3383 1783754042548876700 REFRESH 4 0 0.57101713878558658 1 13 1 13 0 0 49 1 417 3943903 55200 149.19987487792969 0.97750000000000004 177.0823 20160 13627 0 0 983040 737280 737280 737503 748800 26 25 40 35 291 0 0 0 0 1 0 0 0 0 0 +3384 1783754042744092500 REFRESH 25 0 0.61319320771967201 3 11 3 11 0 0 113 6 421 3943923 55200 150.80038452148438 0.97829999999999995 179.95160000000001 20160 12094 0 0 983040 737280 737280 737523 748800 104 25 63 72 157 0 0 0 0 6 0 0 0 0 0 +3385 1783754042934269300 REFRESH 33 0 0.66418710613567933 1 7 1 7 0 0 181 3 417 3943932 55200 152.40602111816406 0.97860000000000003 188.98830000000001 20160 13496 0 0 983040 737280 737280 737532 748800 117 26 44 39 191 0 0 0 0 3 0 0 0 0 0 +3386 1783754043129662700 REFRESH 48 0 0.67466864475792832 2 9 2 9 0 0 139 10 414 3943891 55200 152.04864501953125 0.98309999999999997 194.1593 20160 13895 0 0 983040 737280 737280 737491 748800 45 25 32 31 281 1 0 0 0 9 0 0 0 0 0 +3387 1783754043326304900 REFRESH 22 0 0.6127602780622764 3 11 3 11 0 0 120 6 426 3943906 55200 152.52957153320312 0.97599999999999998 182.34389999999999 20160 12406 0 0 983040 737280 737280 737504 748800 145 25 31 30 195 0 0 0 0 6 0 0 0 0 0 +3388 1783754043521897200 REFRESH 37 0 0.61524989440590083 1 12 1 12 0 0 136 10 428 3943912 55200 150.69287109375 0.97519999999999996 180.03479999999999 20160 12205 0 0 983040 737280 737280 737512 748800 166 26 56 36 144 1 0 0 0 9 0 0 0 0 0 +3389 1783754043718602500 REFRESH 12 0 0.61863398281331006 3 8 3 8 0 0 179 13 417 3943888 55200 150.73075866699219 0.97470000000000001 180.69800000000001 20160 12624 0 0 983040 737280 737280 737488 748800 136 26 37 98 120 0 0 0 0 13 0 0 0 0 0 +3390 1783754043908094800 REFRESH 14 0 0.61860163777343891 0 12 0 12 0 0 112 9 423 3943916 55200 152.03634643554688 0.98050000000000004 188.27709999999999 20160 12151 0 0 983040 737280 737280 737515 748800 129 26 31 48 189 0 0 0 1 8 0 0 0 0 0 +3391 1783754044114343100 REFRESH 26 0 0.61062378406610685 1 13 1 13 0 0 80 15 424 3943915 55200 151.41580200195312 0.97430000000000005 180.5428 20160 12652 0 0 983040 737280 737280 737515 748800 42 25 38 52 267 2 0 0 0 13 0 0 0 0 0 +3392 1783754044296296200 REFRESH 27 0 0.61515936421988071 0 14 0 14 0 0 143 10 415 3943912 55200 151.2755126953125 0.9738 180.75749999999999 20160 12324 0 0 983040 737280 737280 737512 748800 73 26 29 28 259 0 0 0 0 10 0 0 0 0 0 +3393 1783754044494426000 REFRESH 28 0 0.60591354757606086 1 12 1 12 0 0 146 9 405 3943907 55200 152.51174926757812 0.97699999999999998 183.1078 20160 12304 0 0 983040 737280 737280 737507 748800 187 26 31 31 130 0 0 0 0 9 0 0 0 0 0 +3394 1783754044686499400 REFRESH 5 0 0.61107193230981904 2 11 2 11 0 0 91 6 412 3943898 55200 149.79583740234375 0.97829999999999995 177.4109 20160 12326 0 0 983040 737280 737280 737498 748800 79 25 86 106 116 0 0 0 0 6 0 0 0 0 0 +3395 1783754044881971600 REFRESH 23 0 0.61533643443369179 3 14 3 14 0 0 103 10 411 3943900 55200 150.6826171875 0.97619999999999996 180.00960000000001 20160 11960 0 0 983040 737280 737280 737500 748800 64 25 58 46 218 0 0 0 0 10 0 0 0 0 0 +3396 1783754045070334600 REFRESH 2 0 0.62272851449929512 2 8 2 8 0 0 137 4 411 3943911 55200 152.23397827148438 0.98060000000000003 187.24549999999999 20160 13515 0 0 983040 737280 737280 737511 748800 40 25 67 108 171 0 0 0 0 4 0 0 0 0 0 +3397 1783754045296878500 REFRESH 44 0 0.62317800957163549 2 7 2 7 0 0 142 6 423 3943904 55200 152.163330078125 0.97430000000000005 225.31909999999999 20160 13424 0 0 983040 737280 737280 737504 748800 101 26 73 33 190 0 0 0 0 6 0 0 0 0 0 +3398 1783754046449463100 DEPTH 8 1 0.78646550064811094 2 5 2 5 1 0 216 24 2576 23664904 81600 875.3223876953125 5.8446000000000007 1102.0213000000001 120960 66858 1 0 5898240 4423680 4423680 4426504 4492800 234 150 156 166 1870 0 0 0 0 24 0 0 0 0 1 +3399 1783754047734916600 DEPTH 13 1 0.78255354859317916 1 6 1 6 0 0 181 16 2496 23664776 81600 866.80610656738281 5.8528000000000002 1284.3015 120960 65334 1 0 5898240 4423680 4423680 4426375 4492800 258 155 186 216 1681 0 0 0 0 16 0 0 0 0 0 +3400 1783754049040225200 DEPTH 56 1 0.78194260586729425 2 5 2 5 0 0 204 25 2573 23664825 81600 865.43885803222656 5.8563999999999998 1304.0597 120960 65551 1 0 5898240 4423680 4423680 4426424 4492800 561 156 180 374 1302 0 0 0 0 25 0 0 0 0 0 +3401 1783754050350393500 DEPTH 17 1 0.73047389554863074 0 7 0 7 0 0 188 25 2528 23664855 81600 864.48333740234375 5.8418000000000001 1309.0188000000001 120960 65976 1 0 5898240 4423680 4423680 4426454 4492800 212 156 165 225 1770 0 0 0 0 25 0 0 0 0 0 +3402 1783754051619308800 DEPTH 53 1 0.66926937374983642 0 8 0 8 0 0 143 24 2512 23664869 81600 868.59162902832031 5.8848000000000003 1243.6912 120960 65167 1 0 5898240 4423680 4423680 4426466 4492800 208 156 150 170 1828 0 0 0 0 24 0 0 0 0 0 +3403 1783754052949680300 DEPTH 11 1 0.65716956077140487 0 8 0 8 1 0 103 14 2533 23664939 81600 862.43122863769531 5.8593999999999999 1305.7154 120960 64833 1 0 5898240 4423680 4423680 4426536 4492800 231 150 209 221 1722 0 0 0 0 14 0 0 0 0 1 +3404 1783754054256294300 DEPTH 31 1 0.65147298595986436 2 6 2 6 0 0 124 10 2616 23664862 81600 865.48275756835938 5.8616000000000001 1280.5905 120960 65967 1 0 5898240 4423680 4423680 4426462 4492800 1009 150 189 383 885 0 0 0 0 10 0 0 0 0 0 +3405 1783754055601611600 DEPTH 1 1 0.65107553264120943 1 7 1 7 0 0 126 11 2625 23664855 81600 868.67047119140625 5.8456000000000001 1316.6069 120960 65623 1 0 5898240 4423680 4423680 4426454 4492800 413 156 306 325 1425 0 0 0 0 11 0 0 0 0 0 +3406 1783754056719214400 DEPTH 39 1 0.64876800318530914 3 8 3 8 0 0 168 21 2525 23664917 81600 868.65919494628906 5.8544 1040.777 120960 65501 1 0 5898240 4423680 4423680 4426517 4492800 223 150 156 156 1840 0 0 0 0 21 0 0 0 0 0 +3407 1783754057805815700 DEPTH 42 1 0.63024026980817272 4 11 4 11 1 0 134 26 2562 23664899 81600 869.745849609375 5.8965999999999994 1060.4197999999999 120960 59384 1 0 5898240 4423680 4423680 4426497 4492800 186 150 162 150 1914 2 0 0 0 24 0 0 0 0 1 +3408 1783754058850570400 DEPTH 20 1 0.62837264941873749 2 11 2 11 1 0 115 12 2618 23664880 81600 866.33795166015625 5.8500000000000005 1043.5852 120960 61204 1 0 5898240 4423680 4423680 4426480 4492800 808 150 382 577 701 0 0 0 0 12 0 0 0 0 1 +3409 1783754060210699200 DEPTH 9 1 0.63536051508698843 2 6 2 6 0 0 128 8 2614 23664793 81600 872.97640991210938 5.8805000000000005 1320.2937999999999 120960 66393 1 0 5898240 4423680 4423680 4426392 4492800 762 150 409 496 797 0 0 0 0 8 0 0 0 0 0 +3410 1783754061281476100 DEPTH 29 1 0.62198488957894393 1 12 1 12 1 0 125 52 2581 23664814 81600 867.22575378417969 5.8991999999999996 1041.1885 120960 61464 1 0 5898240 4423680 4423680 4426413 4492800 217 150 163 153 1898 0 0 0 0 52 0 0 0 0 2 +3411 1783754062555899500 DEPTH 45 1 0.62163755453281089 2 7 2 7 0 0 137 26 2626 23664929 81600 874.45198059082031 5.8468 1252.4082000000001 120960 65961 1 0 5898240 4423680 4423680 4426526 4492800 211 150 203 202 1860 0 0 0 0 26 0 0 0 0 0 +3412 1783754063606190800 DEPTH 10 1 0.62153558850988722 1 10 1 10 1 0 117 18 2584 23664787 81600 862.48573303222656 5.8472 1049.1578 120960 61147 1 0 5898240 4423680 4423680 4426386 4492800 1324 154 232 281 593 1 0 0 0 17 0 0 0 0 1 +3413 1783754064660803200 DEPTH 55 1 0.62067184808576048 1 12 1 12 1 0 140 29 2587 23664789 81600 874.83699035644531 5.8556999999999997 1053.3434999999999 120960 63490 1 0 5898240 4423680 4423680 4426389 4492800 588 150 244 610 995 0 0 0 0 29 0 0 0 0 1 +3414 1783754065776849000 DEPTH 8 1 0.6976665725700667 2 5 2 5 0 0 216 18 2571 23664914 81600 868.12493896484375 5.8414999999999999 1089.6405 120960 55358 1 0 5898240 4423680 4423680 4426512 4492800 276 150 157 193 1795 0 1 0 0 17 0 0 0 0 0 +3415 1783754067051393500 DEPTH 13 1 0.69425470816719104 1 6 1 6 0 0 181 22 2491 23664969 81600 856.8975830078125 5.8727999999999998 1273.4306999999999 120960 54198 1 0 5898240 4423680 4423680 4426569 4492800 269 156 181 274 1611 0 0 0 0 22 0 0 0 0 0 +3416 1783754068348052600 DEPTH 56 1 0.69348701987748052 2 5 2 5 0 0 205 19 2591 23664827 81600 855.03079223632812 5.8476000000000008 1295.4211 120960 53592 1 0 5898240 4423680 4423680 4426426 4492800 538 156 180 403 1314 0 0 0 0 19 0 0 0 0 0 +3417 1783754069623330500 DEPTH 48 1 0.66887355986946062 2 9 2 9 0 0 140 37 2528 23664929 81600 862.66572570800781 5.8618999999999994 1250.3186000000001 120960 64330 1 0 5898240 4423680 4423680 4426526 4492800 150 150 150 150 1928 0 0 0 0 37 0 0 0 0 0 +3418 1783754070969535800 DEPTH 17 1 0.70227564244940899 0 7 0 7 0 0 188 27 2529 23664848 81600 857.5050048828125 5.8939999999999992 1305.2011 120960 54263 1 0 5898240 4423680 4423680 4426443 4492800 214 156 162 223 1774 0 0 0 0 27 0 0 0 0 0 +3419 1783754072205184100 DEPTH 33 1 0.65803348837172371 1 7 1 7 0 0 181 27 2553 23664924 81600 874.51239013671875 5.8731999999999998 1234.471 120960 66183 1 0 5898240 4423680 4423680 4426524 4492800 200 153 156 150 1894 0 0 0 0 27 0 0 0 0 0 +3420 1783754073297274600 DEPTH 12 1 0.6183009230622023 3 8 3 8 0 0 181 38 2527 23664877 81600 864.49641418457031 5.8514999999999997 1039.4767999999999 120960 60386 1 0 5898240 4423680 4423680 4426477 4492800 283 150 179 251 1664 1 0 0 0 37 0 0 0 0 0 +3421 1783754074654669800 DEPTH 21 1 0.61696073264926055 0 10 0 10 1 0 177 29 2601 23664819 81600 871.67909240722656 5.8281000000000001 1313.9247 120960 65371 1 0 5898240 4423680 4423680 4426419 4492800 389 150 178 362 1522 0 0 0 0 29 0 0 0 0 2 +3422 1783754075965821400 DEPTH 44 1 0.6200172385192928 2 7 2 7 0 0 142 29 2583 23664856 81600 869.24809265136719 5.8668000000000005 1309.9353000000001 120960 64979 1 0 5898240 4423680 4423680 4426455 4492800 219 151 269 165 1779 0 0 0 0 29 0 0 0 0 0 +3423 1783754077242330700 DEPTH 53 1 0.62957507355945064 0 8 0 8 0 0 144 34 2516 23664920 81600 861.84654235839844 5.8506 1230.636 120960 54268 1 0 5898240 4423680 4423680 4426517 4492800 204 156 150 178 1828 0 0 0 0 34 0 0 0 0 0 +3424 1783754078334187900 DEPTH 8 1 0.63862741663740474 2 5 2 5 0 0 216 17 2570 23664907 81600 863.90681457519531 5.8594999999999997 1090.7166 120960 43769 1 0 5898240 4423680 4423680 4426506 4492800 256 151 158 183 1822 0 0 0 0 17 0 0 0 0 0 +3425 1783754079557737900 DEPTH 14 1 0.61751113219229326 0 12 0 12 1 0 113 27 2574 23664816 81600 866.36570739746094 5.8640999999999996 1222.3896999999999 120960 57625 1 0 5898240 4423680 4423680 4426416 4492800 225 153 162 182 1852 0 0 0 0 27 0 0 0 0 2 +3426 1783754080680790800 DEPTH 16 1 0.61623757828429715 2 7 2 7 0 0 177 28 2541 23664898 81600 874.88002014160156 5.8451000000000004 1121.8949 120960 65645 1 0 5898240 4423680 4423680 4426498 4492800 165 155 156 496 1569 0 0 0 0 28 0 0 0 0 0 +3427 1783754081952252600 DEPTH 2 1 0.61543406552862456 2 8 2 8 0 0 137 30 2537 23664950 81600 869.029052734375 5.855500000000001 1245.6833999999999 120960 65842 1 0 5898240 4423680 4423680 4426549 4492800 156 150 150 150 1931 0 0 0 0 30 0 0 0 0 0 +3428 1783754083201721700 DEPTH 30 1 0.61492906548254966 1 9 1 9 0 0 133 41 2521 23664875 81600 868.99626159667969 5.8481000000000005 1222.7357 120960 65374 1 0 5898240 4423680 4423680 4426473 4492800 156 150 174 150 1891 0 0 0 3 38 0 0 0 0 0 +3429 1783754084281798000 DEPTH 37 1 0.61463705200866237 1 12 1 12 0 0 136 10 2622 23664735 81600 863.14996337890625 5.8464 1037.1701 120960 58490 1 0 5898240 4423680 4423680 4426335 4492800 571 155 172 181 1543 1 0 0 0 9 0 0 0 0 0 +3430 1783754084464277700 REFRESH 20 0 0.59505010893025723 2 11 2 11 0 0 115 4 435 3943913 55200 151.95443725585938 0.97919999999999996 181.3426 20160 12866 0 0 983040 737280 737280 737513 748800 147 25 75 99 89 0 0 0 0 4 0 0 0 0 0 +3431 1783754084659114800 REFRESH 33 0 0.52935780390926279 1 7 1 7 0 0 181 6 415 3943916 55200 153.24365234375 1.1315 193.66569999999999 20160 13683 0 0 983040 737280 737280 737516 748800 118 26 42 39 190 0 0 0 0 6 0 0 0 0 0 +3432 1783754084846299100 REFRESH 16 0 0.42743368512384333 2 7 2 7 0 0 177 5 414 3943926 55200 152.75007629394531 0.97999999999999998 186.01740000000001 20160 13501 0 0 983040 737280 737280 737526 748800 34 27 26 235 92 0 0 0 0 5 0 0 0 0 0 +3433 1783754085094397700 REFRESH 52 0 0.61098300665980321 1 8 1 8 0 0 107 5 426 3943910 55200 151.15673828125 0.98240000000000005 222.41079999999999 20160 12777 0 0 983040 737280 737280 737510 748800 133 25 35 153 80 0 0 0 0 5 0 0 0 0 0 +3434 1783754085288725500 REFRESH 18 0 0.60547113241686246 4 15 4 15 0 0 103 8 414 3943879 55200 149.92288208007812 0.97640000000000005 178.51419999999999 20160 11959 0 0 983040 737280 737280 737479 748800 35 25 25 28 301 0 0 0 0 8 0 0 0 0 0 +3435 1783754085484767000 REFRESH 36 0 0.59852313556800996 3 10 3 10 0 0 112 6 435 3943909 55200 151.0830078125 0.98270000000000002 180.55520000000001 20160 12087 0 0 983040 737280 737280 737509 748800 228 25 39 48 95 1 0 0 0 5 0 0 0 0 0 +3436 1783754085740039500 REFRESH 17 0 0.71384911043932431 0 7 0 7 0 0 188 3 413 3943952 55200 151.58682250976562 0.97999999999999998 224.87190000000001 20160 13415 0 0 983040 737280 737280 737552 748800 109 26 39 108 131 0 0 0 0 3 0 0 0 0 0 +3437 1783754085935692700 REFRESH 35 0 0.60859306450807904 2 11 2 11 0 0 152 10 418 3943907 55200 150.61503601074219 0.97799999999999998 180.31630000000001 20160 12287 0 0 983040 737280 737280 737507 748800 157 25 30 97 109 0 0 0 0 10 0 0 0 0 0 +3438 1783754086122644200 REFRESH 8 0 0.6794508337517976 2 5 2 5 0 0 216 4 418 3943904 55200 153.72799682617188 0.97870000000000001 185.81630000000001 20160 13498 0 0 983040 737280 737280 737504 748800 187 27 30 82 92 0 0 0 0 4 0 0 0 0 0 +3439 1783754086336081800 REFRESH 50 0 0.61026569607338921 2 9 2 9 0 0 129 8 422 3943908 55200 152.35789489746094 0.97550000000000003 187.5703 20160 12783 0 0 983040 737280 737280 737508 748800 138 25 39 48 172 0 0 0 0 8 0 0 0 0 0 +3440 1783754086530965900 REFRESH 6 0 0.58534416213491025 3 11 3 11 0 0 117 4 414 3943910 55200 150.86288452148438 0.97570000000000001 179.571 20160 12756 0 0 983040 737280 737280 737510 748800 26 25 25 25 313 0 0 0 0 4 0 0 0 0 0 +3441 1783754086822523200 REFRESH 56 0 0.78484868709906386 2 5 2 5 0 0 205 3 417 3943923 55200 150.66828918457031 0.97350000000000003 223.00200000000001 20160 13462 0 0 983040 737280 737280 737523 748800 182 26 46 66 97 0 0 0 0 3 0 0 0 0 0 +3442 1783754087013945600 REFRESH 5 0 0.6077664487457739 2 11 2 11 0 0 91 7 414 3943888 55200 149.54803466796875 0.98470000000000002 177.00960000000001 20160 12298 0 0 983040 737280 737280 737488 748800 85 26 90 116 97 0 0 0 0 7 0 0 0 0 0 +3443 1783754087210265000 REFRESH 15 0 0.60799762879492714 3 12 3 12 0 0 96 14 421 3943912 55200 151.84077453613281 0.97840000000000005 180.96549999999999 20160 12140 0 0 983040 737280 737280 737512 748800 60 26 35 26 274 0 0 0 0 14 0 0 0 0 0 +3444 1783754087400469700 REFRESH 30 0 0.52427496145419006 1 9 1 9 0 0 134 9 414 3943877 55200 152.78694152832031 0.97950000000000004 188.5677 20160 13509 0 0 983040 737280 737280 737477 748800 86 25 49 41 213 0 0 0 1 8 0 0 0 0 0 +3445 1783754087596524400 REFRESH 51 0 0.60863064004955225 3 12 3 12 0 0 92 15 424 3943919 55200 151.69126892089844 0.98170000000000002 180.78370000000001 20160 13008 0 0 983040 737280 737280 737519 748800 115 25 106 76 102 0 0 0 0 15 0 0 0 0 0 +3446 1783754087793651400 REFRESH 23 0 0.61387758135556414 3 14 3 14 0 0 103 5 413 3943896 55200 150.87001037597656 0.97729999999999995 181.39769999999999 20160 11948 0 0 983040 737280 737280 737496 748800 66 25 68 49 205 0 0 0 0 5 0 0 0 0 0 +3447 1783754087997032100 REFRESH 13 0 0.78577222993350471 1 6 1 6 0 0 181 9 414 3943916 55200 151.67385864257812 1.0116000000000001 202.26050000000001 20160 13656 0 0 983040 737280 737280 737516 748800 142 26 50 92 104 0 0 0 0 9 0 0 0 0 0 +3448 1783754088202897100 REFRESH 40 0 0.59917635126560898 1 12 1 12 0 0 118 7 421 3943911 55200 152.22067260742188 1 180.98429999999999 20160 12595 0 0 983040 737280 737280 737510 748800 161 25 42 89 104 0 0 0 0 7 0 0 0 0 0 +3449 1783754088390916900 REFRESH 4 0 0.56681453981583207 1 13 1 13 0 0 49 0 418 3943890 55200 149.001220703125 0.98060000000000003 176.57249999999999 20160 13646 0 0 983040 737280 737280 737490 748800 27 25 41 36 289 0 0 0 0 0 0 0 0 0 0 +3450 1783754088585583600 REFRESH 28 0 0.60466660773760617 1 12 1 12 0 0 147 8 409 3943917 55200 151.95756530761719 0.98299999999999998 182.8956 20160 12423 0 0 983040 737280 737280 737516 748800 163 26 31 31 158 0 0 0 0 8 0 0 0 0 0 +3451 1783754088811901300 REFRESH 11 0 0.6591127652896388 0 8 0 8 0 0 103 3 419 3943916 55200 150.83418273925781 0.97929999999999995 225.23259999999999 20160 13480 0 0 983040 737280 737280 737516 748800 119 25 65 70 140 0 0 0 0 3 0 0 0 0 0 +3452 1783754089017537300 REFRESH 19 0 0.61011665257197423 2 11 2 11 0 0 125 8 421 3943893 55200 151.73939514160156 0.98480000000000001 180.62039999999999 20160 12580 0 0 983040 737280 737280 737493 748800 96 25 26 41 233 0 0 0 0 8 0 0 0 0 0 +3453 1783754089212875900 REFRESH 26 0 0.61144710352435816 1 13 1 13 0 0 81 5 427 3943919 55200 150.12249755859375 0.98699999999999999 181.0239 20160 12759 0 0 983040 737280 737280 737519 748800 43 25 38 53 268 0 0 0 0 5 0 0 0 0 0 +3454 1783754089415845400 REFRESH 3 0 0.61083738130538945 2 9 2 9 0 0 143 6 416 3943907 55200 151.71379089355469 0.9849 187.73099999999999 20160 13186 0 0 983040 737280 737280 737507 748800 192 25 37 66 96 0 0 0 0 6 0 0 0 0 0 +3455 1783754089610753200 REFRESH 43 0 0.61396359738500728 2 13 2 13 0 0 126 11 416 3943929 55200 150.62031555175781 0.98350000000000004 181.18709999999999 20160 12159 0 0 983040 737280 737280 737529 748800 163 26 45 61 121 0 0 0 0 11 0 0 0 0 0 +3456 1783754089794022600 REFRESH 37 0 0.61388599112559339 1 12 1 12 0 0 136 6 430 3943891 55200 151.1014404296875 0.99619999999999997 182.06030000000001 20160 12560 0 0 983040 737280 737280 737491 748800 174 26 55 39 136 0 0 0 0 6 0 0 0 0 0 +3457 1783754090001776000 REFRESH 25 0 0.6088742627292445 3 11 3 11 0 0 113 6 421 3943921 55200 152.51148986816406 0.97619999999999996 182.79910000000001 20160 11981 0 0 983040 737280 737280 737521 748800 107 25 62 72 155 0 0 0 0 6 0 0 0 0 0 +3458 1783754090223664900 REFRESH 2 0 0.614774255660127 2 8 2 8 0 0 138 8 417 3943905 55200 153.61433410644531 0.97909999999999997 188.89760000000001 20160 13463 0 0 983040 737280 737280 737504 748800 37 25 66 113 176 0 0 0 0 8 0 0 0 0 0 +3459 1783754090415288700 REFRESH 34 0 0.59831137495390185 1 13 1 13 0 0 102 3 428 3943911 55200 150.21157836914062 0.97430000000000005 178.08160000000001 20160 12197 0 0 983040 737280 737280 737510 748800 137 25 62 72 132 1 0 0 0 2 0 0 0 0 0 +3460 1783754090662127400 REFRESH 54 0 0.60976754239079245 1 8 1 8 0 0 112 5 422 3943901 55200 150.99903869628906 0.98050000000000004 221.69909999999999 20160 13198 0 0 983040 737280 737280 737501 748800 148 25 58 117 74 0 0 0 0 5 0 0 0 0 0 +3461 1783754090888952400 REFRESH 44 0 0.62112241173258897 2 7 2 7 0 0 143 4 424 3943908 55200 152.11929321289062 0.97570000000000001 225.60560000000001 20160 13477 0 0 983040 737280 737280 737507 748800 66 26 62 30 240 0 0 0 0 4 0 0 0 0 0 +3462 1783754091071505000 REFRESH 29 0 0.61942153484271434 1 12 1 12 0 0 125 9 417 3943901 55200 151.95648193359375 0.98050000000000004 181.3527 20160 12883 0 0 983040 737280 737280 737501 748800 118 25 57 49 168 0 0 0 0 9 0 0 0 0 0 +3463 1783754091295740100 REFRESH 39 0 0.64388210338777663 3 8 3 8 0 0 168 10 407 3943890 55200 151.942138671875 0.97629999999999995 181.47630000000001 20160 13353 0 0 983040 737280 737280 737490 748800 108 29 30 36 204 0 0 0 0 10 0 0 0 0 0 +3464 1783754091490636300 REFRESH 38 0 0.60004627192613502 4 14 4 14 0 0 82 5 419 3943930 55200 150.73484802246094 0.98040000000000005 179.26230000000001 20160 12527 0 0 983040 737280 737280 737530 748800 68 26 41 39 245 0 0 0 0 5 0 0 0 0 0 +3465 1783754091689711300 REFRESH 24 0 0.61281991039889905 4 11 4 11 0 0 132 5 410 3943919 55200 151.151611328125 0.97619999999999996 183.42330000000001 20160 11958 0 0 983040 737280 737280 737519 748800 75 27 51 60 197 0 0 0 0 5 0 0 0 0 0 +3466 1783754091886726100 REFRESH 22 0 0.6076768946481329 3 11 3 11 0 0 120 6 425 3943910 55200 151.75680541992188 0.97550000000000003 181.25460000000001 20160 12353 0 0 983040 737280 737280 737509 748800 142 25 31 29 198 0 0 0 0 6 0 0 0 0 0 +3467 1783754092075197200 REFRESH 14 0 0.61752194196410015 0 12 0 12 1 0 113 5 419 3943910 55200 151.63699340820312 0.97560000000000002 187.2064 20160 12047 0 0 983040 737280 737280 737510 748800 135 26 31 47 180 0 0 0 0 5 0 0 0 0 1 +3468 1783754092288944600 REFRESH 1 0 0.65358082461691758 1 7 1 7 0 0 126 5 424 3943921 55200 152.56063842773438 0.97929999999999995 212.55009999999999 20160 13576 0 0 983040 737280 737280 737521 748800 137 26 90 90 81 0 0 0 0 5 0 0 0 0 0 +3469 1783754092514245900 REFRESH 9 0 0.6373412093529528 2 6 2 6 0 0 128 2 432 3943945 55200 152.78285217285156 0.97889999999999999 224.17500000000001 20160 13626 0 0 983040 737280 737280 737545 748800 141 25 85 77 104 0 0 0 0 2 0 0 0 0 0 +3470 1783754092721213500 REFRESH 58 0 0.60875937618735132 2 12 2 12 0 0 120 7 424 3943898 55200 150.75021362304688 0.98229999999999995 181.6104 20160 12217 0 0 983040 737280 737280 737498 748800 98 26 51 58 191 0 0 0 0 7 0 0 0 0 0 +3471 1783754092916958800 REFRESH 47 0 0.59891723122059681 2 11 2 11 0 0 112 6 419 3943893 55200 150.29862976074219 0.98129999999999995 180.36429999999999 20160 12146 0 0 983040 737280 737280 737493 748800 139 26 42 34 178 1 0 0 0 5 0 0 0 0 0 +3472 1783754093112271400 REFRESH 0 0 0.59736040155938652 1 12 1 12 0 0 90 6 425 3943916 55200 151.39225769042969 0.97509999999999997 180.06030000000001 20160 13013 0 0 983040 737280 737280 737516 748800 83 25 42 38 237 0 0 0 0 6 0 0 0 0 0 +3473 1783754093331210800 REFRESH 31 0 0.65395529802681329 2 6 2 6 0 0 124 4 427 3943929 55200 151.1065673828125 0.97519999999999996 217.75229999999999 20160 13642 0 0 983040 737280 737280 737529 748800 216 25 32 72 82 0 0 0 0 4 0 0 0 0 0 +3474 1783754093535109200 REFRESH 21 0 0.61678378043058824 0 10 0 10 0 0 177 2 415 3943930 55200 151.85408020019531 0.97519999999999996 202.73060000000001 20160 13277 0 0 983040 737280 737280 737530 748800 107 26 34 98 150 0 0 0 0 2 0 0 0 0 0 +3475 1783754093730959300 REFRESH 42 0 0.63045432671786505 4 11 4 11 0 0 134 12 418 3943921 55200 151.09529113769531 1.0167999999999999 183.41659999999999 20160 12504 0 0 983040 737280 737280 737521 748800 136 25 27 25 205 0 0 0 0 12 0 0 0 0 0 +3476 1783754093912813500 REFRESH 10 0 0.62649293815864626 1 10 1 10 0 0 117 2 430 3943898 55200 150.54949951171875 0.97709999999999997 180.66980000000001 20160 12772 0 0 983040 737280 737280 737498 748800 243 26 40 41 80 0 0 0 0 2 0 0 0 0 0 +3477 1783754094103680300 REFRESH 45 0 0.62285623278302071 2 7 2 7 0 0 137 9 428 3943902 55200 153.30816650390625 0.97999999999999998 189.63659999999999 20160 13400 0 0 983040 737280 737280 737502 748800 161 25 64 58 120 0 0 0 0 9 0 0 0 0 0 +3478 1783754094292375700 REFRESH 48 0 0.66362692208908136 2 9 2 9 0 0 141 7 419 3943896 55200 151.4195556640625 0.99060000000000004 187.4479 20160 13986 0 0 983040 737280 737280 737496 748800 59 25 42 44 249 0 0 0 0 7 0 0 0 0 0 +3479 1783754094475433200 REFRESH 12 0 0.61796517772921589 3 8 3 8 0 0 181 4 419 3943940 55200 151.70252990722656 0.98419999999999996 181.92099999999999 20160 12773 0 0 983040 737280 737280 737540 748800 138 26 37 104 114 0 0 0 0 4 0 0 0 0 0 +3480 1783754094681843500 REFRESH 32 0 0.61179543800299274 2 14 2 14 0 0 118 16 431 3943913 55200 151.14239501953125 0.99870000000000003 181.1037 20160 12528 0 0 983040 737280 737280 737513 748800 200 25 35 33 138 0 0 0 0 16 0 0 0 0 0 +3481 1783754094874008000 REFRESH 53 0 0.66987406857797982 0 8 0 8 0 0 144 5 418 3943909 55200 152.52890014648438 0.97699999999999998 190.61099999999999 20160 13428 0 0 983040 737280 737280 737509 748800 131 26 27 45 189 0 0 0 0 5 0 0 0 0 0 +3482 1783754095071831600 REFRESH 27 0 0.61372011344112998 0 14 0 14 0 0 143 8 409 3943921 55200 152.56166076660156 0.98240000000000005 182.80109999999999 20160 12356 0 0 983040 737280 737280 737520 748800 86 26 32 30 235 0 0 0 0 8 0 0 0 0 0 +3483 1783754095290051100 REFRESH 41 0 0.611017968599886 1 10 1 10 0 0 110 3 416 3943902 55200 149.65248107910156 0.98029999999999995 203.06 20160 12964 0 0 983040 737280 737280 737502 748800 131 26 49 47 163 0 0 0 0 3 0 0 0 0 0 +3484 1783754095485842300 REFRESH 57 0 0.60293836851842841 2 12 2 12 0 0 122 7 418 3943898 55200 150.898681640625 0.98019999999999996 180.0728 20160 12504 0 0 983040 737280 737280 737498 748800 116 26 92 80 104 0 0 0 0 7 0 0 0 0 0 +3485 1783754095669848500 REFRESH 55 0 0.61776236689062336 1 12 1 12 0 0 140 6 424 3943916 55200 152.06707763671875 0.97819999999999996 182.78370000000001 20160 13324 0 0 983040 737280 737280 737516 748800 124 25 57 105 113 0 0 0 0 6 0 0 0 0 0 +3486 1783754095891461700 REFRESH 7 0 0.6093412719294593 1 12 1 12 0 0 130 8 419 3943896 55200 152.24832153320312 0.97519999999999996 181.83920000000001 20160 12289 0 0 983040 737280 737280 737495 748800 149 26 29 31 184 1 0 0 0 7 0 0 0 0 0 +3487 1783754096089578800 REFRESH 49 0 0.60449594126321071 3 10 3 10 0 0 126 6 419 3943921 55200 151.91961669921875 1.0137 181.71510000000001 20160 12176 0 0 983040 737280 737280 737520 748800 119 26 64 44 166 0 0 0 0 6 0 0 0 0 0 +3488 1783754096285255900 REFRESH 46 0 0.60901523965124782 2 15 2 15 1 0 114 10 416 3943918 55200 151.7076416015625 0.97629999999999995 181.07990000000001 20160 12123 0 0 983040 737280 737280 737518 748800 110 26 60 35 185 0 0 0 0 10 0 0 0 0 1 +3489 1783754097567992300 DEPTH 13 1 0.78611331710829668 1 6 1 6 0 0 181 19 2490 23664813 81600 865.21861267089844 5.8894000000000002 1281.5871999999999 120960 65880 1 0 5898240 4423680 4423680 4426413 4492800 270 155 186 209 1670 0 0 0 0 19 0 0 0 0 0 +3490 1783754098674342300 DEPTH 8 1 0.78423098427216031 2 5 2 5 0 0 216 19 2574 23664920 81600 878.44966125488281 5.8531999999999993 1105.2072000000001 120960 66175 1 0 5898240 4423680 4423680 4426517 4492800 282 150 158 182 1802 0 0 0 0 19 0 0 0 0 0 +3491 1783754100006500400 DEPTH 56 1 0.7790850021391249 2 5 2 5 0 0 205 16 2574 23664881 81600 865.48582458496094 5.8273999999999999 1306.2546 120960 65560 1 0 5898240 4423680 4423680 4426481 4492800 544 156 180 345 1349 0 0 0 0 16 0 0 0 0 0 +3492 1783754101366032700 DEPTH 17 1 0.77830463421743412 0 7 0 7 0 0 189 23 2539 23664818 81600 865.06816101074219 5.8572999999999995 1314.6349 120960 65638 1 0 5898240 4423680 4423680 4426417 4492800 218 156 162 217 1786 0 0 0 0 23 0 0 0 0 0 +3493 1783754102598422500 DEPTH 33 1 0.6566077879782517 1 7 1 7 0 0 181 22 2539 23664934 81600 872.70195007324219 5.8406000000000002 1231.1984 120960 66437 1 0 5898240 4423680 4423680 4426534 4492800 201 153 156 150 1879 0 0 0 0 22 0 0 0 0 0 +3494 1783754103948838100 DEPTH 11 1 0.65376848336666293 0 8 0 8 1 0 103 15 2524 23664905 81600 860.25830078125 5.8503000000000007 1301.8864000000001 120960 65016 1 0 5898240 4423680 4423680 4426503 4492800 243 150 208 206 1717 0 0 0 0 15 0 0 0 0 1 +3495 1783754105030029200 DEPTH 39 1 0.63931220599547767 3 8 3 8 0 0 170 40 2540 23664915 81600 869.09040832519531 5.8581000000000003 1040.9105 120960 65479 1 0 5898240 4423680 4423680 4426514 4492800 226 150 156 156 1852 0 0 0 0 40 0 0 0 0 0 +3496 1783754106074994700 DEPTH 20 1 0.61607817016003708 2 11 2 11 0 0 115 13 2610 23664826 81600 869.20878601074219 5.8491 1043.8371 120960 62099 1 0 5898240 4423680 4423680 4426426 4492800 836 150 406 594 624 0 0 0 0 13 0 0 0 0 0 +3497 1783754107445082600 DEPTH 1 1 0.65066639877111176 1 7 1 7 0 0 126 12 2620 23664847 81600 871.24479675292969 5.8772000000000002 1314.9761000000001 120960 65881 1 0 5898240 4423680 4423680 4426446 4492800 417 156 308 348 1391 0 0 0 0 12 0 0 0 0 0 +3498 1783754108731763000 DEPTH 31 1 0.64999347915424899 2 6 2 6 0 0 124 13 2628 23664844 81600 865.15525817871094 5.8618000000000006 1285.4974 120960 65862 1 0 5898240 4423680 4423680 4426442 4492800 1009 150 187 350 932 0 0 0 0 13 0 0 0 0 0 +3499 1783754110044521500 DEPTH 9 1 0.63296698259191442 2 6 2 6 0 0 130 8 2626 23664826 81600 875.45549011230469 5.8510000000000009 1311.6481000000001 120960 66087 1 0 5898240 4423680 4423680 4426426 4492800 754 150 408 549 765 0 0 0 0 8 0 0 0 0 0 +3500 1783754111319444300 DEPTH 13 1 0.64730206060442907 1 6 1 6 0 0 182 25 2492 23664959 81600 857.80378723144531 5.8331999999999997 1273.7806 120960 54459 1 0 5898240 4423680 4423680 4426558 4492800 263 156 182 274 1617 0 0 0 0 25 0 0 0 0 0 +3501 1783754112647901600 DEPTH 44 1 0.61603292826757805 2 7 2 7 0 0 144 16 2608 23664759 81600 868.17295837402344 5.9024999999999999 1312.7479000000001 120960 64883 1 0 5898240 4423680 4423680 4426359 4492800 201 150 238 163 1856 0 0 0 0 16 0 0 0 0 0 +3502 1783754113707344600 DEPTH 29 1 0.61593520875526364 1 12 1 12 1 0 125 44 2574 23664829 81600 865.82882690429688 5.8410000000000002 1040.7360000000001 120960 62126 1 0 5898240 4423680 4423680 4426427 4492800 195 150 161 151 1917 0 0 0 0 44 0 0 0 0 1 +3503 1783754114875611100 DEPTH 16 1 0.61360593296589072 2 7 2 7 0 0 177 36 2536 23664779 81600 873.530517578125 5.8328999999999995 1128.2176999999999 120960 65955 1 0 5898240 4423680 4423680 4426379 4492800 161 154 156 361 1704 0 0 0 0 36 0 0 0 0 0 +3504 1783754116135344400 DEPTH 30 1 0.61271985166120801 1 9 1 9 0 0 134 34 2531 23664905 81600 870.34590148925781 5.8521000000000001 1230.6491000000001 120960 65698 1 0 5898240 4423680 4423680 4426502 4492800 156 150 174 150 1901 0 0 0 0 34 0 0 0 0 0 +3505 1783754117322749200 DEPTH 8 1 0.68540618352161986 2 5 2 5 0 0 218 22 2559 23664909 81600 867.40971374511719 5.8635000000000002 1098.4259999999999 120960 55435 1 0 5898240 4423680 4423680 4426508 4492800 292 152 162 194 1759 0 0 0 0 22 0 0 0 0 0 +3506 1783754118623839000 DEPTH 56 1 0.68077501316588496 2 5 2 5 0 0 205 22 2588 23664854 81600 853.28306579589844 6.1066000000000003 1299.7898 120960 54268 1 0 5898240 4423680 4423680 4426453 4492800 535 156 180 402 1315 0 0 0 0 22 0 0 0 0 0 +3507 1783754119940597500 DEPTH 17 1 0.68017743820911802 0 7 0 7 0 0 189 20 2537 23664795 81600 855.57144165039062 5.8904000000000005 1315.2944 120960 54352 1 0 5898240 4423680 4423680 4426393 4492800 216 156 162 221 1782 0 0 0 0 20 0 0 0 0 0 +3508 1783754121233830900 DEPTH 48 1 0.65567724113406722 2 9 2 9 1 0 144 43 2536 23664919 81600 864.2950439453125 5.8456999999999999 1250.6608000000001 120960 66086 1 0 5898240 4423680 4423680 4426518 4492800 150 150 150 150 1936 0 0 0 0 43 0 0 0 0 2 +3509 1783754122530522200 DEPTH 53 1 0.66499103435255813 0 8 0 8 0 0 145 31 2508 23664855 81600 867.54507446289062 5.8488999999999995 1252.3585 120960 65575 1 0 5898240 4423680 4423680 4426451 4492800 203 156 150 175 1824 0 0 0 0 31 0 0 0 0 0 +3510 1783754123583510900 DEPTH 42 1 0.62645350396950494 4 11 4 11 0 0 134 22 2570 23664867 81600 867.68647766113281 5.8872999999999998 1051.7610999999999 120960 59736 1 0 5898240 4423680 4423680 4426467 4492800 186 150 162 151 1921 3 0 0 0 19 0 0 0 0 0 +3511 1783754124834308900 DEPTH 45 1 0.62277481990096861 2 7 2 7 0 0 138 25 2621 23664922 81600 873.24467468261719 5.8453999999999997 1234.498 120960 65646 1 0 5898240 4423680 4423680 4426518 4492800 281 150 211 210 1769 0 0 0 0 25 0 0 0 0 0 +3512 1783754125909347600 DEPTH 10 1 0.61770410646170448 1 10 1 10 0 0 117 11 2586 23664970 81600 862.19476318359375 5.8420999999999994 1046.0168000000001 120960 61121 1 0 5898240 4423680 4423680 4426568 4492800 1354 150 232 263 587 0 0 0 0 11 0 0 0 0 0 +3513 1783754127178912000 DEPTH 13 1 0.66832532062669026 1 6 1 6 0 0 182 24 2498 23664786 81600 855.05343627929688 5.8606999999999996 1268.4525000000001 120960 43279 1 0 5898240 4423680 4423680 4426385 4492800 247 156 185 311 1599 0 0 0 0 24 0 0 0 0 0 +3514 1783754128280168700 DEPTH 8 1 0.6264019052540224 2 5 2 5 0 0 218 21 2561 23664899 81600 866.92967224121094 5.8734000000000002 1100.1034999999999 120960 44077 1 0 5898240 4423680 4423680 4426498 4492800 341 153 162 211 1694 0 0 0 0 21 0 0 0 0 0 +3515 1783754129348964900 DEPTH 43 1 0.61245271733780393 2 13 2 13 1 0 128 39 2562 23664834 81600 869.59593200683594 5.8673999999999999 1043.0137999999999 120960 57567 1 0 5898240 4423680 4423680 4426432 4492800 361 155 186 206 1654 3 1 0 0 35 0 0 0 0 1 +3516 1783754130573782900 DEPTH 14 1 0.61233498526195373 0 12 0 12 1 0 113 31 2574 23664945 81600 868.45645141601562 5.9167000000000005 1223.6675 120960 57508 1 0 5898240 4423680 4423680 4426544 4492800 233 154 163 191 1833 0 0 0 0 31 0 0 0 0 1 +3517 1783754131868145800 DEPTH 2 1 0.61216955618349289 2 8 2 8 0 0 138 20 2563 23664829 81600 869.21624755859375 5.8524000000000003 1251.5487000000001 120960 66245 1 0 5898240 4423680 4423680 4426426 4492800 156 150 150 150 1957 0 0 0 0 20 0 0 0 0 0 +3518 1783754132934389900 DEPTH 12 1 0.61147473730611757 3 8 3 8 0 0 183 36 2543 23664764 81600 866.80854797363281 5.9003999999999994 1041.0284999999999 120960 61227 1 0 5898240 4423680 4423680 4426362 4492800 296 150 183 293 1621 2 0 0 0 34 0 0 0 0 0 +3519 1783754134043292600 DEPTH 55 1 0.61091535252618334 1 12 1 12 0 0 141 27 2584 23664815 81600 877.73100280761719 5.8411 1055.7705000000001 120960 64474 1 0 5898240 4423680 4423680 4426415 4492800 597 150 239 610 988 0 0 0 0 27 0 0 0 0 0 +3520 1783754135118966100 DEPTH 32 1 0.61059925606228704 2 14 2 14 1 0 118 14 2638 23664830 81600 861.23123168945312 5.8428000000000004 1035.3869999999999 120960 59124 1 0 5898240 4423680 4423680 4426430 4492800 900 150 184 182 1222 0 0 0 0 14 0 0 0 0 1 +3521 1783754135299658700 REFRESH 29 0 0.55367058663574098 1 12 1 12 0 0 125 7 413 3943915 55200 150.72869873046875 0.97519999999999996 179.5051 20160 12906 0 0 983040 737280 737280 737515 748800 136 25 64 47 141 0 0 0 0 7 0 0 0 0 0 +3522 1783754135481458200 REFRESH 37 0 0.60919786820583322 1 12 1 12 0 0 136 11 428 3943902 55200 150.83418273925781 0.9748 180.6182 20160 12498 0 0 983040 737280 737280 737502 748800 173 26 55 39 135 0 0 0 0 11 0 0 0 0 0 +3523 1783754135681035900 REFRESH 3 0 0.60625613340590856 2 9 2 9 0 0 143 2 416 3943913 55200 151.59500122070312 0.97599999999999998 186.1131 20160 13215 0 0 983040 737280 737280 737513 748800 191 25 37 64 99 0 0 0 0 2 0 0 0 0 0 +3524 1783754135864566600 REFRESH 10 0 0.48757794741736554 1 10 1 10 0 0 117 3 427 3943919 55200 151.40351867675781 0.97460000000000002 182.39439999999999 20160 12525 0 0 983040 737280 737280 737519 748800 239 25 39 41 83 0 0 0 0 3 0 0 0 0 0 +3525 1783754136054106600 REFRESH 14 0 0.45233415959973899 0 12 0 12 0 0 113 9 418 3943890 55200 152.36607360839844 0.98209999999999997 188.3897 20160 12189 0 0 983040 737280 737280 737490 748800 125 26 32 45 190 0 0 0 0 9 0 0 0 0 0 +3526 1783754136284334500 REFRESH 21 0 0.6084871883681735 0 10 0 10 0 0 177 9 415 3943904 55200 152.18893432617188 1.0212000000000001 203.50550000000001 20160 13287 0 0 983040 737280 737280 737504 748800 104 26 33 96 156 0 0 0 0 9 0 0 0 0 0 +3527 1783754136475914600 REFRESH 53 0 0.59549413164105602 0 8 0 8 0 0 145 8 417 3943919 55200 150.96627807617188 0.97689999999999999 190.3571 20160 13488 0 0 983040 737280 737280 737519 748800 144 26 27 52 168 0 0 0 0 8 0 0 0 0 0 +3528 1783754136688300100 REFRESH 50 0 0.60856417471143676 2 9 2 9 0 0 129 9 423 3943907 55200 151.49465942382812 0.98050000000000004 186.37989999999999 20160 12706 0 0 983040 737280 737280 737507 748800 141 25 37 50 170 0 0 0 0 9 0 0 0 0 0 +3529 1783754136870219400 REFRESH 43 0 0.50081445797736424 2 13 2 13 0 0 128 9 420 3943901 55200 151.04512023925781 0.97170000000000001 180.82669999999999 20160 12384 0 0 983040 737280 737280 737501 748800 163 26 47 61 123 0 0 0 1 8 0 0 0 0 0 +3530 1783754137053101000 REFRESH 20 0 0.61378389183158322 2 11 2 11 0 0 116 5 434 3943910 55200 152.32716369628906 0.98099999999999998 181.7457 20160 12975 0 0 983040 737280 737280 737510 748800 152 25 76 98 83 0 0 0 0 5 0 0 0 0 0 +3531 1783754137251305700 REFRESH 19 0 0.60710094512510748 2 11 2 11 1 0 126 12 419 3943918 55200 151.90118408203125 0.97309999999999997 182.81479999999999 20160 12598 0 0 983040 737280 737280 737518 748800 101 25 26 42 225 0 0 0 0 12 0 0 0 0 1 +3532 1783754137473875200 REFRESH 15 0 0.60768225323909841 3 12 3 12 0 0 96 9 417 3943898 55200 151.78547668457031 0.97799999999999998 180.65520000000001 20160 12206 0 0 983040 737280 737280 737498 748800 62 26 35 26 268 0 0 1 0 8 0 0 0 0 0 +3533 1783754137668945100 REFRESH 23 0 0.6075354900677068 3 14 3 14 0 0 103 14 411 3943910 55200 150.297607421875 0.97950000000000004 179.65180000000001 20160 11983 0 0 983040 737280 737280 737510 748800 57 25 52 45 232 0 0 0 0 14 0 0 0 0 0 +3534 1783754137864200500 REFRESH 47 0 0.59604047108840885 2 11 2 11 0 0 112 4 418 3943921 55200 151.09735107421875 0.97650000000000003 179.61240000000001 20160 12212 0 0 983040 737280 737280 737521 748800 140 26 51 35 166 0 0 0 0 4 0 0 0 0 0 +3535 1783754138058159400 REFRESH 45 0 0.61358303773564304 2 7 2 7 0 0 138 8 427 3943906 55200 152.02508544921875 0.98240000000000005 192.6455 20160 13484 0 0 983040 737280 737280 737506 748800 123 25 52 52 175 0 0 0 0 8 0 0 0 0 0 +3536 1783754138262624200 REFRESH 13 0 0.76921896055889205 1 6 1 6 0 0 182 5 414 3943934 55200 151.70661926269531 0.98309999999999997 203.32980000000001 20160 13366 0 0 983040 737280 737280 737534 748800 142 26 52 91 103 0 0 0 0 5 0 0 0 0 0 +3537 1783754138452366500 REFRESH 2 0 0.56162630443872197 2 8 2 8 0 0 138 6 416 3943908 55200 152.26060485839844 0.97909999999999997 188.59739999999999 20160 13390 0 0 983040 737280 737280 737508 748800 28 25 63 97 203 0 0 0 0 6 0 0 0 0 0 +3538 1783754138659099200 REFRESH 49 0 0.60086127182603533 3 10 3 10 0 0 127 11 420 3943898 55200 151.1383056640625 0.97409999999999997 180.67609999999999 20160 12053 0 0 983040 737280 737280 737498 748800 130 26 65 49 150 0 0 0 0 11 0 0 0 0 0 +3539 1783754138872444600 REFRESH 1 0 0.65299948312461698 1 7 1 7 0 0 126 5 427 3943900 55200 151.96365356445312 0.98050000000000004 212.22839999999999 20160 13506 0 0 983040 737280 737280 737500 748800 140 26 90 91 80 0 0 0 0 5 0 0 0 0 0 +3540 1783754139077914700 REFRESH 6 0 0.58019582074936349 3 11 3 11 0 0 117 5 417 3943918 55200 152.15116882324219 0.97870000000000001 180.49940000000001 20160 12604 0 0 983040 737280 737280 737517 748800 26 25 25 25 316 0 0 0 0 5 0 0 0 0 0 +3541 1783754139280652900 REFRESH 46 0 0.60772048710956006 2 15 2 15 0 0 114 9 415 3943891 55200 150.835205078125 0.97689999999999999 186.43000000000001 20160 12067 0 0 983040 737280 737280 737491 748800 101 26 56 36 196 0 0 0 0 9 0 0 0 0 0 +3542 1783754139504882900 REFRESH 9 0 0.63498744974982546 2 6 2 6 0 0 130 2 433 3943893 55200 151.80697631835938 0.9849 223.10390000000001 20160 13470 0 0 983040 737280 737280 737493 748800 142 25 85 75 106 0 0 0 0 2 0 0 0 0 0 +3543 1783754139709398100 REFRESH 18 0 0.60262753252204393 4 15 4 15 0 0 104 7 416 3943930 55200 150.82803344726562 0.97150000000000003 179.41050000000001 20160 11906 0 0 983040 737280 737280 737530 748800 35 25 25 27 304 0 0 0 0 7 0 0 0 0 0 +3544 1783754139926198400 REFRESH 41 0 0.60501289201338293 1 10 1 10 0 0 110 8 417 3943934 55200 150.35597229003906 0.97470000000000001 203.59280000000001 20160 12790 0 0 983040 737280 737280 737534 748800 133 26 49 48 161 0 0 0 1 7 0 0 0 0 0 +3545 1783754140123075100 REFRESH 35 0 0.60811515429729934 2 11 2 11 0 0 152 12 418 3943910 55200 151.14060974121094 0.97960000000000003 181.15090000000001 20160 12507 0 0 983040 737280 737280 737510 748800 154 25 30 93 116 0 0 0 0 12 0 0 0 0 0 +3546 1783754140316523500 REFRESH 34 0 0.59291140280016019 1 13 1 13 0 0 104 6 429 3943900 55200 149.67091369628906 0.98070000000000002 177.7216 20160 12110 0 0 983040 737280 737280 737500 748800 135 25 55 62 152 0 0 0 0 6 0 0 0 0 0 +3547 1783754140512040500 REFRESH 51 0 0.60847381413472257 3 12 3 12 0 0 92 8 427 3943900 55200 150.866943359375 0.98140000000000005 179.71850000000001 20160 12952 0 0 983040 737280 737280 737499 748800 116 25 107 76 103 0 0 0 0 8 0 0 0 0 0 +3548 1783754140693308900 REFRESH 32 0 0.60937139026015585 2 14 2 14 0 0 118 13 430 3943904 55200 151.26118469238281 0.98019999999999996 180.04300000000001 20160 12321 0 0 983040 737280 737280 737504 748800 206 25 33 31 135 0 0 0 0 13 0 0 0 0 0 +3549 1783754140919919500 REFRESH 44 0 0.61738959586305209 2 7 2 7 0 0 144 1 422 3943889 55200 152.18266296386719 0.9738 225.40620000000001 20160 13431 0 0 983040 737280 737280 737489 748800 95 26 69 31 201 0 0 0 0 1 0 0 0 0 0 +3550 1783754141107622700 REFRESH 8 0 0.78731020968382204 2 5 2 5 0 0 218 7 413 3943920 55200 152.6824951171875 0.97519999999999996 186.09540000000001 20160 13538 0 0 983040 737280 737280 737520 748800 175 27 30 71 110 0 0 0 0 7 0 0 0 0 0 +3551 1783754141307408200 REFRESH 27 0 0.61022189262768867 0 14 0 14 0 0 144 16 415 3943907 55200 151.82438659667969 0.97829999999999995 182.9787 20160 12178 0 0 983040 737280 737280 737507 748800 96 26 38 36 219 0 0 0 0 16 0 0 0 0 0 +3552 1783754141499030800 REFRESH 4 0 0.56199843547781669 1 13 1 13 1 0 49 4 413 3943929 55200 149.56646728515625 0.98080000000000001 176.5813 20160 13579 0 0 983040 737280 737280 737529 748800 35 25 44 44 265 0 0 0 0 4 0 0 0 0 1 +3553 1783754141694529200 REFRESH 40 0 0.5957899622186098 1 12 1 12 1 0 118 6 418 3943922 55200 150.91609191894531 0.97299999999999998 179.6848 20160 12565 0 0 983040 737280 737280 737522 748800 166 25 43 87 97 0 0 0 1 5 0 0 0 1 0 +3554 1783754141881345000 REFRESH 16 0 0.61502772080340706 2 7 2 7 0 0 177 9 416 3943903 55200 152.77568054199219 0.9738 185.66210000000001 20160 13552 0 0 983040 737280 737280 737503 748800 34 27 26 233 96 0 0 0 0 9 0 0 0 0 0 +3555 1783754142085927300 REFRESH 26 0 0.60716493800901783 1 13 1 13 1 0 81 5 427 3943919 55200 150.84442138671875 0.98080000000000001 179.48859999999999 20160 12788 0 0 983040 737280 737280 737519 748800 43 25 38 54 267 0 0 0 0 5 0 0 0 0 1 +3556 1783754142276943800 REFRESH 48 0 0.65248417511160817 2 9 2 9 0 0 144 8 419 3943906 55200 151.21101379394531 0.98029999999999995 189.7731 20160 13369 0 0 983040 737280 737280 737506 748800 57 25 37 37 263 0 0 0 0 8 0 0 0 0 0 +3557 1783754142460886100 REFRESH 55 0 0.60865215301043629 1 12 1 12 0 0 142 10 424 3943912 55200 153.53753662109375 0.98250000000000004 182.6669 20160 13274 0 0 983040 737280 737280 737511 748800 135 25 59 111 94 0 0 0 0 10 0 0 0 0 0 +3558 1783754142702418800 REFRESH 17 0 0.78189593382334044 0 7 0 7 0 0 189 2 411 3943897 55200 151.46701049804688 0.98170000000000002 225.14680000000001 20160 13713 0 0 983040 737280 737280 737497 748800 103 26 38 107 137 0 0 0 0 2 0 0 0 0 0 +3559 1783754142884194500 REFRESH 42 0 0.62276658728147682 4 11 4 11 0 0 135 14 416 3943918 55200 151.55609130859375 0.9748 180.59889999999999 20160 12612 0 0 983040 737280 737280 737517 748800 148 25 27 26 190 1 0 0 0 13 0 0 0 0 0 +3560 1783754143072984500 REFRESH 30 0 0.61222241460053817 1 9 1 9 0 0 134 10 419 3943922 55200 152.60569763183594 0.9778 187.5958 20160 13506 0 0 983040 737280 737280 737522 748800 107 26 66 42 178 0 0 0 0 10 0 0 0 0 0 +3561 1783754143298789400 REFRESH 56 0 0.78233850240052205 2 5 2 5 0 0 205 6 417 3943914 55200 151.56736755371094 0.97640000000000005 224.56020000000001 20160 13494 0 0 983040 737280 737280 737514 748800 185 26 46 64 96 0 0 0 0 6 0 0 0 0 0 +3562 1783754143543104000 REFRESH 54 0 0.60864318897875025 1 8 1 8 0 0 112 6 426 3943928 55200 152.20223999023438 0.97640000000000005 222.27610000000001 20160 13228 0 0 983040 737280 737280 737528 748800 151 25 59 118 73 0 0 0 0 6 0 0 0 0 0 +3563 1783754143737702400 REFRESH 24 0 0.60741258100972317 4 11 4 11 0 0 132 14 408 3943913 55200 151.82643127441406 0.97860000000000003 182.4888 20160 11937 0 0 983040 737280 737280 737513 748800 56 26 37 46 243 0 0 0 0 14 0 0 0 0 0 +3564 1783754143929023200 REFRESH 0 0 0.59507916297669006 1 12 1 12 0 0 90 5 424 3943931 55200 151.07583618164062 0.97519999999999996 179.8364 20160 12867 0 0 983040 737280 737280 737531 748800 91 25 47 40 221 0 0 0 0 5 0 0 0 0 0 +3565 1783754144132240700 REFRESH 58 0 0.60531245192299421 2 12 2 12 0 0 121 10 426 3943891 55200 151.40762329101562 0.97950000000000004 180.89660000000001 20160 12274 0 0 983040 737280 737280 737491 748800 102 26 58 59 181 0 0 0 0 10 0 0 0 0 0 +3566 1783754144315926200 REFRESH 39 0 0.63521576816242487 3 8 3 8 0 0 170 7 410 3943914 55200 151.83897399902344 0.98180000000000001 182.49440000000001 20160 13472 0 0 983040 737280 737280 737514 748800 101 28 30 33 218 0 0 0 0 7 0 0 0 0 0 +3567 1783754144498843000 REFRESH 12 0 0.61154174247314974 3 8 3 8 0 0 183 6 415 3943924 55200 151.61053466796875 0.98209999999999997 181.78360000000001 20160 12855 0 0 983040 737280 737280 737524 748800 139 26 42 91 117 1 0 0 0 5 0 0 0 0 0 +3568 1783754144745114500 REFRESH 52 0 0.61049507464606412 1 8 1 8 1 0 107 1 433 3943921 55200 150.51980590820312 0.97799999999999998 223.09549999999999 20160 12722 0 0 983040 737280 737280 737521 748800 135 25 35 156 82 0 0 0 0 1 0 0 0 0 1 +3569 1783754144963470900 REFRESH 7 0 0.60686532252441849 1 12 1 12 0 0 130 5 422 3943908 55200 151.00431823730469 0.97960000000000003 181.1062 20160 12321 0 0 983040 737280 737280 737508 748800 170 26 30 43 153 0 0 0 0 5 0 0 0 0 0 +3570 1783754145156164200 REFRESH 38 0 0.59567199708629481 4 14 2 15 1 0 83 6 422 3943913 55200 150.71539306640625 0.97919999999999996 180.4692 20160 12388 0 0 983040 737280 737280 737513 748800 74 26 46 41 235 1 0 0 0 5 1 0 0 0 0 +3571 1783754145351874200 REFRESH 22 0 0.60305527005131798 3 11 3 11 0 0 120 7 420 3943910 55200 151.84690856933594 0.98740000000000006 181.9427 20160 12313 0 0 983040 737280 737280 737510 748800 137 25 29 30 199 0 0 0 1 6 0 0 0 0 0 +3572 1783754145552905900 REFRESH 33 0 0.65810924233577717 1 7 1 7 0 0 181 4 419 3943914 55200 152.46028137207031 0.97819999999999996 188.52719999999999 20160 13465 0 0 983040 737280 737280 737514 748800 118 26 44 40 191 0 0 0 0 4 0 0 0 0 0 +3573 1783754145745377900 REFRESH 36 0 0.595777863627035 3 10 3 10 0 0 113 11 427 3943927 55200 150.90074157714844 0.97660000000000002 180.15649999999999 20160 12061 0 0 983040 737280 737280 737527 748800 230 25 39 50 83 0 0 0 0 11 0 0 0 0 0 +3574 1783754145965359400 REFRESH 31 0 0.6524871015714987 2 6 2 6 0 0 124 5 428 3943936 55200 151.30316162109375 0.97399999999999998 218.82679999999999 20160 13367 0 0 983040 737280 737280 737535 748800 204 25 32 73 94 0 0 0 0 5 0 0 0 0 0 +3575 1783754146180445300 REFRESH 5 0 0.60593965305612896 2 11 2 11 0 0 91 9 417 3943940 55200 150.41127014160156 0.97330000000000005 178.97640000000001 20160 12279 0 0 983040 737280 737280 737540 748800 86 26 93 122 90 0 0 0 0 9 0 0 0 0 0 +3576 1783754146426289400 REFRESH 11 0 0.65598784706159685 0 8 0 8 0 0 103 7 421 3943911 55200 151.23455810546875 0.97689999999999999 224.6437 20160 13528 0 0 983040 737280 737280 737511 748800 120 25 65 70 141 0 0 0 0 7 0 0 0 0 0 +3577 1783754146618832400 REFRESH 25 0 0.60500283340300487 3 11 3 11 0 0 114 6 423 3943908 55200 150.85772705078125 0.98150000000000004 180.51650000000001 20160 11971 0 0 983040 737280 737280 737508 748800 109 25 63 74 152 1 0 0 0 5 0 0 0 0 0 +3578 1783754146811121400 REFRESH 57 0 0.59991360906854996 2 12 2 12 0 0 122 6 416 3943912 55200 151.26425170898438 0.9889 180.1103 20160 12416 0 0 983040 737280 737280 737510 748800 119 26 97 83 91 0 0 0 0 6 0 0 0 0 0 +3579 1783754147008502400 REFRESH 28 0 0.60265496783344097 1 12 1 12 0 0 147 9 404 3943906 55200 151.33798217773438 0.97450000000000003 181.8546 20160 12315 0 0 983040 737280 737280 737506 748800 163 26 31 32 152 0 0 0 0 9 0 0 0 0 0 +3580 1783754148173399400 DEPTH 8 1 0.78507082659144845 2 5 2 5 0 0 219 23 2565 23664788 81600 875.8487548828125 5.8557999999999995 1094.6274000000001 120960 66483 1 0 5898240 4423680 4423680 4426387 4492800 290 151 158 173 1793 0 0 0 0 23 0 0 0 0 0 +3581 1783754149467498200 DEPTH 13 1 0.78502528085138135 1 6 1 6 0 0 182 19 2500 23664730 81600 866.59381103515625 5.8693 1292.9268999999999 120960 65056 1 0 5898240 4423680 4423680 4426329 4492800 268 154 182 227 1669 0 0 0 0 19 0 0 0 0 0 +3582 1783754150785124400 DEPTH 17 1 0.76533933411386035 0 7 0 7 0 0 189 24 2532 23664870 81600 867.22579956054688 5.8529 1316.425 120960 65730 1 0 5898240 4423680 4423680 4426469 4492800 216 156 166 242 1752 0 0 0 0 24 0 0 0 0 0 +3583 1783754152130469100 DEPTH 56 1 0.74963117711350524 2 5 2 5 0 0 206 20 2577 23664859 81600 866.67671203613281 5.8721000000000005 1310.8937000000001 120960 65480 1 0 5898240 4423680 4423680 4426458 4492800 551 156 180 357 1333 0 0 0 0 20 0 0 0 0 0 +3584 1783754153409503200 DEPTH 53 1 0.6639742906462931 0 8 0 8 0 0 145 28 2512 23664817 81600 868.86732482910156 5.8523999999999994 1247.6369999999999 120960 65150 1 0 5898240 4423680 4423680 4426415 4492800 218 156 150 174 1814 0 0 0 0 28 0 0 0 0 0 +3585 1783754154730291900 DEPTH 1 1 0.65003400294430269 1 7 1 7 0 0 126 17 2626 23664768 81600 870.63961791992188 5.8440000000000003 1319.3637000000001 120960 66248 1 0 5898240 4423680 4423680 4426365 4492800 407 155 300 331 1433 0 0 0 0 17 0 0 0 0 0 +3586 1783754156030190000 DEPTH 48 1 0.64639913841009022 2 9 2 9 0 0 145 41 2547 23664831 81600 864.8355712890625 5.8624999999999998 1254.0732 120960 65616 1 0 5898240 4423680 4423680 4426430 4492800 150 150 150 150 1947 0 0 0 0 41 0 0 0 0 0 +3587 1783754157330438700 DEPTH 9 1 0.63073654257114098 2 6 2 6 0 0 131 6 2626 23664870 81600 869.16026306152344 5.8918999999999997 1299.0524 120960 65680 1 0 5898240 4423680 4423680 4426469 4492800 775 150 440 548 713 0 0 0 0 6 0 0 0 0 0 +3588 1783754158367906200 DEPTH 38 1 0.62451897919115007 2 15 2 15 1 0 84 15 2596 23664886 81600 863.26885986328125 5.8905000000000003 1036.1324 120960 59344 1 0 5898240 4423680 4423680 4426485 4492800 286 150 214 158 1788 2 2 0 0 11 2 0 0 0 1 +3589 1783754159616040500 DEPTH 45 1 0.62230508109053129 2 7 2 7 0 0 138 34 2617 23664871 81600 875.03666687011719 5.8541999999999996 1222.5696 120960 65823 1 0 5898240 4423680 4423680 4426470 4492800 253 150 212 203 1799 0 0 0 0 34 0 0 0 0 0 +3590 1783754160668274100 DEPTH 42 1 0.61926239009818307 4 11 3 11 1 0 135 25 2570 23664868 81600 870.08767700195312 5.8973000000000004 1051.0367000000001 120960 60209 1 1 5898240 4423680 4423680 4426465 4492800 186 150 162 156 1916 0 0 0 0 24 0 0 0 0 1 +3591 1783754161755780800 DEPTH 8 1 0.64596933134739787 2 5 2 5 0 0 221 30 2552 23664890 81600 870.47560119628906 5.8547000000000002 1086.4099000000001 120960 53803 1 0 5898240 4423680 4423680 4426488 4492800 360 153 165 199 1675 0 0 0 0 30 0 0 0 0 0 +3592 1783754162924369500 DEPTH 16 1 0.61519202589726263 2 7 2 7 0 0 177 34 2531 23664869 81600 875.58656311035156 5.860199999999999 1127.1321 120960 65662 1 0 5898240 4423680 4423680 4426468 4492800 162 156 156 453 1604 0 0 0 0 34 0 0 0 0 0 +3593 1783754164216687000 DEPTH 30 1 0.61162390075690753 1 9 1 9 0 0 135 44 2533 23664792 81600 868.50567626953125 5.847900000000001 1224.4277 120960 65572 1 0 5898240 4423680 4423680 4426391 4492800 156 150 174 150 1903 0 0 0 0 44 0 0 0 0 0 +3594 1783754165471545500 DEPTH 14 1 0.61138814311834699 0 12 0 12 0 0 116 36 2574 23664849 81600 864.01242065429688 5.8369999999999997 1226.7973 120960 57945 1 0 5898240 4423680 4423680 4426447 4492800 228 152 168 209 1817 0 2 0 0 34 0 0 0 0 0 +3595 1783754166525638000 DEPTH 10 1 0.61052158289244085 1 10 1 10 0 0 119 14 2581 23664873 81600 866.050048828125 5.8461000000000007 1052.9113 120960 59607 1 0 5898240 4423680 4423680 4426471 4492800 1361 150 228 272 570 0 0 0 0 14 0 0 0 0 0 +3596 1783754167821125000 DEPTH 13 1 0.68614026278164575 1 6 1 6 0 0 182 19 2497 23664835 81600 858.53492736816406 5.8480999999999996 1272.5561 120960 54234 1 0 5898240 4423680 4423680 4426433 4492800 275 156 184 262 1620 0 0 0 0 19 0 0 0 0 0 +3597 1783754169124494400 DEPTH 17 1 0.67737160524989415 0 7 0 7 0 0 189 26 2533 23664877 81600 856.05401611328125 5.8559999999999999 1302.2556999999999 120960 54599 1 0 5898240 4423680 4423680 4426474 4492800 218 156 162 245 1752 0 0 0 0 26 0 0 0 0 0 +3598 1783754170423735000 DEPTH 56 1 0.68113304488095106 2 5 2 5 0 0 207 16 2578 23664868 81600 856.47052001953125 5.8658000000000001 1297.9803999999999 120960 54227 1 0 5898240 4423680 4423680 4426467 4492800 507 156 180 413 1322 0 0 0 0 16 0 0 0 0 0 +3599 1783754171674038700 DEPTH 33 1 0.65325884205982288 1 7 1 7 0 0 181 26 2556 23664903 81600 875.75245666503906 5.8372000000000002 1249.1407999999999 120960 65773 1 0 5898240 4423680 4423680 4426503 4492800 202 152 156 150 1896 0 0 0 0 26 0 0 0 0 0 +3600 1783754172743442900 DEPTH 39 1 0.62833000004609074 3 8 3 8 0 0 170 23 2544 23664817 81600 869.96588134765625 5.8854999999999995 1043.8007 120960 65593 1 0 5898240 4423680 4423680 4426417 4492800 228 150 157 161 1848 0 0 0 0 23 0 0 0 0 0 +3601 1783754174023706300 DEPTH 31 1 0.64952979346216977 2 6 2 6 0 0 124 14 2621 23664881 81600 865.58413696289062 5.8545000000000007 1279.1105 120960 65411 1 0 5898240 4423680 4423680 4426480 4492800 1020 150 186 454 811 0 0 0 0 14 0 0 0 0 0 +3602 1783754175371850700 DEPTH 44 1 0.60954175187692483 2 7 2 7 0 0 145 15 2609 23664881 81600 867.78984069824219 5.8307999999999991 1313.4509 120960 65074 1 0 5898240 4423680 4423680 4426481 4492800 198 150 239 163 1859 0 0 0 0 15 0 0 0 0 0 +3603 1783754176472801100 DEPTH 37 1 0.60889124472802658 1 12 1 12 0 0 136 14 2623 23664821 81600 864.14462280273438 5.8644999999999996 1039.5971 120960 60243 1 0 5898240 4423680 4423680 4426421 4492800 595 154 182 212 1480 0 0 0 0 14 0 0 0 0 0 +3604 1783754177591197600 DEPTH 8 1 0.66673527674031752 2 5 2 5 0 0 221 27 2558 23664858 81600 862.60435485839844 5.8697999999999997 1117.1789000000001 120960 43836 1 0 5898240 4423680 4423680 4426457 4492800 300 152 164 194 1748 0 0 0 0 27 0 0 0 0 0 +3605 1783754178981051600 DEPTH 11 1 0.65477196459510378 0 8 0 8 1 0 103 13 2540 23664842 81600 860.48873901367188 5.8554999999999993 1309.6016999999999 120960 65539 1 0 5898240 4423680 4423680 4426442 4492800 271 150 224 234 1661 0 0 0 0 13 0 0 0 0 2 +3606 1783754180265982300 DEPTH 13 1 0.63708420382588371 1 6 1 6 0 0 182 23 2502 23664802 81600 853.25926208496094 5.8872999999999998 1283.7127 120960 42698 1 0 5898240 4423680 4423680 4426401 4492800 271 156 184 289 1602 0 0 0 0 23 0 0 0 0 0 +3607 1783754181519723000 DEPTH 53 1 0.64444999975785322 0 8 0 8 0 0 146 30 2520 23664902 81600 861.34375 5.8376000000000001 1252.4529 120960 54410 1 0 5898240 4423680 4423680 4426498 4492800 206 156 150 185 1823 0 0 0 0 30 0 0 0 0 0 +3608 1783754182612475200 DEPTH 42 1 0.65010478973062535 3 11 3 11 1 0 135 56 2621 23664847 81600 866.08076477050781 5.9736000000000011 1049.7107000000001 120960 49742 1 0 5898240 4423680 4423680 4426447 4492800 163 150 155 152 2001 0 0 0 0 56 0 0 0 0 2 +3609 1783754183715140800 DEPTH 27 1 0.60890491477187636 0 14 0 14 0 0 144 30 2565 23664869 81600 868.6927490234375 5.8391000000000002 1042.5361 120960 58820 1 0 5898240 4423680 4423680 4426467 4492800 204 156 166 167 1872 1 0 0 0 29 0 0 0 0 0 +3610 1783754184755779100 DEPTH 29 1 0.60866890779007599 1 12 1 12 1 0 127 42 2556 23664855 81600 866.93458557128906 5.8893000000000004 1039.4054000000001 120960 62640 1 0 5898240 4423680 4423680 4426455 4492800 174 150 160 150 1922 0 0 0 0 42 0 0 0 0 1 +3611 1783754185801199900 DEPTH 43 1 0.60839890387515716 2 13 3 12 1 0 129 34 2564 23664888 81600 870.65605163574219 5.8566000000000003 1044.2070000000001 120960 58416 1 0 5898240 4423680 4423680 4426486 4492800 370 155 186 246 1607 3 0 0 0 31 3 0 0 0 0 +3612 1783754185982824800 REFRESH 37 0 0.44824234812472941 1 12 1 12 0 0 137 10 428 3943900 55200 150.89971923828125 0.98099999999999998 180.42359999999999 20160 12618 0 0 983040 737280 737280 737500 748800 174 26 51 38 139 0 0 0 0 10 0 0 0 0 0 +3613 1783754186194852300 REFRESH 20 0 0.60675403701547292 2 11 2 11 0 0 117 6 432 3943904 55200 152.84736633300781 0.98040000000000005 181.70869999999999 20160 12982 0 0 983040 737280 737280 737504 748800 150 25 76 100 81 0 0 0 0 6 0 0 0 0 0 +3614 1783754186392683900 REFRESH 35 0 0.60743309828850001 2 11 2 11 0 0 152 13 420 3943901 55200 151.35130310058594 0.97460000000000002 181.24850000000001 20160 12446 0 0 983040 737280 737280 737501 748800 156 25 27 92 120 0 0 0 0 13 0 0 0 0 0 +3615 1783754186590018000 REFRESH 58 0 0.60491994831656848 2 12 2 12 0 0 122 8 424 3943901 55200 152.1029052734375 0.97850000000000004 181.11930000000001 20160 12129 0 0 983040 737280 737280 737501 748800 110 26 62 66 160 0 0 0 0 8 0 0 0 0 0 +3616 1783754186792753100 REFRESH 28 0 0.60142227583233754 1 12 1 12 0 0 147 6 400 3943927 55200 152.04454040527344 0.97350000000000003 186.47649999999999 20160 12403 0 0 983040 737280 737280 737527 748800 153 26 30 32 159 0 0 0 0 6 0 0 0 0 0 +3617 1783754186990059500 REFRESH 47 0 0.59137507552573165 2 11 2 11 0 0 112 7 422 3943904 55200 150.89971923828125 0.97570000000000001 180.95269999999999 20160 12147 0 0 983040 737280 737280 737504 748800 141 26 51 34 170 0 0 0 0 7 0 0 0 0 0 +3618 1783754187217583600 REFRESH 44 0 0.52129658086828268 2 7 2 7 0 0 145 8 423 3943901 55200 152.93440246582031 1.0006999999999999 226.3056 20160 13499 0 0 983040 737280 737280 737501 748800 106 26 78 35 178 0 0 0 0 8 0 0 0 0 0 +3619 1783754187405618000 REFRESH 14 0 0.61125487547356017 0 12 0 12 0 0 116 9 422 3943913 55200 150.99288940429688 0.97460000000000002 186.90389999999999 20160 12378 0 0 983040 737280 737280 737513 748800 144 26 31 48 173 0 0 0 0 9 0 0 0 0 0 +3620 1783754187622885600 REFRESH 1 0 0.65226153976090451 1 7 1 7 0 0 126 3 424 3943927 55200 152.88832092285156 0.97789999999999999 216.16120000000001 20160 13528 0 0 983040 737280 737280 737527 748800 135 26 82 87 94 0 0 0 0 3 0 0 0 0 0 +3621 1783754187821630900 REFRESH 5 0 0.60583647153652231 2 11 2 11 0 0 91 8 413 3943938 55200 150.45535278320312 1.0104 178.20249999999999 20160 12074 0 0 983040 737280 737280 737538 748800 88 26 88 118 93 0 0 0 0 8 0 0 0 0 0 +3622 1783754188018874100 REFRESH 49 0 0.60155865007455134 3 10 3 10 0 0 127 6 414 3943896 55200 152.14796447753906 0.9788 181.2073 20160 12140 0 0 983040 737280 737280 737496 748800 118 26 64 49 157 0 0 0 0 6 0 0 0 0 0 +3623 1783754188266130500 REFRESH 54 0 0.60840358811076944 1 8 1 8 0 0 112 8 426 3943927 55200 151.43014526367188 0.97609999999999997 222.2192 20160 13354 0 0 983040 737280 737280 737527 748800 149 25 58 119 75 0 0 0 0 8 0 0 0 0 0 +3624 1783754188464681300 REFRESH 34 0 0.59085932624820137 1 13 1 13 0 0 104 6 432 3943913 55200 149.8419189453125 0.99529999999999996 182.47749999999999 20160 12118 0 0 983040 737280 737280 737513 748800 144 25 61 74 128 0 0 0 0 6 0 0 0 0 0 +3625 1783754188692140400 REFRESH 11 0 0.60660004879034557 0 8 0 8 0 0 103 5 421 3943899 55200 151.30213928222656 0.97550000000000003 226.3646 20160 13425 0 0 983040 737280 737280 737499 748800 115 25 63 72 146 0 0 0 0 5 0 0 0 0 0 +3626 1783754188885425500 REFRESH 7 0 0.60142108879831091 1 12 1 12 0 0 132 11 425 3943914 55200 151.67794799804688 0.97819999999999996 181.2569 20160 12326 0 0 983040 737280 737280 737513 748800 167 26 29 41 162 1 0 0 0 10 0 0 0 0 0 +3627 1783754189083433900 REFRESH 46 0 0.60550373817613734 2 15 2 15 0 0 114 11 412 3943917 55200 152.13568115234375 0.97370000000000001 181.8758 20160 12124 0 0 983040 737280 737280 737517 748800 112 26 61 37 176 0 0 0 0 11 0 0 0 0 0 +3628 1783754189264813800 REFRESH 27 0 0.54746069689384202 0 14 0 14 0 0 145 9 412 3943929 55200 151.30931091308594 0.97629999999999995 180.17930000000001 20160 12353 0 0 983040 737280 737280 737529 748800 80 26 31 29 246 0 0 0 0 9 0 0 0 0 0 +3629 1783754189468778900 REFRESH 18 0 0.59883777955344375 4 15 4 15 1 0 105 16 411 3943896 55200 150.9334716796875 0.9819 178.71379999999999 20160 12039 0 0 983040 737280 737280 737496 748800 33 25 25 27 301 0 0 0 0 16 0 0 0 0 1 +3630 1783754189679693400 REFRESH 36 0 0.59690055259931651 3 10 3 10 1 0 114 10 429 3943908 55200 150.936767578125 0.97519999999999996 180.36109999999999 20160 12132 0 0 983040 737280 737280 737508 748800 230 25 37 48 89 0 0 0 0 10 0 0 0 0 1 +3631 1783754189869040300 REFRESH 30 0 0.61101051891299862 1 9 1 9 0 0 135 5 414 3943898 55200 152.19302368164062 0.97719999999999996 187.68469999999999 20160 13475 0 0 983040 737280 737280 737498 748800 70 25 48 38 233 0 0 0 0 5 0 0 0 0 0 +3632 1783754190072288100 REFRESH 3 0 0.59815187685535021 2 9 2 9 0 0 143 11 419 3943916 55200 152.33958435058594 0.97750000000000004 186.24109999999999 20160 13155 0 0 983040 737280 737280 737516 748800 190 25 37 65 102 0 0 0 0 11 0 0 0 0 0 +3633 1783754190262795800 REFRESH 45 0 0.62304394207987812 2 7 2 7 0 0 138 10 425 3943928 55200 152.08038330078125 0.97970000000000002 189.2818 20160 13574 0 0 983040 737280 737280 737528 748800 145 25 61 61 133 0 0 0 0 10 0 0 0 0 0 +3634 1783754190454421600 REFRESH 33 0 0.65484081150296714 1 7 1 7 0 0 181 3 416 3943906 55200 153.32659912109375 0.97660000000000002 190.01599999999999 20160 13409 0 0 983040 737280 737280 737506 748800 109 26 38 39 204 0 0 0 0 3 0 0 0 0 0 +3635 1783754190653649700 REFRESH 19 0 0.60637292581283675 2 11 2 11 0 0 126 11 419 3943905 55200 151.60832214355469 0.99019999999999997 183.422 20160 12559 0 0 983040 737280 737280 737505 748800 92 25 26 43 233 0 0 0 0 11 0 0 0 0 0 +3636 1783754190847424200 REFRESH 25 0 0.6011620675091881 3 11 3 11 0 0 114 3 422 3943909 55200 151.88479614257812 0.97629999999999995 180.73849999999999 20160 11933 0 0 983040 737280 737280 737509 748800 108 25 60 73 156 0 0 0 0 3 0 0 0 0 0 +3637 1783754191073075800 REFRESH 17 0 0.77920804814423894 0 7 0 7 0 0 189 3 410 3943900 55200 151.18438720703125 1.0005999999999999 224.5608 20160 13437 0 0 983040 737280 737280 737500 748800 104 26 38 108 134 0 0 0 0 3 0 0 0 0 0 +3638 1783754191287163700 REFRESH 48 0 0.64286836604011333 2 9 2 9 0 0 145 5 419 3943918 55200 151.36982727050781 0.97650000000000003 188.67850000000001 20160 12650 0 0 983040 737280 737280 737518 748800 60 25 40 43 251 0 0 0 0 5 0 0 0 0 0 +3639 1783754191480503400 REFRESH 26 0 0.6030791661395245 1 13 1 13 0 0 82 5 429 3943916 55200 149.823486328125 0.98129999999999995 178.78829999999999 20160 12712 0 0 983040 737280 737280 737516 748800 57 25 38 60 249 0 0 0 0 5 0 0 0 0 0 +3640 1783754191676147500 REFRESH 23 0 0.60674618811597436 3 14 3 14 0 0 103 13 415 3943900 55200 150.97856140136719 0.9768 180.39580000000001 20160 12042 0 0 983040 737280 737280 737500 748800 70 25 65 48 207 0 0 0 0 13 0 0 0 0 0 +3641 1783754191856337500 REFRESH 38 0 0.68649603071504783 2 15 2 15 1 0 84 5 426 3943898 55200 151.00825500488281 0.98299999999999998 179.00800000000001 20160 12282 0 0 983040 737280 737280 737498 748800 86 26 45 42 227 1 1 0 0 3 1 0 0 0 0 +3642 1783754192053062300 REFRESH 15 0 0.60632367184135161 3 12 3 12 0 0 96 8 417 3943898 55200 151.98719787597656 0.97750000000000004 180.94710000000001 20160 12135 0 0 983040 737280 737280 737497 748800 61 26 34 26 270 0 0 1 0 7 0 0 0 0 0 +3643 1783754192235640000 REFRESH 42 0 0.70741057674077445 3 11 3 11 1 0 135 12 430 3943917 55200 151.68716430664062 0.9819 181.41300000000001 20160 12708 0 0 983040 737280 737280 737517 748800 56 25 26 25 298 0 0 0 0 12 0 0 0 0 1 +3644 1783754192464913100 REFRESH 21 0 0.60811790626475559 0 10 0 10 0 0 177 7 416 3943912 55200 152.447998046875 0.97250000000000003 203.08500000000001 20160 13246 0 0 983040 737280 737280 737512 748800 109 26 34 99 148 0 0 0 0 7 0 0 0 0 0 +3645 1783754192652607100 REFRESH 8 0 0.78743927449087425 2 5 2 5 0 0 221 5 415 3943911 55200 153.22111511230469 0.98009999999999997 186.5719 20160 13501 0 0 983040 737280 737280 737509 748800 163 27 30 70 125 0 0 0 0 5 0 0 0 0 0 +3646 1783754192856434200 REFRESH 51 0 0.60617185790289352 3 12 3 12 0 0 92 7 421 3943908 55200 151.00108337402344 0.97770000000000001 180.1266 20160 13049 0 0 983040 737280 737280 737508 748800 106 25 103 70 117 0 0 0 0 7 0 0 0 0 0 +3647 1783754193092627200 REFRESH 13 0 0.78795331182458106 1 6 1 6 0 0 182 5 415 3943920 55200 152.30157470703125 0.98599999999999999 202.72890000000001 20160 13355 0 0 983040 737280 737280 737519 748800 144 26 52 94 99 0 0 0 0 5 0 0 0 0 0 +3648 1783754193288568500 REFRESH 57 0 0.59597651818875708 2 12 2 12 0 0 123 12 415 3943893 55200 150.32319641113281 0.97499999999999998 179.36680000000001 20160 12418 0 0 983040 737280 737280 737493 748800 116 26 95 78 100 0 0 0 1 11 0 0 0 0 0 +3649 1783754193490031700 REFRESH 50 0 0.60802086173875158 2 9 2 9 0 0 130 6 423 3943910 55200 150.62835693359375 0.98060000000000003 185.62190000000001 20160 12697 0 0 983040 737280 737280 737510 748800 146 25 39 50 163 0 0 0 0 6 0 0 0 0 0 +3650 1783754193682760600 REFRESH 4 0 0.56148461260465909 1 13 1 13 0 0 49 2 419 3943913 55200 149.98220825195312 0.98960000000000004 177.4237 20160 13556 0 0 983040 737280 737280 737513 748800 26 25 38 36 294 0 0 0 0 2 0 0 0 0 0 +3651 1783754193868687900 REFRESH 55 0 0.60667546601622457 1 12 1 12 0 0 143 9 426 3943924 55200 152.29440307617188 1.0827 184.6952 20160 13189 0 0 983040 737280 737280 737524 748800 126 25 58 107 110 0 0 0 0 9 0 0 0 0 0 +3652 1783754194093837000 REFRESH 9 0 0.6308900435902699 2 6 2 6 0 0 131 5 434 3943920 55200 153.6766357421875 0.97740000000000005 223.93430000000001 20160 13207 0 0 983040 737280 737280 737520 748800 142 25 86 80 101 0 0 0 0 5 0 0 0 0 0 +3653 1783754194338641700 REFRESH 12 0 0.6075990813782306 3 8 3 8 0 0 183 2 413 3943929 55200 151.2725830078125 0.97230000000000005 181.94970000000001 20160 12839 0 0 983040 737280 737280 737529 748800 144 26 43 99 101 0 0 0 0 2 0 0 0 0 0 +3654 1783754194520866900 REFRESH 43 0 0.65696274179056313 3 12 3 12 1 0 129 11 418 3943927 55200 151.20281982421875 0.97509999999999997 181.0634 20160 12512 0 0 983040 737280 737280 737527 748800 162 26 41 53 136 1 0 0 0 10 1 0 0 0 0 +3655 1783754194704634100 REFRESH 10 0 0.61101205490335397 1 10 1 10 0 0 119 2 430 3943911 55200 151.59603881835938 0.97570000000000001 182.23249999999999 20160 12422 0 0 983040 737280 737280 737511 748800 241 25 39 41 84 0 0 0 0 2 0 0 0 0 0 +3656 1783754194890011900 REFRESH 29 0 0.6069268274476034 1 12 1 12 0 0 127 7 414 3943911 55200 152.39372253417969 1.0696000000000001 184.1206 20160 12964 0 0 983040 737280 737280 737510 748800 110 25 52 46 181 0 0 0 0 7 0 0 0 0 0 +3657 1783754195082884900 REFRESH 53 0 0.6648744726358069 0 8 0 8 0 0 146 4 415 3943919 55200 153.62661743164062 0.97899999999999998 191.61789999999999 20160 13651 0 0 983040 737280 737280 737518 748800 167 26 27 58 137 0 0 0 0 4 0 0 0 0 0 +3658 1783754195289607400 REFRESH 24 0 0.60738083285530642 4 11 4 11 0 0 132 11 412 3943913 55200 151.43936157226562 0.97540000000000004 181.62639999999999 20160 11940 0 0 983040 737280 737280 737513 748800 74 27 50 58 203 0 0 0 0 11 0 0 0 0 0 +3659 1783754195486837300 REFRESH 39 0 0.62510814930243408 3 8 3 8 0 0 171 7 411 3943891 55200 151.18028259277344 0.97440000000000004 181.37139999999999 20160 13467 0 0 983040 737280 737280 737490 748800 131 30 31 35 184 1 0 0 0 6 0 0 0 0 0 +3660 1783754195710899800 REFRESH 41 0 0.60465719722570221 1 10 1 10 0 0 110 8 420 3943887 55200 150.26789855957031 0.97450000000000003 206.8235 20160 12808 0 0 983040 737280 737280 737487 748800 135 26 47 50 162 0 0 0 1 7 0 0 0 0 0 +3661 1783754195910422400 REFRESH 22 0 0.59971602511852862 3 11 3 11 0 0 120 4 421 3943925 55200 151.39840698242188 1.3953 183.93889999999999 20160 12365 0 0 983040 737280 737280 737525 748800 145 25 30 29 192 0 0 0 0 4 0 0 0 0 0 +3662 1783754196108399300 REFRESH 0 0 0.59189892374958886 1 12 1 12 0 0 91 6 429 3943924 55200 151.33287048339844 0.97540000000000004 181.70439999999999 20160 12929 0 0 983040 737280 737280 737524 748800 84 25 44 38 238 0 0 0 0 6 0 0 0 0 0 +3663 1783754196354614300 REFRESH 52 0 0.60586638170129437 1 8 1 8 0 0 107 4 426 3943883 55200 150.24742126464844 0.98009999999999997 220.99189999999999 20160 12672 0 0 983040 737280 737280 737483 748800 133 25 36 154 78 0 0 0 0 4 0 0 0 0 0 +3664 1783754196579235600 REFRESH 56 0 0.78254939104371557 2 5 2 5 0 0 207 5 415 3943888 55200 151.45368957519531 0.97550000000000003 223.3972 20160 13284 0 0 983040 737280 737280 737488 748800 186 26 47 66 90 0 0 0 0 5 0 0 0 0 0 +3665 1783754196791240100 REFRESH 2 0 0.60734973168435658 2 8 2 8 0 0 138 9 408 3943904 55200 151.92166137695312 0.99950000000000006 186.11689999999999 20160 13352 0 0 983040 737280 737280 737504 748800 39 25 69 110 165 0 0 0 0 9 0 0 0 0 0 +3666 1783754196986035500 REFRESH 32 0 0.60837429988187297 2 14 2 14 0 0 118 14 428 3943897 55200 150.835205078125 0.98129999999999995 178.96279999999999 20160 12204 0 0 983040 737280 737280 737497 748800 219 25 33 31 120 0 0 0 0 14 0 0 0 0 0 +3667 1783754197172439000 REFRESH 16 0 0.61635908790976579 2 7 2 7 0 0 177 4 416 3943915 55200 152.36930847167969 1.0005999999999999 185.26650000000001 20160 13348 0 0 983040 737280 737280 737515 748800 34 27 26 233 96 0 0 0 0 4 0 0 0 0 0 +3668 1783754197371917900 REFRESH 6 0 0.57653496247386138 3 11 3 11 0 0 117 7 416 3943886 55200 150.76454162597656 0.97299999999999998 178.52109999999999 20160 12622 0 0 983040 737280 737280 737486 748800 26 25 25 25 315 0 0 0 0 7 0 0 0 0 0 +3669 1783754197590804800 REFRESH 31 0 0.65189853051814994 2 6 2 6 0 0 124 5 429 3943925 55200 150.75225830078125 0.9748 217.74969999999999 20160 13313 0 0 983040 737280 737280 737524 748800 214 25 33 71 86 0 0 0 0 5 0 0 0 0 0 +3670 1783754197791931900 REFRESH 40 0 0.59177684189665825 1 12 1 12 1 0 118 9 419 3943884 55200 151.17414855957031 0.97299999999999998 180.55189999999999 20160 12612 0 0 983040 737280 737280 737484 748800 162 25 42 92 98 0 0 0 1 8 0 0 0 1 0 +3671 1783754198908072500 DEPTH 8 1 0.78299979008828025 2 5 2 5 0 0 221 27 2554 23664813 81600 874.49085998535156 5.8575999999999997 1094.6641 120960 66354 1 0 5898240 4423680 4423680 4426413 4492800 264 150 157 172 1811 0 0 0 0 27 0 0 0 0 0 +3672 1783754200228342800 DEPTH 17 1 0.7738069285140643 0 7 0 7 0 0 189 18 2537 23664866 81600 867.33621215820312 6.0964 1319.0953999999999 120960 65846 1 0 5898240 4423680 4423680 4426465 4492800 215 156 162 232 1772 0 0 0 0 18 0 0 0 0 0 +3673 1783754201506819900 DEPTH 13 1 0.783660032932602 1 6 1 6 0 0 182 23 2490 23664924 81600 866.42381286621094 5.8470999999999993 1277.3142 120960 65787 1 0 5898240 4423680 4423680 4426524 4492800 266 156 179 231 1658 0 0 0 0 23 0 0 0 0 0 +3674 1783754202641267500 DEPTH 42 1 0.69547765757173263 3 11 2 9 1 0 135 86 2639 23664853 81600 873.46482849121094 5.8610999999999995 1133.222 120960 61882 1 0 5898240 4423680 4423680 4426452 4492800 150 150 150 150 2039 0 0 0 0 86 0 0 0 0 6 +3675 1783754203695886500 DEPTH 38 1 0.67376900139247931 2 15 2 15 1 0 84 21 2586 23664779 81600 865.23188781738281 5.871599999999999 1042.9023 120960 57981 1 0 5898240 4423680 4423680 4426376 4492800 386 150 220 165 1665 1 0 0 0 20 1 0 0 0 0 +3676 1783754205010065200 DEPTH 11 1 0.65322223154653158 0 8 0 8 1 0 103 14 2534 23664789 81600 861.84652709960938 5.9036 1312.5571 120960 65079 1 0 5898240 4423680 4423680 4426388 4492800 251 150 216 229 1688 0 0 0 0 14 0 0 0 0 1 +3677 1783754206282550500 DEPTH 33 1 0.64921411250209249 1 7 1 7 0 0 181 16 2545 23664822 81600 873.15464782714844 5.870000000000001 1239.548 120960 65617 1 0 5898240 4423680 4423680 4426421 4492800 204 153 156 150 1882 0 0 0 0 16 0 0 0 0 0 +3678 1783754207642933400 DEPTH 1 1 0.64725118333864662 1 7 1 7 0 0 126 17 2625 23664817 81600 867.16209411621094 5.8723000000000001 1312.8777 120960 66164 1 0 5898240 4423680 4423680 4426417 4492800 435 155 306 350 1379 0 0 0 0 17 0 0 0 0 0 +3679 1783754208848266900 DEPTH 42 1 0.80703637892407465 2 9 2 8 1 0 136 86 2628 23664853 81600 860.86656188964844 5.876199999999999 1204.1138000000001 120960 50968 1 0 5898240 4423680 4423680 4426451 4492800 150 150 150 150 2028 0 0 0 0 86 0 0 0 0 4 +3680 1783754210245879000 DEPTH 56 1 0.6886786806833074 2 5 2 5 0 0 208 22 2569 23664855 81600 866.26220703125 5.8983000000000008 1318.5917999999999 120960 65482 1 0 5898240 4423680 4423680 4426453 4492800 552 156 180 336 1345 0 0 0 0 22 0 0 0 0 0 +3681 1783754211290502100 DEPTH 43 1 0.6505949549153901 3 12 3 12 1 0 129 30 2557 23664864 81600 868.85658264160156 5.8430999999999997 1043.3329000000001 120960 59246 1 0 5898240 4423680 4423680 4426464 4492800 372 155 186 212 1632 3 0 0 0 27 3 0 0 0 0 +3682 1783754212563877700 DEPTH 48 1 0.63454893477790364 2 9 2 9 0 0 146 26 2560 23664897 81600 864.23348999023438 5.8705999999999996 1271.6756 120960 62453 1 0 5898240 4423680 4423680 4426494 4492800 150 150 150 150 1960 0 0 0 1 25 0 0 0 0 0 +3683 1783754213970755300 DEPTH 9 1 0.62987139257789682 2 6 2 6 0 0 132 8 2627 23664850 81600 872.26792907714844 5.8543000000000003 1323.3012000000001 120960 65048 1 0 5898240 4423680 4423680 4426450 4492800 771 150 430 479 797 0 0 0 0 8 0 0 0 0 0 +3684 1783754215234262200 DEPTH 53 1 0.65913105415348927 0 8 0 8 0 0 147 26 2517 23664858 81600 869.13954162597656 5.8666 1262.2987000000001 120960 65543 1 0 5898240 4423680 4423680 4426455 4492800 212 156 150 171 1828 0 0 0 0 26 0 0 0 0 0 +3685 1783754216502712500 DEPTH 45 1 0.62364691458465105 2 7 2 7 0 0 138 17 2620 23664739 81600 872.43711853027344 5.8449 1237.7303999999999 120960 65758 1 0 5898240 4423680 4423680 4426338 4492800 250 150 208 210 1802 0 0 0 0 17 0 0 0 0 0 +3686 1783754217594464100 DEPTH 8 1 0.68393782703372541 2 5 2 5 0 0 221 24 2557 23664927 81600 867.05049133300781 5.8504000000000005 1090.6274000000001 120960 55108 1 0 5898240 4423680 4423680 4426525 4492800 280 151 160 172 1794 0 0 0 0 24 0 0 0 0 0 +3687 1783754218847353200 DEPTH 42 1 0.91207311933801505 2 8 2 8 1 0 136 73 2599 23664983 81600 858.38751220703125 5.8553999999999995 1251.7086999999999 120960 40801 1 0 5898240 4423680 4423680 4426580 4492800 150 150 150 150 1999 0 0 0 0 73 0 0 0 0 1 +3688 1783754220166058000 DEPTH 17 1 0.68586155533996729 0 7 0 7 1 0 190 18 2526 23664812 81600 856.75315856933594 5.8491999999999997 1302.6506999999999 120960 54239 1 0 5898240 4423680 4423680 4426411 4492800 217 156 163 295 1695 0 0 0 0 18 0 0 0 0 1 +3689 1783754221464364500 DEPTH 13 1 0.69472954992911695 1 6 1 6 0 0 182 22 2505 23664784 81600 856.96920776367188 5.8731 1272.2094999999999 120960 54304 1 0 5898240 4423680 4423680 4426381 4492800 272 155 182 288 1608 0 0 0 0 22 0 0 0 0 0 +3690 1783754222510081300 DEPTH 39 1 0.61903948502266293 3 8 3 8 0 0 171 20 2530 23664918 81600 868.97166442871094 5.9270000000000005 1044.5197000000001 120960 65702 1 0 5898240 4423680 4423680 4426518 4492800 228 150 162 163 1827 0 0 0 0 20 0 0 0 0 0 +3691 1783754223847393100 DEPTH 44 1 0.6109434813185548 2 7 2 7 0 0 146 19 2608 23664884 81600 869.83802795410156 5.8592000000000004 1318.2961 120960 65460 1 0 5898240 4423680 4423680 4426482 4492800 199 150 236 167 1856 0 0 0 0 19 0 0 0 0 0 +3692 1783754225121697700 DEPTH 14 1 0.61015125327724262 0 12 0 12 0 0 117 30 2570 23664951 81600 866.01216125488281 5.8513999999999999 1227.9518 120960 58667 1 0 5898240 4423680 4423680 4426547 4492800 247 153 168 186 1816 0 0 0 0 30 0 0 0 0 0 +3693 1783754226466427900 DEPTH 54 1 0.61010849562954195 1 8 1 8 0 0 112 15 2613 23664840 81600 863.57402038574219 6.0662000000000003 1301.434 120960 63943 1 0 5898240 4423680 4423680 4426440 4492800 625 150 293 713 832 0 0 0 0 15 0 0 0 0 0 +3694 1783754227506358000 DEPTH 37 1 0.60775335792074503 1 12 1 12 1 0 140 15 2617 23664850 81600 864.46978759765625 5.8516000000000004 1038.7057 120960 60178 1 0 5898240 4423680 4423680 4426449 4492800 692 155 188 208 1374 0 1 0 0 14 0 0 0 0 1 +3695 1783754228749589300 DEPTH 42 1 0.86922813109195507 2 8 2 7 1 0 136 84 2574 23664825 81600 853.6300048828125 5.8757000000000001 1242.0224000000001 120960 28120 1 0 5898240 4423680 4423680 4426424 4492800 150 150 150 150 1974 1 0 0 0 83 0 0 0 0 1 +3696 1783754230050693900 DEPTH 56 1 0.69014924791808929 2 5 2 5 0 0 208 25 2586 23664832 81600 855.81414794921875 5.8422999999999998 1299.8693000000001 120960 53963 1 0 5898240 4423680 4423680 4426431 4492800 532 156 180 408 1310 0 0 0 0 25 0 0 0 0 0 +3697 1783754231335410400 DEPTH 31 1 0.64885727386452574 2 6 2 6 0 0 124 8 2625 23664863 81600 865.15507507324219 5.8492000000000006 1283.5337999999999 120960 65251 1 0 5898240 4423680 4423680 4426460 4492800 1021 150 192 397 865 0 0 0 0 8 0 0 0 0 0 +3698 1783754232422751000 DEPTH 8 1 0.65473116053216818 2 5 2 5 0 0 221 22 2554 23664874 81600 864.99635314941406 5.8427000000000007 1086.2129 120960 43494 1 0 5898240 4423680 4423680 4426473 4492800 374 151 162 231 1636 0 0 0 0 22 0 0 0 0 0 +3699 1783754233459204000 DEPTH 38 1 0.6562952765654555 2 15 2 12 1 0 85 30 2590 23664822 81600 858.21043395996094 5.8600000000000003 1035.259 120960 46922 1 0 5898240 4423680 4423680 4426420 4492800 526 150 234 192 1488 0 0 0 0 30 0 0 0 0 3 +3700 1783754234590764900 DEPTH 16 1 0.61122512136648666 2 7 2 7 0 0 177 32 2536 23664894 81600 873.58566284179688 5.8624000000000001 1130.4222 120960 65336 1 0 5898240 4423680 4423680 4426492 4492800 160 155 156 377 1688 0 0 0 0 32 0 0 0 0 0 +3701 1783754235652887500 DEPTH 32 1 0.60706115999441834 2 14 2 14 1 0 118 12 2632 23664898 81600 862.80116271972656 5.8567999999999998 1036.5166999999999 120960 58547 1 0 5898240 4423680 4423680 4426498 4492800 979 150 194 193 1116 0 0 0 0 12 0 0 0 0 1 +3702 1783754236743326500 DEPTH 24 1 0.60702491543333514 4 11 4 11 0 0 132 53 2532 23664879 81600 867.54804992675781 5.8516000000000004 1043.8868 120960 56404 1 0 5898240 4423680 4423680 4426477 4492800 177 153 162 171 1869 0 0 0 0 53 0 0 0 0 0 +3703 1783754236939176100 REFRESH 36 0 0.59784278395585844 3 10 3 10 0 0 114 6 430 3943899 55200 150.63551330566406 0.97430000000000005 179.78980000000001 20160 12022 0 0 983040 737280 737280 737499 748800 233 25 39 50 83 0 0 0 0 6 0 0 0 0 0 +3704 1783754237187680200 REFRESH 52 0 0.60437424802549677 1 8 1 8 0 0 107 3 433 3943911 55200 152.34764099121094 0.97919999999999996 223.46680000000001 20160 12835 0 0 983040 737280 737280 737510 748800 134 25 35 158 81 0 0 0 0 3 0 0 0 0 0 +3705 1783754237380827800 REFRESH 34 0 0.58886535458794209 1 13 1 13 0 0 104 5 431 3943909 55200 149.32684326171875 0.97370000000000001 178.2414 20160 11943 0 0 983040 737280 737280 737509 748800 143 25 59 65 139 0 0 0 0 5 0 0 0 0 0 +3706 1783754237575805500 REFRESH 42 0 0.98231242726077295 2 7 2 7 0 0 136 7 422 3943928 55200 151.84486389160156 0.97260000000000002 193.8056 20160 13028 0 0 983040 737280 737280 737528 748800 25 25 25 25 322 0 0 0 0 7 0 0 0 0 0 +3707 1783754237794857200 REFRESH 32 0 0.41567705671309346 2 14 2 14 0 0 118 13 430 3943910 55200 150.90585327148438 0.97819999999999996 179.13980000000001 20160 12147 0 0 983040 737280 737280 737510 748800 177 25 35 31 162 0 0 0 0 13 0 0 0 0 0 +3708 1783754237985085200 REFRESH 45 0 0.60403065670895628 2 7 2 7 0 0 138 9 424 3943893 55200 152.89138793945312 0.97970000000000002 188.70529999999999 20160 13542 0 0 983040 737280 737280 737492 748800 149 25 61 62 127 1 0 0 0 8 0 0 0 0 0 +3709 1783754238192283300 REFRESH 7 0 0.60147371354656443 1 12 1 12 0 0 132 9 420 3943917 55200 152.4715576171875 0.98970000000000002 182.2364 20160 12253 0 0 983040 737280 737280 737517 748800 154 26 29 34 177 0 0 0 0 9 0 0 0 0 0 +3710 1783754238393360700 REFRESH 3 0 0.59867136235287366 2 9 2 9 0 0 144 7 420 3943938 55200 151.00518798828125 0.97409999999999997 184.85059999999999 20160 13098 0 0 983040 737280 737280 737538 748800 197 25 38 67 93 0 0 0 0 7 0 0 0 0 0 +3711 1783754238575377100 REFRESH 24 0 0.44642837952003833 4 11 4 11 0 0 132 7 412 3943934 55200 150.78501892089844 0.97499999999999998 180.44149999999999 20160 12023 0 0 983040 737280 737280 737534 748800 85 27 47 59 194 0 0 0 0 7 0 0 0 0 0 +3712 1783754238759816500 REFRESH 27 0 0.60523313623840247 0 14 0 14 0 0 145 13 415 3943937 55200 151.58169555664062 0.99619999999999997 183.239 20160 12455 0 0 983040 737280 737280 737537 748800 98 26 35 32 224 0 0 0 0 13 0 0 0 0 0 +3713 1783754238958114100 REFRESH 49 0 0.59807335327789113 3 10 3 10 0 0 127 11 420 3943909 55200 151.69740295410156 0.98099999999999998 181.91079999999999 20160 12497 0 0 983040 737280 737280 737509 748800 137 26 69 62 126 0 0 0 0 11 0 0 0 0 0 +3714 1783754239157633700 REFRESH 57 0 0.59628476969355737 2 12 2 12 0 0 123 7 418 3943923 55200 151.21731567382812 1.0006999999999999 181.2809 20160 12506 0 0 983040 737280 737280 737523 748800 117 26 97 82 96 0 0 0 0 7 0 0 0 0 0 +3715 1783754239355169500 REFRESH 22 0 0.59346505206402367 3 11 3 11 0 0 121 11 421 3943914 55200 151.05638122558594 0.98429999999999995 181.80520000000001 20160 12432 0 0 983040 737280 737280 737513 748800 144 25 29 29 194 0 0 0 0 11 0 0 0 0 0 +3716 1783754239581610300 REFRESH 56 0 0.73143590976224937 2 5 2 5 0 0 208 2 414 3943894 55200 151.420166015625 0.98499999999999999 225.18899999999999 20160 13428 0 0 983040 737280 737280 737493 748800 186 26 47 61 94 0 0 0 0 2 0 0 0 0 0 +3717 1783754239790755400 REFRESH 35 0 0.6068014758762208 2 11 2 11 0 0 154 12 420 3943917 55200 151.33389282226562 0.99229999999999996 181.98830000000001 20160 12347 0 0 983040 737280 737280 737517 748800 158 25 29 95 113 0 0 0 0 12 0 0 0 0 0 +3718 1783754239986599400 REFRESH 51 0 0.60286053366017556 3 12 3 12 0 0 92 5 425 3943912 55200 150.37132263183594 0.97840000000000005 179.39510000000001 20160 12896 0 0 983040 737280 737280 737511 748800 110 25 104 71 115 0 0 0 0 5 0 0 0 0 0 +3719 1783754240236614900 REFRESH 55 0 0.60372025603143298 1 12 1 12 0 0 143 9 428 3943900 55200 152.27801513671875 0.98150000000000004 181.8837 20160 13245 0 0 983040 737280 737280 737500 748800 123 25 56 105 119 0 0 0 0 9 0 0 0 0 0 +3720 1783754240464237800 REFRESH 44 0 0.6124344094704639 2 7 2 7 0 0 146 4 422 3943918 55200 151.45062255859375 0.97950000000000004 226.37960000000001 20160 13472 0 0 983040 737280 737280 737518 748800 92 26 69 31 204 0 0 0 0 4 0 0 0 0 0 +3721 1783754240658375500 REFRESH 6 0 0.57489705701044058 3 11 3 11 0 0 117 7 416 3943904 55200 150.64166259765625 0.97629999999999995 179.2193 20160 12558 0 0 983040 737280 737280 737504 748800 26 25 25 25 315 0 0 0 0 7 0 0 0 0 0 +3722 1783754240860691600 REFRESH 13 0 0.78568214568998396 1 6 1 6 0 0 182 1 415 3943883 55200 151.89503479003906 0.97829999999999995 201.1644 20160 13479 0 0 983040 737280 737280 737483 748800 146 26 52 95 96 0 0 0 0 1 0 0 0 0 0 +3723 1783754241113097200 REFRESH 11 0 0.65509945264698155 0 8 0 8 0 0 103 8 422 3943903 55200 151.19279479980469 0.97519999999999996 226.2175 20160 13424 0 0 983040 737280 737280 737503 748800 96 25 55 69 177 0 0 0 0 8 0 0 0 0 0 +3724 1783754241295985400 REFRESH 43 0 0.64476656257771037 3 12 3 12 0 0 129 7 419 3943911 55200 151.87149047851562 0.97689999999999999 181.7362 20160 12433 0 0 983040 737280 737280 737511 748800 164 26 38 56 135 0 0 0 0 7 0 0 0 0 0 +3725 1783754241512458600 REFRESH 30 0 0.60552502688836229 1 9 1 9 0 0 135 10 409 3943879 55200 152.28314208984375 0.97440000000000004 191.03479999999999 20160 13442 0 0 983040 737280 737280 737479 748800 78 25 49 41 216 0 0 0 0 10 0 0 0 0 0 +3726 1783754241707350700 REFRESH 26 0 0.59924799288316866 1 13 1 13 0 0 82 4 427 3943893 55200 150.90789794921875 0.97809999999999997 179.48429999999999 20160 12877 0 0 983040 737280 737280 737493 748800 49 25 38 53 262 0 0 0 0 4 0 0 0 0 0 +3727 1783754241900486900 REFRESH 5 0 0.60479218250812528 2 11 2 11 0 0 91 4 418 3943891 55200 150.26278686523438 0.97440000000000004 177.5659 20160 12042 0 0 983040 737280 737280 737491 748800 90 25 87 106 110 0 0 0 0 4 0 0 0 0 0 +3728 1783754242097235700 REFRESH 23 0 0.60582452237644735 3 14 3 14 1 0 103 10 414 3943912 55200 152.36505126953125 0.97919999999999996 181.13929999999999 20160 12032 0 0 983040 737280 737280 737512 748800 66 25 53 46 224 1 0 0 0 9 0 0 0 0 1 +3729 1783754242306174700 REFRESH 2 0 0.60625190454579636 2 8 2 8 1 0 138 13 412 3943895 55200 151.2806396484375 0.9728 187.2072 20160 13534 0 0 983040 737280 737280 737495 748800 28 25 60 95 204 0 0 0 0 13 0 0 0 0 1 +3730 1783754242504344000 REFRESH 15 0 0.60388399097285461 3 12 3 12 0 0 98 8 419 3943916 55200 151.27655029296875 0.97360000000000002 181.18389999999999 20160 12148 0 0 983040 737280 737280 737515 748800 55 26 32 26 280 0 0 1 1 6 0 0 0 0 0 +3731 1783754242700358800 REFRESH 20 0 0.60142424345143264 2 11 2 11 0 0 117 5 433 3943901 55200 151.77215576171875 0.97640000000000005 180.62739999999999 20160 13078 0 0 983040 737280 737280 737501 748800 150 25 76 101 81 0 0 0 1 4 0 0 0 0 0 +3732 1783754242895040400 REFRESH 40 0 0.5908126616283278 1 12 1 12 0 0 118 6 423 3943890 55200 152.0711669921875 0.98240000000000005 180.4659 20160 12499 0 0 983040 737280 737280 737490 748800 167 25 42 89 100 0 0 0 0 6 0 0 0 0 0 +3733 1783754243091405400 REFRESH 47 0 0.59014668808901394 2 11 2 11 0 0 112 10 422 3943930 55200 151.84281921386719 0.98250000000000004 180.6258 20160 12108 0 0 983040 737280 737280 737530 748800 139 26 41 33 183 0 0 0 0 10 0 0 0 0 0 +3734 1783754243297657300 REFRESH 33 0 0.65111665577013422 1 7 1 7 0 0 181 6 414 3943898 55200 153.01426696777344 0.97919999999999996 189.76750000000001 20160 13601 0 0 983040 737280 737280 737498 748800 105 26 39 37 207 0 0 0 0 6 0 0 0 0 0 +3735 1783754243478811600 REFRESH 37 0 0.60705497039552681 1 12 1 12 0 0 140 9 432 3943910 55200 150.79936218261719 0.97629999999999995 179.96360000000001 20160 12458 0 0 983040 737280 737280 737510 748800 180 26 56 39 131 1 0 0 0 8 0 0 0 0 0 +3736 1783754243701521900 REFRESH 9 0 0.63193670722912187 2 6 2 6 0 0 132 8 433 3943938 55200 152.14898681640625 0.97860000000000003 221.55520000000001 20160 13466 0 0 983040 737280 737280 737538 748800 145 25 90 81 92 0 0 0 0 8 0 0 0 0 0 +3737 1783754243978358000 REFRESH 53 0 0.65995639183097365 0 8 0 8 0 0 148 6 415 3943906 55200 152.16844177246094 0.98080000000000001 190.52699999999999 20160 13537 0 0 983040 737280 737280 737506 748800 142 26 27 46 174 0 0 0 0 6 0 0 0 0 0 +3738 1783754244173046400 REFRESH 0 0 0.58981849280529519 1 12 1 12 0 0 91 4 430 3943909 55200 151.04818725585938 0.9758 179.28530000000001 20160 13008 0 0 983040 737280 737280 737509 748800 81 25 43 36 245 0 0 0 0 4 0 0 0 0 0 +3739 1783754244355951600 REFRESH 39 0 0.61653358820013915 3 8 3 8 0 0 171 7 410 3943893 55200 152.27290344238281 0.9738 181.69990000000001 20160 13501 0 0 983040 737280 737280 737493 748800 105 28 31 33 213 0 0 0 0 7 0 0 0 0 0 +3740 1783754244545480700 REFRESH 8 0 0.78546327524551895 2 5 2 5 0 0 221 5 413 3943921 55200 152.84941101074219 1.4252 188.376 20160 13340 0 0 983040 737280 737280 737521 748800 160 27 30 72 124 0 0 0 0 5 0 0 0 0 0 +3741 1783754244764033000 REFRESH 21 0 0.60564046453534193 0 10 0 10 0 0 177 4 416 3943906 55200 152.37449645996094 0.9788 204.74510000000001 20160 13203 0 0 983040 737280 737280 737506 748800 103 26 33 98 156 0 0 0 0 4 0 0 0 0 0 +3742 1783754244988817400 REFRESH 41 0 0.60410525360828404 1 10 1 10 0 0 110 3 415 3943881 55200 150.97343444824219 0.97519999999999996 206.88570000000001 20160 12817 0 0 983040 737280 737280 737481 748800 128 26 48 50 163 0 0 0 0 3 0 0 0 0 0 +3743 1783754245185176300 REFRESH 46 0 0.60446685955721735 2 15 2 15 0 0 114 9 411 3943924 55200 150.74919128417969 0.9758 180.03290000000001 20160 12081 0 0 983040 737280 737280 737524 748800 111 26 60 37 177 0 0 0 0 9 0 0 0 0 0 +3744 1783754245383209100 REFRESH 25 0 0.59472125271629772 3 11 3 11 0 0 114 9 422 3943871 55200 151.76908874511719 0.97319999999999995 181.31790000000001 20160 11956 0 0 983040 737280 737280 737471 748800 108 25 60 72 157 0 0 0 0 9 0 0 0 0 0 +3745 1783754245578108500 REFRESH 58 0 0.60268952168012768 2 12 2 12 0 0 122 6 427 3943918 55200 151.78752136230469 1.0112000000000001 180.86949999999999 20160 12550 0 0 983040 737280 737280 737518 748800 111 26 65 70 155 0 0 0 0 6 0 0 0 0 0 +3746 1783754245769299200 REFRESH 4 0 0.55884744683920151 1 13 1 13 1 0 49 3 417 3943905 55200 149.03706359863281 0.97929999999999995 176.47280000000001 20160 13593 0 0 983040 737280 737280 737505 748800 27 25 40 39 286 0 0 0 0 3 0 0 0 0 1 +3747 1783754245984015100 REFRESH 1 0 0.64969964133316815 1 7 1 7 0 0 126 3 427 3943932 55200 151.88992309570312 0.98070000000000002 213.61179999999999 20160 13389 0 0 983040 737280 737280 737532 748800 136 26 81 86 98 0 0 0 0 3 0 0 0 0 0 +3748 1783754246181363600 REFRESH 12 0 0.59996650366270221 3 8 3 8 0 0 183 7 415 3943924 55200 152.24421691894531 0.97960000000000003 182.2722 20160 12681 0 0 983040 737280 737280 737524 748800 144 26 44 102 99 0 0 0 0 7 0 0 0 0 0 +3749 1783754246377311100 REFRESH 19 0 0.60560515691263928 2 11 2 11 0 0 126 9 423 3943876 55200 152.27494812011719 0.97960000000000003 180.72630000000001 20160 12629 0 0 983040 737280 737280 737476 748800 93 25 26 42 237 0 0 0 0 9 0 0 0 0 0 +3750 1783754246634023500 REFRESH 54 0 0.61350167312334203 1 8 1 8 0 0 112 2 424 3943915 55200 151.21612548828125 0.97970000000000002 224.37289999999999 20160 13066 0 0 983040 737280 737280 737515 748800 147 25 60 120 72 0 0 0 0 2 0 0 0 0 0 +3751 1783754246828030100 REFRESH 18 0 0.59846573344997778 4 15 4 15 0 0 105 14 411 3943906 55200 150.07948303222656 0.97519999999999996 178.00139999999999 20160 11977 0 0 983040 737280 737280 737506 748800 39 25 25 27 295 1 0 0 0 13 0 0 0 0 0 +3752 1783754247041116200 REFRESH 28 0 0.59749688285669711 1 12 1 12 0 0 147 7 404 3943894 55200 152.33946228027344 0.97309999999999997 183.17439999999999 20160 12494 0 0 983040 737280 737280 737494 748800 174 26 31 31 142 0 0 0 0 7 0 0 0 0 0 +3753 1783754247221440500 REFRESH 38 0 0.96971483201268727 2 12 2 12 0 0 85 9 425 3943912 55200 150.5269775390625 0.97809999999999997 179.0505 20160 12394 0 0 983040 737280 737280 737512 748800 134 25 49 41 176 0 0 0 0 9 0 0 0 0 0 +3754 1783754247403975700 REFRESH 29 0 0.60240165605823415 1 12 1 12 0 0 127 6 416 3943936 55200 151.97184753417969 0.97199999999999998 181.3811 20160 12908 0 0 983040 737280 737280 737536 748800 123 25 61 50 157 0 0 0 0 6 0 0 0 0 0 +3755 1783754247601950200 REFRESH 48 0 0.63203271199953714 2 9 2 9 0 0 147 9 417 3943901 55200 152.37837219238281 1.0721000000000001 196.73349999999999 20160 12328 0 0 983040 737280 737280 737500 748800 62 25 34 40 256 0 0 0 0 9 0 0 0 0 0 +3756 1783754247823784400 REFRESH 31 0 0.64912355116493092 2 6 2 6 0 0 124 6 428 3943888 55200 151.79367065429688 0.98180000000000001 220.66220000000001 20160 13268 0 0 983040 737280 737280 737487 748800 213 25 33 77 80 0 0 0 0 6 0 0 0 0 0 +3757 1783754248031437900 REFRESH 10 0 0.60346154788164585 1 10 1 10 0 0 119 4 427 3943913 55200 151.19564819335938 0.98040000000000005 182.6018 20160 12442 0 0 983040 737280 737280 737512 748800 239 25 39 40 84 0 0 0 0 4 0 0 0 0 0 +3758 1783754248257656000 REFRESH 17 0 0.77778832024821687 0 7 0 7 0 0 190 8 409 3943919 55200 151.1065673828125 0.97640000000000005 224.60730000000001 20160 13463 0 0 983040 737280 737280 737519 748800 106 26 39 115 123 0 0 0 0 8 0 0 0 0 0 +3759 1783754248445135900 REFRESH 16 0 0.61259277612399599 2 7 2 7 0 0 178 6 414 3943910 55200 152.3978271484375 0.97389999999999999 186.262 20160 13626 0 0 983040 737280 737280 737510 748800 35 27 26 232 94 0 0 0 0 6 0 0 0 0 0 +3760 1783754248653197700 REFRESH 50 0 0.6043938494860972 2 9 2 9 0 0 130 3 424 3943900 55200 150.98367309570312 0.98089999999999999 183.2004 20160 12710 0 0 983040 737280 737280 737500 748800 182 25 43 65 109 0 0 0 0 3 0 0 0 0 0 +3761 1783754248840043800 REFRESH 14 0 0.61001610776428983 0 12 0 12 0 0 117 7 422 3943910 55200 150.53823852539062 0.98429999999999995 185.71279999999999 20160 12513 0 0 983040 737280 737280 737510 748800 132 26 32 52 180 0 0 0 0 7 0 0 0 0 0 +3762 1783754250093630100 DEPTH 42 1 1.0716043075698285 2 7 2 7 0 0 137 49 2555 23664815 81600 867.91075134277344 5.8452999999999999 1252.354 120960 63504 1 0 5898240 4423680 4423680 4426415 4492800 150 150 150 150 1955 0 0 0 0 49 0 0 0 0 0 +3763 1783754251387825100 DEPTH 13 1 0.77751340987573747 1 6 1 6 0 0 182 24 2505 23664875 81600 867.34761047363281 5.8837000000000002 1279.029 120960 65422 1 0 5898240 4423680 4423680 4426473 4492800 285 153 180 223 1664 0 0 0 0 24 0 0 0 0 0 +3764 1783754252720596200 DEPTH 56 1 0.77460837702275143 2 5 2 5 0 0 208 22 2573 23664825 81600 862.84671020507812 5.8506 1305.2671 120960 65447 1 0 5898240 4423680 4423680 4426424 4492800 548 156 180 340 1349 0 0 0 0 22 0 0 0 0 0 +3765 1783754253758714800 DEPTH 38 1 0.80229161426200557 2 12 2 11 1 0 88 68 2581 23664858 81600 863.06504821777344 5.8388999999999998 1036.9138 120960 57985 1 0 5898240 4423680 4423680 4426455 4492800 581 150 217 192 1441 0 1 0 0 67 0 0 0 0 2 +3766 1783754254887001000 DEPTH 8 1 0.78104998491076749 2 5 2 5 0 0 221 27 2556 23664850 81600 876.77423095703125 5.8727999999999998 1101.5574999999999 120960 66124 1 0 5898240 4423680 4423680 4426449 4492800 309 150 157 177 1763 0 0 0 0 27 0 0 0 0 0 +3767 1783754256179085200 DEPTH 53 1 0.65657775709883515 0 8 0 8 0 0 148 30 2525 23664882 81600 869.98133850097656 5.8470000000000004 1240.2967000000001 120960 65418 1 0 5898240 4423680 4423680 4426481 4492800 214 156 150 175 1830 0 0 0 0 30 0 0 0 0 0 +3768 1783754257522969600 DEPTH 11 1 0.65471145678452436 0 8 0 8 1 0 105 14 2521 23664793 81600 861.59689331054688 5.8908000000000005 1303.7498000000001 120960 64881 1 0 5898240 4423680 4423680 4426393 4492800 285 150 223 263 1600 0 0 0 0 14 0 0 0 0 1 +3769 1783754258752889200 DEPTH 33 1 0.64870937096913661 1 7 1 7 0 0 182 35 2538 23664854 81600 872.95486450195312 5.8439000000000005 1228.7434000000001 120960 65796 1 0 5898240 4423680 4423680 4426453 4492800 209 154 156 153 1866 0 0 0 0 35 0 0 0 0 0 +3770 1783754260002736600 DEPTH 42 1 0.85872204154352305 2 7 2 7 0 0 137 45 2561 23664832 81600 860.57881164550781 5.8513999999999999 1248.5962999999999 120960 53022 1 0 5898240 4423680 4423680 4426431 4492800 150 150 150 150 1961 0 0 0 0 45 0 0 0 0 0 +3771 1783754261031920500 DEPTH 38 1 0.81478675515270926 2 11 2 11 1 0 89 92 2567 23664841 81600 853.05958557128906 5.8436000000000003 1027.9817 120960 47207 1 0 5898240 4423680 4423680 4426440 4492800 417 150 165 161 1674 0 0 0 0 92 0 0 0 0 3 +3772 1783754262342816600 DEPTH 17 1 0.66735909466655519 0 7 0 7 0 0 190 12 2523 23664884 81600 866.82746887207031 5.8370000000000006 1309.6809000000001 120960 65736 1 0 5898240 4423680 4423680 4426483 4492800 210 156 164 285 1708 0 0 0 0 12 0 0 0 0 0 +3773 1783754263388572800 DEPTH 43 1 0.63630430363953427 3 12 3 12 0 0 129 35 2560 23664888 81600 869.58154296875 5.8472 1044.4428 120960 59239 1 0 5898240 4423680 4423680 4426486 4492800 386 156 186 239 1593 3 0 0 0 32 0 0 0 0 0 +3774 1783754264696505000 DEPTH 9 1 0.63368885811273801 2 6 2 6 0 0 132 7 2625 23664949 81600 871.25625610351562 5.8788999999999998 1306.7935 120960 66076 1 0 5898240 4423680 4423680 4426548 4492800 779 150 448 546 702 0 0 0 0 7 0 0 0 0 0 +3775 1783754266038755100 DEPTH 1 1 0.64473279233035952 1 7 1 7 0 0 126 14 2628 23664884 81600 869.86053466796875 5.8533999999999997 1316.6704 120960 65747 1 0 5898240 4423680 4423680 4426484 4492800 422 155 307 347 1397 0 0 0 0 14 0 0 0 0 0 +3776 1783754267331635700 DEPTH 45 1 0.62340960221130071 2 7 2 7 0 0 139 30 2626 23664911 81600 874.50315856933594 5.8818999999999999 1237.441 120960 65880 1 0 5898240 4423680 4423680 4426511 4492800 262 150 207 226 1781 0 0 0 0 30 0 0 0 0 0 +3777 1783754268415589900 DEPTH 39 1 0.61115917602111991 3 8 3 8 0 0 171 22 2541 23664875 81600 867.91136169433594 5.8513999999999999 1041.4211 120960 65284 1 0 5898240 4423680 4423680 4426475 4492800 227 150 162 159 1843 0 0 0 0 22 0 0 0 0 0 +3778 1783754269668741900 DEPTH 42 1 0.82001415112756071 2 7 2 7 0 0 137 42 2560 23664806 81600 855.73541259765625 5.9298000000000002 1251.9029 120960 42991 1 0 5898240 4423680 4423680 4426406 4492800 150 150 150 150 1960 0 0 0 0 42 0 0 0 0 0 +3779 1783754270741747900 DEPTH 38 1 0.80111540949432025 2 11 2 11 1 0 89 103 2593 23664881 81600 850.76071166992188 5.8780999999999999 1023.4758 120960 37848 1 0 5898240 4423680 4423680 4426481 4492800 150 150 150 150 1993 0 0 0 0 103 0 0 0 0 2 +3780 1783754272024115300 DEPTH 13 1 0.69907037813022888 1 6 1 6 0 0 183 29 2503 23664829 81600 856.56620788574219 5.8460999999999999 1265.2819999999999 120960 54471 1 0 5898240 4423680 4423680 4426428 4492800 302 156 195 282 1568 0 0 0 0 29 0 0 0 0 0 +3781 1783754273365814600 DEPTH 56 1 0.69636037036168874 2 5 2 5 0 0 208 26 2575 23664853 81600 854.89152526855469 5.8767000000000005 1323.7131999999999 120960 54434 1 0 5898240 4423680 4423680 4426452 4492800 537 156 180 396 1306 0 0 0 0 26 0 0 0 0 0 +3782 1783754274510292900 DEPTH 8 1 0.69201615436169794 2 5 2 5 0 0 221 19 2543 23664884 81600 869.3309326171875 5.8453999999999997 1086.5156999999999 120960 55192 1 0 5898240 4423680 4423680 4426484 4492800 394 154 168 233 1594 0 0 0 0 19 0 0 0 0 0 +3783 1783754275794963800 DEPTH 31 1 0.64721380971171427 2 6 2 6 0 0 124 8 2629 23664782 81600 865.81581115722656 5.8598999999999997 1283.4638 120960 65132 1 0 5898240 4423680 4423680 4426381 4492800 1031 150 193 443 812 0 0 0 0 8 0 0 0 0 0 +3784 1783754277082146900 DEPTH 48 1 0.62852879858829303 2 9 2 9 0 0 148 33 2564 23664799 81600 866.46600341796875 5.8936000000000002 1256.6952000000001 120960 63076 1 0 5898240 4423680 4423680 4426398 4492800 150 150 150 150 1964 0 0 0 0 33 0 0 0 0 0 +3785 1783754278381902400 DEPTH 54 1 0.60838864396262005 1 8 1 8 0 0 113 14 2611 23664880 81600 863.58732604980469 5.8628999999999998 1298.4139 120960 63574 1 0 5898240 4423680 4423680 4426478 4492800 642 150 288 749 782 0 0 0 0 14 0 0 0 0 0 +3786 1783754279625688400 DEPTH 42 1 0.78506518201340669 2 7 2 7 0 0 138 46 2579 23664754 81600 856.29646301269531 5.8714999999999993 1242.5761 120960 29728 1 0 5898240 4423680 4423680 4426353 4492800 150 150 150 150 1979 0 0 0 1 45 0 0 0 0 0 +3787 1783754280644901600 DEPTH 38 1 0.76481422584368763 2 11 2 11 1 0 91 69 2569 23664837 81600 846.39572143554688 5.8707000000000003 1018.0226 120960 25461 1 0 5898240 4423680 4423680 4426437 4492800 150 150 150 150 1969 0 0 0 0 69 0 0 0 0 1 +3788 1783754281978373300 DEPTH 17 1 0.68893115437516805 0 7 0 7 0 0 190 15 2534 23664880 81600 856.85249328613281 5.8597999999999999 1307.1696999999999 120960 53972 1 0 5898240 4423680 4423680 4426479 4492800 208 156 162 266 1742 0 0 0 0 15 0 0 0 0 0 +3789 1783754283112047000 DEPTH 16 1 0.60967570246423253 2 7 2 6 1 0 178 34 2543 23664775 81600 872.07627868652344 5.843 1115.1837 120960 66231 1 0 5898240 4423680 4423680 4426373 4492800 162 156 156 529 1540 0 0 0 0 34 0 0 0 0 1 +3790 1783754284440901700 DEPTH 44 1 0.60780140991881848 2 7 2 7 0 0 147 22 2605 23664887 81600 869.88299560546875 5.852100000000001 1309.8018999999999 120960 64980 1 0 5898240 4423680 4423680 4426485 4492800 210 150 251 178 1816 0 0 0 0 22 0 0 0 0 0 +3791 1783754285697387700 DEPTH 14 1 0.60664565937694248 0 12 0 12 1 0 117 30 2563 23664888 81600 865.30268859863281 5.8396999999999997 1240.4793999999999 120960 58552 1 0 5898240 4423680 4423680 4426488 4492800 232 151 168 198 1814 3 0 0 0 27 2 0 0 0 0 +3792 1783754287004470600 DEPTH 2 1 0.60617904769218023 2 8 2 8 0 0 139 27 2547 23664908 81600 870.05928039550781 5.8469000000000007 1247.644 120960 66274 1 0 5898240 4423680 4423680 4426505 4492800 156 150 150 150 1941 0 0 0 0 27 0 0 0 0 0 +3793 1783754288108631800 DEPTH 35 1 0.60602974551225741 2 11 2 11 1 0 155 50 2553 23664839 81600 869.22151184082031 5.8467000000000002 1045.1454000000001 120960 59687 1 0 5898240 4423680 4423680 4426438 4492800 411 150 155 317 1520 0 0 0 0 50 0 0 0 0 1 +3794 1783754288328008900 REFRESH 31 0 0.50738131850698387 2 6 2 6 0 0 124 6 431 3943888 55200 151.07174682617188 0.98580000000000001 218.21709999999999 20160 13602 0 0 983040 737280 737280 737488 748800 213 25 33 76 84 0 0 0 0 6 0 0 0 0 0 +3795 1783754288548103000 REFRESH 21 0 0.60020563098210533 0 10 0 10 0 0 177 4 417 3943924 55200 152.68147277832031 0.97230000000000005 204.15010000000001 20160 13316 0 0 983040 737280 737280 737524 748800 107 26 35 98 151 0 0 0 0 4 0 0 0 0 0 +3796 1783754288745761000 REFRESH 7 0 0.60040860904156068 1 12 1 12 0 0 132 8 417 3943894 55200 151.99232482910156 0.98219999999999996 182.0967 20160 12356 0 0 983040 737280 737280 737494 748800 173 26 29 43 146 0 0 0 0 8 0 0 0 0 0 +3797 1783754288971557600 REFRESH 9 0 0.61415792594347485 2 6 2 6 0 0 132 3 432 3943933 55200 152.22682189941406 0.97440000000000004 224.62819999999999 20160 13648 0 0 983040 737280 737280 737532 748800 144 25 88 82 93 0 0 0 0 3 0 0 0 0 0 +3798 1783754289178324600 REFRESH 12 0 0.59785522929612833 3 8 3 8 0 0 183 5 416 3943892 55200 152.22476196289062 0.98150000000000004 181.6489 20160 12769 0 0 983040 737280 737280 737491 748800 143 26 44 95 108 0 0 0 0 5 0 0 0 0 0 +3799 1783754289425862500 REFRESH 52 0 0.60207509461201081 1 8 1 8 0 0 107 5 427 3943922 55200 150.59251403808594 0.97440000000000004 221.12200000000001 20160 12800 0 0 983040 737280 737280 737522 748800 134 25 35 153 80 0 0 0 0 5 0 0 0 0 0 +3800 1783754289639677900 REFRESH 1 0 0.64718145438144847 1 7 1 7 0 0 126 10 426 3943911 55200 151.56736755371094 0.97509999999999997 212.72190000000001 20160 13500 0 0 983040 737280 737280 737511 748800 140 26 83 91 86 0 0 0 0 10 0 0 0 0 0 +3801 1783754289821119300 REFRESH 37 0 0.60537223352311531 1 12 1 12 0 0 140 9 429 3943922 55200 151.17208862304688 0.98089999999999999 180.3047 20160 12455 0 0 983040 737280 737280 737522 748800 187 26 60 44 112 0 0 0 0 9 0 0 0 0 0 +3802 1783754290025855900 REFRESH 40 0 0.58683233472706586 1 12 1 12 0 0 118 6 418 3943903 55200 151.45881652832031 0.97070000000000001 180.06299999999999 20160 12589 0 0 983040 737280 737280 737503 748800 164 25 42 93 94 0 0 0 0 6 0 0 0 0 0 +3803 1783754290214458800 REFRESH 8 0 0.74285315188340773 2 5 2 5 0 0 221 7 415 3943916 55200 152.9671630859375 0.97409999999999997 187.00710000000001 20160 13574 0 0 983040 737280 737280 737515 748800 160 27 30 75 123 0 0 0 0 7 0 0 0 0 0 +3804 1783754290411658100 REFRESH 57 0 0.59350522255453986 2 12 2 12 0 0 123 9 416 3943893 55200 152.25447082519531 0.98199999999999998 181.21260000000001 20160 12346 0 0 983040 737280 737280 737492 748800 119 26 99 81 91 0 0 0 0 9 0 0 0 0 0 +3805 1783754290603734500 REFRESH 5 0 0.59961175590431215 2 11 2 11 0 0 91 9 415 3943905 55200 150.31295776367188 0.96809999999999996 177.93039999999999 20160 12030 0 0 983040 737280 737280 737505 748800 95 26 88 113 93 0 0 0 0 9 0 0 0 0 0 +3806 1783754290799893900 REFRESH 58 0 0.59833458725722788 2 12 2 12 0 0 122 7 425 3943910 55200 151.77011108398438 0.9788 180.62219999999999 20160 12567 0 0 983040 737280 737280 737509 748800 105 26 60 63 171 0 0 0 0 7 0 0 0 0 0 +3807 1783754291000754600 REFRESH 30 0 0.60547984405007016 1 9 1 9 0 0 135 5 412 3943911 55200 151.91961669921875 0.97619999999999996 187.10169999999999 20160 13428 0 0 983040 737280 737280 737511 748800 94 25 55 42 196 0 0 0 0 5 0 0 0 0 0 +3808 1783754291203608800 REFRESH 25 0 0.59464069313646295 3 11 3 11 0 0 114 7 422 3943930 55200 151.91961669921875 0.98129999999999995 181.59880000000001 20160 11958 0 0 983040 737280 737280 737530 748800 124 25 65 78 130 0 0 0 0 7 0 0 0 0 0 +3809 1783754291384206100 REFRESH 38 0 0.87182471051165655 2 11 2 11 0 0 92 13 416 3943928 55200 150.77682495117188 0.97999999999999998 179.35769999999999 20160 12159 0 0 983040 737280 737280 737528 748800 138 25 39 30 184 0 0 0 0 13 0 0 0 0 0 +3810 1783754291590832900 REFRESH 22 0 0.59383601037182987 3 11 3 11 0 0 122 10 424 3943900 55200 151.92781066894531 0.97230000000000005 181.7373 20160 12347 0 0 983040 737280 737280 737499 748800 150 25 32 29 188 0 0 0 0 10 0 0 0 0 0 +3811 1783754291781922500 REFRESH 53 0 0.65750273659084102 0 8 0 8 0 0 148 5 415 3943925 55200 152.19302368164062 0.97770000000000001 189.85130000000001 20160 13503 0 0 983040 737280 737280 737525 748800 156 26 27 55 151 0 0 0 0 5 0 0 0 0 0 +3812 1783754291970925600 REFRESH 14 0 0.56651141917981163 0 12 0 12 0 0 117 7 421 3943894 55200 151.81205749511719 0.98009999999999997 187.80549999999999 20160 12350 0 0 983040 737280 737280 737494 748800 141 26 31 50 173 0 0 0 0 7 0 0 0 0 0 +3813 1783754292176828300 REFRESH 26 0 0.59463920858224717 1 13 1 13 0 0 83 7 427 3943915 55200 151.03692626953125 0.98240000000000005 180.47380000000001 20160 12798 0 0 983040 737280 737280 737515 748800 48 25 36 52 266 0 0 0 0 7 0 0 0 0 0 +3814 1783754292357379900 REFRESH 32 0 0.6045654411138045 2 14 2 14 0 0 118 12 432 3943914 55200 150.72972106933594 0.9738 179.37309999999999 20160 12179 0 0 983040 737280 737280 737514 748800 205 25 34 30 138 0 0 0 0 12 0 0 0 0 0 +3815 1783754292550719300 REFRESH 45 0 0.62369952007981788 2 7 2 7 0 0 139 7 427 3943921 55200 153.25593566894531 0.97340000000000004 192.1183 20160 13451 0 0 983040 737280 737280 737521 748800 135 25 58 55 154 0 0 0 0 7 0 0 0 0 0 +3816 1783754292755127400 REFRESH 0 0 0.58580833559635337 1 12 1 12 0 0 91 8 428 3943898 55200 150.87820434570312 0.98329999999999995 179.90940000000001 20160 12859 0 0 983040 737280 737280 737498 748800 91 25 46 38 228 0 0 0 0 8 0 0 0 0 0 +3817 1783754292957169200 REFRESH 42 0 0.92356627905384947 2 7 2 7 0 0 138 4 415 3943899 55200 152.05580139160156 0.97829999999999995 200.8433 20160 13347 0 0 983040 737280 737280 737498 748800 25 25 25 25 315 0 0 0 0 4 0 0 0 0 0 +3818 1783754293164696200 REFRESH 49 0 0.59884875133541482 3 10 3 10 0 0 127 5 416 3943927 55200 151.92985534667969 0.97589999999999999 182.23519999999999 20160 12480 0 0 983040 737280 737280 737527 748800 131 26 65 50 144 0 0 0 0 5 0 0 0 0 0 +3819 1783754293360563200 REFRESH 27 0 0.60417727934024734 0 14 0 14 0 0 146 7 410 3943900 55200 151.28678894042969 0.98160000000000003 180.38669999999999 20160 12386 0 0 983040 737280 737280 737500 748800 98 26 38 36 212 0 0 0 0 7 0 0 0 0 0 +3820 1783754293543298800 REFRESH 35 0 0.60506520552653242 2 11 2 11 0 0 155 11 422 3943913 55200 151.80082702636719 0.97599999999999998 181.13890000000001 20160 12348 0 0 983040 737280 737280 737513 748800 159 25 29 95 114 0 0 0 0 11 0 0 0 0 0 +3821 1783754293732221700 REFRESH 2 0 0.60594325030669838 2 8 2 8 0 0 140 9 414 3943904 55200 153.12384033203125 0.98170000000000002 187.7336 20160 13486 0 0 983040 737280 737280 737503 748800 35 25 67 110 177 0 0 0 0 9 0 0 0 0 0 +3822 1783754293914585700 REFRESH 24 0 0.60307075974972024 4 11 4 11 0 0 132 7 415 3943925 55200 151.00617980957031 0.97750000000000004 181.18729999999999 20160 11930 0 0 983040 737280 737280 737525 748800 84 27 44 59 201 0 0 0 0 7 0 0 0 0 0 +3823 1783754294122186900 REFRESH 29 0 0.5971408322844276 1 12 1 12 0 0 127 14 414 3943922 55200 153.01017761230469 0.97570000000000001 182.76079999999999 20160 12866 0 0 983040 737280 737280 737521 748800 117 25 59 53 160 0 0 0 0 14 0 0 0 0 0 +3824 1783754294313916500 REFRESH 48 0 0.62629200209479485 2 9 2 9 0 0 149 9 418 3943909 55200 151.54789733886719 0.97629999999999995 190.47409999999999 20160 14113 0 0 983040 737280 737280 737509 748800 63 25 38 41 251 0 0 0 0 9 0 0 0 0 0 +3825 1783754294520341100 REFRESH 20 0 0.59545327126756997 2 11 2 11 0 0 117 6 432 3943895 55200 152.12850952148438 0.97529999999999994 181.01179999999999 20160 13071 0 0 983040 737280 737280 737495 748800 150 25 74 97 86 0 0 0 1 5 0 0 0 0 0 +3826 1783754294704113000 REFRESH 43 0 0.63157232233712568 3 12 3 12 0 0 129 7 415 3943888 55200 151.90118408203125 0.97270000000000001 182.5617 20160 12441 0 0 983040 737280 737280 737488 748800 170 26 38 61 120 0 0 0 0 7 0 0 0 0 0 +3827 1783754294931834700 REFRESH 44 0 0.60947424857187493 2 7 2 7 0 0 147 5 425 3943922 55200 152.36915588378906 0.97640000000000005 225.9683 20160 13555 0 0 983040 737280 737280 737521 748800 104 26 78 39 178 0 0 0 0 5 0 0 0 0 0 +3828 1783754295137734300 REFRESH 47 0 0.59184100672590989 2 11 2 11 0 0 112 5 423 3943887 55200 151.90322875976562 0.9748 181.01650000000001 20160 12147 0 0 983040 737280 737280 737487 748800 143 26 51 34 169 0 0 0 0 5 0 0 0 0 0 +3829 1783754295333963400 REFRESH 15 0 0.60158170048358306 3 12 3 12 0 0 99 8 415 3943942 55200 151.57656860351562 0.97529999999999994 180.44479999999999 20160 12199 0 0 983040 737280 737280 737542 748800 63 26 35 26 265 0 0 1 0 7 0 0 0 0 0 +3830 1783754295537564300 REFRESH 13 0 0.7804948757490886 1 6 1 6 0 0 183 6 415 3943940 55200 151.21612548828125 0.97740000000000005 202.4366 20160 13593 0 0 983040 737280 737280 737540 748800 146 26 52 91 100 0 0 0 0 6 0 0 0 0 0 +3831 1783754295746078600 REFRESH 28 0 0.59467296458511254 1 12 1 12 0 0 147 11 407 3943903 55200 151.99539184570312 0.97940000000000005 182.47800000000001 20160 12415 0 0 983040 737280 737280 737503 748800 165 26 32 31 153 0 0 0 0 11 0 0 0 0 0 +3832 1783754295972392400 REFRESH 17 0 0.78035867393939451 0 7 0 7 0 0 190 5 415 3943923 55200 151.35845947265625 0.97699999999999998 225.18770000000001 20160 13664 0 0 983040 737280 737280 737523 748800 104 26 38 108 139 0 0 0 0 5 0 0 0 0 0 +3833 1783754296188453200 REFRESH 4 0 0.55729297603684413 1 13 1 13 1 0 49 3 416 3943881 55200 150.27813720703125 0.98360000000000003 177.6696 20160 13481 0 0 983040 737280 737280 737481 748800 28 25 42 39 282 0 0 0 0 3 0 0 0 0 1 +3834 1783754296375086300 REFRESH 16 0 0.7610103122671229 2 6 2 6 0 0 178 0 414 3943908 55200 152.54937744140625 0.9899 185.51089999999999 20160 13563 0 0 983040 737280 737280 737508 748800 35 27 26 239 87 0 0 0 0 0 0 0 0 0 0 +3835 1783754296577015800 REFRESH 10 0 0.5984788323498762 1 10 1 10 0 0 119 1 432 3943906 55200 153.06343078613281 0.97489999999999999 183.23699999999999 20160 12944 0 0 983040 737280 737280 737506 748800 244 25 39 41 83 0 0 0 0 1 0 0 0 0 0 +3836 1783754296771730700 REFRESH 23 0 0.60498877175194421 3 14 3 14 0 0 103 9 412 3943911 55200 151.4229736328125 0.97640000000000005 180.2022 20160 11946 0 0 983040 737280 737280 737510 748800 61 25 52 45 229 0 0 0 0 9 0 0 0 0 0 +3837 1783754296965344300 REFRESH 34 0 0.58608887219127548 1 13 1 13 0 0 104 7 429 3943898 55200 150.00883483886719 0.97509999999999997 178.36940000000001 20160 12024 0 0 983040 737280 737280 737497 748800 148 25 62 67 127 0 0 0 0 7 0 0 0 0 0 +3838 1783754297162186800 REFRESH 51 0 0.59789083758346306 3 12 3 12 0 0 92 7 425 3943908 55200 150.85874938964844 0.97650000000000003 181.63079999999999 20160 12946 0 0 983040 737280 737280 737508 748800 117 25 109 80 94 0 0 0 0 7 0 0 0 0 0 +3839 1783754297411471000 REFRESH 50 0 0.5979286309351628 2 9 2 9 0 0 130 3 421 3943915 55200 150.77682495117188 0.97699999999999998 184.93809999999999 20160 12661 0 0 983040 737280 737280 737515 748800 130 25 38 49 179 0 0 0 0 3 0 0 0 0 0 +3840 1783754297608152600 REFRESH 55 0 0.60111073156014072 1 12 1 12 0 0 143 12 423 3943946 55200 152.15206909179688 0.9778 181.3835 20160 13203 0 0 983040 737280 737280 737546 748800 132 25 59 112 95 0 0 0 0 12 0 0 0 0 0 +3841 1783754297835465200 REFRESH 11 0 0.65636022209366363 0 8 0 8 0 0 105 7 417 3943928 55200 151.07379150390625 0.99250000000000005 226.1977 20160 13399 0 0 983040 737280 737280 737528 748800 116 25 64 70 142 0 0 0 0 7 0 0 0 0 0 +3842 1783754298054993200 REFRESH 41 0 0.59853896031271847 1 10 1 10 0 0 110 6 420 3943916 55200 150.45120239257812 0.97319999999999995 202.47219999999999 20160 12863 0 0 983040 737280 737280 737516 748800 139 26 50 55 150 0 0 0 1 5 0 0 0 0 0 +3843 1783754298257534900 REFRESH 3 0 0.59619713384683992 2 9 2 9 0 0 144 7 421 3943892 55200 151.55815124511719 0.97850000000000004 186.18469999999999 20160 13107 0 0 983040 737280 737280 737492 748800 193 25 37 66 100 0 0 0 0 7 0 0 0 0 0 +3844 1783754298481703300 REFRESH 46 0 0.60234923989752431 2 15 2 15 0 0 114 7 416 3943933 55200 152.10496520996094 0.98109999999999997 180.83500000000001 20160 12128 0 0 983040 737280 737280 737533 748800 113 26 60 39 178 0 0 0 0 7 0 0 0 0 0 +3845 1783754298703688700 REFRESH 54 0 0.6117517795286761 1 8 1 8 0 0 113 6 424 3943925 55200 150.85491943359375 0.9768 220.78559999999999 20160 12903 0 0 983040 737280 737280 737524 748800 143 25 57 125 74 0 0 0 0 6 0 0 0 0 0 +3846 1783754298886634000 REFRESH 39 0 0.60931525208234072 3 8 3 8 0 0 171 5 415 3943933 55200 151.76704406738281 0.9829 181.55009999999999 20160 13369 0 0 983040 737280 737280 737533 748800 102 28 31 34 220 0 0 0 0 5 0 0 0 0 0 +3847 1783754299082161400 REFRESH 33 0 0.65057876520171687 1 7 1 7 0 0 182 7 417 3943922 55200 153.08390808105469 0.98619999999999997 194.31780000000001 20160 13443 0 0 983040 737280 737280 737522 748800 112 26 42 38 199 0 0 0 0 7 0 0 0 0 0 +3848 1783754299280571100 REFRESH 18 0 0.59784157854398812 4 15 4 15 0 0 105 17 414 3943921 55200 151.12602233886719 1.0091000000000001 182.92019999999999 20160 12282 0 0 983040 737280 737280 737521 748800 39 25 25 27 298 1 0 0 0 16 0 0 0 0 0 +3849 1783754299475867000 REFRESH 6 0 0.57352953702929566 3 11 3 11 0 0 117 10 414 3943928 55200 150.53721618652344 0.9839 179.7105 20160 12650 0 0 983040 737280 737280 737528 748800 26 25 25 25 313 0 0 0 0 10 0 0 0 0 0 +3850 1783754299672355700 REFRESH 19 0 0.60376141890983615 2 11 2 11 0 0 126 8 420 3943933 55200 151.56121826171875 0.98499999999999999 180.8699 20160 12661 0 0 983040 737280 737280 737533 748800 93 25 26 36 240 0 0 0 0 8 0 0 0 0 0 +3851 1783754299898364000 REFRESH 56 0 0.77800147205014336 2 5 2 5 0 0 208 3 414 3943907 55200 151.34428405761719 0.99519999999999997 224.7439 20160 13540 0 0 983040 737280 737280 737507 748800 187 26 49 62 90 0 0 0 0 3 0 0 0 0 0 +3852 1783754300104537900 REFRESH 36 0 0.59477891217159684 3 10 3 10 0 0 114 9 434 3943912 55200 151.69842529296875 0.97929999999999995 180.86320000000001 20160 12163 0 0 983040 737280 737280 737512 748800 234 25 39 50 86 1 0 0 0 8 0 0 0 0 0 +3853 1783754301415378300 DEPTH 42 1 0.88912812330570967 2 7 2 7 0 0 138 62 2593 23664853 81600 867.65568542480469 5.8666 1256.2958000000001 120960 64695 1 0 5898240 4423680 4423680 4426453 4492800 150 150 150 150 1993 0 0 0 0 62 0 0 0 0 0 +3854 1783754302472905500 DEPTH 38 1 0.87205740920877128 2 11 2 11 1 0 93 70 2556 23664843 81600 862.34608459472656 5.8487 1031.3078 120960 58259 1 0 5898240 4423680 4423680 4426442 4492800 150 150 150 150 1956 0 1 0 0 69 0 0 0 0 2 +3855 1783754303605127000 DEPTH 8 1 0.7806271633821884 2 5 2 5 0 0 222 18 2570 23664851 81600 874.553466796875 5.8580000000000005 1106.9278999999999 120960 66523 1 0 5898240 4423680 4423680 4426450 4492800 219 150 156 173 1872 0 0 0 0 18 0 0 0 0 0 +3856 1783754304928871300 DEPTH 13 1 0.77768913037796861 1 6 1 6 1 0 183 14 2501 23664877 81600 865.97018432617188 5.8626000000000005 1275.5597 120960 66118 1 0 5898240 4423680 4423680 4426475 4492800 303 156 190 236 1616 0 0 0 0 14 0 0 0 0 1 +3857 1783754306236325800 DEPTH 17 1 0.77656488664086964 0 7 0 7 0 0 190 27 2530 23664786 81600 863.741943359375 5.8378999999999994 1306.2612999999999 120960 66070 1 0 5898240 4423680 4423680 4426385 4492800 212 156 165 246 1751 0 0 0 0 27 0 0 0 0 0 +3858 1783754307376572900 DEPTH 16 1 0.73208512943343584 2 6 2 6 0 0 178 38 2539 23664875 81600 875.17097473144531 5.8600000000000003 1117.5571 120960 65736 1 0 5898240 4423680 4423680 4426475 4492800 163 155 156 446 1619 0 0 0 0 38 0 0 0 0 0 +3859 1783754308608101600 DEPTH 53 1 0.65327988410565585 0 8 0 8 0 0 148 33 2525 23664855 81600 869.17222595214844 5.8468 1230.3181 120960 65548 1 0 5898240 4423680 4423680 4426453 4492800 225 156 150 177 1817 0 0 0 0 33 0 0 0 0 0 +3860 1783754309925372700 DEPTH 1 1 0.64939772140461061 1 7 1 7 0 0 126 12 2620 23664816 81600 869.94021606445312 5.8459999999999992 1315.6967 120960 66009 1 0 5898240 4423680 4423680 4426412 4492800 408 155 306 325 1426 0 0 0 0 12 0 0 0 0 0 +3861 1783754311184698900 DEPTH 42 1 0.6939565577611515 2 7 2 7 1 0 138 58 2597 23664850 81600 862.52146911621094 5.8610000000000007 1258.076 120960 54340 1 0 5898240 4423680 4423680 4426448 4492800 150 150 150 150 1997 0 0 0 0 58 0 0 0 0 1 +3862 1783754312226577000 DEPTH 38 1 0.67504743474252793 2 11 2 11 1 0 96 53 2533 23664829 81600 851.85710144042969 5.843 1020.0173 120960 47267 1 0 5898240 4423680 4423680 4426429 4492800 150 150 150 150 1933 0 0 0 0 53 0 0 0 0 2 +3863 1783754313526374300 DEPTH 31 1 0.64559836406553195 2 6 2 6 0 0 124 6 2626 23664891 81600 862.600341796875 5.8562999999999992 1277.829 120960 66024 1 0 5898240 4423680 4423680 4426491 4492800 1036 150 192 389 859 0 0 0 0 6 0 0 0 0 0 +3864 1783754314850083300 DEPTH 9 1 0.63061473775353072 2 6 2 6 0 0 133 6 2627 23664745 81600 873.75154113769531 5.8481000000000005 1302.0444 120960 66698 1 0 5898240 4423680 4423680 4426345 4492800 814 150 481 544 638 0 0 0 0 6 0 0 0 0 0 +3865 1783754315916155700 DEPTH 43 1 0.62414618496682484 3 12 3 12 1 0 129 31 2558 23664861 81600 870.79525756835938 5.8398000000000003 1043.3441 120960 59471 1 0 5898240 4423680 4423680 4426460 4492800 407 156 192 209 1594 4 0 0 0 27 4 0 0 0 0 +3866 1783754317201664600 DEPTH 48 1 0.62317347834980263 2 9 2 9 0 0 152 34 2571 23664853 81600 864.47206115722656 5.8716999999999997 1251.1704 120960 66020 1 0 5898240 4423680 4423680 4426453 4492800 150 150 150 150 1971 0 0 0 0 34 0 0 0 0 0 +3867 1783754318545572600 DEPTH 56 1 0.68233481110151417 2 5 2 5 0 0 209 12 2568 23664889 81600 864.72608947753906 5.8347999999999995 1302.8327999999999 120960 65210 1 0 5898240 4423680 4423680 4426487 4492800 515 156 180 332 1385 0 0 0 0 12 0 0 0 0 0 +3868 1783754319777273200 DEPTH 45 1 0.62091610839619826 2 7 2 7 0 0 140 25 2618 23664852 81600 871.92575073242188 5.8468 1230.4664 120960 65587 1 0 5898240 4423680 4423680 4426451 4492800 289 150 206 201 1772 0 0 0 0 25 0 0 0 0 0 +3869 1783754321029760600 DEPTH 42 1 0.67635636993438508 2 7 2 6 1 0 138 72 2600 23664830 81600 857.63584899902344 5.8630999999999993 1251.2750000000001 120960 43424 1 0 5898240 4423680 4423680 4426430 4492800 150 150 150 150 2000 0 0 0 0 72 0 0 0 0 3 +3870 1783754322121487300 DEPTH 8 1 0.68151433938928896 2 5 2 5 0 0 222 25 2543 23664754 81600 868.96839904785156 5.8446999999999996 1090.5643 120960 55549 1 0 5898240 4423680 4423680 4426352 4492800 421 153 163 232 1574 0 0 0 0 25 0 0 0 0 0 +3871 1783754323396696800 DEPTH 13 1 0.67909947725326847 1 6 1 6 0 0 183 19 2505 23664883 81600 858.38848876953125 5.8650000000000002 1274.1324999999999 120960 55195 1 0 5898240 4423680 4423680 4426483 4492800 299 154 182 266 1604 0 0 0 0 19 0 0 0 0 0 +3872 1783754324703006900 DEPTH 11 1 0.65467542779943921 0 8 0 8 0 0 105 16 2531 23664830 81600 861.77618408203125 5.8365999999999998 1305.1837 120960 64743 1 0 5898240 4423680 4423680 4426429 4492800 273 150 213 237 1658 0 0 0 0 16 0 0 0 0 0 +3873 1783754326005192500 DEPTH 17 1 0.68808972325506934 0 7 0 7 0 0 190 14 2527 23664826 81600 856.72856140136719 5.8771000000000004 1301.0319999999999 120960 54961 1 0 5898240 4423680 4423680 4426425 4492800 211 156 162 263 1735 0 0 0 0 14 0 0 0 0 0 +3874 1783754327023701400 DEPTH 38 1 0.69069284296010769 2 11 2 10 1 0 97 58 2566 23664818 81600 848.90089416503906 5.8795999999999999 1017.3208 120960 37459 1 0 5898240 4423680 4423680 4426417 4492800 150 150 150 150 1966 0 0 0 0 58 0 0 0 0 2 +3875 1783754328270634500 DEPTH 33 1 0.64908201894983741 1 7 1 7 0 0 182 21 2536 23664886 81600 875.32954406738281 5.8370999999999995 1222.8081999999999 120960 66043 1 0 5898240 4423680 4423680 4426486 4492800 211 153 158 161 1853 0 0 0 0 21 0 0 0 0 0 +3876 1783754329617326300 DEPTH 44 1 0.60593205548426288 2 7 2 7 0 0 152 23 2604 23664932 81600 870.16041564941406 5.8666999999999998 1320.6895999999999 120960 65713 1 0 5898240 4423680 4423680 4426530 4492800 195 150 234 168 1857 0 0 0 0 23 0 0 0 0 0 +3877 1783754330870041700 DEPTH 42 1 0.80525458813516271 2 6 2 6 1 0 140 47 2595 23664836 81600 854.60990905761719 5.8688000000000002 1251.4719 120960 29736 1 0 5898240 4423680 4423680 4426434 4492800 150 150 150 150 1995 0 0 0 0 47 0 0 0 0 2 +3878 1783754331939349400 DEPTH 38 1 0.69563382668263019 2 10 2 10 0 0 97 52 2549 23664909 81600 847.34873962402344 5.8460999999999999 1017.3384 120960 25803 1 0 5898240 4423680 4423680 4426509 4492800 150 150 150 150 1949 0 0 0 0 52 0 0 0 0 0 +3879 1783754333098109400 DEPTH 16 1 0.6949681545549945 2 6 2 6 0 0 178 35 2542 23664849 81600 866.65625 5.8841000000000001 1136.5155999999999 120960 54104 1 0 5898240 4423680 4423680 4426445 4492800 160 154 156 387 1685 0 0 0 0 35 0 0 0 0 0 +3880 1783754334419177900 DEPTH 56 1 0.65418555450251248 2 5 2 5 0 0 210 18 2572 23664814 81600 855.465087890625 5.8362000000000007 1296.9096999999999 120960 54494 1 0 5898240 4423680 4423680 4426413 4492800 553 156 180 398 1285 0 0 0 0 18 0 0 0 0 0 +3881 1783754335776861100 DEPTH 54 1 0.61061248334005302 1 8 1 8 0 0 113 10 2606 23664833 81600 862.26759338378906 5.8858000000000006 1313.0009 120960 62931 1 0 5898240 4423680 4423680 4426432 4492800 654 150 297 716 789 0 0 0 0 10 0 0 0 0 0 +3882 1783754337026033500 DEPTH 2 1 0.60472792853368185 2 8 2 8 0 0 140 28 2551 23664973 81600 869.7896728515625 5.8508999999999993 1247.9078 120960 65535 1 0 5898240 4423680 4423680 4426570 4492800 156 150 150 150 1945 0 0 0 0 28 0 0 0 0 0 +3883 1783754338105949700 DEPTH 35 1 0.60417733249333327 2 11 2 11 0 0 155 42 2555 23664853 81600 871.80287170410156 5.8744999999999994 1049.6386 120960 60010 1 0 5898240 4423680 4423680 4426449 4492800 433 150 156 316 1500 2 0 0 0 40 0 0 0 0 0 +3884 1783754339168411800 DEPTH 37 1 0.60378409973615754 1 12 1 12 0 0 140 18 2620 23664880 81600 866.95738220214844 5.8548999999999998 1041.162 120960 60575 1 0 5898240 4423680 4423680 4426480 4492800 738 154 197 224 1307 0 0 0 0 18 0 0 0 0 0 +3885 1783754339360807100 REFRESH 36 0 0.59454059688018357 3 10 3 10 0 0 114 6 433 3943929 55200 151.45779418945312 0.98609999999999998 180.69929999999999 20160 12239 0 0 983040 737280 737280 737529 748800 235 25 39 49 85 0 0 0 0 6 0 0 0 0 0 +3886 1783754339542725200 REFRESH 37 0 0.37299301642521182 1 12 1 12 0 0 140 7 431 3943909 55200 151.34719848632812 0.97619999999999996 180.71260000000001 20160 12385 0 0 983040 737280 737280 737509 748800 171 26 56 40 138 0 0 0 0 7 0 0 0 0 0 +3887 1783754339744299200 REFRESH 19 0 0.60080100040475748 2 11 2 11 0 0 126 10 420 3943903 55200 152.47564697265625 0.97489999999999999 181.27850000000001 20160 12660 0 0 983040 737280 737280 737503 748800 93 25 26 34 242 0 0 0 0 10 0 0 0 0 0 +3888 1783754339935726800 REFRESH 45 0 0.57125190326679975 2 7 2 7 0 0 140 5 424 3943911 55200 153.62867736816406 0.97840000000000005 190.22540000000001 20160 13426 0 0 983040 737280 737280 737511 748800 149 25 64 60 126 0 0 0 0 5 0 0 0 0 0 +3889 1783754340163827000 REFRESH 44 0 0.48758019585226531 2 7 2 7 0 0 152 6 427 3943914 55200 153.71058654785156 0.97970000000000002 226.86410000000001 20160 13496 0 0 983040 737280 737280 737514 748800 93 26 71 34 203 0 0 0 0 6 0 0 0 0 0 +3890 1783754340357783800 REFRESH 10 0 0.59081055436896013 1 10 1 10 0 0 119 4 424 3943916 55200 151.00314331054688 0.97570000000000001 181.59309999999999 20160 13004 0 0 983040 737280 737280 737516 748800 237 25 39 40 83 0 0 0 0 4 0 0 0 0 0 +3891 1783754340549722800 REFRESH 0 0 0.58604849217845123 1 12 1 12 0 0 91 5 427 3943904 55200 150.46553039550781 0.97450000000000003 180.23929999999999 20160 12900 0 0 983040 737280 737280 737504 748800 90 25 46 39 227 0 0 0 0 5 0 0 0 0 0 +3892 1783754340729888600 REFRESH 38 0 0.76554379965124009 2 10 2 10 0 0 97 3 411 3943915 55200 150.46348571777344 0.97889999999999999 178.9701 20160 12505 0 0 983040 737280 737280 737515 748800 111 25 31 27 217 0 0 0 0 3 0 0 0 0 0 +3893 1783754340938934200 REFRESH 30 0 0.60037237995487813 1 9 1 9 0 0 135 6 412 3943896 55200 152.76237487792969 0.98109999999999997 187.69560000000001 20160 13381 0 0 983040 737280 737280 737496 748800 94 25 57 39 197 0 0 0 0 6 0 0 0 0 0 +3894 1783754341133762500 REFRESH 7 0 0.59836118944887984 1 12 1 12 0 0 132 8 424 3943899 55200 152.78080749511719 0.99950000000000006 182.71530000000001 20160 12352 0 0 983040 737280 737280 737499 748800 167 26 29 35 167 0 0 0 0 8 0 0 0 0 0 +3895 1783754341326224900 REFRESH 46 0 0.59815151606753281 2 15 2 15 0 0 114 5 414 3943915 55200 151.612548828125 0.97319999999999995 180.73220000000001 20160 12268 0 0 983040 737280 737280 737515 748800 100 26 53 39 196 0 0 0 0 5 0 0 0 0 0 +3896 1783754341517626800 REFRESH 4 0 0.55564728532168717 1 13 1 13 0 0 49 3 411 3943892 55200 149.48159790039062 0.9748 179.7638 20160 13395 0 0 983040 737280 737280 737492 748800 28 25 42 40 276 0 0 0 0 3 0 0 0 0 0 +3897 1783754341711173700 REFRESH 33 0 0.62065295816056953 1 7 1 7 0 0 182 5 417 3943889 55200 151.71903991699219 0.9778 191.6849 20160 13486 0 0 983040 737280 737280 737488 748800 120 26 52 41 178 0 0 0 0 5 0 0 0 0 0 +3898 1783754341914289700 REFRESH 18 0 0.59698783413942813 4 15 4 15 0 0 105 10 414 3943888 55200 151.5284423828125 0.99170000000000003 181.70179999999999 20160 12028 0 0 983040 737280 737280 737488 748800 49 25 25 29 286 1 0 0 0 9 0 0 0 0 0 +3899 1783754342107354100 REFRESH 24 0 0.59979992594611109 4 11 4 11 0 0 132 7 408 3943900 55200 151.71174621582031 0.9788 181.5557 20160 11958 0 0 983040 737280 737280 737499 748800 81 27 41 58 201 0 0 0 0 7 0 0 0 0 0 +3900 1783754342311774000 REFRESH 25 0 0.59251414833890936 3 11 3 11 1 0 114 6 420 3943884 55200 152.27084350585938 0.97350000000000003 181.3313 20160 11967 0 0 983040 737280 737280 737484 748800 111 25 58 72 154 0 0 0 0 6 0 0 0 0 1 +3901 1783754342545941300 REFRESH 52 0 0.60191739559764046 1 8 1 8 0 0 107 3 434 3943927 55200 150.2371826171875 0.98270000000000002 222.10210000000001 20160 12813 0 0 983040 737280 737280 737527 748800 134 25 35 154 86 0 0 0 0 3 0 0 0 0 0 +3902 1783754342739150700 REFRESH 15 0 0.59928888634414568 3 12 3 12 0 0 99 5 417 3943899 55200 150.97549438476562 0.97660000000000002 181.07480000000001 20160 12186 0 0 983040 737280 737280 737499 748800 63 26 35 26 267 0 0 0 0 5 0 0 0 0 0 +3903 1783754342931436300 REFRESH 53 0 0.65440654506712603 0 8 0 8 0 0 149 9 416 3943916 55200 151.93087768554688 0.98070000000000002 191.00309999999999 20160 13336 0 0 983040 737280 737280 737516 748800 151 26 27 54 158 0 0 0 0 9 0 0 0 0 0 +3904 1783754343133780400 REFRESH 29 0 0.5963342226514321 1 12 1 12 0 0 127 7 417 3943905 55200 151.8194580078125 0.98019999999999996 181.02879999999999 20160 13102 0 0 983040 737280 737280 737505 748800 112 25 54 46 180 0 0 0 0 7 0 0 0 0 0 +3905 1783754343350672600 REFRESH 1 0 0.65129006799750755 1 7 1 7 0 0 126 5 426 3943916 55200 151.36665344238281 0.97330000000000005 215.7895 20160 13580 0 0 983040 737280 737280 737516 748800 134 26 77 89 100 0 0 0 0 5 0 0 0 0 0 +3906 1783754343601616600 REFRESH 11 0 0.6560940399797538 0 8 0 8 0 0 105 5 423 3943927 55200 152.01280212402344 0.97340000000000004 226.74950000000001 20160 13527 0 0 983040 737280 737280 737526 748800 115 25 63 69 151 0 0 0 0 5 0 0 0 0 0 +3907 1783754343795305300 REFRESH 39 0 0.60255159850515172 3 8 3 8 0 0 172 10 412 3943908 55200 151.21919250488281 0.97840000000000005 181.0564 20160 13561 0 0 983040 737280 737280 737508 748800 112 28 31 34 207 0 0 0 0 10 0 0 0 0 0 +3908 1783754344016446900 REFRESH 41 0 0.59630643364369407 1 10 1 10 0 0 110 10 420 3943912 55200 150.719482421875 0.9748 207.00299999999999 20160 12858 0 0 983040 737280 737280 737512 748800 130 26 48 51 165 0 0 0 1 9 0 0 0 0 0 +3909 1783754344208350900 REFRESH 23 0 0.60291061463773121 3 14 3 14 0 0 103 7 410 3943911 55200 150.82496643066406 0.9738 179.84979999999999 20160 11984 0 0 983040 737280 737280 737511 748800 77 25 78 56 174 0 0 0 0 7 0 0 0 0 0 +3910 1783754344400130500 REFRESH 49 0 0.59437806669101811 3 10 3 10 0 0 127 7 422 3943911 55200 150.78707885742188 0.97650000000000003 180.15459999999999 20160 12436 0 0 983040 737280 737280 737511 748800 136 26 65 54 141 0 0 0 0 7 0 0 0 0 0 +3911 1783754344603021700 REFRESH 13 0 0.78037469053875563 1 6 1 6 0 0 183 6 417 3943898 55200 151.86329650878906 0.98129999999999995 201.73220000000001 20160 13421 0 0 983040 737280 737280 737497 748800 149 26 52 95 95 0 0 0 0 6 0 0 0 0 0 +3912 1783754344805335700 REFRESH 58 0 0.59542026031375805 2 12 2 12 1 0 122 11 428 3943917 55200 151.20895385742188 0.97709999999999997 180.2433 20160 12633 0 0 983040 737280 737280 737517 748800 115 26 67 75 145 0 0 0 0 11 0 0 0 0 1 +3913 1783754345009425500 REFRESH 48 0 0.62127206824383818 2 9 2 9 0 0 152 12 416 3943927 55200 150.14297485351562 0.97989999999999999 188.44329999999999 20160 13854 0 0 983040 737280 737280 737527 748800 66 25 38 39 248 1 0 0 0 11 0 0 0 0 0 +3914 1783754345199316800 REFRESH 5 0 0.59990201868863147 2 11 2 11 0 0 91 8 418 3943910 55200 150.34675598144531 0.97509999999999997 177.8372 20160 11955 0 0 983040 737280 737280 737509 748800 96 26 91 114 91 0 0 0 0 8 0 0 0 0 0 +3915 1783754345392438300 REFRESH 40 0 0.5832655120123702 1 12 1 12 0 0 118 6 422 3943921 55200 152.66610717773438 0.97319999999999995 181.22569999999999 20160 12932 0 0 983040 737280 737280 737521 748800 153 25 41 88 115 0 0 0 0 6 0 0 0 0 0 +3916 1783754345615505100 REFRESH 54 0 0.61348213115669503 1 8 1 8 0 0 113 4 427 3943923 55200 151.6072998046875 0.97540000000000004 221.8989 20160 12903 0 0 983040 737280 737280 737523 748800 143 25 60 125 74 0 0 0 0 4 0 0 0 0 0 +3917 1783754345812746600 REFRESH 27 0 0.60008292843322297 0 14 0 14 0 0 146 9 411 3943930 55200 152.21760559082031 0.97940000000000005 181.5471 20160 12443 0 0 983040 737280 737280 737530 748800 98 26 36 31 220 0 0 0 0 9 0 0 0 0 0 +3918 1783754346014681700 REFRESH 14 0 0.60345607431366977 0 12 0 12 0 0 117 6 416 3943892 55200 152.62106323242188 0.98040000000000005 186.9255 20160 12206 0 0 983040 737280 737280 737491 748800 143 26 33 50 164 0 0 0 0 6 0 0 0 0 0 +3919 1783754346210894400 REFRESH 12 0 0.59404727979360872 3 8 3 8 0 0 183 3 413 3943917 55200 150.64784240722656 0.97740000000000005 180.16329999999999 20160 12758 0 0 983040 737280 737280 737517 748800 144 26 45 100 98 0 0 0 0 3 0 0 0 0 0 +3920 1783754346407420800 REFRESH 28 0 0.59504047243355607 1 12 1 12 0 0 147 9 407 3943891 55200 151.6759033203125 0.97340000000000004 181.36750000000001 20160 12438 0 0 983040 737280 737280 737490 748800 135 25 31 30 186 0 0 0 0 9 0 0 0 0 0 +3921 1783754346593780500 REFRESH 8 0 0.7823416637184275 2 5 2 5 0 0 222 3 414 3943943 55200 152.90573120117188 0.97670000000000001 185.21680000000001 20160 13543 0 0 983040 737280 737280 737543 748800 182 27 30 78 97 0 0 0 0 3 0 0 0 0 0 +3922 1783754346819824900 REFRESH 17 0 0.77948415515776903 0 7 0 7 0 0 190 2 410 3943927 55200 151.87353515625 1.0001 224.92310000000001 20160 13440 0 0 983040 737280 737280 737527 748800 118 26 42 116 108 0 0 0 0 2 0 0 0 0 0 +3923 1783754347025054900 REFRESH 3 0 0.59373448989074995 2 9 2 9 0 0 144 16 417 3943895 55200 151.19783020019531 1.0464 187.54429999999999 20160 13238 0 0 983040 737280 737280 737495 748800 185 25 37 64 106 0 0 0 0 16 0 0 0 0 0 +3924 1783754347251027800 REFRESH 6 0 0.57503734573476173 3 11 3 11 0 0 118 7 413 3943909 55200 151.61138916015625 0.9728 179.387 20160 12761 0 0 983040 737280 737280 737509 748800 26 25 25 25 312 0 0 0 0 7 0 0 0 0 0 +3925 1783754347445902400 REFRESH 20 0 0.59099185160335321 2 11 2 11 0 0 117 3 426 3943887 55200 152.26982116699219 0.97409999999999997 180.9238 20160 13063 0 0 983040 737280 737280 737487 748800 150 25 76 101 74 0 0 0 0 3 0 0 0 0 0 +3926 1783754347641303200 REFRESH 26 0 0.59342029426284293 1 13 1 13 0 0 83 10 428 3943930 55200 150.85157775878906 0.98119999999999996 179.256 20160 12726 0 0 983040 737280 737280 737530 748800 47 25 35 50 271 1 0 0 0 9 0 0 0 0 0 +3927 1783754347861261200 REFRESH 21 0 0.59543199970039051 0 10 0 10 0 0 177 7 417 3943895 55200 151.90835571289062 0.97709999999999997 202.50810000000001 20160 13180 0 0 983040 737280 737280 737495 748800 108 26 35 101 147 0 0 0 0 7 0 0 0 0 0 +3928 1783754348047899800 REFRESH 2 0 0.60451713428734566 2 8 2 8 0 0 140 6 420 3943902 55200 152.05580139160156 0.98209999999999997 185.5317 20160 13534 0 0 983040 737280 737280 737501 748800 29 25 67 102 197 0 0 0 0 6 0 0 0 0 0 +3929 1783754348272740000 REFRESH 56 0 0.775879045690408 2 5 2 5 0 0 210 4 416 3943939 55200 151.92166137695312 0.98040000000000005 223.60140000000001 20160 13488 0 0 983040 737280 737280 737539 748800 181 26 46 66 97 0 0 0 0 4 0 0 0 0 0 +3930 1783754348511781200 REFRESH 9 0 0.63035916634863998 2 6 2 6 0 0 133 2 436 3943923 55200 152.94770812988281 0.97709999999999997 223.6397 20160 13532 0 0 983040 737280 737280 737523 748800 145 25 89 78 99 0 0 0 0 2 0 0 0 0 0 +3931 1783754348749805800 REFRESH 32 0 0.60346485661047966 2 14 2 14 0 0 119 6 432 3943913 55200 150.89765930175781 0.97689999999999999 179.47200000000001 20160 12108 0 0 983040 737280 737280 737513 748800 221 25 35 30 121 0 0 0 0 6 0 0 0 0 0 +3932 1783754348946596700 REFRESH 57 0 0.59299269095670815 2 12 2 12 0 0 123 10 414 3943899 55200 151.07379150390625 0.97299999999999998 180.20910000000001 20160 12468 0 0 983040 737280 737280 737497 748800 117 26 99 80 92 0 0 0 0 10 0 0 0 0 0 +3933 1783754349144860600 REFRESH 50 0 0.59204405562178875 2 9 2 9 0 0 131 4 419 3943934 55200 151.85816955566406 0.98140000000000005 185.37090000000001 20160 12680 0 0 983040 737280 737280 737533 748800 169 25 39 60 126 0 0 0 0 4 0 0 0 0 0 +3934 1783754349337702000 REFRESH 16 0 0.72856910953285481 2 6 2 6 1 0 178 7 413 3943903 55200 151.942138671875 0.98780000000000001 191.66589999999999 20160 13362 0 0 983040 737280 737280 737503 748800 35 27 26 238 87 0 0 0 0 7 0 0 0 0 1 +3935 1783754349543270600 REFRESH 51 0 0.59520558280454683 3 12 3 12 0 0 92 7 430 3943930 55200 151.33775329589844 0.97799999999999998 180.11330000000001 20160 13008 0 0 983040 737280 737280 737530 748800 118 25 110 80 97 0 0 0 0 7 0 0 0 0 0 +3936 1783754349778358000 REFRESH 31 0 0.64393819664933005 2 6 2 6 0 0 124 3 430 3943940 55200 152.31283569335938 0.98009999999999997 220.1696 20160 13592 0 0 983040 737280 737280 737540 748800 211 25 33 74 87 0 0 0 0 3 0 0 0 0 0 +3937 1783754349995397600 REFRESH 42 0 0.95223982725472311 2 6 2 6 0 0 140 8 415 3943912 55200 151.77113342285156 0.97340000000000004 215.5025 20160 13464 0 0 983040 737280 737280 737512 748800 25 25 25 25 315 0 0 0 0 8 0 0 0 0 0 +3938 1783754350199995000 REFRESH 47 0 0.58827978185797258 2 11 2 11 0 0 112 9 419 3943892 55200 151.55609130859375 0.97699999999999998 179.8972 20160 12049 0 0 983040 737280 737280 737492 748800 153 26 52 34 154 0 0 0 0 9 0 0 0 0 0 +3939 1783754350383260100 REFRESH 35 0 0.6032392404862037 2 11 2 11 0 0 156 10 418 3943917 55200 151.57884216308594 0.97340000000000004 182.077 20160 12698 0 0 983040 737280 737280 737516 748800 166 25 30 105 92 0 0 0 0 10 0 0 0 0 0 +3940 1783754350588750100 REFRESH 34 0 0.58535096019609667 1 13 1 13 0 0 104 3 430 3943911 55200 149.64326477050781 0.97999999999999998 180.57310000000001 20160 11898 0 0 983040 737280 737280 737511 748800 144 25 56 63 142 0 0 0 0 3 0 0 0 0 0 +3941 1783754350786939000 REFRESH 55 0 0.59961335293135587 1 12 1 12 0 0 143 8 429 3943884 55200 152.38861083984375 0.97819999999999996 181.9023 20160 13335 0 0 983040 737280 737280 737484 748800 124 25 56 107 117 0 0 0 0 8 0 0 0 0 0 +3942 1783754350985881200 REFRESH 22 0 0.59415805041646885 3 11 3 11 0 0 122 10 421 3943914 55200 152.02099609375 0.97619999999999996 183.1311 20160 12377 0 0 983040 737280 737280 737512 748800 144 25 30 29 193 0 0 0 0 10 0 0 0 0 0 +3943 1783754351169630900 REFRESH 43 0 0.62050966677134956 3 12 3 12 0 0 129 4 419 3943927 55200 152.29248046875 0.97889999999999999 182.18270000000001 20160 12593 0 0 983040 737280 737280 737527 748800 172 26 41 63 117 0 0 0 0 4 0 0 0 0 0 +3944 1783754352202827700 DEPTH 38 1 0.84144243857965595 2 10 2 10 0 0 98 36 2540 23664885 81600 861.13282775878906 5.8368999999999991 1031.1469 120960 59704 1 0 5898240 4423680 4423680 4426485 4492800 150 150 150 150 1940 0 0 0 0 36 0 0 0 0 0 +3945 1783754353484255300 DEPTH 13 1 0.77747110202781899 1 6 1 6 0 0 183 20 2505 23664881 81600 866.456787109375 5.8672999999999993 1280.2023999999999 120960 65436 1 0 5898240 4423680 4423680 4426478 4492800 285 155 189 227 1649 0 0 0 0 20 0 0 0 0 0 +3946 1783754354585677200 DEPTH 8 1 0.7760002584830632 2 5 2 5 0 0 223 27 2546 23664866 81600 874.81561279296875 5.8444000000000003 1100.2575999999999 120960 66036 1 0 5898240 4423680 4423680 4426466 4492800 245 150 156 168 1827 0 0 0 0 27 0 0 0 0 0 +3947 1783754355854582800 DEPTH 42 1 0.77336705475629652 2 6 2 6 1 0 140 41 2591 23664797 81600 873.11360168457031 5.8364000000000003 1267.3101999999999 120960 65572 1 0 5898240 4423680 4423680 4426394 4492800 150 150 150 150 1991 0 0 0 0 41 0 0 0 0 1 +3948 1783754357166983000 DEPTH 17 1 0.77265583509199764 0 7 0 7 0 0 190 24 2526 23664921 81600 864.70042419433594 5.8806000000000003 1311.1886 120960 65130 1 0 5898240 4423680 4423680 4426519 4492800 210 156 170 243 1747 0 0 0 0 24 0 0 0 0 0 +3949 1783754358497487300 DEPTH 56 1 0.72130938570226011 2 5 2 5 0 0 210 24 2574 23664867 81600 864.23551940917969 5.8585000000000003 1303.451 120960 65207 1 0 5898240 4423680 4423680 4426466 4492800 493 156 180 353 1392 0 0 0 0 24 0 0 0 0 0 +3950 1783754359775436100 DEPTH 53 1 0.65436417884559217 0 8 0 8 0 0 149 30 2528 23664856 81600 869.79278564453125 5.8785999999999996 1245.6739 120960 65427 1 0 5898240 4423680 4423680 4426453 4492800 210 156 150 173 1839 0 0 0 0 30 0 0 0 0 0 +3951 1783754361078394900 DEPTH 11 1 0.65232613527778671 0 8 0 8 1 0 105 16 2529 23664901 81600 858.95576477050781 5.8643000000000001 1301.6533999999999 120960 65370 1 0 5898240 4423680 4423680 4426501 4492800 248 150 208 209 1714 0 0 0 0 16 0 0 0 0 2 +3952 1783754362399306100 DEPTH 42 1 0.69927476448392389 2 6 2 6 1 0 140 50 2591 23664883 81600 862.67208862304688 5.8466999999999993 1251.125 120960 55043 1 0 5898240 4423680 4423680 4426481 4492800 150 150 150 150 1991 0 0 0 0 50 0 0 0 0 1 +3953 1783754363536142300 DEPTH 16 1 0.66075959218675662 2 6 2 6 0 0 178 28 2542 23664901 81600 873.88665771484375 5.8438999999999997 1118.5924 120960 65684 1 0 5898240 4423680 4423680 4426500 4492800 163 156 155 490 1578 0 0 0 0 28 0 0 0 0 0 +3954 1783754364864519000 DEPTH 1 1 0.64793475159459257 1 7 1 7 0 0 126 6 2621 23664860 81600 869.19314575195312 5.8483999999999998 1311.5208 120960 66138 1 0 5898240 4423680 4423680 4426460 4492800 431 156 312 325 1397 0 0 0 0 6 0 0 0 0 0 +3955 1783754365936377900 DEPTH 38 1 0.67750825814065219 2 10 2 10 0 0 99 35 2559 23664799 81600 853.86138916015625 5.8735999999999997 1024.6654000000001 120960 48680 1 0 5898240 4423680 4423680 4426399 4492800 150 150 150 150 1959 0 0 0 0 35 0 0 0 0 0 +3956 1783754367174982100 DEPTH 33 1 0.64708467442865591 1 7 1 7 0 0 183 30 2550 23664859 81600 874.21131896972656 5.8475000000000001 1237.3946000000001 120960 65886 1 0 5898240 4423680 4423680 4426459 4492800 208 152 156 156 1878 0 0 0 0 30 0 0 0 0 0 +3957 1783754368460184600 DEPTH 48 1 0.61944647563666111 2 9 2 9 0 0 154 45 2562 23664860 81600 865.68971252441406 5.8391000000000002 1254.4450999999999 120960 66996 1 0 5898240 4423680 4423680 4426459 4492800 150 150 150 150 1962 0 0 0 0 45 0 0 0 0 0 +3958 1783754369712365200 DEPTH 45 1 0.6165964990467061 2 7 2 7 0 0 142 37 2619 23664907 81600 875.46266174316406 5.8634000000000004 1227.5789 120960 65959 1 0 5898240 4423680 4423680 4426507 4492800 330 150 212 216 1711 0 0 0 0 37 0 0 0 0 0 +3959 1783754371014682300 DEPTH 54 1 0.60998561990672207 1 8 1 8 0 0 113 14 2613 23664879 81600 863.80030822753906 5.8944000000000001 1301.0925999999999 120960 63439 1 0 5898240 4423680 4423680 4426476 4492800 669 150 306 729 759 0 0 0 0 14 0 0 0 0 0 +3960 1783754372265530700 DEPTH 42 1 0.70749913485500515 2 6 2 6 0 0 140 37 2598 23664866 81600 857.82337951660156 5.8372000000000002 1249.5948000000001 120960 43666 1 0 5898240 4423680 4423680 4426464 4492800 150 150 150 150 1998 0 0 0 0 37 0 0 0 0 0 +3961 1783754373558247800 DEPTH 13 1 0.68878275680089096 1 6 1 6 0 0 183 27 2509 23664805 81600 858.18690490722656 5.8286999999999995 1271.2761 120960 54504 1 0 5898240 4423680 4423680 4426403 4492800 302 155 194 283 1575 0 0 0 0 27 0 0 0 0 0 +3962 1783754374682598200 DEPTH 8 1 0.68723636330879401 2 5 2 5 1 0 223 19 2562 23664835 81600 868.68058776855469 5.8434000000000008 1091.5595000000001 120960 55176 1 0 5898240 4423680 4423680 4426433 4492800 278 150 156 166 1812 0 0 0 0 19 0 0 0 0 1 +3963 1783754375984760400 DEPTH 17 1 0.67444761117527452 0 7 0 7 0 0 190 15 2525 23664775 81600 856.121337890625 5.8571 1300.9656 120960 54456 1 0 5898240 4423680 4423680 4426374 4492800 211 156 168 269 1721 0 0 0 0 15 0 0 0 0 0 +3964 1783754377322706800 DEPTH 56 1 0.673145594550981 2 5 2 5 0 0 210 29 2580 23664832 81600 855.19871520996094 5.8798000000000004 1296.1323 120960 54920 1 0 5898240 4423680 4423680 4426431 4492800 492 156 184 379 1369 0 0 0 0 29 0 0 0 0 0 +3965 1783754378606411100 DEPTH 31 1 0.63927727404647372 2 6 2 6 0 0 125 8 2623 23664809 81600 866.2838134765625 5.8635000000000002 1282.5363 120960 65897 1 0 5898240 4423680 4423680 4426408 4492800 1040 150 191 395 847 0 0 0 0 8 0 0 0 0 0 +3966 1783754379999835900 DEPTH 9 1 0.62599544255400974 2 6 2 6 0 0 133 4 2623 23664841 81600 872.50761413574219 5.8526999999999996 1311.2687000000001 120960 66041 1 0 5898240 4423680 4423680 4426440 4492800 798 150 454 505 716 0 0 0 0 4 0 0 0 0 0 +3967 1783754381337552800 DEPTH 44 1 0.6051421930752956 2 7 2 7 0 0 154 24 2620 23664805 81600 868.95408630371094 5.8657000000000004 1311.3488 120960 65528 1 0 5898240 4423680 4423680 4426405 4492800 230 150 276 164 1800 0 0 0 0 24 0 0 0 0 0 +3968 1783754382586691600 DEPTH 42 1 0.68780556786217262 2 6 2 6 1 0 140 31 2590 23664789 81600 856.57817077636719 5.8864999999999998 1247.597 120960 30271 1 0 5898240 4423680 4423680 4426388 4492800 150 150 150 150 1990 0 0 0 0 31 0 0 0 0 1 +3969 1783754383611913500 DEPTH 38 1 0.68584690962459804 2 10 2 10 0 0 103 46 2559 23664850 81600 851.30400085449219 5.8574999999999999 1023.8976 120960 38869 1 0 5898240 4423680 4423680 4426448 4492800 150 150 150 150 1959 0 0 0 0 46 0 0 0 0 0 +3970 1783754384733081700 DEPTH 16 1 0.63554649104516914 2 6 2 6 0 0 178 33 2545 23664864 81600 868.78230285644531 5.8956999999999997 1120.0301999999999 120960 54985 1 0 5898240 4423680 4423680 4426463 4492800 161 155 156 383 1690 0 0 0 0 33 0 0 0 0 0 +3971 1783754385780413200 DEPTH 43 1 0.61091905454333961 3 12 3 12 1 0 129 16 2565 23664871 81600 870.8106689453125 5.8551000000000002 1046.1385 120960 60691 1 0 5898240 4423680 4423680 4426469 4492800 408 154 192 224 1587 3 0 0 0 13 2 0 0 0 0 +3972 1783754386828610300 DEPTH 35 1 0.60221135199205911 2 11 2 11 0 0 158 50 2550 23664855 81600 870.08665466308594 5.8548 1046.9983 120960 60777 1 0 5898240 4423680 4423680 4426453 4492800 454 150 157 346 1443 6 0 0 0 44 0 0 0 0 0 +3973 1783754387888224900 DEPTH 39 1 0.60139377327677646 3 8 3 8 0 0 172 23 2541 23664769 81600 869.65658569335938 5.8420000000000005 1042.9078999999999 120960 65824 1 0 5898240 4423680 4423680 4426367 4492800 228 150 162 158 1843 0 0 0 0 23 0 0 0 0 0 +3974 1783754389165632100 DEPTH 2 1 0.60024704275022378 2 8 2 8 0 0 140 27 2547 23664848 81600 870.89765930175781 5.8635000000000002 1250.0014000000001 120960 65562 1 0 5898240 4423680 4423680 4426446 4492800 156 150 150 150 1941 0 0 0 0 27 0 0 0 0 0 +3975 1783754390255787600 DEPTH 19 1 0.60016324150015454 2 11 2 11 0 0 126 21 2623 23664864 81600 865.91075134277344 5.9340000000000002 1048.8022000000001 120960 60196 1 0 5898240 4423680 4423680 4426463 4492800 204 150 150 156 1963 0 0 0 0 21 0 0 0 0 0 +3976 1783754390446558200 REFRESH 45 0 0.54720900111795845 2 7 2 7 0 0 142 5 425 3943911 55200 151.80390930175781 0.98180000000000001 189.52619999999999 20160 13479 0 0 983040 737280 737280 737511 748800 138 25 62 60 140 0 0 0 0 5 0 0 0 0 0 +3977 1783754390667832300 REFRESH 21 0 0.59384252969763196 0 10 0 10 0 0 177 12 414 3943955 55200 152.23295593261719 0.97450000000000003 204.92420000000001 20160 13329 0 0 983040 737280 737280 737555 748800 104 26 34 97 153 0 0 0 0 12 0 0 0 0 0 +3978 1783754390861144300 REFRESH 12 0 0.58834489959587133 3 8 3 8 0 0 183 6 417 3943884 55200 151.43321228027344 0.97560000000000002 180.7569 20160 12788 0 0 983040 737280 737280 737484 748800 138 26 44 93 116 0 0 0 0 6 0 0 0 0 0 +3979 1783754391058839500 REFRESH 55 0 0.59600169233175082 1 12 1 12 0 0 143 5 427 3943910 55200 152.56985473632812 0.97709999999999997 182.3056 20160 13276 0 0 983040 737280 737280 737509 748800 134 25 59 110 99 0 0 0 0 5 0 0 0 0 0 +3980 1783754391274297300 REFRESH 1 0 0.6457950694853597 1 7 1 7 0 0 126 1 424 3943917 55200 151.97593688964844 0.97440000000000004 214.34899999999999 20160 13495 0 0 983040 737280 737280 737517 748800 139 26 82 88 89 0 0 0 0 1 0 0 0 0 0 +3981 1783754391486319600 REFRESH 30 0 0.59670508673698697 1 9 1 9 0 0 135 9 413 3943888 55200 151.45181274414062 0.97950000000000004 186.74109999999999 20160 13412 0 0 983040 737280 737280 737488 748800 98 25 58 40 192 0 0 0 0 9 0 0 0 0 0 +3982 1783754391668159300 REFRESH 19 0 0.41925010515064431 2 11 2 11 0 0 127 10 419 3943903 55200 151.91757202148438 0.98099999999999998 180.6978 20160 12799 0 0 983040 737280 737280 737503 748800 95 25 26 38 235 0 0 0 0 10 0 0 0 0 0 +3983 1783754391916295800 REFRESH 52 0 0.59961281135208011 1 8 1 8 0 0 107 6 425 3943908 55200 150.69081115722656 0.97389999999999999 221.6524 20160 12799 0 0 983040 737280 737280 737508 748800 134 25 36 153 77 0 0 0 0 6 0 0 0 0 0 +3984 1783754392110481300 REFRESH 34 0 0.5803557799842991 1 13 1 13 0 0 104 5 432 3943894 55200 150.9171142578125 0.97950000000000004 179.0779 20160 11938 0 0 983040 737280 737280 737493 748800 152 25 62 69 124 0 0 0 0 5 0 0 0 0 0 +3985 1783754392405981700 REFRESH 56 0 0.73476788432689144 2 5 2 5 0 0 210 6 414 3943943 55200 150.56588745117188 0.97370000000000001 222.73660000000001 20160 13493 0 0 983040 737280 737280 737542 748800 180 26 47 65 96 0 0 0 0 6 0 0 0 0 0 +3986 1783754392613621000 REFRESH 28 0 0.59418708772654338 1 12 1 12 0 0 147 11 407 3943903 55200 151.60627746582031 0.99429999999999996 189.15940000000001 20160 12429 0 0 983040 737280 737280 737503 748800 166 26 31 30 154 0 0 0 0 11 0 0 0 0 0 +3987 1783754392848140500 REFRESH 31 0 0.60999632752171984 2 6 2 6 0 0 125 5 428 3943904 55200 150.14204406738281 0.99660000000000004 232.68790000000001 20160 13370 0 0 983040 737280 737280 737504 748800 214 25 32 76 81 0 0 0 0 5 0 0 0 0 0 +3988 1783754393054719600 REFRESH 7 0 0.59638816175143805 1 12 1 12 0 0 132 12 424 3943905 55200 151.33491516113281 0.98219999999999996 181.60560000000001 20160 12275 0 0 983040 737280 737280 737505 748800 156 26 29 33 180 0 0 0 0 12 0 0 0 0 0 +3989 1783754393248661200 REFRESH 29 0 0.59251680911507365 1 12 1 12 0 0 128 8 417 3943920 55200 150.81266784667969 0.98250000000000004 180.3546 20160 13053 0 0 983040 737280 737280 737520 748800 100 25 48 40 204 0 0 0 0 8 0 0 0 0 0 +3990 1783754393431983900 REFRESH 35 0 0.53112394921373951 2 11 2 11 0 0 158 12 419 3943914 55200 151.83973693847656 0.98129999999999995 182.1532 20160 12658 0 0 983040 737280 737280 737514 748800 168 25 29 99 98 1 0 0 0 11 0 0 0 0 0 +3991 1783754393626860600 REFRESH 40 0 0.57985204801704371 1 12 1 12 0 0 118 4 419 3943926 55200 151.91346740722656 0.97509999999999997 180.27250000000001 20160 13289 0 0 983040 737280 737280 737526 748800 160 25 42 93 99 0 0 0 0 4 0 0 0 0 0 +3992 1783754393809636600 REFRESH 43 0 0.56815837196794927 3 12 3 12 0 0 130 7 421 3943918 55200 152.05888366699219 0.97499999999999998 181.56659999999999 20160 12739 0 0 983040 737280 737280 737518 748800 174 26 42 65 114 0 0 0 0 7 0 0 0 0 0 +3993 1783754394023687200 REFRESH 14 0 0.59950115989583397 0 12 0 12 0 0 117 11 420 3943919 55200 151.43525695800781 0.97750000000000004 187.73650000000001 20160 12325 0 0 983040 737280 737280 737519 748800 143 26 31 52 168 0 0 0 0 11 0 0 0 0 0 +3994 1783754394251558600 REFRESH 17 0 0.77604848812201088 0 7 0 7 1 0 190 8 413 3943902 55200 151.72402954101562 0.97809999999999997 226.745 20160 13708 0 0 983040 737280 737280 737501 748800 111 26 40 110 126 0 0 0 0 8 0 0 0 0 1 +3995 1783754394447034100 REFRESH 0 0 0.5832154590290497 1 12 1 12 1 0 91 4 425 3943893 55200 151.14547729492188 0.98209999999999997 180.6763 20160 12881 0 0 983040 737280 737280 737493 748800 82 25 40 36 242 0 0 0 0 4 0 0 0 0 1 +3996 1783754394641241100 REFRESH 4 0 0.55412817565310446 1 13 1 13 0 0 49 3 416 3943923 55200 149.94125366210938 0.97119999999999995 178.1514 20160 13323 0 0 983040 737280 737280 737523 748800 26 25 35 36 294 0 0 0 0 3 0 0 0 0 0 +3997 1783754394838827100 REFRESH 36 0 0.59142790924219812 3 10 3 10 1 0 114 10 430 3943908 55200 151.91244506835938 0.98260000000000003 181.26429999999999 20160 12167 0 0 983040 737280 737280 737507 748800 235 25 37 50 83 0 0 0 0 10 0 0 0 0 1 +3998 1783754395085566400 REFRESH 44 0 0.60676753773086756 2 7 2 7 0 0 154 7 426 3943939 55200 152.05068969726562 0.98629999999999995 228.6157 20160 13481 0 0 983040 737280 737280 737538 748800 101 26 73 39 187 0 0 0 0 7 0 0 0 0 0 +3999 1783754395266382900 REFRESH 38 0 0.77627135543588865 2 10 2 10 0 0 103 5 413 3943936 55200 150.83827209472656 0.97689999999999999 179.42060000000001 20160 12892 0 0 983040 737280 737280 737535 748800 105 26 34 28 220 0 0 0 0 5 0 0 0 0 0 +4000 1783754395498539500 REFRESH 41 0 0.59825027003623155 1 10 1 10 0 0 110 7 418 3943913 55200 150.908935546875 0.97589999999999999 206.14940000000001 20160 12623 0 0 983040 737280 737280 737512 748800 134 26 48 51 159 0 0 0 0 7 0 0 0 0 0 +4001 1783754395694946200 REFRESH 49 0 0.59222389398276376 3 10 3 10 0 0 128 9 418 3943922 55200 150.27302551269531 0.97540000000000004 179.95079999999999 20160 12550 0 0 983040 737280 737280 737522 748800 126 26 65 48 153 0 0 0 0 9 0 0 0 0 0 +4002 1783754395889934900 REFRESH 32 0 0.59820827521602427 2 14 2 14 0 0 119 4 434 3943917 55200 150.80447387695312 0.98050000000000004 179.5367 20160 12119 0 0 983040 737280 737280 737516 748800 224 25 35 31 119 0 0 0 0 4 0 0 0 0 0 +4003 1783754396089491200 REFRESH 37 0 0.59948545548934351 1 12 1 12 1 0 140 7 434 3943915 55200 151.19769287109375 0.97999999999999998 180.53450000000001 20160 12339 0 0 983040 737280 737280 737515 748800 187 26 61 41 119 0 0 0 0 7 0 0 0 0 1 +4004 1783754396297427700 REFRESH 53 0 0.65527988289093198 0 8 0 8 0 0 149 6 417 3943879 55200 152.36505126953125 0.9768 191.86949999999999 20160 13527 0 0 983040 737280 737280 737479 748800 142 26 27 48 174 0 0 0 0 6 0 0 0 0 0 +4005 1783754396493044800 REFRESH 15 0 0.59417869496532894 3 12 3 12 0 0 99 4 416 3943883 55200 151.09324645996094 0.97460000000000002 180.083 20160 12183 0 0 983040 737280 737280 737483 748800 63 26 35 26 266 0 0 0 0 4 0 0 0 0 0 +4006 1783754396688785800 REFRESH 57 0 0.59325090351348342 2 12 2 12 0 0 123 5 416 3943932 55200 151.2806396484375 0.97909999999999997 180.29730000000001 20160 12488 0 0 983040 737280 737280 737532 748800 113 26 95 82 100 0 0 0 0 5 0 0 0 0 0 +4007 1783754396884752400 REFRESH 22 0 0.59413392669573573 3 11 3 11 0 0 123 9 425 3943902 55200 151.00108337402344 0.98109999999999997 180.55950000000001 20160 12351 0 0 983040 737280 737280 737502 748800 146 25 31 29 194 0 0 0 0 9 0 0 0 0 0 +4008 1783754397108383000 REFRESH 54 0 0.61275702101458074 1 8 1 8 0 0 113 9 426 3943920 55200 152.121337890625 0.98119999999999996 222.43969999999999 20160 13506 0 0 983040 737280 737280 737520 748800 137 25 62 127 75 0 0 0 0 9 0 0 0 0 0 +4009 1783754397308670500 REFRESH 50 0 0.58759268801692599 2 9 2 9 0 0 131 4 423 3943911 55200 150.91098022460938 0.97650000000000003 184.62440000000001 20160 12620 0 0 983040 737280 737280 737511 748800 130 25 40 46 182 0 0 0 0 4 0 0 0 0 0 +4010 1783754397512443300 REFRESH 42 0 0.84245999904602231 2 6 2 6 0 0 140 7 418 3943932 55200 152.04768371582031 0.97999999999999998 202.5934 20160 13404 0 0 983040 737280 737280 737532 748800 25 25 25 25 318 0 0 0 0 7 0 0 0 0 0 +4011 1783754397702031800 REFRESH 33 0 0.64880304826693103 1 7 1 7 0 0 183 3 418 3943924 55200 151.78547668457031 0.97260000000000002 187.99719999999999 20160 13319 0 0 983040 737280 737280 737524 748800 107 26 43 36 206 0 0 0 0 3 0 0 0 0 0 +4012 1783754397907219800 REFRESH 25 0 0.59043450423756605 3 11 3 11 0 0 115 8 423 3943911 55200 152.3189697265625 0.98080000000000001 181.4264 20160 12013 0 0 983040 737280 737280 737510 748800 112 25 61 76 149 0 0 0 0 8 0 0 0 0 0 +4013 1783754398092903300 REFRESH 39 0 0.60020527456170214 3 8 3 8 0 0 172 9 407 3943886 55200 152.95692443847656 0.99909999999999999 184.50389999999999 20160 13390 0 0 983040 737280 737280 737486 748800 95 28 31 32 221 0 0 0 0 9 0 0 0 0 0 +4014 1783754398279766100 REFRESH 16 0 0.71084390199158654 2 6 2 6 0 0 178 8 415 3943895 55200 152.98150634765625 0.97030000000000005 185.7037 20160 13586 0 0 983040 737280 737280 737495 748800 35 27 26 233 94 0 0 0 0 8 0 0 0 0 0 +4015 1783754398497378200 REFRESH 8 0 0.78153689020958839 2 5 2 5 0 0 223 5 413 3943923 55200 152.76748657226562 0.9758 185.14340000000001 20160 13508 0 0 983040 737280 737280 737523 748800 167 27 30 71 118 0 0 0 0 5 0 0 0 0 0 +4016 1783754398721326900 REFRESH 9 0 0.62403277894321185 2 6 2 6 0 0 134 5 435 3943938 55200 152.51968383789062 0.97529999999999994 222.7962 20160 13394 0 0 983040 737280 737280 737537 748800 146 25 89 80 95 0 0 0 0 5 0 0 0 0 0 +4017 1783754398923491200 REFRESH 3 0 0.59446050804188988 2 9 2 9 0 0 144 10 417 3943915 55200 151.30426025390625 0.9788 184.85159999999999 20160 13075 0 0 983040 737280 737280 737515 748800 190 25 37 65 100 0 0 0 0 10 0 0 0 0 0 +4018 1783754399175368100 REFRESH 11 0 0.65393976142190491 0 8 0 8 0 0 105 4 415 3943918 55200 150.99801635742188 0.97640000000000005 225.6473 20160 13530 0 0 983040 737280 737280 737518 748800 110 25 59 69 152 0 0 0 0 4 0 0 0 0 0 +4019 1783754399370796700 REFRESH 20 0 0.58385773943311048 2 11 2 11 0 0 118 8 435 3943907 55200 151.12704467773438 0.97929999999999995 180.26679999999999 20160 13067 0 0 983040 737280 737280 737506 748800 150 25 75 100 85 0 0 0 0 8 0 0 0 0 0 +4020 1783754399569189500 REFRESH 27 0 0.59829628378602273 0 14 0 14 0 0 146 6 413 3943922 55200 151.54585266113281 0.9798 180.97550000000001 20160 12349 0 0 983040 737280 737280 737522 748800 115 26 39 37 196 0 0 0 0 6 0 0 0 0 0 +4021 1783754399781750700 REFRESH 51 0 0.59261575075501627 3 12 3 12 0 0 92 7 424 3943900 55200 150.466552734375 1 179.404 20160 12943 0 0 983040 737280 737280 737500 748800 116 25 110 76 97 0 0 0 0 7 0 0 0 0 0 +4022 1783754399978620000 REFRESH 10 0 0.58701255749108583 1 10 1 10 0 0 119 3 430 3943910 55200 151.29702758789062 0.97670000000000001 181.1138 20160 13087 0 0 983040 737280 737280 737510 748800 244 25 39 40 82 0 0 0 0 3 0 0 0 0 0 +4023 1783754400174584600 REFRESH 58 0 0.59568679322847073 2 12 2 12 0 0 122 7 425 3943910 55200 152.14399719238281 0.98329999999999995 180.93000000000001 20160 12715 0 0 983040 737280 737280 737510 748800 116 26 70 75 138 1 0 0 0 6 0 0 0 0 0 +4024 1783754400370104900 REFRESH 18 0 0.59630980100597597 4 15 4 15 0 0 105 14 414 3943914 55200 151.33491516113281 0.97819999999999996 179.63749999999999 20160 12175 0 0 983040 737280 737280 737514 748800 39 25 25 27 298 0 0 0 0 14 0 0 0 0 0 +4025 1783754400575134900 REFRESH 13 0 0.78001329505776562 1 6 1 6 0 0 183 4 416 3943925 55200 151.62675476074219 0.9758 203.76779999999999 20160 13705 0 0 983040 737280 737280 737525 748800 143 26 53 95 99 0 0 0 0 4 0 0 0 0 0 +4026 1783754400780709700 REFRESH 6 0 0.5733586440186581 3 11 3 11 0 0 118 4 414 3943917 55200 151.95954895019531 0.98250000000000004 180.73580000000001 20160 12732 0 0 983040 737280 737280 737516 748800 26 25 25 25 313 0 0 0 0 4 0 0 0 0 0 +4027 1783754400977372300 REFRESH 24 0 0.59687269152123767 4 11 4 11 0 0 132 7 414 3943917 55200 151.09437561035156 0.97960000000000003 180.66460000000001 20160 11941 0 0 983040 737280 737280 737517 748800 80 27 39 55 213 0 0 0 0 7 0 0 0 0 0 +4028 1783754401173486100 REFRESH 26 0 0.59513694933914174 1 13 1 13 0 0 84 9 427 3943912 55200 151.79263305664062 0.97770000000000001 180.01840000000001 20160 12577 0 0 983040 737280 737280 737512 748800 59 25 39 60 244 1 0 0 0 8 0 0 0 0 0 +4029 1783754401367756600 REFRESH 5 0 0.59904093640212719 2 11 2 11 0 0 91 6 418 3943909 55200 151.50285339355469 0.97519999999999996 178.8964 20160 11859 0 0 983040 737280 737280 737509 748800 100 26 91 109 92 0 0 0 0 6 0 0 0 0 0 +4030 1783754401562821300 REFRESH 47 0 0.5888922515252113 2 11 2 11 0 0 112 9 423 3943915 55200 151.1065673828125 0.97929999999999995 179.6713 20160 12192 0 0 983040 737280 737280 737514 748800 148 26 51 35 163 0 0 0 0 9 0 0 0 0 0 +4031 1783754401751486800 REFRESH 2 0 0.60035164823711318 2 8 2 8 0 0 140 7 413 3943911 55200 151.81517028808594 0.97650000000000003 187.131 20160 13465 0 0 983040 737280 737280 737510 748800 37 25 70 116 165 0 0 0 0 7 0 0 0 0 0 +4032 1783754401957426900 REFRESH 46 0 0.59249669252833059 2 15 2 15 0 0 115 11 416 3943896 55200 151.77420043945312 0.98209999999999997 181.21170000000001 20160 12093 0 0 983040 737280 737280 737496 748800 122 26 64 37 167 0 0 0 0 11 0 0 0 0 0 +4033 1783754402153520200 REFRESH 23 0 0.59905589663669501 3 14 3 14 0 0 103 12 410 3943917 55200 151.79478454589844 0.97889999999999999 180.6711 20160 12031 0 0 983040 737280 737280 737517 748800 70 25 54 46 215 1 0 0 0 11 0 0 0 0 0 +4034 1783754402348421700 REFRESH 48 0 0.61778801068307199 2 9 2 9 0 0 154 9 413 3943929 55200 151.83360290527344 0.97819999999999996 193.66290000000001 20160 13026 0 0 983040 737280 737280 737529 748800 66 25 35 41 246 0 0 0 0 9 0 0 0 0 0 +4035 1783754403632754200 DEPTH 42 1 0.82313542626639702 2 6 2 6 0 0 141 26 2590 23664838 81600 869.94645690917969 5.8429000000000002 1258.4156 120960 65497 1 0 5898240 4423680 4423680 4426436 4492800 150 150 150 150 1990 0 0 0 0 26 0 0 0 0 0 +4036 1783754404970087800 DEPTH 17 1 0.77547054940760296 0 7 0 7 0 0 190 19 2525 23664810 81600 864.51547241210938 5.8492999999999995 1309.9411 120960 65768 1 0 5898240 4423680 4423680 4426410 4492800 214 156 169 247 1739 0 0 0 0 19 0 0 0 0 0 +4037 1783754406274517700 DEPTH 56 1 0.77224636085569243 2 5 2 5 0 0 211 24 2576 23664824 81600 863.53828430175781 5.8445 1303.1842999999999 120960 64928 1 0 5898240 4423680 4423680 4426423 4492800 538 156 186 347 1349 0 0 0 0 24 0 0 0 0 0 +4038 1783754407351778400 DEPTH 38 1 0.7535582770523519 2 10 2 10 0 0 105 50 2546 23664811 81600 864.45027160644531 5.8582999999999998 1033.7731000000001 120960 61527 1 0 5898240 4423680 4423680 4426409 4492800 150 150 150 150 1946 0 0 0 0 50 0 0 0 0 0 +4039 1783754408444827100 DEPTH 8 1 0.76716031903416049 2 5 2 5 0 0 223 28 2548 23664854 81600 877.43070983886719 5.8761000000000001 1091.903 120960 65982 1 0 5898240 4423680 4423680 4426453 4492800 381 152 163 201 1651 0 0 0 0 28 0 0 0 0 0 +4040 1783754409562278100 DEPTH 16 1 0.70450169085879055 2 6 2 6 0 0 178 21 2531 23664812 81600 873.40240478515625 5.8370999999999995 1116.2705000000001 120960 65891 1 0 5898240 4423680 4423680 4426412 4492800 162 155 156 378 1680 0 0 0 0 21 0 0 0 0 0 +4041 1783754410883654500 DEPTH 53 1 0.65200588360974276 0 8 0 8 0 0 149 31 2532 23664811 81600 868.68788146972656 5.875 1229.8595 120960 65528 1 0 5898240 4423680 4423680 4426410 4492800 229 156 150 176 1821 0 0 0 0 31 0 0 0 0 0 +4042 1783754412227067900 DEPTH 1 1 0.63888266657142678 1 7 1 7 0 0 126 8 2620 23664875 81600 870.20967102050781 5.8396999999999997 1317.8722 120960 66045 1 0 5898240 4423680 4423680 4426475 4492800 430 155 304 319 1412 0 0 0 0 8 0 0 0 0 0 +4043 1783754413508306000 DEPTH 13 1 0.7049985016277589 1 6 1 6 0 0 183 17 2504 23664841 81600 867.65986633300781 5.8391000000000011 1280.0458000000001 120960 66334 1 0 5898240 4423680 4423680 4426441 4492800 292 154 193 239 1626 0 0 0 0 17 0 0 0 0 0 +4044 1783754414815242200 DEPTH 11 1 0.64921289754906863 0 8 0 8 1 0 105 14 2524 23664841 81600 862.77043151855469 5.8529 1305.7958000000001 120960 65714 1 0 5898240 4423680 4423680 4426439 4492800 255 150 213 216 1690 0 0 0 0 14 0 0 0 0 1 +4045 1783754416053968400 DEPTH 33 1 0.64324163954511193 1 7 1 7 0 0 183 28 2547 23664816 81600 873.44854736328125 5.8372999999999999 1237.4871000000001 120960 65711 1 0 5898240 4423680 4423680 4426416 4492800 207 153 156 156 1875 0 0 0 0 28 0 0 0 0 0 +4046 1783754417305824300 DEPTH 42 1 0.66862146921197285 2 6 2 6 0 0 141 39 2585 23664840 81600 863.19718933105469 5.8448000000000002 1250.6552999999999 120960 54870 1 0 5898240 4423680 4423680 4426440 4492800 150 150 150 150 1985 0 0 0 0 39 0 0 0 0 0 +4047 1783754418611620300 DEPTH 31 1 0.6376605430696769 2 6 2 6 0 0 126 2 2625 23664890 81600 865.27589416503906 5.8481999999999994 1279.7325000000001 120960 65429 1 0 5898240 4423680 4423680 4426488 4492800 1042 150 192 400 841 0 0 0 0 2 0 0 0 0 0 +4048 1783754419967077500 DEPTH 9 1 0.62316107077905047 2 6 2 6 0 0 135 10 2633 23664843 81600 869.72418212890625 5.9009999999999998 1329.7209 120960 65356 1 0 5898240 4423680 4423680 4426441 4492800 793 150 445 519 726 0 0 0 0 10 0 0 0 0 0 +4049 1783754421309795600 DEPTH 54 1 0.6141355206124528 1 8 1 8 1 0 113 7 2606 23664866 81600 864.95333862304688 5.8456999999999999 1299.1320000000001 120960 64594 1 0 5898240 4423680 4423680 4426464 4492800 676 150 312 736 732 0 0 0 0 7 0 0 0 0 1 +4050 1783754422590809700 DEPTH 45 1 0.61281492021577288 2 7 2 7 0 0 144 29 2624 23664886 81600 873.16488647460938 5.8426 1230.1479999999999 120960 66004 1 0 5898240 4423680 4423680 4426483 4492800 260 150 210 223 1781 0 0 0 0 29 0 0 0 0 0 +4051 1783754423894475500 DEPTH 17 1 0.67686167877940695 0 7 0 7 0 0 190 18 2535 23664832 81600 854.82597351074219 5.8523999999999994 1302.5257999999999 120960 54357 1 0 5898240 4423680 4423680 4426431 4492800 217 156 170 239 1753 0 0 0 0 18 0 0 0 0 0 +4052 1783754425223174100 DEPTH 56 1 0.67387214161164 2 5 2 5 0 0 211 23 2567 23664845 81600 856.81765747070312 5.8699000000000003 1298.8166000000001 120960 54152 1 0 5898240 4423680 4423680 4426444 4492800 521 156 186 363 1341 0 0 0 0 23 0 0 0 0 0 +4053 1783754426362586200 DEPTH 8 1 0.6681643272808705 2 5 2 5 0 0 223 16 2565 23664838 81600 867.47390747070312 5.8448000000000002 1093.1177 120960 55764 1 0 5898240 4423680 4423680 4426436 4492800 289 150 157 181 1788 0 0 0 0 16 0 0 0 0 0 +4054 1783754427393098000 DEPTH 38 1 0.64793625517625675 2 10 2 10 0 0 108 40 2546 23664748 81600 856.34968566894531 5.8514999999999997 1029.3625999999999 120960 50754 1 0 5898240 4423680 4423680 4426345 4492800 150 150 150 150 1946 0 0 0 0 40 0 0 0 0 0 +4055 1783754428690940500 DEPTH 13 1 0.64643240573321326 1 6 1 6 0 0 183 17 2501 23664882 81600 858.75320434570312 5.8375999999999992 1266.9250999999999 120960 54105 1 0 5898240 4423680 4423680 4426480 4492800 297 155 188 294 1567 0 0 0 0 17 0 0 0 0 0 +4056 1783754430038137300 DEPTH 44 1 0.6052192494853047 2 7 2 7 0 0 154 14 2612 23664803 81600 871.13523864746094 5.8429000000000002 1320.4807000000001 120960 65232 1 0 5898240 4423680 4423680 4426403 4492800 192 150 230 164 1876 0 0 0 0 14 0 0 0 0 0 +4057 1783754431088167200 DEPTH 43 1 0.60266126790547347 3 12 3 12 1 0 130 28 2560 23664925 81600 871.02157592773438 5.8895999999999997 1048.8218999999999 120960 61182 1 0 5898240 4423680 4423680 4426524 4492800 416 155 192 229 1568 0 0 0 0 28 0 0 0 0 1 +4058 1783754432401320400 DEPTH 52 1 0.60041246978580032 1 8 1 8 0 0 107 9 2602 23664792 81600 860.81330871582031 5.8574999999999999 1286.7868000000001 120960 61771 1 0 5898240 4423680 4423680 4426391 4492800 647 150 211 955 639 0 0 0 0 9 0 0 0 0 0 +4059 1783754433669271800 DEPTH 42 1 0.67547514668879893 2 6 2 6 0 0 142 34 2580 23664762 81600 856.82325744628906 5.837299999999999 1242.9639999999999 120960 43349 1 0 5898240 4423680 4423680 4426360 4492800 150 150 150 150 1980 0 0 0 0 34 0 0 0 0 0 +4060 1783754434785981000 DEPTH 16 1 0.6507094387859742 2 6 2 6 0 0 179 38 2538 23664814 81600 864.45359802246094 5.8388000000000009 1115.5788 120960 55163 1 0 5898240 4423680 4423680 4426413 4492800 160 155 156 374 1693 0 0 0 0 38 0 0 0 0 0 +4061 1783754436069319400 DEPTH 48 1 0.61506530873065757 2 9 2 9 1 0 156 49 2562 23664823 81600 866.93580627441406 5.8449999999999989 1256.816 120960 64035 1 0 5898240 4423680 4423680 4426421 4492800 150 150 150 150 1962 0 0 0 0 49 0 0 0 0 1 +4062 1783754437395235300 DEPTH 17 1 0.63806464143555408 0 7 0 7 0 0 190 23 2532 23664872 81600 852.84864807128906 5.8523000000000005 1297.9434000000001 120960 43451 1 0 5898240 4423680 4423680 4426472 4492800 219 156 171 256 1730 0 0 0 0 23 0 0 0 0 0 +4063 1783754438443409200 DEPTH 35 1 0.60017825395419289 2 11 2 11 0 0 158 52 2554 23664873 81600 869.32452392578125 5.8571 1046.9808 120960 61634 1 0 5898240 4423680 4423680 4426471 4492800 481 150 156 333 1434 5 0 0 0 47 0 0 0 0 0 +4064 1783754439691249300 DEPTH 14 1 0.59981323639598116 0 12 0 12 0 0 118 33 2564 23664854 81600 867.56350708007812 5.8254999999999999 1228.0026 120960 58860 1 0 5898240 4423680 4423680 4426453 4492800 234 152 168 188 1822 0 0 0 0 33 0 0 0 0 0 +4065 1783754440730240000 DEPTH 19 1 0.59851784185913537 2 11 2 11 1 0 129 35 2616 23664847 81600 865.83811950683594 5.8588000000000005 1037.8264999999999 120960 60802 1 0 5898240 4423680 4423680 4426446 4492800 236 150 150 158 1922 0 0 0 0 35 0 0 0 0 1 +4066 1783754441868274300 DEPTH 23 1 0.59818022381460478 3 14 3 14 1 0 106 58 2532 23664830 81600 867.20103454589844 5.8603000000000005 1039.7788 120960 56972 1 0 5898240 4423680 4423680 4426428 4492800 161 150 150 155 1916 1 2 0 0 55 0 0 0 0 1 +4067 1783754442075393800 REFRESH 42 0 0.61354434395267343 2 6 2 6 0 0 142 8 411 3943901 55200 152.46028137207031 1.0006999999999999 205.93020000000001 20160 13502 0 0 983040 737280 737280 737500 748800 25 25 25 25 311 0 0 0 0 8 0 0 0 0 0 +4068 1783754442296458400 REFRESH 36 0 0.59238541581606885 3 10 3 10 0 0 114 4 437 3943910 55200 151.13215637207031 0.97619999999999996 180.02789999999999 20160 12152 0 0 983040 737280 737280 737510 748800 235 25 37 48 92 0 0 0 0 4 0 0 0 0 0 +4069 1783754442493873700 REFRESH 27 0 0.59342258610243825 0 14 0 14 0 0 146 8 411 3943912 55200 150.55052185058594 0.97929999999999995 179.68190000000001 20160 12358 0 0 983040 737280 737280 737512 748800 98 26 34 30 223 1 0 0 0 7 0 0 0 0 0 +4070 1783754442689947100 REFRESH 57 0 0.58832928476415236 2 12 2 12 0 0 123 10 416 3943885 55200 151.5888671875 0.97240000000000004 180.63679999999999 20160 12579 0 0 983040 737280 737280 737485 748800 115 26 99 82 94 0 0 0 0 10 0 0 0 0 0 +4071 1783754442885260200 REFRESH 37 0 0.59608994510907154 1 12 1 12 0 0 140 6 430 3943912 55200 150.74508666992188 0.98260000000000003 179.81639999999999 20160 12450 0 0 983040 737280 737280 737512 748800 188 26 61 39 116 0 0 0 0 6 0 0 0 0 0 +4072 1783754443109484600 REFRESH 52 0 0.49386073768919952 1 8 1 8 0 0 107 4 430 3943916 55200 151.64723205566406 0.97960000000000003 223.0035 20160 12942 0 0 983040 737280 737280 737516 748800 131 25 35 154 85 0 0 0 0 4 0 0 0 0 0 +4073 1783754443339031900 REFRESH 21 0 0.59543949063502177 0 10 0 10 0 0 177 7 417 3943919 55200 152.40704345703125 0.97489999999999999 203.4332 20160 13387 0 0 983040 737280 737280 737519 748800 106 26 34 104 147 0 0 0 0 7 0 0 0 0 0 +4074 1783754443520612800 REFRESH 23 0 0.42719868268533223 3 14 3 14 0 0 106 17 409 3943910 55200 150.898681640625 0.98470000000000002 180.398 20160 12052 0 0 983040 737280 737280 737510 748800 71 25 56 51 206 0 1 0 0 16 0 0 0 0 0 +4075 1783754443727350700 REFRESH 26 0 0.59536139948504885 1 13 1 13 0 0 84 3 427 3943901 55200 151.05024719238281 0.99839999999999995 179.75450000000001 20160 12447 0 0 983040 737280 737280 737501 748800 56 25 39 58 249 0 0 0 0 3 0 0 0 0 0 +4076 1783754443924523100 REFRESH 15 0 0.58835145709923786 3 12 3 12 0 0 99 9 421 3943889 55200 151.6976318359375 0.9738 180.9171 20160 12053 0 0 983040 737280 737280 737489 748800 63 26 35 26 271 0 0 0 0 9 0 0 0 0 0 +4077 1783754444119722500 REFRESH 48 0 0.5236620326010486 2 9 2 9 0 0 157 6 413 3943909 55200 151.55404663085938 0.9929 193.9811 20160 12537 0 0 983040 737280 737280 737509 748800 67 25 36 47 238 1 0 0 0 5 0 0 0 0 0 +4078 1783754444345584500 REFRESH 11 0 0.65090734717054644 0 8 0 8 0 0 105 6 413 3943913 55200 151.62471008300781 0.97230000000000005 224.74680000000001 20160 13418 0 0 983040 737280 737280 737513 748800 119 25 67 74 128 0 0 0 0 6 0 0 0 0 0 +4079 1783754444550676200 REFRESH 58 0 0.59264360959240403 2 12 2 12 0 0 122 7 428 3943905 55200 151.6759033203125 0.97419999999999995 180.11680000000001 20160 12685 0 0 983040 737280 737280 737504 748800 62 26 46 53 241 1 0 0 0 6 0 0 0 0 0 +4080 1783754444746036100 REFRESH 6 0 0.56860908365785756 3 11 3 11 0 0 119 4 414 3943916 55200 150.98495483398438 0.97270000000000001 179.26490000000001 20160 12752 0 0 983040 737280 737280 737516 748800 26 25 25 25 313 0 0 0 0 4 0 0 0 0 0 +4081 1783754444940846700 REFRESH 49 0 0.59212775335740153 3 10 3 10 0 0 128 5 420 3943891 55200 150.50863647460938 0.97799999999999998 179.61410000000001 20160 12527 0 0 983040 737280 737280 737491 748800 129 26 67 48 150 0 0 0 0 5 0 0 0 0 0 +4082 1783754445124564900 REFRESH 35 0 0.53907139080967614 2 11 2 11 0 0 158 8 420 3943902 55200 152.41317749023438 0.98019999999999996 182.53960000000001 20160 12899 0 0 983040 737280 737280 737501 748800 166 25 31 104 94 0 0 0 0 8 0 0 0 0 0 +4083 1783754445322413300 REFRESH 24 0 0.59388943017896911 4 11 4 11 0 0 133 7 411 3943920 55200 151.8602294921875 0.97150000000000003 181.11490000000001 20160 11925 0 0 983040 737280 737280 737520 748800 89 27 46 60 189 0 0 0 0 7 0 0 0 0 0 +4084 1783754445525935200 REFRESH 13 0 0.77771277084439872 1 6 1 6 0 0 183 3 415 3943939 55200 152.33842468261719 0.97640000000000005 202.3895 20160 13359 0 0 983040 737280 737280 737539 748800 141 26 55 97 96 0 0 0 0 3 0 0 0 0 0 +4085 1783754445736909100 REFRESH 3 0 0.59495437391229533 2 9 2 9 0 0 144 10 417 3943915 55200 151.46003723144531 1.0082 184.67750000000001 20160 13059 0 0 983040 737280 737280 737515 748800 194 25 37 65 96 0 0 0 0 10 0 0 0 0 0 +4086 1783754445933960300 REFRESH 22 0 0.59302861425316578 3 11 3 11 0 0 124 2 425 3943908 55200 151.05433654785156 0.97640000000000005 181.5453 20160 12460 0 0 983040 737280 737280 737508 748800 155 25 32 29 184 0 0 0 0 2 0 0 0 0 0 +4087 1783754446131268700 REFRESH 25 0 0.58941191940101967 3 11 3 11 0 0 115 6 424 3943906 55200 151.61651611328125 0.98040000000000005 181.14709999999999 20160 12049 0 0 983040 737280 737280 737506 748800 120 25 68 75 136 0 0 0 0 6 0 0 0 0 0 +4088 1783754446357051000 REFRESH 44 0 0.60669622340234941 2 7 2 7 0 0 154 3 424 3943919 55200 152.35379028320312 0.98060000000000003 224.589 20160 13398 0 0 983040 737280 737280 737519 748800 106 26 79 43 170 0 0 0 0 3 0 0 0 0 0 +4089 1783754446540613200 REFRESH 43 0 0.60055055635775478 3 12 3 12 0 0 130 6 417 3943893 55200 152.38348388671875 0.98160000000000003 182.40880000000001 20160 12920 0 0 983040 737280 737280 737493 748800 174 26 46 59 112 0 0 0 0 6 0 0 0 0 0 +4090 1783754446776639200 REFRESH 17 0 0.77913724233135284 0 7 0 7 0 0 190 3 413 3943913 55200 151.92063903808594 0.97929999999999995 225.40479999999999 20160 13418 0 0 983040 737280 737280 737513 748800 109 26 39 108 131 0 0 0 0 3 0 0 0 0 0 +4091 1783754446970488500 REFRESH 51 0 0.59009896117979643 3 12 3 12 0 0 92 5 425 3943914 55200 149.97299194335938 0.97909999999999997 179.24180000000001 20160 13064 0 0 983040 737280 737280 737514 748800 117 25 110 76 97 0 0 0 0 5 0 0 0 0 0 +4092 1783754447185942800 REFRESH 1 0 0.63957179296381295 1 7 1 7 0 0 126 4 426 3943910 55200 152.27186584472656 0.98089999999999999 214.3492 20160 13432 0 0 983040 737280 737280 737509 748800 141 26 84 89 86 0 0 0 0 4 0 0 0 0 0 +4093 1783754447390131900 REFRESH 5 0 0.59597433231122232 2 11 2 11 0 0 92 5 417 3943904 55200 150.87820434570312 0.9718 178.3844 20160 12677 0 0 983040 737280 737280 737504 748800 99 25 90 105 98 0 0 0 1 4 0 0 0 0 0 +4094 1783754447589002700 REFRESH 29 0 0.59003446412569227 1 12 1 12 0 0 128 7 418 3943919 55200 152.39474487304688 0.97130000000000005 182.27950000000001 20160 13108 0 0 983040 737280 737280 737519 748800 120 25 60 49 164 0 0 0 0 7 0 0 0 0 0 +4095 1783754447785353900 REFRESH 0 0 0.57953677506286239 1 12 1 12 0 0 91 5 427 3943892 55200 150.36312866210938 0.97399999999999998 179.05330000000001 20160 12755 0 0 983040 737280 737280 737492 748800 89 25 46 40 227 0 0 0 0 5 0 0 0 0 0 +4096 1783754447978777200 REFRESH 4 0 0.55261166597441236 1 13 1 13 1 0 49 3 423 3943929 55200 150.75123596191406 0.97629999999999995 178.03720000000001 20160 13168 0 0 983040 737280 737280 737529 748800 26 25 36 35 301 0 0 0 0 3 0 0 0 0 1 +4097 1783754448176185900 REFRESH 7 0 0.59653807294764083 1 12 1 12 0 0 132 6 419 3943918 55200 151.19981384277344 0.97689999999999999 181.65440000000001 20160 12346 0 0 983040 737280 737280 737518 748800 179 26 29 48 137 0 0 0 0 6 0 0 0 0 0 +4098 1783754448365794800 REFRESH 14 0 0.59987550994150829 0 12 0 12 0 0 118 8 420 3943912 55200 152.34970092773438 0.97150000000000003 188.47640000000001 20160 12579 0 0 983040 737280 737280 737512 748800 145 26 31 56 162 0 0 0 0 8 0 0 0 0 0 +4099 1783754448558113500 REFRESH 53 0 0.65304329658074889 0 8 0 8 0 0 149 2 418 3943908 55200 152.40908813476562 0.9748 191.0634 20160 13526 0 0 983040 737280 737280 737508 748800 158 26 27 54 153 0 0 0 0 2 0 0 0 0 0 +4100 1783754448773185600 REFRESH 50 0 0.58352144362757408 2 9 2 9 0 0 131 5 422 3943909 55200 151.31449890136719 0.9718 185.12430000000001 20160 12676 0 0 983040 737280 737280 737509 748800 177 25 42 63 115 0 0 0 0 5 0 0 0 0 0 +4101 1783754448971031600 REFRESH 28 0 0.59443916457303958 1 12 1 12 0 0 147 8 408 3943901 55200 152.31385803222656 0.98019999999999996 183.5488 20160 12511 0 0 983040 737280 737280 737500 748800 139 26 31 30 182 0 0 0 0 8 0 0 0 0 0 +4102 1783754449174286300 REFRESH 30 0 0.59641022698651147 1 9 1 8 1 0 135 4 413 3943897 55200 152.56474304199219 0.98089999999999999 188.16749999999999 20160 13407 0 0 983040 737280 737280 737497 748800 97 25 57 40 194 0 0 0 0 4 0 0 0 0 1 +4103 1783754449391812600 REFRESH 41 0 0.59691362234065282 1 10 1 10 0 0 110 8 419 3943893 55200 149.51834106445312 0.98340000000000005 202.5367 20160 12638 0 0 983040 737280 737280 737493 748800 140 26 51 54 148 0 0 0 0 8 0 0 0 0 0 +4104 1783754449591986800 REFRESH 46 0 0.59209034217424672 2 15 2 15 0 0 115 10 414 3943898 55200 151.48953247070312 0.98229999999999995 182.32810000000001 20160 12105 0 0 983040 737280 737280 737498 748800 115 26 62 37 174 0 0 0 0 10 0 0 0 0 0 +4105 1783754449802595700 REFRESH 2 0 0.59741011583313908 2 8 2 8 0 0 140 7 416 3943911 55200 151.54893493652344 0.98529999999999995 191.94399999999999 20160 13547 0 0 983040 737280 737280 737511 748800 28 25 66 103 194 0 0 0 0 7 0 0 0 0 0 +4106 1783754450043513400 REFRESH 56 0 0.77536708979820634 2 5 2 5 0 0 211 5 416 3943918 55200 152.23397827148438 0.98299999999999998 224.52500000000001 20160 13657 0 0 983040 737280 737280 737518 748800 183 26 47 64 96 0 0 0 0 5 0 0 0 0 0 +4107 1783754450249303000 REFRESH 10 0 0.58235880237478344 1 10 1 10 0 0 119 1 431 3943926 55200 151.62265014648438 0.99709999999999999 188.3853 20160 13087 0 0 983040 737280 737280 737526 748800 242 25 39 41 84 0 0 0 0 1 0 0 0 0 0 +4108 1783754450430622900 REFRESH 19 0 0.59764626687847289 2 11 2 11 0 0 129 6 420 3943915 55200 151.82131958007812 0.97470000000000001 180.1542 20160 12875 0 0 983040 737280 737280 737515 748800 93 25 26 38 238 1 0 0 0 5 0 0 0 0 0 +4109 1783754450626845800 REFRESH 40 0 0.57478971704924464 1 12 1 12 0 0 118 7 421 3943906 55200 151.60525512695312 0.97989999999999999 180.56819999999999 20160 13376 0 0 983040 737280 737280 737506 748800 156 25 42 93 105 0 0 0 0 7 0 0 0 0 0 +4110 1783754450850699400 REFRESH 54 0 0.61333242523940268 1 8 1 8 0 0 113 4 425 3943905 55200 151.299072265625 0.9859 222.62880000000001 20160 13391 0 0 983040 737280 737280 737504 748800 131 25 63 124 82 0 0 0 0 4 0 0 0 0 0 +4111 1783754451074586800 REFRESH 9 0 0.62737931118452384 2 6 2 6 0 0 135 5 434 3943909 55200 152.56781005859375 0.97940000000000005 222.7287 20160 13662 0 0 983040 737280 737280 737509 748800 146 25 91 79 93 0 0 0 0 5 0 0 0 0 0 +4112 1783754451279258400 REFRESH 34 0 0.57796769836180895 1 13 1 13 0 0 104 7 433 3943910 55200 151.762939453125 0.97870000000000001 179.62350000000001 20160 12382 0 0 983040 737280 737280 737510 748800 155 25 63 70 120 0 0 0 0 7 0 0 0 0 0 +4113 1783754451501232000 REFRESH 45 0 0.61376536068531651 2 7 2 7 0 0 144 6 425 3943880 55200 151.86653137207031 0.9728 189.05279999999999 20160 13415 0 0 983040 737280 737280 737480 748800 133 25 61 64 142 0 0 0 0 6 0 0 0 0 0 +4114 1783754451698378700 REFRESH 12 0 0.58631446826514466 3 8 3 8 0 0 183 9 415 3943918 55200 151.15571594238281 0.97550000000000003 181.29900000000001 20160 12815 0 0 983040 737280 737280 737518 748800 135 26 42 86 126 0 0 0 0 9 0 0 0 0 0 +4115 1783754451889660100 REFRESH 33 0 0.64525221201250704 1 7 1 7 0 0 183 6 418 3943888 55200 152.68147277832031 0.97430000000000005 190.0668 20160 13473 0 0 983040 737280 737280 737488 748800 108 26 44 38 202 0 0 0 0 6 0 0 0 0 0 +4116 1783754452086161500 REFRESH 32 0 0.59147245635615464 2 14 2 14 0 0 120 13 431 3943903 55200 151.25299072265625 0.98019999999999996 180.73750000000001 20160 12110 0 0 983040 737280 737280 737503 748800 181 25 35 31 159 0 0 0 0 13 0 0 0 0 0 +4117 1783754452280386700 REFRESH 47 0 0.5893007548058693 2 11 2 11 0 0 112 10 418 3943932 55200 149.95455932617188 0.97989999999999999 178.26990000000001 20160 12056 0 0 983040 737280 737280 737532 748800 145 26 40 33 174 0 0 0 0 10 0 0 0 0 0 +4118 1783754452472548600 REFRESH 8 0 0.77912191622539773 2 5 2 5 0 0 223 2 413 3943890 55200 152.78694152832031 0.997 191.02090000000001 20160 13408 0 0 983040 737280 737280 737490 748800 178 27 30 72 106 0 0 0 0 2 0 0 0 0 0 +4119 1783754452742884200 REFRESH 20 0 0.58235180127542008 2 11 2 11 0 0 118 4 434 3943899 55200 151.96978759765625 1.0024999999999999 187.56389999999999 20160 12912 0 0 983040 737280 737280 737498 748800 151 25 74 103 81 0 0 0 0 4 0 0 0 0 0 +4120 1783754452939166400 REFRESH 18 0 0.59547666205049565 4 15 4 15 1 0 105 11 416 3943909 55200 151.05946350097656 0.98129999999999995 180.72669999999999 20160 12094 0 0 983040 737280 737280 737508 748800 46 25 25 27 293 0 0 0 0 11 0 0 0 0 1 +4121 1783754453159588600 REFRESH 31 0 0.63252663608743909 2 6 2 6 0 0 127 2 425 3943928 55200 151.05638122558594 0.97950000000000004 218.79580000000001 20160 13359 0 0 983040 737280 737280 737528 748800 214 25 32 75 79 0 0 0 0 2 0 0 0 0 0 +4122 1783754453356143000 REFRESH 39 0 0.59822055518703743 3 8 3 8 0 0 172 12 411 3943933 55200 151.86944580078125 0.97440000000000004 180.8313 20160 13497 0 0 983040 737280 737280 737533 748800 69 28 31 32 251 0 0 0 0 12 0 0 0 0 0 +4123 1783754453536639500 REFRESH 38 0 0.72390229297254871 2 10 2 10 0 0 108 9 412 3943893 55200 150.2607421875 0.97729999999999995 179.3338 20160 12987 0 0 983040 737280 737280 737493 748800 140 26 44 35 167 0 0 0 0 9 0 0 0 0 0 +4124 1783754453723449000 REFRESH 16 0 0.6973250031353464 2 6 2 6 0 0 179 4 411 3943899 55200 152.985595703125 1.0004999999999999 185.57419999999999 20160 13450 0 0 983040 737280 737280 737499 748800 37 27 26 237 84 0 0 0 0 4 0 0 0 0 0 +4125 1783754453931953100 REFRESH 55 0 0.58993387417615784 1 12 1 12 0 0 145 9 432 3943950 55200 152.54322814941406 0.97450000000000003 183.2688 20160 13314 0 0 983040 737280 737280 737550 748800 128 25 58 105 116 0 0 0 0 9 0 0 0 0 0 +4126 1783754455267987200 DEPTH 17 1 0.77307859544934798 0 7 0 7 0 0 191 18 2523 23664842 81600 864.65742492675781 5.8440000000000003 1310.0763999999999 120960 65351 1 0 5898240 4423680 4423680 4426442 4492800 224 156 174 274 1695 0 0 0 0 18 0 0 0 0 0 +4127 1783754456585419600 DEPTH 13 1 0.771852033618046 1 6 1 6 0 0 184 20 2501 23664798 81600 864.25189208984375 5.8719999999999999 1273.827 120960 64930 1 0 5898240 4423680 4423680 4426398 4492800 325 156 193 246 1581 0 0 0 0 20 0 0 0 0 0 +4128 1783754457841607700 DEPTH 42 1 0.77084737094583178 2 6 2 6 1 0 144 32 2580 23664749 81600 870.49110412597656 5.8732999999999995 1254.8326999999999 120960 65977 1 0 5898240 4423680 4423680 4426349 4492800 150 150 150 150 1980 0 0 0 0 32 0 0 0 0 2 +4129 1783754459178276300 DEPTH 56 1 0.75162116467336759 2 5 2 5 0 0 212 25 2563 23664879 81600 865.36907958984375 5.8338999999999999 1305.7435 120960 65906 1 0 5898240 4423680 4423680 4426478 4492800 535 156 186 347 1339 0 0 0 0 25 0 0 0 0 0 +4130 1783754460414570400 DEPTH 30 1 0.71585498685625526 1 8 1 8 0 0 135 30 2526 23664860 81600 866.09510803222656 5.8685000000000009 1212.9408000000001 120960 65477 1 0 5898240 4423680 4423680 4426459 4492800 156 150 174 150 1896 0 0 0 0 30 0 0 0 0 0 +4131 1783754461715592800 DEPTH 11 1 0.64840755187182963 0 8 0 8 1 0 105 13 2521 23664800 81600 860.18269348144531 5.8709999999999996 1299.9208000000001 120960 64938 1 0 5898240 4423680 4423680 4426398 4492800 240 150 210 213 1708 0 0 0 0 13 0 0 0 0 1 +4132 1783754462974344800 DEPTH 53 1 0.64586472014706431 0 8 0 8 0 0 149 23 2525 23664853 81600 870.06439208984375 5.8612000000000002 1242.671 120960 65712 1 0 5898240 4423680 4423680 4426451 4492800 210 156 150 168 1841 0 0 0 0 23 0 0 0 0 0 +4133 1783754464309003700 DEPTH 1 1 0.63610830955402187 1 7 1 7 0 0 126 11 2622 23664929 81600 868.71553039550781 5.8322000000000003 1315.3071 120960 66060 1 0 5898240 4423680 4423680 4426528 4492800 418 155 314 320 1415 0 0 0 0 11 0 0 0 0 0 +4134 1783754465405879400 DEPTH 8 1 0.68186307125305767 2 5 2 5 0 0 223 22 2564 23664847 81600 875.85586547851562 5.8447999999999993 1095.7126000000001 120960 65911 1 0 5898240 4423680 4423680 4426447 4492800 310 150 156 176 1772 0 0 0 0 22 0 0 0 0 0 +4135 1783754466682737700 DEPTH 48 1 0.60822233560182393 2 9 2 9 0 0 157 27 2553 23664783 81600 864.721923828125 5.8443999999999994 1248.6187 120960 62687 1 0 5898240 4423680 4423680 4426382 4492800 150 150 150 150 1953 0 0 0 0 27 0 0 0 0 0 +4136 1783754468006840700 DEPTH 9 1 0.62603127467438102 2 6 2 6 0 0 135 5 2626 23664834 81600 868.3890380859375 5.8563000000000001 1298.1486 120960 65641 1 0 5898240 4423680 4423680 4426434 4492800 810 150 479 506 681 0 0 0 0 5 0 0 0 0 0 +4137 1783754469312755000 DEPTH 17 1 0.63454295796942484 0 7 0 7 0 0 191 20 2532 23664857 81600 857.83140563964844 5.8651999999999997 1304.6840999999999 120960 54169 1 0 5898240 4423680 4423680 4426456 4492800 221 156 174 277 1704 0 0 0 0 20 0 0 0 0 0 +4138 1783754470625483200 DEPTH 52 1 0.60198860068568638 1 8 1 8 0 0 107 12 2597 23664893 81600 860.17433166503906 5.8335999999999997 1286.8658 120960 61437 1 0 5898240 4423680 4423680 4426492 4492800 658 150 207 973 609 0 0 0 0 12 0 0 0 0 0 +4139 1783754472032840800 DEPTH 44 1 0.60099631346945415 2 7 2 7 0 0 154 19 2621 23664815 81600 866.91229248046875 5.8350999999999997 1311.0218 120960 64834 1 0 5898240 4423680 4423680 4426415 4492800 189 150 228 171 1883 0 0 0 0 19 0 0 0 0 0 +4140 1783754473356565700 DEPTH 54 1 0.60944186019900426 1 8 1 8 0 0 114 9 2607 23664848 81600 866.46066284179688 5.9009 1296.3407 120960 65335 1 0 5898240 4423680 4423680 4426443 4492800 686 150 310 814 647 0 0 0 0 9 0 0 0 0 0 +4141 1783754474588132500 DEPTH 14 1 0.59783636424500974 0 12 0 12 1 0 118 31 2571 23664890 81600 867.59445190429688 5.8517999999999999 1230.4302 120960 59455 1 0 5898240 4423680 4423680 4426490 4492800 245 153 168 193 1812 2 0 0 0 29 2 0 0 0 0 +4142 1783754475858525300 DEPTH 13 1 0.673489544206757 1 6 1 6 0 0 184 17 2510 23664781 81600 855.36358642578125 5.8465999999999996 1269.2045000000001 120960 54104 1 0 5898240 4423680 4423680 4426381 4492800 294 156 185 252 1623 0 0 0 0 17 0 0 0 0 0 +4143 1783754477108461300 DEPTH 42 1 0.67436794228600849 2 6 2 6 0 0 145 37 2581 23664823 81600 864.01333618164062 5.8472 1248.7440999999999 120960 55180 1 0 5898240 4423680 4423680 4426422 4492800 150 150 150 150 1981 0 0 0 0 37 0 0 0 0 0 +4144 1783754478405894600 DEPTH 56 1 0.67319649781406132 2 5 2 5 0 0 214 24 2591 23664869 81600 856.76544189453125 5.8574000000000002 1296.1965 120960 54712 1 0 5898240 4423680 4423680 4426468 4492800 494 156 186 423 1332 0 0 0 0 24 0 0 0 0 0 +4145 1783754479477056300 DEPTH 38 1 0.68003900874737977 2 10 2 10 1 0 108 46 2539 23664863 81600 865.97219848632812 5.8872999999999998 1051.4113 120960 62314 1 0 5898240 4423680 4423680 4426461 4492800 150 150 150 150 1939 0 0 0 0 46 0 0 0 0 1 +4146 1783754480725441700 DEPTH 33 1 0.64292002411324412 1 7 1 7 0 0 183 19 2531 23664770 81600 874.54820251464844 5.8688000000000002 1234.1645000000001 120960 65733 1 0 5898240 4423680 4423680 4426370 4492800 207 154 156 156 1858 0 0 0 0 19 0 0 0 0 0 +4147 1783754481873517200 DEPTH 16 1 0.66812562409582488 2 6 2 6 0 0 179 25 2536 23664771 81600 871.44438171386719 5.8521999999999998 1117.6963000000001 120960 65674 1 0 5898240 4423680 4423680 4426370 4492800 161 155 156 380 1684 0 0 0 0 25 0 0 0 0 0 +4148 1783754483158967700 DEPTH 45 1 0.61048660697538981 2 7 2 7 0 0 144 35 2615 23664886 81600 874.17753601074219 5.8597000000000001 1220.8696 120960 65783 1 0 5898240 4423680 4423680 4426485 4492800 288 150 215 219 1743 0 0 0 0 35 0 0 0 0 0 +4149 1783754484260888300 DEPTH 8 1 0.67328956509572468 2 5 2 5 1 0 224 33 2552 23664837 81600 868.68582153320312 5.8936999999999999 1100.7440999999999 120960 55157 1 0 5898240 4423680 4423680 4426436 4492800 268 151 160 196 1777 0 0 0 0 33 0 0 0 0 1 +4150 1783754485509344700 DEPTH 30 1 0.65675479814647209 1 8 1 8 0 0 135 28 2538 23664824 81600 860.39669799804688 5.8506999999999998 1220.2289000000001 120960 54679 1 0 5898240 4423680 4423680 4426422 4492800 156 150 174 150 1908 0 0 0 0 28 0 0 0 0 0 +4151 1783754486856739000 DEPTH 17 1 0.66582566044253555 0 7 0 7 0 0 192 23 2535 23664826 81600 853.20600891113281 5.8757999999999999 1303.3805 120960 43232 1 0 5898240 4423680 4423680 4426423 4492800 223 156 171 314 1671 0 0 0 0 23 0 0 0 0 0 +4152 1783754488140007300 DEPTH 31 1 0.62775118436907418 2 6 2 6 0 0 127 8 2631 23664865 81600 866.74967956542969 5.8525999999999998 1282.0971 120960 65173 1 0 5898240 4423680 4423680 4426462 4492800 1047 150 192 412 830 0 0 0 0 8 0 0 0 0 0 +4153 1783754489437842600 DEPTH 13 1 0.63491558064484199 1 6 1 6 0 0 184 14 2502 23664802 81600 853.07290649414062 5.8358999999999996 1268.2148 120960 43209 1 0 5898240 4423680 4423680 4426402 4492800 309 156 188 303 1546 0 0 0 0 14 0 0 0 0 0 +4154 1783754490522609900 DEPTH 39 1 0.5971770895799049 3 8 3 8 0 0 172 32 2518 23664849 81600 869.2757568359375 5.8601000000000001 1045.5808 120960 65361 1 0 5898240 4423680 4423680 4426448 4492800 228 151 163 161 1815 0 0 0 0 32 0 0 0 0 0 +4155 1783754491820001100 DEPTH 41 1 0.59645576736644323 1 10 1 10 1 0 110 29 2576 23664767 81600 856.99406433105469 5.8743999999999996 1272.0934 120960 60899 1 0 5898240 4423680 4423680 4426365 4492800 443 153 222 213 1545 0 0 0 0 29 0 0 0 0 1 +4156 1783754492855780000 DEPTH 23 1 0.59636080861943364 3 14 3 14 1 0 108 46 2523 23664805 81600 865.26783752441406 5.8691000000000004 1034.1822 120960 57072 1 0 5898240 4423680 4423680 4426402 4492800 162 150 150 158 1903 0 0 0 0 46 0 0 0 0 1 +4157 1783754493928230700 DEPTH 35 1 0.59610979109386641 2 11 2 11 0 0 158 44 2547 23664820 81600 868.5906982421875 5.8497999999999992 1045.6744000000001 120960 61729 1 0 5898240 4423680 4423680 4426419 4492800 464 150 158 339 1436 1 0 0 0 43 0 0 0 0 0 +4158 1783754494121280500 REFRESH 32 0 0.591082299504611 2 14 2 14 0 0 120 8 431 3943910 55200 151.65440368652344 0.97889999999999999 180.09010000000001 20160 12201 0 0 983040 737280 737280 737510 748800 223 25 35 31 117 0 0 0 0 8 0 0 0 0 0 +4159 1783754494320545300 REFRESH 43 0 0.59459865070336404 3 12 3 12 0 0 130 9 415 3943923 55200 151.85612487792969 0.97309999999999997 183.01939999999999 20160 12874 0 0 983040 737280 737280 737523 748800 165 26 45 62 117 0 0 0 0 9 0 0 0 0 0 +4160 1783754494501791400 REFRESH 38 0 0.59887641023297655 2 10 2 10 0 0 108 9 411 3943934 55200 151.36256408691406 0.98070000000000002 180.0453 20160 12962 0 0 983040 737280 737280 737534 748800 120 26 36 30 199 0 0 0 0 9 0 0 0 0 0 +4161 1783754494709957100 REFRESH 28 0 0.59240520666795993 1 12 1 12 0 0 147 9 409 3943869 55200 152.78591918945312 0.97619999999999996 182.59809999999999 20160 12483 0 0 983040 737280 737280 737467 748800 163 26 31 31 158 0 0 0 0 9 0 0 0 0 0 +4162 1783754494935737100 REFRESH 17 0 0.63693484218995067 0 7 0 7 0 0 192 3 413 3943886 55200 151.41888427734375 0.9778 224.65469999999999 20160 13696 0 0 983040 737280 737280 737485 748800 109 26 41 111 126 0 0 0 0 3 0 0 0 0 0 +4163 1783754495172240400 REFRESH 44 0 0.59273700408180674 2 7 2 7 0 0 154 6 427 3943906 55200 153.23545837402344 0.97850000000000004 226.68360000000001 20160 13484 0 0 983040 737280 737280 737503 748800 101 26 74 40 186 0 0 0 0 6 0 0 0 0 0 +4164 1783754495398245400 REFRESH 9 0 0.62475841176874258 2 6 2 6 0 0 135 3 432 3943919 55200 152.14285278320312 0.98050000000000004 224.8587 20160 13671 0 0 983040 737280 737280 737518 748800 149 25 91 83 84 0 0 0 0 3 0 0 0 0 0 +4165 1783754495595219600 REFRESH 27 0 0.59104690641737467 0 14 0 14 0 0 146 10 416 3943914 55200 151.17926025390625 0.97599999999999998 181.48060000000001 20160 12387 0 0 983040 737280 737280 737514 748800 110 26 40 38 202 0 0 0 0 10 0 0 0 0 0 +4166 1783754495782721800 REFRESH 8 0 0.69796387640282709 2 5 2 5 0 0 224 7 414 3943930 55200 153.52627563476562 0.97940000000000005 186.3698 20160 13500 0 0 983040 737280 737280 737530 748800 163 27 30 70 124 0 0 0 0 7 0 0 0 0 0 +4167 1783754495998106100 REFRESH 41 0 0.46782000474934804 1 10 1 10 0 0 110 6 416 3943925 55200 151.26118469238281 0.97709999999999997 205.48320000000001 20160 12332 0 0 983040 737280 737280 737524 748800 135 26 52 53 150 0 0 0 0 6 0 0 0 0 0 +4168 1783754496193256200 REFRESH 42 0 0.76434480726191611 2 6 2 6 0 0 145 8 423 3943922 55200 151.55516052246094 0.98080000000000001 193.92439999999999 20160 13549 0 0 983040 737280 737280 737522 748800 25 25 25 25 323 0 0 0 0 8 0 0 0 0 0 +4169 1783754496421570700 REFRESH 21 0 0.59379465766878503 0 10 0 10 0 0 178 7 418 3943897 55200 151.6021728515625 0.97550000000000003 202.62620000000001 20160 13293 0 0 983040 737280 737280 737497 748800 113 26 35 104 140 0 0 0 0 7 0 0 0 0 0 +4170 1783754496614112800 REFRESH 48 0 0.60717260988665611 2 9 2 9 0 0 157 11 414 3943892 55200 150.67852783203125 0.97360000000000002 191.29300000000001 20160 14197 0 0 983040 737280 737280 737492 748800 68 25 37 46 238 0 0 0 0 11 0 0 0 0 0 +4171 1783754496843881100 REFRESH 13 0 0.70617099857225085 1 6 1 6 0 0 184 4 414 3943903 55200 152.23397827148438 0.9788 203.1113 20160 13682 0 0 983040 737280 737280 737503 748800 142 26 55 96 95 0 0 0 0 4 0 0 0 0 0 +4172 1783754497063416100 REFRESH 31 0 0.57936316716749592 2 6 2 6 0 0 127 5 425 3943881 55200 151.39634704589844 0.98119999999999996 218.37780000000001 20160 13648 0 0 983040 737280 737280 737481 748800 202 25 32 79 87 0 0 0 0 5 0 0 0 0 0 +4173 1783754497289285600 REFRESH 52 0 0.60611877412830806 1 8 1 8 0 0 107 6 428 3943919 55200 150.89765930175781 0.97419999999999995 224.59739999999999 20160 12823 0 0 983040 737280 737280 737519 748800 132 25 37 153 81 0 0 0 0 6 0 0 0 0 0 +4174 1783754497490918800 REFRESH 49 0 0.58795361555838954 3 10 3 10 0 0 128 9 418 3943932 55200 151.06866455078125 0.97909999999999997 180.27940000000001 20160 12535 0 0 983040 737280 737280 737532 748800 141 26 70 56 125 0 0 0 0 9 0 0 0 0 0 +4175 1783754497673853600 REFRESH 35 0 0.52519004510826628 2 11 2 11 0 0 160 11 420 3943876 55200 151.70355224609375 1.0226999999999999 181.76580000000001 20160 12887 0 0 983040 737280 737280 737476 748800 165 25 31 109 90 0 0 0 0 11 0 0 0 0 0 +4176 1783754497875400600 REFRESH 3 0 0.5953635332927838 2 9 2 9 0 0 144 8 419 3943927 55200 152.20326232910156 0.97699999999999998 185.5343 20160 13070 0 0 983040 737280 737280 737527 748800 196 25 37 65 96 0 0 0 0 8 0 0 0 0 0 +4177 1783754498085680400 REFRESH 0 0 0.57702810820752726 1 12 1 12 0 0 91 5 429 3943886 55200 150.1685791015625 0.97450000000000003 178.32159999999999 20160 12761 0 0 983040 737280 737280 737486 748800 90 25 44 38 232 0 0 0 0 5 0 0 0 0 0 +4178 1783754498287749400 REFRESH 2 0 0.59468748099536817 2 8 2 8 0 0 140 10 410 3943922 55200 152.39372253417969 0.97219999999999995 186.8365 20160 13454 0 0 983040 737280 737280 737522 748800 35 25 69 116 165 0 0 0 0 10 0 0 0 0 0 +4179 1783754498482599900 REFRESH 20 0 0.57679286969602561 2 11 2 11 0 0 118 4 428 3943872 55200 151.02975463867188 0.98070000000000002 180.25059999999999 20160 13067 0 0 983040 737280 737280 737472 748800 150 25 73 102 78 0 0 0 0 4 0 0 0 0 0 +4180 1783754498708388400 REFRESH 54 0 0.61087120201637979 1 8 1 8 1 0 114 8 425 3943888 55200 151.55711364746094 0.97489999999999999 224.52879999999999 20160 13333 0 0 983040 737280 737280 737487 748800 133 25 64 129 74 0 0 0 0 8 0 0 0 0 1 +4181 1783754498897462800 REFRESH 45 0 0.61145783285589284 2 7 2 7 0 0 144 8 426 3943903 55200 152.01689147949219 0.9758 187.48939999999999 20160 13383 0 0 983040 737280 737280 737503 748800 145 25 64 62 130 0 0 0 0 8 0 0 0 0 0 +4182 1783754499104838700 REFRESH 10 0 0.57603420638290692 1 10 1 10 0 0 119 2 429 3943895 55200 151.71685791015625 0.97609999999999997 182.08070000000001 20160 13092 0 0 983040 737280 737280 737495 748800 242 25 39 41 82 0 0 0 0 2 0 0 0 0 0 +4183 1783754499299774500 REFRESH 40 0 0.57302164398940536 1 12 1 12 1 0 118 8 424 3943924 55200 150.58944702148438 0.97540000000000004 179.42070000000001 20160 13313 0 0 983040 737280 737280 737524 748800 163 25 42 97 97 0 0 0 0 8 0 0 0 0 1 +4184 1783754499496773700 REFRESH 46 0 0.59161632030510125 2 15 2 15 0 0 115 7 413 3943912 55200 151.71481323242188 0.98070000000000002 181.54239999999999 20160 12122 0 0 983040 737280 737280 737512 748800 122 26 65 38 162 0 0 0 0 7 0 0 0 0 0 +4185 1783754499714806300 REFRESH 1 0 0.63895083252654561 1 7 1 7 0 0 126 4 428 3943915 55200 151.79367065429688 0.97789999999999999 216.68680000000001 20160 13514 0 0 983040 737280 737280 737515 748800 134 26 79 85 104 0 0 0 0 4 0 0 0 0 0 +4186 1783754499909977400 REFRESH 18 0 0.594505574717199 4 15 4 15 0 0 105 8 417 3943906 55200 150.34367370605469 0.97619999999999996 179.06780000000001 20160 12192 0 0 983040 737280 737280 737505 748800 40 25 25 27 300 0 0 0 0 8 0 0 0 0 0 +4187 1783754500104602700 REFRESH 34 0 0.57752496422461352 1 13 1 13 0 0 104 5 427 3943897 55200 150.15116882324219 0.98040000000000005 178.5299 20160 13028 0 0 983040 737280 737280 737497 748800 149 25 52 61 140 0 0 0 0 5 0 0 0 0 0 +4188 1783754500297598000 REFRESH 53 0 0.64739173599821487 0 8 0 8 0 0 149 10 419 3943907 55200 152.17459106445312 0.98229999999999995 191.3554 20160 13531 0 0 983040 737280 737280 737507 748800 157 26 27 56 153 0 0 0 0 10 0 0 0 0 0 +4189 1783754500493862200 REFRESH 47 0 0.59049939033069154 2 11 2 11 0 0 112 9 422 3943910 55200 151.19052124023438 0.98119999999999996 179.94710000000001 20160 12028 0 0 983040 737280 737280 737510 748800 148 26 54 37 157 1 0 0 0 8 0 0 0 0 0 +4190 1783754500705869700 REFRESH 26 0 0.58961622604000474 1 13 1 13 0 0 84 3 427 3943935 55200 151.014404296875 0.9798 178.93510000000001 20160 12488 0 0 983040 737280 737280 737535 748800 50 25 38 53 261 0 0 0 0 3 0 0 0 0 0 +4191 1783754500931947200 REFRESH 11 0 0.6501099548922511 0 8 0 8 0 0 105 5 412 3943900 55200 151.54176330566406 0.98180000000000001 224.92250000000001 20160 13360 0 0 983040 737280 737280 737500 748800 102 25 59 69 157 0 0 0 0 5 0 0 0 0 0 +4192 1783754501156986500 REFRESH 56 0 0.77463411759162115 2 5 2 5 0 0 214 3 414 3943897 55200 152.29029846191406 0.9819 223.8305 20160 13524 0 0 983040 737280 737280 737496 748800 184 26 48 66 90 0 0 0 0 3 0 0 0 0 0 +4193 1783754501362697800 REFRESH 25 0 0.58644785788281784 3 11 3 11 0 0 115 6 421 3943910 55200 151.79673767089844 0.97719999999999996 180.9768 20160 12068 0 0 983040 737280 737280 737509 748800 114 25 65 74 143 0 0 0 0 6 0 0 0 0 0 +4194 1783754501557835600 REFRESH 6 0 0.56438427716791217 3 11 3 11 0 0 119 14 413 3943901 55200 151.68511962890625 0.98070000000000002 179.96260000000001 20160 12682 0 0 983040 737280 737280 737501 748800 26 25 25 25 312 0 0 0 0 14 0 0 0 0 0 +4195 1783754501738623000 REFRESH 23 0 0.59560110467882432 3 14 3 14 0 0 108 15 410 3943919 55200 151.02156066894531 0.97609999999999997 179.61709999999999 20160 12157 0 0 983040 737280 737280 737519 748800 77 25 42 47 219 0 0 0 0 15 0 0 0 0 0 +4196 1783754501927913900 REFRESH 30 0 0.69854341690249733 1 8 1 8 0 0 135 4 413 3943900 55200 152.90470886230469 0.98470000000000002 188.12799999999999 20160 13530 0 0 983040 737280 737280 737499 748800 77 25 49 37 225 0 0 0 0 4 0 0 0 0 0 +4197 1783754502222364700 REFRESH 29 0 0.58669872210281393 1 12 1 12 0 0 128 8 412 3943926 55200 152.00563049316406 0.97819999999999996 181.03059999999999 20160 13154 0 0 983040 737280 737280 737526 748800 121 25 60 50 156 0 0 0 0 8 0 0 0 0 0 +4198 1783754502417740100 REFRESH 12 0 0.58725332481909565 3 8 3 8 0 0 183 8 413 3943890 55200 151.27253723144531 0.98160000000000003 181.32339999999999 20160 12792 0 0 983040 737280 737280 737490 748800 141 26 44 98 104 0 0 0 0 8 0 0 0 0 0 +4199 1783754502614875600 REFRESH 22 0 0.58500898504501841 3 11 3 11 0 0 124 6 424 3943896 55200 151.66873168945312 0.97299999999999998 181.2953 20160 12389 0 0 983040 737280 737280 737496 748800 152 25 32 29 186 0 0 0 0 6 0 0 0 0 0 +4200 1783754502804674000 REFRESH 5 0 0.5921997516281865 2 11 2 11 0 0 92 9 418 3943928 55200 150.22079467773438 0.98080000000000001 178.2277 20160 13635 0 0 983040 737280 737280 737528 748800 97 25 90 114 92 0 0 0 1 8 0 0 0 0 0 +4201 1783754503001901200 REFRESH 7 0 0.59254593686740265 1 12 1 12 1 0 132 10 427 3943933 55200 151.10450744628906 0.97729999999999995 181.9846 20160 12318 0 0 983040 737280 737280 737533 748800 179 26 29 44 149 0 0 0 0 10 0 0 0 0 1 +4202 1783754503193064800 REFRESH 33 0 0.64481195473336439 1 7 1 7 0 0 183 7 421 3943920 55200 152.98867797851562 0.97660000000000002 189.9853 20160 13597 0 0 983040 737280 737280 737520 748800 102 26 45 36 212 0 0 0 0 7 0 0 0 0 0 +4203 1783754503411656400 REFRESH 55 0 0.58821373192279691 1 12 1 12 0 0 146 10 427 3943889 55200 152.4849853515625 0.97550000000000003 182.23560000000001 20160 13229 0 0 983040 737280 737280 737489 748800 127 25 56 108 111 0 0 0 0 10 0 0 0 0 0 +4204 1783754503609165000 REFRESH 57 0 0.58897250113337862 2 12 2 12 0 0 123 9 417 3943922 55200 151.85920715332031 0.97219999999999995 180.66290000000001 20160 12422 0 0 983040 737280 737280 737520 748800 118 26 99 86 88 0 0 0 0 9 0 0 0 0 0 +4205 1783754503814000900 REFRESH 51 0 0.58582498334366373 3 12 3 12 0 0 92 6 426 3943896 55200 151.30419921875 0.98219999999999996 179.72399999999999 20160 12838 0 0 983040 737280 737280 737496 748800 115 25 106 77 103 0 0 0 0 6 0 0 0 0 0 +4206 1783754504010583600 REFRESH 58 0 0.5899777336539016 2 12 2 12 0 0 123 7 429 3943891 55200 151.09017944335938 0.99619999999999997 180.19460000000001 20160 12623 0 0 983040 737280 737280 737491 748800 113 26 62 67 161 0 0 0 0 7 0 0 0 0 0 +4207 1783754504201066200 REFRESH 14 0 0.59799542826623009 0 12 0 12 1 0 118 5 419 3943921 55200 152.04762268066406 0.97440000000000004 189.33439999999999 20160 12721 0 0 983040 737280 737280 737521 748800 143 26 31 51 168 1 0 0 0 4 1 0 0 0 0 +4208 1783754504384353000 REFRESH 39 0 0.59620651638570354 3 8 3 8 0 0 172 8 410 3943904 55200 152.49920654296875 0.97360000000000002 182.09209999999999 20160 13535 0 0 983040 737280 737280 737503 748800 111 28 31 36 204 0 0 0 0 8 0 0 0 0 0 +4209 1783754504591737800 REFRESH 37 0 0.59209857888358586 1 12 1 12 0 0 140 11 432 3943898 55200 151.15286254882812 0.97889999999999999 180.86750000000001 20160 12428 0 0 983040 737280 737280 737498 748800 187 26 60 41 118 0 0 0 0 11 0 0 0 0 0 +4210 1783754504787492800 REFRESH 4 0 0.55114286151185121 1 13 1 13 0 0 49 1 421 3943904 55200 149.78253173828125 0.97640000000000005 176.88489999999999 20160 13248 0 0 983040 737280 737280 737503 748800 26 25 35 34 301 0 0 0 0 1 0 0 0 0 0 +4211 1783754504983779300 REFRESH 24 0 0.59127554203560062 4 11 4 11 0 0 133 8 409 3943918 55200 150.4163818359375 0.97740000000000005 179.71340000000001 20160 12048 0 0 983040 737280 737280 737518 748800 84 27 39 58 201 0 0 0 0 8 0 0 0 0 0 +4212 1783754505186632700 REFRESH 50 0 0.58081050834264203 2 9 2 9 0 0 131 3 424 3943897 55200 152.05888366699219 0.97960000000000003 187.16319999999999 20160 12595 0 0 983040 737280 737280 737497 748800 160 25 41 56 142 0 0 0 0 3 0 0 0 0 0 +4213 1783754505373178900 REFRESH 16 0 0.68587191532452296 2 6 2 6 0 0 179 4 414 3943898 55200 152.40499877929688 0.96989999999999998 185.3631 20160 13601 0 0 983040 737280 737280 737498 748800 35 27 26 228 98 0 0 0 0 4 0 0 0 0 0 +4214 1783754505576857000 REFRESH 15 0 0.58816696052053208 3 12 3 12 0 0 100 11 420 3943885 55200 152.09779357910156 0.97850000000000004 181.6241 20160 12023 0 0 983040 737280 737280 737485 748800 65 26 35 26 268 0 0 0 0 11 0 0 0 0 0 +4215 1783754505773931500 REFRESH 36 0 0.58733528989292805 3 10 3 10 0 0 114 6 435 3943901 55200 151.80902099609375 0.98380000000000001 180.30000000000001 20160 12172 0 0 983040 737280 737280 737501 748800 240 25 38 49 83 0 0 0 0 6 0 0 0 0 0 +4216 1783754505969770000 REFRESH 19 0 0.59292002596816962 2 11 2 11 0 0 131 10 420 3943903 55200 150.940673828125 0.97950000000000004 180.2372 20160 12796 0 0 983040 737280 737280 737503 748800 122 25 26 43 204 0 0 0 0 10 0 0 0 0 0 +4217 1783754507060543300 DEPTH 8 1 0.77576757844037403 2 5 2 5 0 0 224 26 2546 23664917 81600 876.57472229003906 5.9253 1089.5961 120960 66388 1 0 5898240 4423680 4423680 4426516 4492800 411 152 164 209 1610 2 0 0 0 24 0 0 0 0 0 +4218 1783754508338896800 DEPTH 13 1 0.77131359287022205 1 6 1 6 0 0 184 12 2504 23664745 81600 866.80369567871094 5.8412000000000006 1277.1990000000001 120960 65852 1 0 5898240 4423680 4423680 4426343 4492800 317 156 196 250 1585 0 0 0 0 12 0 0 0 0 0 +4219 1783754509676893800 DEPTH 17 1 0.77097542321686652 0 7 0 7 0 0 192 18 2532 23664880 81600 865.1673583984375 5.8674999999999997 1313.1423 120960 65327 1 0 5898240 4423680 4423680 4426477 4492800 222 156 168 253 1733 0 0 0 0 18 0 0 0 0 0 +4220 1783754511013496500 DEPTH 56 1 0.76885789978713603 2 5 2 5 0 0 214 28 2582 23664885 81600 862.76913452148438 5.8745000000000003 1316.0976000000001 120960 65684 1 0 5898240 4423680 4423680 4426484 4492800 558 156 186 363 1319 0 0 0 0 28 0 0 0 0 0 +4221 1783754512294211500 DEPTH 42 1 0.75330884986629243 2 6 2 6 0 0 145 26 2582 23664869 81600 869.42121887207031 5.8651999999999997 1253.6533999999999 120960 65839 1 0 5898240 4423680 4423680 4426466 4492800 150 150 150 150 1982 0 0 0 0 26 0 0 0 0 0 +4222 1783754513396581200 DEPTH 38 1 0.68739319831623069 2 10 2 10 0 0 111 37 2547 23664777 81600 864.28059387207031 5.9092000000000002 1057.8625999999999 120960 62589 1 0 5898240 4423680 4423680 4426376 4492800 150 150 150 150 1947 0 0 0 0 37 0 0 0 0 0 +4223 1783754514631179000 DEPTH 53 1 0.64866484251747958 0 8 0 8 0 0 151 43 2528 23664867 81600 869.11488342285156 5.8507999999999996 1233.4137000000001 120960 66046 1 0 5898240 4423680 4423680 4426462 4492800 243 156 150 174 1805 0 0 0 0 43 0 0 0 0 0 +4224 1783754515954674300 DEPTH 11 1 0.64652198438342701 0 8 0 8 1 0 105 11 2520 23664961 81600 861.56391906738281 5.8715999999999999 1301.2909999999999 120960 65133 1 0 5898240 4423680 4423680 4426559 4492800 245 150 207 246 1672 0 0 0 0 11 0 0 0 0 2 +4225 1783754517223481500 DEPTH 30 1 0.68503798676421868 1 8 1 8 0 0 137 37 2540 23664890 81600 869.88595581054688 5.8655999999999997 1230.7415000000001 120960 65438 1 0 5898240 4423680 4423680 4426486 4492800 156 150 174 150 1910 0 0 0 0 37 0 0 0 0 0 +4226 1783754518542922300 DEPTH 1 1 0.63542357062325616 1 7 1 7 0 0 126 12 2621 23664836 81600 868.50253295898438 5.8487 1318.3169 120960 66041 1 0 5898240 4423680 4423680 4426436 4492800 425 154 315 330 1397 0 0 0 0 12 0 0 0 0 0 +4227 1783754519853022800 DEPTH 31 1 0.62782238383986666 2 6 2 6 0 0 127 4 2624 23664886 81600 864.53248596191406 5.8546999999999993 1284.4547 120960 66486 1 0 5898240 4423680 4423680 4426485 4492800 1044 150 192 380 858 0 0 0 0 4 0 0 0 0 0 +4228 1783754521134909600 DEPTH 33 1 0.64339361345402191 1 7 1 7 0 0 183 25 2555 23664836 81600 875.02743530273438 5.8653000000000004 1248.5317 120960 66279 1 0 5898240 4423680 4423680 4426435 4492800 207 151 156 156 1885 0 0 0 0 25 0 0 0 0 0 +4229 1783754522456141200 DEPTH 9 1 0.62162749918073368 2 6 2 6 0 0 135 5 2625 23664733 81600 866.95423889160156 5.8525000000000009 1299.0583999999999 120960 66119 1 0 5898240 4423680 4423680 4426332 4492800 799 150 466 494 716 0 0 0 0 5 0 0 0 0 0 +4230 1783754523755672200 DEPTH 54 1 0.61109139952564506 1 8 1 8 1 0 114 16 2612 23664827 81600 862.601318359375 5.8532999999999999 1298.2998 120960 64224 1 0 5898240 4423680 4423680 4426426 4492800 697 150 315 773 677 0 0 0 0 16 0 0 0 0 1 +4231 1783754524991647500 DEPTH 45 1 0.61029731304671242 2 7 2 7 0 0 144 23 2615 23664785 81600 873.54060363769531 5.8444000000000003 1213.6041 120960 65787 1 0 5898240 4423680 4423680 4426383 4492800 301 150 217 202 1745 0 0 0 0 23 0 0 0 0 0 +4232 1783754526080679800 DEPTH 8 1 0.67669527866869372 2 5 2 5 0 0 224 22 2556 23664808 81600 870.26789855957031 5.8578999999999999 1087.8444999999999 120960 55097 1 0 5898240 4423680 4423680 4426408 4492800 377 151 159 207 1662 1 0 0 0 21 0 0 0 0 0 +4233 1783754527349461300 DEPTH 13 1 0.6728506189680149 1 6 1 6 0 0 185 30 2507 23664852 81600 858.84927368164062 5.8349999999999991 1267.6619000000001 120960 54123 1 0 5898240 4423680 4423680 4426451 4492800 282 154 183 315 1573 0 0 0 0 30 0 0 0 0 0 +4234 1783754528681570200 DEPTH 17 1 0.6725049363702299 0 7 0 7 0 0 193 25 2524 23664867 81600 856.31488037109375 5.8624000000000001 1308.3216 120960 54550 1 0 5898240 4423680 4423680 4426467 4492800 220 156 173 273 1702 0 0 0 0 25 0 0 0 0 0 +4235 1783754529978864000 DEPTH 56 1 0.67059933140154937 2 5 2 5 0 0 217 24 2569 23664911 81600 854.22491455078125 5.8647 1296.0534 120960 54276 1 0 5898240 4423680 4423680 4426510 4492800 520 156 186 420 1287 0 0 0 0 24 0 0 0 0 0 +4236 1783754531116109900 DEPTH 16 1 0.65769042550076295 2 6 2 6 0 0 181 30 2538 23664909 81600 873.22726440429688 5.8716999999999997 1124.5652 120960 65939 1 0 5898240 4423680 4423680 4426509 4492800 162 156 156 379 1685 0 0 0 0 30 0 0 0 0 0 +4237 1783754532415100600 DEPTH 42 1 0.65521850323689046 2 6 2 6 0 0 146 19 2587 23665028 81600 864.40449523925781 5.8535000000000004 1250.5518 120960 54991 1 0 5898240 4423680 4423680 4426626 4492800 150 150 150 150 1987 0 0 0 0 19 0 0 0 0 0 +4238 1783754533697042000 DEPTH 48 1 0.60621229854236414 2 9 2 9 1 0 158 43 2570 23664895 81600 864.77439880371094 5.843 1256.6994 120960 66003 1 0 5898240 4423680 4423680 4426495 4492800 150 150 150 150 1970 0 0 0 0 43 0 0 0 0 2 +4239 1783754534982858400 DEPTH 52 1 0.60580879656671294 1 8 1 8 0 0 107 13 2600 23664834 81600 859.42921447753906 5.8492000000000006 1284.5755999999999 120960 62106 1 0 5898240 4423680 4423680 4426433 4492800 656 150 213 913 668 0 0 0 0 13 0 0 0 0 0 +4240 1783754536314415100 DEPTH 44 1 0.60034920657544233 2 7 2 7 0 0 155 15 2617 23664857 81600 869.88609313964844 5.8594999999999997 1308.5669 120960 65653 1 0 5898240 4423680 4423680 4426457 4492800 193 150 237 162 1875 0 0 0 0 15 0 0 0 0 0 +4241 1783754537343417100 DEPTH 38 1 0.61784562680487054 2 10 2 10 0 0 113 40 2533 23664908 81600 856.53775024414062 5.8372000000000002 1027.7941000000001 120960 51404 1 0 5898240 4423680 4423680 4426507 4492800 150 150 150 150 1933 0 0 0 0 40 0 0 0 0 0 +4242 1783754538432140000 DEPTH 8 1 0.62748393249326939 2 5 2 5 0 0 224 23 2563 23664895 81600 867.01055908203125 5.8467000000000002 1087.5699999999999 120960 44398 1 0 5898240 4423680 4423680 4426494 4492800 314 150 159 180 1760 0 0 0 0 23 0 0 0 0 0 +4243 1783754539733844800 DEPTH 13 1 0.62418612205911184 1 6 1 6 0 0 185 17 2503 23664821 81600 854.95193481445312 5.8641000000000005 1272.5849000000001 120960 43932 1 0 5898240 4423680 4423680 4426421 4492800 300 156 187 391 1469 0 0 0 0 17 0 0 0 0 0 +4244 1783754541056324000 DEPTH 2 1 0.59514898362433977 2 8 2 8 0 0 140 29 2549 23664905 81600 870.835205078125 5.8676000000000004 1276.6624999999999 120960 66441 1 0 5898240 4423680 4423680 4426503 4492800 156 150 150 150 1943 0 0 0 0 29 0 0 0 0 0 +4245 1783754542359128700 DEPTH 41 1 0.59509644778923509 1 10 1 10 0 0 110 23 2580 23664768 81600 858.42124938964844 5.8453999999999997 1273.7337 120960 60137 1 0 5898240 4423680 4423680 4426368 4492800 468 154 234 229 1495 0 0 0 0 23 0 0 0 0 0 +4246 1783754543457982600 DEPTH 23 1 0.59456946313879455 3 14 3 14 0 0 108 53 2529 23664882 81600 864.83349609375 5.8501999999999992 1034.8562999999999 120960 57329 1 0 5898240 4423680 4423680 4426482 4492800 167 150 150 158 1904 1 0 0 0 52 0 0 0 0 0 +4247 1783754544531207200 DEPTH 35 1 0.59439021134075398 2 11 2 11 0 0 163 40 2547 23664736 81600 870.19314575195312 5.8447000000000005 1046.3785 120960 61929 1 0 5898240 4423680 4423680 4426335 4492800 505 150 159 435 1298 0 0 0 0 40 0 0 0 0 0 +4248 1783754545828476800 DEPTH 17 1 0.66384110035302335 0 7 0 7 0 0 193 18 2527 23664856 81600 851.61691284179688 5.8602000000000007 1296.1486 120960 42536 1 0 5898240 4423680 4423680 4426455 4492800 216 159 170 280 1702 0 0 0 0 18 0 0 0 0 0 +4249 1783754546042791900 REFRESH 43 0 0.5921872039813777 3 12 3 12 0 0 131 10 417 3943915 55200 152.03327941894531 0.97929999999999995 181.7954 20160 12869 0 0 983040 737280 737280 737515 748800 177 26 47 62 105 0 0 0 0 10 0 0 0 0 0 +4250 1783754546244159600 REFRESH 57 0 0.58819861926383721 2 12 2 12 0 0 123 5 416 3943926 55200 151.16390991210938 0.97809999999999997 185.97210000000001 20160 12419 0 0 983040 737280 737280 737526 748800 115 26 98 81 96 0 0 0 0 5 0 0 0 0 0 +4251 1783754546439138000 REFRESH 26 0 0.58414521038497869 1 13 1 13 0 0 84 9 427 3943918 55200 150.68159484863281 0.97440000000000004 179.34780000000001 20160 12443 0 0 983040 737280 737280 737518 748800 70 25 42 68 222 0 0 0 0 9 0 0 0 0 0 +4252 1783754546627181900 REFRESH 14 0 0.59301808105317511 0 12 0 12 0 0 118 7 416 3943896 55200 151.57965087890625 0.97450000000000003 186.91370000000001 20160 12748 0 0 983040 737280 737280 737496 748800 149 26 33 53 155 0 0 0 0 7 0 0 0 0 0 +4253 1783754546807813400 REFRESH 23 0 0.41338935335881166 3 14 3 14 0 0 109 5 409 3943959 55200 150.80755615234375 1.0011000000000001 179.49170000000001 20160 12152 0 0 983040 737280 737280 737559 748800 82 25 39 48 215 0 0 0 0 5 0 0 0 0 0 +4254 1783754547032260200 REFRESH 9 0 0.62066690469550656 2 6 2 6 0 0 135 3 434 3943916 55200 152.01895141601562 0.9748 223.31530000000001 20160 13528 0 0 983040 737280 737280 737516 748800 148 25 91 81 89 0 0 0 0 3 0 0 0 0 0 +4255 1783754547266985300 REFRESH 53 0 0.64974477272662923 0 8 0 8 0 0 151 3 418 3943935 55200 152.65895080566406 0.97940000000000005 191.8895 20160 13435 0 0 983040 737280 737280 737534 748800 158 26 27 54 153 0 0 0 0 3 0 0 0 0 0 +4256 1783754547472012500 REFRESH 50 0 0.57609840784640731 2 9 2 9 0 0 131 5 425 3943953 55200 151.15776062011719 0.97999999999999998 188.41569999999999 20160 12627 0 0 983040 737280 737280 737553 748800 133 25 36 48 183 0 0 0 0 5 0 0 0 0 0 +4257 1783754547667228000 REFRESH 40 0 0.57232975677072151 1 12 1 12 0 0 118 9 420 3943913 55200 151.75065612792969 0.97230000000000005 180.19560000000001 20160 13315 0 0 983040 737280 737280 737513 748800 157 25 41 95 102 0 0 0 0 9 0 0 0 0 0 +4258 1783754547849618600 REFRESH 39 0 0.5932450804748437 3 8 3 8 0 0 172 3 413 3943913 55200 151.83282470703125 0.97850000000000004 181.22909999999999 20160 13198 0 0 983040 737280 737280 737513 748800 98 28 31 33 223 0 0 0 0 3 0 0 0 0 0 +4259 1783754548075264200 REFRESH 11 0 0.6482395857089488 0 8 0 8 0 0 105 6 408 3943899 55200 151.16902160644531 0.97929999999999995 223.63290000000001 20160 13539 0 0 983040 737280 737280 737499 748800 105 25 57 70 151 0 1 0 0 5 0 0 0 0 0 +4260 1783754548289245100 REFRESH 46 0 0.58805082974012302 2 15 2 15 0 0 115 9 411 3943929 55200 151.39532470703125 1.0001 188.64760000000001 20160 12022 0 0 983040 737280 737280 737529 748800 122 26 67 37 159 0 0 0 0 9 0 0 0 0 0 +4261 1783754548482058300 REFRESH 5 0 0.59253817696647593 2 11 2 11 0 0 92 4 426 3943905 55200 149.60844421386719 0.97719999999999996 177.3212 20160 13482 0 0 983040 737280 737280 737505 748800 100 25 91 104 106 0 0 0 0 4 0 0 0 0 0 +4262 1783754548678020100 REFRESH 19 0 0.59240607234211162 2 11 2 11 0 0 131 11 422 3943910 55200 151.66166687011719 0.97719999999999996 179.99440000000001 20160 12794 0 0 983040 737280 737280 737510 748800 120 25 26 43 208 0 0 0 0 11 0 0 0 0 0 +4263 1783754548900171900 REFRESH 54 0 0.61316115820621087 1 8 1 8 0 0 114 3 423 3943915 55200 151.03181457519531 0.97889999999999999 220.9024 20160 13206 0 0 983040 737280 737280 737514 748800 129 25 61 128 80 0 0 0 0 3 0 0 0 0 0 +4264 1783754549103060000 REFRESH 49 0 0.58806810319776437 3 10 3 10 0 0 128 3 420 3943937 55200 151.32569885253906 0.97340000000000004 180.88900000000001 20160 12617 0 0 983040 737280 737280 737537 748800 138 26 67 54 135 0 0 0 0 3 0 0 0 0 0 +4265 1783754549299090000 REFRESH 42 0 0.73788505804218485 2 6 2 6 0 0 147 11 422 3943912 55200 151.65849304199219 1.0150999999999999 194.7851 20160 13413 0 0 983040 737280 737280 737512 748800 25 25 25 25 322 0 0 0 0 11 0 0 0 0 0 +4266 1783754549508305500 REFRESH 10 0 0.57125700039891514 1 10 1 10 0 0 119 1 433 3943895 55200 151.81106567382812 0.9798 182.00800000000001 20160 13063 0 0 983040 737280 737280 737495 748800 244 25 39 41 84 0 0 0 0 1 0 0 0 0 0 +4267 1783754549690774700 REFRESH 35 0 0.54343696990505119 2 11 2 11 0 0 163 6 421 3943919 55200 151.56224060058594 0.97660000000000002 181.27869999999999 20160 12949 0 0 983040 737280 737280 737519 748800 157 25 31 101 107 1 0 0 0 5 0 0 0 0 0 +4268 1783754549939994300 REFRESH 52 0 0.60933609801985367 1 8 1 8 0 0 107 5 426 3943877 55200 151.32978820800781 0.9778 221.6609 20160 13249 0 0 983040 737280 737280 737477 748800 133 25 36 153 79 0 0 0 0 5 0 0 0 0 0 +4269 1783754550132624100 REFRESH 45 0 0.6111574143722851 2 7 2 7 0 0 144 3 428 3943899 55200 152.12748718261719 0.97919999999999996 191.43559999999999 20160 13461 0 0 983040 737280 737280 737499 748800 120 25 56 52 175 0 0 0 0 3 0 0 0 0 0 +4270 1783754550361888900 REFRESH 21 0 0.59224530006247678 0 10 0 10 0 0 178 5 415 3943896 55200 152.00547790527344 0.97450000000000003 203.55199999999999 20160 13184 0 0 983040 737280 737280 737496 748800 102 26 35 93 159 0 0 0 0 5 0 0 0 0 0 +4271 1783754550557180100 REFRESH 6 0 0.56638391988995462 3 11 3 11 0 0 119 5 414 3943903 55200 151.32774353027344 0.99880000000000002 179.36259999999999 20160 12704 0 0 983040 737280 737280 737503 748800 26 25 25 25 313 0 0 0 0 5 0 0 0 0 0 +4272 1783754550742639900 REFRESH 16 0 0.67628808440433608 2 6 2 6 0 0 181 5 417 3943925 55200 152.1080322265625 0.97829999999999995 184.27549999999999 20160 13508 0 0 983040 737280 737280 737525 748800 36 27 26 237 91 0 0 0 0 5 0 0 0 0 0 +4273 1783754550949906100 REFRESH 27 0 0.59083044661147199 0 14 0 14 0 0 146 11 413 3943924 55200 152.02304077148438 0.98229999999999995 182.18389999999999 20160 12379 0 0 983040 737280 737280 737524 748800 84 26 31 29 243 0 0 0 0 11 0 0 0 0 0 +4274 1783754551175866600 REFRESH 0 0 0.57468243166749167 1 12 1 12 0 0 91 4 428 3943902 55200 151.6810302734375 0.98009999999999997 180.15379999999999 20160 12807 0 0 983040 737280 737280 737502 748800 88 25 44 39 232 0 0 0 0 4 0 0 0 0 0 +4275 1783754551382768800 REFRESH 41 0 0.59640824334951792 1 10 1 10 0 0 110 8 420 3943902 55200 150.72256469726562 0.97950000000000004 205.71510000000001 20160 12439 0 0 983040 737280 737280 737501 748800 139 26 53 50 152 0 0 0 0 8 0 0 0 0 0 +4276 1783754551579069800 REFRESH 20 0 0.57178178228076182 2 11 2 11 0 0 118 3 428 3943941 55200 151.50090026855469 0.9788 180.0788 20160 13179 0 0 983040 737280 737280 737541 748800 151 25 75 99 78 0 0 0 0 3 0 0 0 0 0 +4277 1783754551775447100 REFRESH 36 0 0.58444331847552689 3 10 3 10 0 0 115 6 433 3943904 55200 150.82290649414062 0.97709999999999997 180.13319999999999 20160 12354 0 0 983040 737280 737280 737504 748800 240 25 38 48 82 1 0 0 0 5 0 0 0 0 0 +4278 1783754551972797200 REFRESH 24 0 0.58962311496463415 4 11 4 11 0 0 134 9 409 3943927 55200 151.45085144042969 0.97570000000000001 180.69800000000001 20160 12001 0 0 983040 737280 737280 737527 748800 83 27 37 58 204 0 0 0 0 9 0 0 0 0 0 +4279 1783754552168423100 REFRESH 18 0 0.59157286348133398 4 15 4 15 0 0 105 13 418 3943933 55200 151.18643188476562 0.97709999999999997 179.6713 20160 12084 0 0 983040 737280 737280 737533 748800 40 25 25 27 301 0 0 0 0 13 0 0 0 0 0 +4280 1783754552384851300 REFRESH 1 0 0.63821375115506918 1 7 1 7 0 0 126 4 427 3943913 55200 151.99948120117188 0.97929999999999995 215.3391 20160 13570 0 0 983040 737280 737280 737513 748800 135 26 78 85 103 0 0 0 0 4 0 0 0 0 0 +4281 1783754552605923800 REFRESH 37 0 0.59222556967909257 1 12 1 12 0 0 140 12 430 3943908 55200 151.31033325195312 0.98599999999999999 180.0899 20160 12383 0 0 983040 737280 737280 737508 748800 171 26 56 39 138 0 0 0 0 12 0 0 0 0 0 +4282 1783754552798588500 REFRESH 48 0 0.6062594712684044 2 9 2 9 0 0 158 3 414 3943892 55200 150.61094665527344 1.0007999999999999 191.4665 20160 14141 0 0 983040 737280 737280 737492 748800 68 25 38 45 238 0 0 0 0 3 0 0 0 0 0 +4283 1783754552996398100 REFRESH 12 0 0.58699950769064113 3 8 3 8 0 0 183 9 415 3943928 55200 152.17868041992188 0.97840000000000005 182.255 20160 12746 0 0 983040 737280 737280 737528 748800 142 26 44 98 105 0 0 0 0 9 0 0 0 0 0 +4284 1783754553194964200 REFRESH 22 0 0.58160264314457033 3 11 3 11 0 0 124 6 426 3943905 55200 152.25555419921875 0.98099999999999998 181.6403 20160 12377 0 0 983040 737280 737280 737505 748800 147 25 33 29 192 0 0 0 1 5 0 0 0 0 0 +4285 1783754553397155700 REFRESH 13 0 0.77540456801436763 1 6 1 6 0 0 185 2 415 3943915 55200 151.27655029296875 0.97209999999999996 201.0608 20160 13472 0 0 983040 737280 737280 737514 748800 145 26 56 93 95 0 0 0 0 2 0 0 0 0 0 +4286 1783754553603358500 REFRESH 47 0 0.59052125166431191 2 11 2 11 0 0 112 5 421 3943922 55200 151.46188354492188 0.97389999999999999 180.7604 20160 12475 0 0 983040 737280 737280 737522 748800 149 25 45 34 168 0 0 0 0 5 0 0 0 0 0 +4287 1783754553801684000 REFRESH 3 0 0.59369168583706577 2 9 2 9 0 0 144 4 421 3943890 55200 151.3800048828125 0.97850000000000004 183.7535 20160 12965 0 0 983040 737280 737280 737490 748800 200 25 38 68 90 0 0 0 0 4 0 0 0 0 0 +4288 1783754553998439600 REFRESH 15 0 0.58869814741908388 3 12 3 12 0 0 100 8 421 3943910 55200 151.96876525878906 0.97399999999999998 180.58529999999999 20160 12031 0 0 983040 737280 737280 737510 748800 64 26 34 26 271 0 0 0 0 8 0 0 0 0 0 +4289 1783754554194449200 REFRESH 25 0 0.58362493742815424 3 11 3 11 0 0 115 9 420 3943900 55200 151.59808349609375 0.98129999999999995 180.61850000000001 20160 12103 0 0 983040 737280 737280 737500 748800 114 25 63 76 142 0 0 0 0 9 0 0 0 0 0 +4290 1783754554387205500 REFRESH 34 0 0.57506710825328144 1 13 1 13 0 0 104 2 432 3943880 55200 149.77229309082031 0.97340000000000004 177.38310000000001 20160 12975 0 0 983040 737280 737280 737480 748800 163 25 62 72 110 0 0 0 0 2 0 0 0 0 0 +4291 1783754554576368900 REFRESH 33 0 0.645132129777092 1 7 1 7 0 0 183 5 419 3943901 55200 151.841796875 0.9748 187.99119999999999 20160 13578 0 0 983040 737280 737280 737501 748800 110 26 45 38 200 0 0 0 0 5 0 0 0 0 0 +4292 1783754554757692200 REFRESH 38 0 0.66922536634890295 2 10 2 10 0 0 113 7 413 3943900 55200 151.91859436035156 0.97360000000000002 180.11529999999999 20160 13128 0 0 983040 737280 737280 737499 748800 126 26 37 30 194 0 0 0 0 7 0 0 0 0 0 +4293 1783754554964370800 REFRESH 29 0 0.58458370785471736 1 12 1 12 0 0 128 7 413 3943930 55200 152.38041687011719 0.97699999999999998 181.36689999999999 20160 13112 0 0 983040 737280 737280 737530 748800 117 25 56 48 167 0 0 0 0 7 0 0 0 0 0 +4294 1783754555169292900 REFRESH 8 0 0.77822812444111955 2 5 2 5 0 0 224 3 414 3943944 55200 153.72186279296875 0.98119999999999996 186.92439999999999 20160 13484 0 0 983040 737280 737280 737543 748800 151 26 30 52 155 0 0 0 0 3 0 0 0 0 0 +4295 1783754555360972400 REFRESH 2 0 0.59545849902842929 2 8 2 8 0 0 140 14 413 3943909 55200 151.51922607421875 0.97840000000000005 190.57599999999999 20160 13568 0 0 983040 737280 737280 737509 748800 28 25 68 110 182 0 0 0 0 14 0 0 0 0 0 +4296 1783754555587267900 REFRESH 17 0 0.77506429687919265 0 7 0 7 0 0 193 7 412 3943899 55200 151.9605712890625 0.96940000000000004 225.19049999999999 20160 13525 0 0 983040 737280 737280 737499 748800 109 26 44 110 123 0 0 0 0 7 0 0 0 0 0 +4297 1783754555777098100 REFRESH 30 0 0.6789023201682518 1 8 1 8 0 0 137 5 413 3943930 55200 153.02861022949219 0.99990000000000001 188.66370000000001 20160 13510 0 0 983040 737280 737280 737528 748800 97 25 53 42 196 0 0 0 0 5 0 0 0 0 0 +4298 1783754555982280300 REFRESH 51 0 0.58278989890515698 3 12 3 12 0 0 93 4 430 3943917 55200 151.48133850097656 0.97560000000000002 180.52520000000001 20160 12881 0 0 983040 737280 737280 737514 748800 115 25 107 74 109 0 0 0 0 4 0 0 0 0 0 +4299 1783754556180046000 REFRESH 28 0 0.5916676113546866 1 12 1 12 0 0 147 6 416 3943925 55200 152.54118347167969 0.97529999999999994 184.11770000000001 20160 12557 0 0 983040 737280 737280 737525 748800 188 26 32 31 139 0 0 0 0 6 0 0 0 0 0 +4300 1783754556379300400 REFRESH 55 0 0.58761971761164444 1 12 1 12 0 0 146 5 423 3943935 55200 153.43020629882812 0.98009999999999997 182.97239999999999 20160 13366 0 0 983040 737280 737280 737535 748800 136 25 60 114 88 0 0 0 0 5 0 0 0 0 0 +4301 1783754556576393000 REFRESH 7 0 0.59283056079720398 1 12 1 12 0 0 132 5 424 3943937 55200 151.93190002441406 0.97370000000000001 181.45949999999999 20160 12349 0 0 983040 737280 737280 737537 748800 169 26 29 35 165 0 0 0 0 5 0 0 0 0 0 +4302 1783754556772905000 REFRESH 58 0 0.5873769946325591 2 12 2 12 0 0 123 10 430 3943912 55200 151.25094604492188 0.98299999999999998 180.00120000000001 20160 12781 0 0 983040 737280 737280 737512 748800 109 26 62 67 166 0 0 0 0 10 0 0 0 0 0 +4303 1783754556992382000 REFRESH 31 0 0.62541926610923837 2 6 2 6 0 0 127 0 429 3943913 55200 151.53050231933594 0.98129999999999995 218.3511 20160 13560 0 0 983040 737280 737280 737512 748800 218 25 32 80 74 0 0 0 0 0 0 0 0 0 0 +4304 1783754557195029500 REFRESH 32 0 0.5888894463387131 2 14 2 14 0 0 120 7 427 3943899 55200 151.43833923339844 0.97929999999999995 180.02760000000001 20160 12558 0 0 983040 737280 737280 737498 748800 203 25 35 32 132 0 0 0 0 7 0 0 0 0 0 +4305 1783754557422379400 REFRESH 44 0 0.60211099482911989 2 7 2 7 0 0 155 7 428 3943891 55200 151.40658569335938 0.97430000000000005 226.21430000000001 20160 13645 0 0 983040 737280 737280 737491 748800 82 26 69 31 220 0 0 0 0 7 0 0 0 0 0 +4306 1783754557645944200 REFRESH 56 0 0.77222564962149032 2 5 2 5 0 0 217 5 414 3943922 55200 151.60421752929688 0.97070000000000001 222.3433 20160 13501 0 0 983040 737280 737280 737522 748800 181 26 41 66 100 0 0 0 0 5 0 0 0 0 0 +4307 1783754557843430100 REFRESH 4 0 0.54762933377593459 1 13 1 13 0 0 49 0 414 3943903 55200 149.85626220703125 0.97440000000000004 177.16630000000001 20160 13160 0 0 983040 737280 737280 737503 748800 26 25 38 39 286 0 0 0 0 0 0 0 0 0 0 +4308 1783754559144871100 DEPTH 13 1 0.74843393933628632 1 6 1 6 0 0 185 27 2501 23664857 81600 868.51585388183594 5.8540000000000001 1276.8145 120960 65853 1 0 5898240 4423680 4423680 4426456 4492800 334 156 198 264 1549 0 0 0 0 27 0 0 0 0 0 +4309 1783754560399896600 DEPTH 42 1 0.73124459571197453 2 6 2 6 0 0 147 27 2579 23664898 81600 869.60639953613281 5.8491999999999997 1253.8064999999999 120960 66076 1 0 5898240 4423680 4423680 4426497 4492800 150 150 150 150 1979 0 0 0 0 27 0 0 0 0 0 +4310 1783754561545865700 DEPTH 16 1 0.66996646072217803 2 6 2 6 0 0 182 26 2528 23664781 81600 873.66041564941406 5.8527999999999993 1120.3517999999999 120960 66085 1 0 5898240 4423680 4423680 4426381 4492800 160 155 156 434 1623 0 0 0 0 26 0 0 0 0 0 +4311 1783754562704431300 DEPTH 8 1 0.6918066007868805 2 5 2 5 0 0 225 26 2550 23664858 81600 875.84869384765625 5.8497999999999992 1098.7050999999999 120960 66486 1 0 5898240 4423680 4423680 4426456 4492800 366 151 160 194 1679 0 0 0 0 26 0 0 0 0 0 +4312 1783754564029904700 DEPTH 11 1 0.64575195573981181 0 8 0 8 0 0 105 7 2502 23664874 81600 861.19732666015625 5.8494000000000002 1299.8724 120960 66060 1 0 5898240 4423680 4423680 4426474 4492800 259 150 205 227 1661 0 0 0 0 7 0 0 0 0 0 +4313 1783754565270563600 DEPTH 53 1 0.64371056457016718 0 8 0 8 0 0 151 30 2532 23664740 81600 869.83909606933594 5.8511999999999995 1239.4105999999999 120960 65183 1 0 5898240 4423680 4423680 4426336 4492800 222 156 150 168 1836 0 0 0 0 30 0 0 0 0 0 +4314 1783754566607091800 DEPTH 17 1 0.70308038633777747 0 7 0 7 0 0 193 25 2530 23664866 81600 867.82054138183594 5.8536000000000001 1319.6777999999999 120960 66071 1 0 5898240 4423680 4423680 4426466 4492800 216 156 171 272 1715 0 0 0 0 25 0 0 0 0 0 +4315 1783754567927351800 DEPTH 1 1 0.63462517777734595 1 7 1 7 0 0 126 12 2628 23664797 81600 870.0477294921875 5.8655999999999997 1319.1947 120960 66225 1 0 5898240 4423680 4423680 4426395 4492800 429 155 311 341 1392 0 0 0 0 12 0 0 0 0 0 +4316 1783754568965922900 DEPTH 38 1 0.6482990940209481 2 10 2 10 1 0 116 42 2542 23664805 81600 865.30238342285156 5.8483999999999998 1037.3729000000001 120960 64202 1 0 5898240 4423680 4423680 4426405 4492800 150 150 150 150 1942 0 0 0 0 42 0 0 0 0 2 +4317 1783754570223130400 DEPTH 33 1 0.64156558209397185 1 7 1 7 0 0 183 14 2547 23664788 81600 874.85548400878906 5.9023000000000003 1231.087 120960 65927 1 0 5898240 4423680 4423680 4426386 4492800 218 154 157 164 1854 0 0 0 0 14 0 0 0 0 0 +4318 1783754571572625300 DEPTH 56 1 0.63855732773880047 2 5 2 5 0 0 217 20 2580 23664756 81600 864.34303283691406 5.8710999999999993 1306.8913 120960 66076 1 0 5898240 4423680 4423680 4426356 4492800 567 156 186 400 1271 0 0 0 0 20 0 0 0 0 0 +4319 1783754572945396400 DEPTH 9 1 0.61782203558761939 2 6 2 6 0 0 135 8 2626 23664819 81600 872.77976989746094 5.8750999999999998 1338.2627 120960 65976 1 0 5898240 4423680 4423680 4426419 4492800 801 150 468 539 668 0 0 0 0 8 0 0 0 0 0 +4320 1783754574233614800 DEPTH 30 1 0.64820138876753064 1 8 1 8 0 0 137 37 2532 23664846 81600 868.85273742675781 5.8606000000000007 1216.0741 120960 65524 1 0 5898240 4423680 4423680 4426443 4492800 156 150 174 150 1902 0 0 0 0 37 0 0 0 0 0 +4321 1783754575555711400 DEPTH 54 1 0.60799382126704404 1 8 1 8 1 0 114 16 2608 23664837 81600 864.97177124023438 5.8655999999999997 1297.8807999999999 120960 64244 1 0 5898240 4423680 4423680 4426437 4492800 697 150 314 803 644 0 0 0 0 16 0 0 0 0 1 +4322 1783754576869395900 DEPTH 52 1 0.60746838275628323 1 8 1 8 0 0 108 13 2600 23664853 81600 861.1727294921875 5.8498000000000001 1286.5245 120960 63342 1 0 5898240 4423680 4423680 4426450 4492800 667 150 211 916 656 0 0 0 0 13 0 0 0 0 0 +4323 1783754578135977800 DEPTH 45 1 0.60489626541934016 2 7 2 7 0 0 145 26 2619 23664846 81600 875.32461547851562 5.8498999999999999 1231.6496999999999 120960 65658 1 0 5898240 4423680 4423680 4426444 4492800 244 150 217 209 1799 0 0 0 0 26 0 0 0 0 0 +4324 1783754579407165800 DEPTH 13 1 0.68011156131641737 1 6 1 6 0 0 185 20 2501 23664856 81600 857.12095642089844 5.8475000000000001 1269.7277999999999 120960 54266 1 0 5898240 4423680 4423680 4426455 4492800 299 155 186 287 1574 0 0 0 0 20 0 0 0 0 0 +4325 1783754580532535100 DEPTH 8 1 0.6629858165300162 2 5 2 5 0 0 225 36 2550 23664836 81600 868.48001098632812 5.9064000000000005 1097.1147000000001 120960 55145 1 0 5898240 4423680 4423680 4426436 4492800 340 151 159 209 1691 0 0 0 0 36 0 0 0 0 0 +4326 1783754581815313800 DEPTH 42 1 0.64513669763133374 2 6 2 6 0 0 147 34 2581 23664859 81600 862.7906494140625 5.8586999999999998 1256.2392 120960 54927 1 0 5898240 4423680 4423680 4426459 4492800 150 150 150 150 1981 0 0 0 0 34 0 0 0 0 0 +4327 1783754583117949600 DEPTH 17 1 0.65424912006098868 0 7 0 7 0 0 193 22 2532 23664866 81600 855.87710571289062 5.8607000000000005 1301.5052000000001 120960 54634 1 0 5898240 4423680 4423680 4426466 4492800 222 156 174 295 1685 0 0 0 0 22 0 0 0 0 0 +4328 1783754584372310100 DEPTH 48 1 0.59815216695912599 2 9 2 9 0 0 158 36 2553 23664745 81600 865.40602111816406 5.8584000000000005 1253.1559999999999 120960 67515 1 0 5898240 4423680 4423680 4426344 4492800 150 150 150 150 1953 0 0 0 0 36 0 0 0 0 0 +4329 1783754585641621800 DEPTH 2 1 0.59562601312964447 2 8 2 8 0 0 141 30 2547 23664916 81600 871.65951538085938 5.8328000000000007 1251.3495 120960 65554 1 0 5898240 4423680 4423680 4426512 4492800 156 150 150 150 1941 0 0 0 0 30 0 0 0 0 0 +4330 1783754586944394700 DEPTH 41 1 0.59553713360747107 1 10 1 10 0 0 110 31 2585 23664879 81600 861.56301879882812 5.8611999999999993 1284.1132 120960 61178 1 0 5898240 4423680 4423680 4426475 4492800 498 153 224 228 1482 0 0 0 0 31 0 0 0 0 0 +4331 1783754588002502700 DEPTH 37 1 0.59217076396604185 1 12 1 12 1 0 140 16 2621 23664873 81600 865.82783508300781 5.8453999999999997 1040.5606 120960 61025 1 0 5898240 4423680 4423680 4426472 4492800 744 152 193 220 1312 0 0 0 0 16 0 0 0 0 1 +4332 1783754589327317100 DEPTH 56 1 0.66022079639501474 2 5 2 5 1 0 217 25 2575 23664890 81600 856.34791564941406 5.8592000000000004 1297.9454000000001 120960 54195 1 0 5898240 4423680 4423680 4426487 4492800 538 156 186 476 1219 0 0 0 0 25 0 0 0 0 1 +4333 1783754590440646200 DEPTH 16 1 0.6491832252025983 2 6 2 6 0 0 182 30 2545 23664891 81600 867.59732055664062 5.8402000000000003 1112.1945000000001 120960 54995 1 0 5898240 4423680 4423680 4426490 4492800 162 156 156 463 1608 0 0 0 0 30 0 0 0 0 0 +4334 1783754591721976700 DEPTH 31 1 0.61910607573040277 2 6 2 6 0 0 128 13 2627 23664864 81600 865.80226135253906 5.8487 1280.1604 120960 65782 1 0 5898240 4423680 4423680 4426459 4492800 1048 150 192 418 819 0 0 0 0 13 0 0 0 0 0 +4335 1783754593058803100 DEPTH 13 1 0.63157538060598706 1 6 1 6 0 0 185 26 2505 23664812 81600 854.10917663574219 5.8517000000000001 1265.7327 120960 43454 1 0 5898240 4423680 4423680 4426411 4492800 291 156 187 331 1540 0 0 0 0 26 0 0 0 0 0 +4336 1783754594393294800 DEPTH 44 1 0.60056006279185659 2 7 2 7 0 0 156 14 2613 23664924 81600 869.2799072265625 5.8469999999999995 1306.3137999999999 120960 66043 1 0 5898240 4423680 4423680 4426523 4492800 203 150 242 169 1849 0 0 0 0 14 0 0 0 0 0 +4337 1783754595690402200 DEPTH 11 1 0.64439470781816177 0 8 0 8 0 0 105 14 2516 23664802 81600 850.3685302734375 5.8720999999999997 1295.9597000000001 120960 54115 1 0 5898240 4423680 4423680 4426401 4492800 225 150 202 229 1710 0 0 0 0 14 0 0 0 0 0 +4338 1783754596800396800 DEPTH 8 1 0.65400896400841013 2 5 2 5 0 0 225 18 2554 23664786 81600 865.46430969238281 5.8447000000000005 1083.7212 120960 44061 1 0 5898240 4423680 4423680 4426386 4492800 344 151 160 206 1693 0 0 0 0 18 0 0 0 0 0 +4339 1783754597855752800 DEPTH 19 1 0.59191487870465953 2 11 2 11 1 0 131 32 2611 23664768 81600 867.82632446289062 5.8481000000000005 1039.8345999999999 120960 61885 1 0 5898240 4423680 4423680 4426366 4492800 241 150 150 168 1902 0 0 0 0 32 0 0 0 0 1 +4340 1783754598052700100 REFRESH 0 0 0.57136048823993302 1 12 1 12 0 0 91 3 425 3943905 55200 150.78707885742188 0.98270000000000002 180.48609999999999 20160 12631 0 0 983040 737280 737280 737505 748800 86 25 43 37 234 0 0 0 0 3 0 0 0 0 0 +4341 1783754598268096700 REFRESH 1 0 0.63731461589025007 1 7 1 7 0 0 126 2 427 3943920 55200 151.3492431640625 0.97370000000000001 214.28489999999999 20160 13488 0 0 983040 737280 737280 737520 748800 141 26 80 87 93 0 0 0 0 2 0 0 0 0 0 +4342 1783754598491810200 REFRESH 56 0 0.62317213958898054 2 5 2 5 0 0 217 2 416 3943883 55200 150.92941284179688 0.97299999999999998 222.48089999999999 20160 13574 0 0 983040 737280 737280 737483 748800 186 26 44 68 92 0 0 0 0 2 0 0 0 0 0 +4343 1783754598673504700 REFRESH 19 0 0.38119954204569517 2 11 2 11 0 0 131 9 422 3943909 55200 151.90232849121094 0.97370000000000001 180.5188 20160 12799 0 0 983040 737280 737280 737509 748800 121 25 26 44 206 0 0 0 0 9 0 0 0 0 0 +4344 1783754598870032700 REFRESH 22 0 0.57835645435450012 3 11 3 11 0 0 125 10 424 3943918 55200 151.78448486328125 0.97850000000000004 182.5386 20160 12306 0 0 983040 737280 737280 737518 748800 160 25 33 29 177 0 0 0 0 10 0 0 0 0 0 +4345 1783754599060288300 REFRESH 2 0 0.50566216935596719 2 8 2 8 0 0 141 10 414 3943916 55200 151.7998046875 0.97999999999999998 189.2003 20160 13468 0 0 983040 737280 737280 737515 748800 28 25 62 108 191 0 0 0 0 10 0 0 0 0 0 +4346 1783754599241326500 REFRESH 37 0 0.4919181166243235 1 12 1 12 0 0 140 4 428 3943918 55200 151.21510314941406 0.97460000000000002 179.81659999999999 20160 12847 0 0 983040 737280 737280 737517 748800 176 26 58 38 130 0 0 0 0 4 0 0 0 0 0 +4347 1783754599441952900 REFRESH 46 0 0.58674603807035974 2 15 2 15 0 0 115 8 413 3943898 55200 153.20780944824219 0.98270000000000002 183.3272 20160 12131 0 0 983040 737280 737280 737498 748800 118 26 65 39 165 0 0 0 0 8 0 0 0 0 0 +4348 1783754599640507100 REFRESH 27 0 0.59044290485069739 0 14 0 14 0 0 147 7 415 3943924 55200 151.77317810058594 0.98509999999999998 182.5189 20160 12456 0 0 983040 737280 737280 737524 748800 100 26 36 34 219 0 0 0 0 7 0 0 0 0 0 +4349 1783754599839900400 REFRESH 15 0 0.58701157435390428 3 12 3 12 0 0 100 7 417 3943924 55200 150.94271850585938 0.98350000000000004 183.47489999999999 20160 12108 0 0 983040 737280 737280 737524 748800 67 26 35 26 263 0 0 0 0 7 0 0 0 0 0 +4350 1783754600051460700 REFRESH 12 0 0.58762639155801333 3 8 3 8 0 0 183 6 414 3943907 55200 152.47360229492188 0.98299999999999998 192.41489999999999 20160 12832 0 0 983040 737280 737280 737506 748800 146 26 44 106 92 0 0 0 0 6 0 0 0 0 0 +4351 1783754600303685200 REFRESH 11 0 0.53608658558060096 0 8 0 8 0 0 105 2 412 3943898 55200 150.73283386230469 0.97319999999999995 223.03440000000001 20160 13507 0 0 983040 737280 737280 737497 748800 99 25 56 70 162 0 0 0 0 2 0 0 0 0 0 +4352 1783754600490876400 REFRESH 30 0 0.66351342181785844 1 8 1 8 0 0 137 7 415 3943920 55200 151.76089477539062 0.97709999999999997 186.03 20160 13545 0 0 983040 737280 737280 737519 748800 107 25 63 46 174 0 0 0 0 7 0 0 0 0 0 +4353 1783754600672440800 REFRESH 23 0 0.58744485374048505 3 14 3 14 0 0 109 9 412 3943904 55200 151.09735107421875 0.97440000000000004 180.36949999999999 20160 12099 0 0 983040 737280 737280 737504 748800 107 25 63 59 158 1 0 0 0 8 0 0 0 0 0 +4354 1783754600877328700 REFRESH 47 0 0.58634237765175601 2 11 2 11 0 0 112 6 421 3943898 55200 151.19973754882812 0.98240000000000005 180.5309 20160 12365 0 0 983040 737280 737280 737498 748800 143 26 43 34 175 0 0 0 0 6 0 0 0 0 0 +4355 1783754601065262400 REFRESH 8 0 0.69490019078319198 2 5 2 5 0 0 225 3 413 3943908 55200 152.45106506347656 0.98280000000000001 185.8073 20160 13590 0 0 983040 737280 737280 737508 748800 175 27 30 70 111 0 0 0 0 3 0 0 0 0 0 +4356 1783754601271295000 REFRESH 32 0 0.58554878546554001 2 14 2 14 0 0 120 8 432 3943923 55200 151.02873229980469 0.97389999999999999 179.6388 20160 12539 0 0 983040 737280 737280 737523 748800 206 25 35 31 135 0 0 0 0 8 0 0 0 0 0 +4357 1783754601468122600 REFRESH 39 0 0.5856127899216319 3 8 3 8 0 0 172 3 410 3943920 55200 151.90016174316406 0.97550000000000003 181.49780000000001 20160 13397 0 0 983040 737280 737280 737520 748800 86 28 31 33 232 0 0 0 0 3 0 0 0 0 0 +4358 1783754601682633300 REFRESH 55 0 0.58190179893827643 1 12 1 12 0 0 147 10 429 3943920 55200 152.95079040527344 0.97940000000000005 182.55000000000001 20160 13329 0 0 983040 737280 737280 737520 748800 136 25 60 113 95 0 0 0 0 10 0 0 0 0 0 +4359 1783754601879514800 REFRESH 6 0 0.56310694924925653 3 11 3 11 0 0 119 4 421 3943911 55200 151.5335693359375 0.97640000000000005 179.64279999999999 20160 12763 0 0 983040 737280 737280 737511 748800 26 25 25 25 320 0 0 0 0 4 0 0 0 0 0 +4360 1783754602067171500 REFRESH 16 0 0.66842228128787218 2 6 2 6 0 0 182 5 416 3943897 55200 152.96511840820312 0.97330000000000005 186.4984 20160 13581 0 0 983040 737280 737280 737497 748800 36 27 26 234 93 0 0 0 0 5 0 0 0 0 0 +4361 1783754602271530800 REFRESH 57 0 0.58355281967432382 2 12 2 12 0 0 123 11 418 3943921 55200 151.86944580078125 0.97319999999999995 180.41720000000001 20160 12494 0 0 983040 737280 737280 737521 748800 116 26 99 84 93 0 0 0 0 11 0 0 0 0 0 +4362 1783754602473801100 REFRESH 24 0 0.58905009968520017 4 11 4 11 0 0 135 7 412 3943914 55200 151.55410766601562 0.97789999999999999 182.1104 20160 12027 0 0 983040 737280 737280 737513 748800 91 27 43 61 190 0 0 0 0 7 0 0 0 0 0 +4363 1783754602668583800 REFRESH 25 0 0.58389820554775163 3 11 3 11 0 0 115 5 423 3943891 55200 151.45368957519531 0.98209999999999997 180.51679999999999 20160 12054 0 0 983040 737280 737280 737491 748800 114 25 64 75 145 0 0 0 0 5 0 0 0 0 0 +4364 1783754602893657500 REFRESH 9 0 0.62016373152725202 2 6 2 6 0 0 135 3 433 3943918 55200 153.17709350585938 0.97989999999999999 223.94909999999999 20160 13414 0 0 983040 737280 737280 737518 748800 149 25 91 79 89 0 0 0 0 3 0 0 0 0 0 +4365 1783754603123639200 REFRESH 10 0 0.56589017057391455 1 10 1 10 0 0 119 1 428 3943932 55200 151.39634704589844 0.99739999999999995 184.3826 20160 13080 0 0 983040 737280 737280 737532 748800 238 25 39 42 84 0 0 0 0 1 0 0 0 0 0 +4366 1783754603331152200 REFRESH 41 0 0.59659445760227947 1 10 1 10 0 0 110 3 412 3943901 55200 150.59660339355469 0.97960000000000003 205.85249999999999 20160 13144 0 0 983040 737280 737280 737501 748800 144 26 57 50 135 0 0 0 0 3 0 0 0 0 0 +4367 1783754603533590300 REFRESH 51 0 0.5778630644526761 3 12 3 12 0 0 93 6 427 3943922 55200 150.16447448730469 0.97209999999999996 179.0857 20160 12688 0 0 983040 737280 737280 737522 748800 119 25 110 75 98 0 0 0 0 6 0 0 0 0 0 +4368 1783754603728891100 REFRESH 29 0 0.58153400064488259 1 12 1 12 1 0 128 8 414 3943901 55200 151.12191772460938 0.97460000000000002 179.714 20160 13170 0 0 983040 737280 737280 737501 748800 108 25 53 42 186 0 0 0 0 8 0 0 0 0 1 +4369 1783754603954656600 REFRESH 17 0 0.77531245907541013 0 7 0 7 0 0 193 3 410 3943908 55200 150.96217346191406 0.97919999999999996 224.6395 20160 13591 0 0 983040 737280 737280 737508 748800 113 26 45 115 111 0 0 0 0 3 0 0 0 0 0 +4370 1783754604160480000 REFRESH 58 0 0.58784368200443315 2 12 2 12 0 0 123 8 423 3943912 55200 151.61958312988281 0.98219999999999996 181.29249999999999 20160 12655 0 0 983040 737280 737280 737512 748800 114 26 63 69 151 0 0 0 0 8 0 0 0 0 0 +4371 1783754604428329600 REFRESH 3 0 0.5880363938811346 2 9 2 9 0 0 144 5 415 3943891 55200 151.34722900390625 0.97399999999999998 185.90629999999999 20160 12985 0 0 983040 737280 737280 737490 748800 189 25 37 63 101 0 0 0 0 5 0 0 0 0 0 +4372 1783754604621975500 REFRESH 26 0 0.58524756062892203 1 13 1 13 1 0 85 7 426 3943931 55200 150.37849426269531 0.97460000000000002 178.82749999999999 20160 12517 0 0 983040 737280 737280 737531 748800 55 25 39 58 249 0 0 0 0 7 0 0 0 0 1 +4373 1783754604814164500 REFRESH 5 0 0.58784852924165287 2 11 2 11 0 0 92 5 426 3943908 55200 149.87776184082031 0.97440000000000004 178.41560000000001 20160 13584 0 0 983040 737280 737280 737508 748800 96 25 91 108 106 0 0 0 0 5 0 0 0 0 0 +4374 1783754605041482900 REFRESH 44 0 0.60211068938730572 2 7 2 7 0 0 157 9 428 3943937 55200 152.71527099609375 0.98309999999999997 226.1173 20160 13421 0 0 983040 737280 737280 737537 748800 83 26 70 30 219 0 0 0 0 9 0 0 0 0 0 +4375 1783754605265385800 REFRESH 54 0 0.61025027344288696 1 8 1 8 0 0 114 3 428 3943909 55200 151.97491455078125 0.97330000000000005 222.6465 20160 13481 0 0 983040 737280 737280 737509 748800 133 25 64 128 78 0 0 0 0 3 0 0 0 0 0 +4376 1783754605455568900 REFRESH 45 0 0.60619246070959643 2 7 2 7 0 0 145 10 422 3943910 55200 152.22579956054688 0.97470000000000001 188.95249999999999 20160 13428 0 0 983040 737280 737280 737510 748800 137 25 63 65 132 0 0 0 0 10 0 0 0 0 0 +4377 1783754605656927800 REFRESH 34 0 0.56967642992283085 1 13 1 13 0 0 104 6 432 3943935 55200 150.02316284179688 0.99939999999999996 177.8725 20160 13065 0 0 983040 737280 737280 737535 748800 159 25 57 66 125 0 0 0 0 6 0 0 0 0 0 +4378 1783754605856310100 REFRESH 43 0 0.59101314623239154 3 12 3 12 0 0 133 13 420 3943897 55200 152.453125 0.97640000000000005 183.1799 20160 12786 0 0 983040 737280 737280 737497 748800 161 26 44 58 131 0 0 0 0 13 0 0 0 0 0 +4379 1783754606051823800 REFRESH 36 0 0.58182467116438841 3 10 3 10 1 0 115 7 433 3943899 55200 150.97958374023438 0.98029999999999995 180.5461 20160 12354 0 0 983040 737280 737280 737499 748800 240 25 38 48 82 2 0 0 0 5 1 0 0 0 0 +4380 1783754606251636200 REFRESH 50 0 0.57395293506526612 2 9 2 9 0 0 131 4 419 3943913 55200 151.25605773925781 0.97219999999999995 183.91030000000001 20160 12671 0 0 983040 737280 737280 737513 748800 162 25 41 56 135 0 0 0 0 4 0 0 0 0 0 +4381 1783754606442664000 REFRESH 33 0 0.64337196770672089 1 7 1 7 0 0 183 7 420 3943902 55200 151.91448974609375 0.9778 189.8347 20160 13395 0 0 983040 737280 737280 737502 748800 118 26 48 41 187 0 0 0 0 7 0 0 0 0 0 +4382 1783754606651414800 REFRESH 28 0 0.58775800601475303 1 12 1 12 0 0 147 10 411 3943944 55200 152.34661865234375 0.97350000000000003 183.6574 20160 12495 0 0 983040 737280 737280 737544 748800 176 26 32 31 146 0 0 0 0 10 0 0 0 0 0 +4383 1783754606846623000 REFRESH 4 0 0.54326658230023428 1 13 1 13 0 0 49 1 418 3943917 55200 149.22650146484375 0.97609999999999997 176.56010000000001 20160 13001 0 0 983040 737280 737280 737516 748800 27 25 39 38 289 0 0 0 0 1 0 0 0 0 0 +4384 1783754607086517500 REFRESH 21 0 0.5888017345003822 0 10 0 10 0 0 178 9 415 3943921 55200 152.40704345703125 0.97960000000000003 207.40559999999999 20160 13304 0 0 983040 737280 737280 737520 748800 100 26 34 96 159 0 0 0 0 9 0 0 0 0 0 +4385 1783754607282685600 REFRESH 38 0 0.65191980556761531 2 10 2 10 0 0 117 10 413 3943908 55200 150.97343444824219 0.97529999999999994 179.4716 20160 13175 0 0 983040 737280 737280 737508 748800 146 26 44 35 162 0 0 0 0 10 0 0 0 0 0 +4386 1783754607480289300 REFRESH 20 0 0.56620779926345488 2 11 2 11 0 0 118 3 428 3943929 55200 153.03167724609375 0.97989999999999999 181.78909999999999 20160 13090 0 0 983040 737280 737280 737529 748800 151 25 74 101 77 0 0 0 0 3 0 0 0 0 0 +4387 1783754607683785700 REFRESH 14 0 0.59056438028692482 0 12 0 12 0 0 118 9 420 3943915 55200 151.50694274902344 0.97889999999999999 186.75 20160 12729 0 0 983040 737280 737280 737515 748800 149 26 33 56 156 0 0 0 0 9 0 0 0 0 0 +4388 1783754607881079000 REFRESH 48 0 0.597797097355244 2 9 2 9 0 0 158 6 418 3943925 55200 152.70297241210938 0.98170000000000002 195.9487 20160 13589 0 0 983040 737280 737280 737524 748800 69 25 39 46 239 0 0 0 0 6 0 0 0 0 0 +4389 1783754608088678100 REFRESH 40 0 0.57275210328217807 1 12 1 12 1 0 118 7 420 3943945 55200 153.14431762695312 0.97929999999999995 182.64150000000001 20160 13296 0 0 983040 737280 737280 737545 748800 163 25 42 95 95 0 0 0 1 6 0 0 0 1 0 +4390 1783754608325894700 REFRESH 31 0 0.6234125242533215 2 6 2 6 0 0 128 1 433 3943941 55200 151.59526062011719 0.97440000000000004 218.20609999999999 20160 13500 0 0 983040 737280 737280 737541 748800 212 25 32 81 83 0 0 0 0 1 0 0 0 0 0 +4391 1783754608530737000 REFRESH 13 0 0.77293084326757933 1 6 1 6 0 0 185 5 416 3943903 55200 151.23558044433594 0.98080000000000001 203.61369999999999 20160 13490 0 0 983040 737280 737280 737503 748800 144 26 57 91 98 0 0 0 0 5 0 0 0 0 0 +4392 1783754608728856900 REFRESH 7 0 0.58795278177569177 1 12 1 12 0 0 132 4 419 3943921 55200 152.56370544433594 0.97650000000000003 183.0438 20160 12318 0 0 983040 737280 737280 737520 748800 174 26 29 38 152 0 0 0 0 4 0 0 0 0 0 +4393 1783754608934675400 REFRESH 53 0 0.64526893749061132 0 8 0 8 0 0 151 4 417 3943912 55200 151.77523803710938 0.97560000000000002 189.82429999999999 20160 13385 0 0 983040 737280 737280 737512 748800 160 26 27 57 147 0 0 0 0 4 0 0 0 0 0 +4394 1783754609159678600 REFRESH 52 0 0.61073268005685488 1 8 1 8 0 0 108 4 428 3943909 55200 151.05842590332031 0.97870000000000001 223.70189999999999 20160 13209 0 0 983040 737280 737280 737509 748800 127 25 36 159 81 0 0 0 0 4 0 0 0 0 0 +4395 1783754609359165800 REFRESH 42 0 0.71967648498910664 2 6 2 6 0 0 147 7 416 3943922 55200 151.84486389160156 0.97350000000000003 198.2835 20160 13547 0 0 983040 737280 737280 737522 748800 25 25 25 25 316 0 0 0 0 7 0 0 0 0 0 +4396 1783754609556086400 REFRESH 18 0 0.59087018604400132 4 15 4 15 0 0 105 10 426 3943948 55200 151.74758911132812 0.97289999999999999 180.2347 20160 12051 0 0 983040 737280 737280 737548 748800 41 25 26 27 307 0 0 0 0 10 0 0 0 0 0 +4397 1783754609752211300 REFRESH 35 0 0.58874531627337212 2 11 2 11 0 0 163 9 418 3943888 55200 151.89414978027344 0.97529999999999994 181.60169999999999 20160 12953 0 0 983040 737280 737280 737487 748800 164 25 31 105 93 1 0 0 0 8 0 0 0 0 0 +4398 1783754609948631800 REFRESH 49 0 0.58216963157996071 3 10 3 10 0 0 128 7 420 3943918 55200 151.2069091796875 0.97419999999999995 180.3999 20160 12563 0 0 983040 737280 737280 737517 748800 142 26 69 55 128 0 0 0 0 7 0 0 0 0 0 +4399 1783754611297081700 DEPTH 17 1 0.76921615330688642 0 7 0 7 0 0 193 25 2532 23664774 81600 864.83152770996094 5.8780000000000001 1319.1189999999999 120960 65926 1 0 5898240 4423680 4423680 4426371 4492800 218 156 178 255 1725 0 0 0 0 25 0 0 0 0 0 +4400 1783754612421771900 DEPTH 8 1 0.76871325680979585 2 5 2 5 0 0 225 23 2550 23664835 81600 877.30894470214844 5.8397000000000006 1100.1022 120960 66428 1 0 5898240 4423680 4423680 4426435 4492800 295 150 157 168 1780 0 0 0 0 23 0 0 0 0 0 +4401 1783754613725000900 DEPTH 56 1 0.76637396659064771 2 5 2 5 0 0 217 17 2569 23664899 81600 863.44500732421875 5.8479000000000001 1301.9930999999999 120960 65825 1 0 5898240 4423680 4423680 4426499 4492800 556 156 186 368 1303 0 0 0 0 17 0 0 0 0 0 +4402 1783754614848986300 DEPTH 16 1 0.66270512148287108 2 6 2 6 0 0 182 30 2547 23664808 81600 873.62263488769531 5.8536000000000001 1122.7746 120960 66533 1 0 5898240 4423680 4423680 4426406 4492800 161 155 156 371 1704 0 0 0 0 30 0 0 0 0 0 +4403 1783754616078527300 DEPTH 30 1 0.65626109975817715 1 8 1 8 0 0 137 41 2518 23664824 81600 867.92314147949219 5.8411 1207.7944 120960 65998 1 0 5898240 4423680 4423680 4426423 4492800 156 150 174 150 1888 0 0 0 0 41 0 0 0 0 0 +4404 1783754617400392900 DEPTH 11 1 0.63962374452480042 0 8 0 8 0 0 105 10 2518 23664899 81600 862.4930419921875 5.8557999999999995 1300.6976 120960 65627 1 0 5898240 4423680 4423680 4426498 4492800 261 150 213 255 1639 0 0 0 0 10 0 0 0 0 0 +4405 1783754618737443300 DEPTH 1 1 0.6317495838264866 1 7 1 7 0 0 126 12 2626 23664848 81600 868.9010009765625 5.8502000000000001 1315.5609999999999 120960 66055 1 0 5898240 4423680 4423680 4426448 4492800 424 155 311 351 1385 0 0 0 0 12 0 0 0 0 0 +4406 1783754620078647300 DEPTH 9 1 0.61720600979778306 2 6 2 6 0 0 135 5 2633 23664888 81600 874.78375244140625 5.8782999999999994 1315.3557000000001 120960 65476 1 0 5898240 4423680 4423680 4426487 4492800 820 150 485 537 641 0 0 0 0 5 0 0 0 0 0 +4407 1783754621359567100 DEPTH 13 1 0.67905272152739748 1 6 1 6 0 0 185 19 2504 23664859 81600 867.61068725585938 5.8667999999999996 1279.7959000000001 120960 65701 1 0 5898240 4423680 4423680 4426457 4492800 331 156 191 233 1593 0 0 0 0 19 0 0 0 0 0 +4408 1783754622595241200 DEPTH 33 1 0.64187005743543413 1 7 1 7 1 0 184 22 2542 23664830 81600 873.48350524902344 5.8459000000000003 1234.5053 120960 65994 1 0 5898240 4423680 4423680 4426430 4492800 207 154 162 156 1863 0 0 0 0 22 0 0 0 0 1 +4409 1783754623703446600 DEPTH 38 1 0.63552762223137171 2 10 2 10 0 0 119 31 2540 23664837 81600 866.88471984863281 5.8957000000000006 1036.4585999999999 120960 64022 1 0 5898240 4423680 4423680 4426436 4492800 150 150 150 150 1940 0 0 0 0 31 0 0 0 0 0 +4410 1783754624943975500 DEPTH 45 1 0.6072531651161176 2 7 2 7 0 0 145 34 2619 23664777 81600 873.01043701171875 5.8521000000000001 1223.8752999999999 120960 66229 1 0 5898240 4423680 4423680 4426377 4492800 253 150 224 210 1782 0 0 0 0 34 0 0 0 0 0 +4411 1783754626239278000 DEPTH 54 1 0.60515693304940532 1 8 1 8 0 0 114 7 2600 23664973 81600 864.2498779296875 5.8521000000000001 1294.0741 120960 65399 1 0 5898240 4423680 4423680 4426571 4492800 712 150 321 783 634 0 0 0 0 7 0 0 0 0 0 +4412 1783754627573306000 DEPTH 44 1 0.60243992320538875 2 7 2 7 0 0 157 18 2608 23664965 81600 869.84919738769531 5.8320999999999996 1308.2536 120960 65699 1 0 5898240 4423680 4423680 4426564 4492800 269 150 296 165 1728 0 0 0 0 18 0 0 0 0 0 +4413 1783754628902523700 DEPTH 17 1 0.66066835242121325 0 7 0 7 0 0 194 29 2523 23664769 81600 856.87193298339844 5.8479999999999999 1303.7173 120960 54422 1 0 5898240 4423680 4423680 4426365 4492800 217 156 175 258 1717 0 0 0 0 29 0 0 0 0 0 +4414 1783754630158294500 DEPTH 2 1 0.59573259703032289 2 8 2 8 0 0 141 25 2547 23664970 81600 872.5362548828125 5.9204999999999997 1254.6447000000001 120960 65721 1 0 5898240 4423680 4423680 4426568 4492800 156 150 150 150 1941 0 0 0 0 25 0 0 0 0 0 +4415 1783754631285911000 DEPTH 8 1 0.67006459340826507 2 5 2 5 0 0 225 23 2556 23664857 81600 869.57359313964844 5.8630999999999993 1095.8813 120960 55635 1 0 5898240 4423680 4423680 4426456 4492800 374 151 159 185 1687 0 0 0 0 23 0 0 0 0 0 +4416 1783754632579098700 DEPTH 42 1 0.67159360516806998 2 6 2 6 0 0 147 37 2580 23664787 81600 870.58653259277344 5.8619000000000003 1263.5440000000001 120960 65845 1 0 5898240 4423680 4423680 4426383 4492800 150 150 150 150 1980 0 0 0 0 37 0 0 0 0 0 +4417 1783754633929465200 DEPTH 56 1 0.67815309999582296 2 5 2 5 0 0 217 22 2580 23664908 81600 855.22024536132812 5.8697999999999997 1319.7952 120960 54407 1 0 5898240 4423680 4423680 4426507 4492800 518 156 186 428 1292 0 0 0 0 22 0 0 0 0 0 +4418 1783754635274265400 DEPTH 31 1 0.61817337213173085 2 6 2 6 0 0 128 4 2626 23664878 81600 866.36749267578125 5.8563000000000001 1282.0392999999999 120960 66166 1 0 5898240 4423680 4423680 4426478 4492800 1061 150 192 454 769 0 0 0 0 4 0 0 0 0 0 +4419 1783754636509790800 DEPTH 53 1 0.6405136956031926 0 8 0 8 0 0 151 31 2524 23664819 81600 869.43846130371094 5.8519000000000005 1234.2711999999999 120960 65037 1 0 5898240 4423680 4423680 4426419 4492800 219 156 150 177 1822 0 0 0 0 31 0 0 0 0 0 +4420 1783754637822826000 DEPTH 13 1 0.65052085946985794 1 6 1 6 0 0 185 18 2506 23664850 81600 855.98104858398438 5.8428999999999993 1272.8272999999999 120960 53990 1 0 5898240 4423680 4423680 4426448 4492800 329 156 190 277 1554 0 0 0 0 18 0 0 0 0 0 +4421 1783754639119096200 DEPTH 48 1 0.59332673168743721 2 9 2 9 0 0 161 28 2549 23664870 81600 864.78335571289062 5.8587000000000007 1250.2464 120960 66370 1 0 5898240 4423680 4423680 4426467 4492800 150 150 150 150 1949 0 0 0 0 28 0 0 0 0 0 +4422 1783754640398319900 DEPTH 41 1 0.59048468306630142 1 10 1 10 0 0 110 29 2592 23664854 81600 859.40530395507812 5.9068000000000005 1278.0020999999999 120960 62322 1 0 5898240 4423680 4423680 4426454 4492800 499 152 221 212 1508 0 0 0 0 29 0 0 0 0 0 +4423 1783754641530011400 DEPTH 16 1 0.6224578017121718 2 6 2 6 0 0 183 30 2543 23664783 81600 866.10745239257812 5.8738999999999999 1110.5126 120960 54798 1 0 5898240 4423680 4423680 4426383 4492800 162 156 156 348 1721 0 0 0 0 30 0 0 0 0 0 +4424 1783754642848119100 DEPTH 17 1 0.63193383156461491 0 7 0 7 0 0 194 21 2534 23664806 81600 854.72665405273438 6.0749000000000004 1301.6106 120960 43144 1 0 5898240 4423680 4423680 4426403 4492800 220 156 173 295 1690 0 0 0 0 21 0 0 0 0 0 +4425 1783754644139857600 DEPTH 52 1 0.60747798364260475 1 8 1 8 0 0 108 15 2591 23664824 81600 861.25938415527344 5.8477999999999994 1290.4400000000001 120960 63184 1 0 5898240 4423680 4423680 4426423 4492800 663 150 209 962 607 0 0 0 0 15 0 0 0 0 0 +4426 1783754645343933300 DEPTH 30 1 0.63260388423945202 1 8 1 8 0 0 137 40 2534 23664822 81600 859.35726928710938 5.8672000000000004 1202.8507 120960 54278 1 0 5898240 4423680 4423680 4426420 4492800 156 150 174 150 1904 0 0 0 0 40 0 0 0 0 0 +4427 1783754646459647400 DEPTH 8 1 0.64124078230389758 2 5 2 5 0 0 226 28 2546 23664765 81600 866.94088745117188 5.8439999999999994 1089.2846999999999 120960 44581 1 0 5898240 4423680 4423680 4426362 4492800 284 150 157 181 1774 0 0 0 0 28 0 0 0 0 0 +4428 1783754647749167300 DEPTH 14 1 0.59002448234642313 0 12 0 12 0 0 118 24 2578 23664883 81600 868.03251647949219 5.8524000000000012 1244.2411 120960 60838 1 0 5898240 4423680 4423680 4426481 4492800 250 151 168 182 1827 0 0 0 0 24 0 0 0 0 0 +4429 1783754648811034800 DEPTH 18 1 0.58988898711055726 4 15 4 15 1 0 105 23 2591 23664814 81600 863.82344055175781 5.8481999999999994 1037.0084999999999 120960 57123 1 0 5898240 4423680 4423680 4426413 4492800 176 150 155 162 1948 0 0 0 1 22 0 0 0 0 1 +4430 1783754649881221100 DEPTH 43 1 0.58966964763666341 3 12 3 12 1 0 134 14 2567 23664866 81600 870.39796447753906 5.8632999999999997 1044.8848 120960 62410 1 0 5898240 4423680 4423680 4426464 4492800 426 156 192 222 1571 0 0 0 0 14 0 0 0 0 1 +4431 1783754650095372600 REFRESH 57 0 0.58415391810800854 2 12 2 12 0 0 123 9 417 3943914 55200 151.77626037597656 0.98270000000000002 180.2706 20160 12521 0 0 983040 737280 737280 737513 748800 108 26 93 84 106 0 0 0 0 9 0 0 0 0 0 +4432 1783754650290726200 REFRESH 36 0 0.58023100923950988 3 10 3 10 0 0 115 4 433 3943942 55200 151.4281005859375 0.9728 180.59200000000001 20160 12247 0 0 983040 737280 737280 737542 748800 242 25 38 48 80 0 0 0 0 4 0 0 0 0 0 +4433 1783754650488534300 REFRESH 0 0 0.56731544441924187 1 12 1 12 0 0 91 7 429 3943917 55200 150.85897827148438 0.97640000000000005 181.61279999999999 20160 12594 0 0 983040 737280 737280 737517 748800 94 25 46 42 222 0 0 0 0 7 0 0 0 0 0 +4434 1783754650687265900 REFRESH 55 0 0.58170536962619779 1 12 1 12 1 0 147 10 421 3943875 55200 152.76133728027344 0.97550000000000003 182.58260000000001 20160 13245 0 0 983040 737280 737280 737475 748800 133 25 58 114 91 0 0 0 0 10 0 0 0 0 1 +4435 1783754650914038800 REFRESH 11 0 0.64170501836096294 0 8 0 8 0 0 105 6 416 3943920 55200 150.77580261230469 0.98209999999999997 225.65889999999999 20160 13443 0 0 983040 737280 737280 737520 748800 118 25 62 78 133 0 0 0 0 6 0 0 0 0 0 +4436 1783754651100731900 REFRESH 16 0 0.54215696219476395 2 6 2 6 0 0 183 8 415 3943917 55200 152.76133728027344 0.97950000000000004 185.5428 20160 13441 0 0 983040 737280 737280 737517 748800 35 27 26 228 99 0 0 0 0 8 0 0 0 0 0 +4437 1783754651304944500 REFRESH 27 0 0.58702020254027709 0 14 0 14 0 0 147 14 413 3943915 55200 151.54380798339844 0.97540000000000004 180.6318 20160 12293 0 0 983040 737280 737280 737515 748800 85 26 32 30 240 0 0 0 0 14 0 0 0 0 0 +4438 1783754651500104700 REFRESH 32 0 0.58349650135787279 2 14 2 14 0 0 120 3 433 3943928 55200 150.73075866699219 0.97529999999999994 180.0283 20160 12470 0 0 983040 737280 737280 737528 748800 217 25 36 32 123 0 0 0 0 3 0 0 0 0 0 +4439 1783754651706494100 REFRESH 13 0 0.71181537326464817 1 6 1 6 0 0 185 1 417 3943901 55200 151.88787841796875 0.97309999999999997 204.05090000000001 20160 13421 0 0 983040 737280 737280 737501 748800 146 26 57 93 95 0 0 0 0 1 0 0 0 0 0 +4440 1783754651901063900 REFRESH 34 0 0.56862602060558232 1 13 1 13 0 0 105 5 430 3943891 55200 150.88435363769531 0.9768 178.65379999999999 20160 13087 0 0 983040 737280 737280 737491 748800 163 25 56 60 126 0 0 0 0 5 0 0 0 0 0 +4441 1783754652122625600 REFRESH 31 0 0.59638618405787913 2 6 2 6 0 0 128 5 428 3943896 55200 153.21189880371094 0.9788 220.4126 20160 13413 0 0 983040 737280 737280 737495 748800 198 25 32 77 96 0 0 0 0 5 0 0 0 0 0 +4442 1783754652324961800 REFRESH 37 0 0.58577825079471713 1 12 1 12 0 0 141 8 428 3943921 55200 150.41436767578125 0.97719999999999996 180.8827 20160 12856 0 0 983040 737280 737280 737521 748800 176 26 59 39 128 0 0 0 0 8 0 0 0 0 0 +4443 1783754652516911200 REFRESH 48 0 0.56318706031968591 2 9 2 9 0 0 162 6 418 3943913 55200 151.077880859375 0.9798 190.721 20160 12716 0 0 983040 737280 737280 737513 748800 69 25 40 48 236 0 0 0 0 6 0 0 0 0 0 +4444 1783754652707756300 REFRESH 14 0 0.50036805006307794 0 12 0 12 0 0 118 11 417 3943914 55200 152.53605651855469 0.97440000000000004 189.7277 20160 12775 0 0 983040 737280 737280 737513 748800 145 26 32 58 156 0 0 0 0 11 0 0 0 0 0 +4445 1783754652916924700 REFRESH 6 0 0.55905124988741528 3 11 3 11 1 0 119 8 416 3943913 55200 151.58067321777344 1.1251 184.27600000000001 20160 12714 0 0 983040 737280 737280 737512 748800 26 25 25 25 315 0 0 0 0 8 0 0 0 0 1 +4446 1783754653109842400 REFRESH 45 0 0.6081439677696816 2 7 2 7 0 0 145 10 425 3943911 55200 152.56370544433594 0.98009999999999997 191.68090000000001 20160 13453 0 0 983040 737280 737280 737511 748800 133 25 58 58 151 0 0 0 0 10 0 0 0 0 0 +4447 1783754653334793700 REFRESH 52 0 0.58042798442166899 1 8 1 8 0 0 108 2 427 3943924 55200 151.69842529296875 0.97709999999999997 223.39179999999999 20160 13305 0 0 983040 737280 737280 737524 748800 129 25 36 158 79 0 0 0 0 2 0 0 0 0 0 +4448 1783754653538972100 REFRESH 51 0 0.57533111506897905 3 12 3 12 1 0 93 7 424 3943904 55200 150.287353515625 0.98329999999999995 179.3005 20160 12716 0 0 983040 737280 737280 737504 748800 116 25 108 75 100 0 0 0 0 7 0 0 0 0 1 +4449 1783754653761202400 REFRESH 53 0 0.64218339699668436 0 8 0 8 0 0 152 4 417 3943925 55200 152.08345031738281 0.9738 191.7655 20160 13558 0 0 983040 737280 737280 737524 748800 143 26 27 48 173 0 0 0 0 4 0 0 0 0 0 +4450 1783754653959288700 REFRESH 22 0 0.57943719439163299 3 11 3 11 1 0 125 7 427 3943920 55200 151.50694274902344 0.97750000000000004 181.5718 20160 12321 0 0 983040 737280 737280 737520 748800 152 25 33 30 187 0 0 0 0 7 0 0 0 0 1 +4451 1783754654141266800 REFRESH 38 0 0.63971683139775481 2 10 2 10 0 0 119 3 414 3943890 55200 152.01177978515625 0.98009999999999997 180.27760000000001 20160 13201 0 0 983040 737280 737280 737490 748800 140 26 44 34 170 0 0 0 0 3 0 0 0 0 0 +4452 1783754654338409200 REFRESH 7 0 0.58237455342427547 1 12 1 12 0 0 132 11 422 3943971 55200 152.26982116699219 0.97819999999999996 182.10149999999999 20160 12457 0 0 983040 737280 737280 737571 748800 162 26 29 37 168 0 0 0 0 11 0 0 0 0 0 +4453 1783754654563403800 REFRESH 17 0 0.77306561546470043 0 7 0 7 0 0 194 1 410 3943900 55200 150.92941284179688 0.97929999999999995 223.86789999999999 20160 13587 0 0 983040 737280 737280 737500 748800 108 26 45 114 117 0 0 0 0 1 0 0 0 0 0 +4454 1783754654771341200 REFRESH 39 0 0.57866857700078489 3 8 3 8 0 0 172 5 410 3943930 55200 151.94009399414062 0.97699999999999998 181.80330000000001 20160 13506 0 0 983040 737280 737280 737530 748800 109 28 31 33 209 0 0 0 0 5 0 0 0 0 0 +4455 1783754654979339500 REFRESH 33 0 0.64351957808625571 1 7 1 7 0 0 184 7 420 3943920 55200 152.10394287109375 0.98099999999999998 188.2912 20160 13492 0 0 983040 737280 737280 737520 748800 107 26 46 36 205 0 0 0 0 7 0 0 0 0 0 +4456 1783754655168407800 REFRESH 2 0 0.59567086478703635 2 8 2 8 0 0 141 5 417 3943872 55200 152.59954833984375 0.98109999999999997 187.96350000000001 20160 13586 0 0 983040 737280 737280 737471 748800 31 25 69 111 181 0 0 0 0 5 0 0 0 0 0 +4457 1783754655375135200 REFRESH 26 0 0.58400469756797824 1 13 1 13 0 0 85 6 426 3943925 55200 151.2489013671875 1.0015000000000001 182.06 20160 12361 0 0 983040 737280 737280 737523 748800 59 25 39 56 247 0 0 0 0 6 0 0 0 0 0 +4458 1783754655568252000 REFRESH 5 0 0.58442765523115159 2 11 2 11 0 0 92 9 421 3943923 55200 150.45426940917969 0.97950000000000004 177.9111 20160 13562 0 0 983040 737280 737280 737522 748800 99 25 92 107 98 0 0 0 0 9 0 0 0 0 0 +4459 1783754655765311400 REFRESH 25 0 0.5800761977439165 3 11 3 11 0 0 115 7 423 3943898 55200 152.33535766601562 0.97760000000000002 181.84690000000001 20160 12023 0 0 983040 737280 737280 737497 748800 116 25 64 76 142 0 0 0 0 7 0 0 0 0 0 +4460 1783754655994372500 REFRESH 44 0 0.60369128904774827 2 7 2 7 0 0 157 7 430 3943895 55200 153.20883178710938 0.98080000000000001 227.85140000000001 20160 13398 0 0 983040 737280 737280 737495 748800 112 26 81 40 171 0 0 0 0 7 0 0 0 0 0 +4461 1783754656219093600 REFRESH 56 0 0.76976390817850615 2 5 2 5 0 0 217 7 417 3943931 55200 152.15513610839844 0.98129999999999995 223.45750000000001 20160 13494 0 0 983040 737280 737280 737531 748800 187 26 46 66 92 0 0 0 0 7 0 0 0 0 0 +4462 1783754656411222600 REFRESH 4 0 0.54020747050198992 1 13 1 13 1 0 49 4 416 3943922 55200 149.92691040039062 0.98180000000000001 177.3425 20160 12940 0 0 983040 737280 737280 737522 748800 28 25 36 36 291 0 0 0 0 4 0 0 0 0 1 +4463 1783754656652400000 REFRESH 1 0 0.63467246026194357 1 7 1 7 0 0 126 2 429 3943915 55200 152.03840637207031 0.97629999999999995 217.7817 20160 13558 0 0 983040 737280 737280 737515 748800 133 26 77 90 103 0 0 0 0 2 0 0 0 0 0 +4464 1783754656849953000 REFRESH 58 0 0.58621154455618096 2 12 2 12 0 0 123 11 431 3943893 55200 151.55815124511719 0.97629999999999995 181.43780000000001 20160 12715 0 0 983040 737280 737280 737493 748800 115 26 67 70 153 0 0 0 0 11 0 0 0 0 0 +4465 1783754657045016600 REFRESH 49 0 0.58057617697236408 3 10 3 10 0 0 130 5 419 3943920 55200 151.16697692871094 0.98089999999999999 180.2612 20160 12578 0 0 983040 737280 737280 737520 748800 128 26 66 48 151 0 0 0 0 5 0 0 0 0 0 +4466 1783754657227017300 REFRESH 19 0 0.58972720856651906 2 11 2 11 0 0 131 8 419 3943900 55200 152.02201843261719 0.97409999999999997 180.3871 20160 12880 0 0 983040 737280 737280 737499 748800 111 25 26 44 213 0 0 0 0 8 0 0 0 0 0 +4467 1783754657424901900 REFRESH 28 0 0.58813593984993506 1 12 1 12 0 0 147 8 412 3943885 55200 151.65043640136719 0.9778 182.15469999999999 20160 12494 0 0 983040 737280 737280 737485 748800 170 26 32 31 153 0 0 0 0 8 0 0 0 0 0 +4468 1783754657619864300 REFRESH 18 0 0.58893924837850364 4 15 4 15 1 0 105 9 415 3943904 55200 150.99699401855469 0.97989999999999999 179.5189 20160 12144 0 0 983040 737280 737280 737504 748800 44 25 26 27 293 0 0 0 0 9 0 0 0 0 1 +4469 1783754657821240500 REFRESH 3 0 0.58389159862355422 2 9 2 9 1 0 144 8 418 3943911 55200 152.29440307617188 0.97999999999999998 185.75999999999999 20160 12915 0 0 983040 737280 737280 737511 748800 198 25 37 66 92 0 0 0 0 8 0 0 0 0 1 +4470 1783754658016272500 REFRESH 29 0 0.57976040034181486 1 12 1 12 0 0 128 6 416 3943901 55200 151.1751708984375 0.97470000000000001 179.9837 20160 13044 0 0 983040 737280 737280 737501 748800 126 25 61 48 156 0 0 0 0 6 0 0 0 0 0 +4471 1783754658200461700 REFRESH 43 0 0.58834121341799606 3 12 3 12 0 0 134 10 418 3943911 55200 152.88137817382812 0.97550000000000003 182.99430000000001 20160 12899 0 0 983040 737280 737280 737511 748800 161 26 46 61 124 0 0 0 0 10 0 0 0 0 0 +4472 1783754658408006200 REFRESH 12 0 0.58522440949079702 3 8 3 8 0 0 183 4 415 3943917 55200 152.05375671386719 0.97699999999999998 181.80449999999999 20160 12889 0 0 983040 737280 737280 737516 748800 146 26 46 106 91 0 0 0 0 4 0 0 0 0 0 +4473 1783754658605250300 REFRESH 35 0 0.58730187496787556 2 11 2 11 0 0 163 7 419 3943913 55200 151.30726623535156 0.97589999999999999 181.13679999999999 20160 12972 0 0 983040 737280 737280 737513 748800 167 25 31 107 89 1 0 0 0 6 0 0 0 0 0 +4474 1783754658855155500 REFRESH 9 0 0.61653676232579313 2 6 2 6 0 0 136 4 434 3943916 55200 151.93292236328125 0.97460000000000002 224.0361 20160 13281 0 0 983040 737280 737280 737516 748800 150 25 92 85 82 0 0 0 0 4 0 0 0 0 0 +4475 1783754659064930000 REFRESH 40 0 0.57093914718195471 1 12 1 12 1 0 118 8 419 3943892 55200 151.40556335449219 0.98150000000000004 180.21279999999999 20160 13425 0 0 983040 737280 737280 737491 748800 164 25 42 97 91 0 0 0 1 7 0 0 0 1 0 +4476 1783754659258005600 REFRESH 15 0 0.58454122143126575 3 12 3 12 0 0 100 4 418 3943910 55200 151.77011108398438 0.97699999999999998 181.06360000000001 20160 12198 0 0 983040 737280 737280 737510 748800 58 26 32 26 276 0 0 1 0 3 0 0 0 0 0 +4477 1783754659482594100 REFRESH 54 0 0.60455546235225144 1 8 1 8 0 0 114 5 422 3943929 55200 151.088134765625 0.98270000000000002 223.3639 20160 13569 0 0 983040 737280 737280 737529 748800 129 25 62 127 79 0 0 0 0 5 0 0 0 0 0 +4478 1783754659703941200 REFRESH 21 0 0.58958034165495277 0 10 0 10 0 0 178 3 416 3943877 55200 151.95443725585938 0.98819999999999997 205.8185 20160 13271 0 0 983040 737280 737280 737477 748800 105 26 34 95 156 0 0 0 0 3 0 0 0 0 0 +4479 1783754659909187500 REFRESH 47 0 0.58360861272184061 2 11 2 11 0 0 112 9 418 3943918 55200 151.24684143066406 0.99309999999999998 189.32929999999999 20160 12386 0 0 983040 737280 737280 737517 748800 147 26 44 35 166 0 0 0 0 9 0 0 0 0 0 +4480 1783754660111032000 REFRESH 20 0 0.5610594174771586 2 11 2 11 0 0 118 1 430 3943912 55200 152.6640625 0.98180000000000001 181.499 20160 13160 0 0 983040 737280 737280 737512 748800 153 25 76 99 77 0 0 0 0 1 0 0 0 0 0 +4481 1783754660308256200 REFRESH 23 0 0.58605003904750774 3 14 3 14 0 0 109 12 414 3943929 55200 151.08607482910156 0.98050000000000004 180.40620000000001 20160 12033 0 0 983040 737280 737280 737528 748800 100 25 59 50 180 1 0 0 0 11 0 0 0 0 0 +4482 1783754660509369500 REFRESH 50 0 0.57087501584585354 2 9 2 9 0 0 131 4 421 3943940 55200 152.28825378417969 0.97309999999999997 186.23400000000001 20160 12784 0 0 983040 737280 737280 737540 748800 155 25 40 54 147 0 0 0 0 4 0 0 0 0 0 +4483 1783754660718652100 REFRESH 42 0 0.70734262520542646 2 6 2 6 0 0 147 4 414 3943936 55200 151.24992370605469 0.97660000000000002 208.09700000000001 20160 13783 0 0 983040 737280 737280 737534 748800 25 25 25 25 314 0 0 0 0 4 0 0 0 0 0 +4484 1783754660908003500 REFRESH 30 0 0.64931242115481436 1 8 1 8 0 0 137 3 413 3943894 55200 152.22988891601562 0.97770000000000001 188.10900000000001 20160 13567 0 0 983040 737280 737280 737494 748800 90 25 52 44 202 0 0 0 0 3 0 0 0 0 0 +4485 1783754661120880600 REFRESH 24 0 0.58651088239240645 4 11 4 11 0 0 135 8 415 3943908 55200 152.26675415039062 0.98429999999999995 187.8801 20160 12148 0 0 983040 737280 737280 737508 748800 91 27 39 60 198 0 0 0 0 8 0 0 0 0 0 +4486 1783754661346946100 REFRESH 41 0 0.59189923981611803 1 10 1 10 0 0 110 6 416 3943891 55200 150.38975524902344 0.97889999999999999 203.70249999999999 20160 13000 0 0 983040 737280 737280 737491 748800 147 26 59 50 134 0 0 0 0 6 0 0 0 0 0 +4487 1783754661533739200 REFRESH 8 0 0.77234155824328987 2 5 2 5 0 0 227 6 413 3943884 55200 152.17459106445312 0.97760000000000002 185.67439999999999 20160 13515 0 0 983040 737280 737280 737483 748800 173 27 30 64 119 0 0 0 0 6 0 0 0 0 0 +4488 1783754661740466900 REFRESH 46 0 0.58459203830713657 2 15 2 15 0 0 115 9 414 3943896 55200 152.07014465332031 0.97360000000000002 181.42509999999999 20160 12081 0 0 983040 737280 737280 737496 748800 124 26 68 37 159 0 0 0 0 9 0 0 0 0 0 +4489 1783754661937069200 REFRESH 10 0 0.56101972025003799 1 10 1 10 0 0 119 4 429 3943945 55200 151.01338195800781 0.98070000000000002 181.38059999999999 20160 13099 0 0 983040 737280 737280 737544 748800 241 25 39 42 82 0 0 0 0 4 0 0 0 0 0 +4490 1783754663254909100 DEPTH 56 1 0.7681567105549556 2 5 2 5 0 0 217 9 2582 23664864 81600 864.48030090332031 5.8462000000000005 1305.6594 120960 65540 1 0 5898240 4423680 4423680 4426464 4492800 570 156 186 359 1311 0 0 0 0 9 0 0 0 0 0 +4491 1783754664592325100 DEPTH 17 1 0.76506496840897986 0 7 0 7 0 0 194 18 2527 23664839 81600 865.94685363769531 5.8630000000000004 1306.7401 120960 65539 1 0 5898240 4423680 4423680 4426438 4492800 219 156 174 273 1705 0 0 0 0 18 0 0 0 0 0 +4492 1783754665929957900 DEPTH 13 1 0.76400030638445693 1 6 1 6 0 0 185 21 2498 23664810 81600 867.28215026855469 5.8514999999999997 1275.6703 120960 65600 1 0 5898240 4423680 4423680 4426409 4492800 340 155 199 280 1524 0 0 0 0 21 0 0 0 0 0 +4493 1783754667062238800 DEPTH 16 1 0.65991015540685294 2 6 2 6 0 0 184 27 2536 23664904 81600 874.40589904785156 5.8361000000000001 1131.1822 120960 65369 1 0 5898240 4423680 4423680 4426502 4492800 160 155 156 235 1830 0 0 0 0 27 0 0 0 0 0 +4494 1783754668335188400 DEPTH 33 1 0.64191247482216907 1 7 1 7 0 0 185 22 2536 23664905 81600 876.32798767089844 5.8906000000000001 1232.6985 120960 65515 1 0 5898240 4423680 4423680 4426505 4492800 207 154 162 163 1850 0 0 0 0 22 0 0 0 0 0 +4495 1783754669679213800 DEPTH 11 1 0.63957483672626125 0 8 0 8 0 0 105 11 2526 23664855 81600 861.45944213867188 5.8384 1301.7271000000001 120960 65551 1 0 5898240 4423680 4423680 4426455 4492800 267 150 211 252 1646 0 0 0 0 11 0 0 0 0 0 +4496 1783754670902109300 DEPTH 53 1 0.63766186558544058 0 8 0 8 0 0 152 30 2528 23664851 81600 868.60205078125 5.8733999999999993 1221.6708000000001 120960 66025 1 0 5898240 4423680 4423680 4426450 4492800 235 156 150 178 1809 0 0 0 0 30 0 0 0 0 0 +4497 1783754672255405600 DEPTH 1 1 0.62919906581730511 1 7 1 7 0 0 126 11 2624 23664994 81600 868.9725341796875 6.2419000000000002 1328.2191 120960 65698 1 0 5898240 4423680 4423680 4426593 4492800 422 154 308 327 1413 0 0 0 0 11 0 0 0 0 0 +4498 1783754673380182300 DEPTH 8 1 0.62922554982867529 2 5 2 5 0 0 228 22 2553 23664899 81600 876.70500183105469 5.8474000000000004 1097.2258999999999 120960 66065 1 0 5898240 4423680 4423680 4426490 4492800 345 151 159 185 1713 0 0 0 0 22 0 0 0 0 0 +4499 1783754674420051000 DEPTH 38 1 0.62740527018615344 2 10 2 10 0 0 119 37 2532 23664888 81600 865.83830261230469 5.8651 1038.6728000000001 120960 64615 1 0 5898240 4423680 4423680 4426486 4492800 150 150 150 150 1932 0 0 0 0 37 0 0 0 0 0 +4500 1783754675703073100 DEPTH 31 1 0.61578691161280497 2 6 2 6 0 0 128 10 2627 23664755 81600 863.88633728027344 5.8548 1281.8706 120960 65773 1 0 5898240 4423680 4423680 4426354 4492800 1071 150 192 421 793 0 0 0 0 10 0 0 0 0 0 +4501 1783754676975395300 DEPTH 45 1 0.60891781017710789 2 7 2 7 0 0 145 24 2634 23664817 81600 873.10438537597656 5.8526999999999996 1257.6235999999999 120960 66067 1 0 5898240 4423680 4423680 4426416 4492800 210 150 208 205 1861 0 0 0 0 24 0 0 0 0 0 +4502 1783754678292094500 DEPTH 52 1 0.6050608638429511 1 8 1 8 0 0 108 13 2602 23664768 81600 861.92451477050781 5.8593999999999999 1288.5181 120960 63772 1 0 5898240 4423680 4423680 4426368 4492800 654 150 209 998 591 0 0 0 0 13 0 0 0 0 0 +4503 1783754679606526300 DEPTH 9 1 0.61480357431854227 2 6 2 6 0 0 136 6 2620 23664875 81600 871.75588989257812 5.8559999999999999 1298.8248000000001 120960 65577 1 0 5898240 4423680 4423680 4426475 4492800 781 150 442 592 655 0 0 0 0 6 0 0 0 0 0 +4504 1783754680955190500 DEPTH 44 1 0.60174624031368151 2 7 2 7 0 0 157 28 2606 23664906 81600 871.25196838378906 5.8667999999999996 1311.2366999999999 120960 64926 1 0 5898240 4423680 4423680 4426505 4492800 245 150 275 164 1772 0 0 0 0 28 0 0 0 0 0 +4505 1783754682256857600 DEPTH 56 1 0.66865340413643515 2 5 2 5 0 0 217 16 2585 23664944 81600 854.32748413085938 5.8583999999999996 1300.4123999999999 120960 54668 1 0 5898240 4423680 4423680 4426543 4492800 544 156 186 466 1233 0 0 0 0 16 0 0 0 0 0 +4506 1783754683519629100 DEPTH 42 1 0.67736070361646283 2 6 2 6 0 0 147 32 2590 23664835 81600 870.92437744140625 5.8599999999999994 1261.6061999999999 120960 66721 1 0 5898240 4423680 4423680 4426433 4492800 150 150 150 150 1990 0 0 0 0 32 0 0 0 0 0 +4507 1783754684860011600 DEPTH 17 1 0.67679668978020358 0 7 0 7 0 0 194 20 2536 23664795 81600 857.63583374023438 5.8357000000000001 1302.6781000000001 120960 54240 1 0 5898240 4423680 4423680 4426393 4492800 218 156 173 284 1705 0 0 0 0 20 0 0 0 0 0 +4508 1783754686132769900 DEPTH 13 1 0.67587644238783628 1 6 1 6 0 0 185 14 2504 23664841 81600 857.87881469726562 5.8524000000000003 1271.6318000000001 120960 54522 1 0 5898240 4423680 4423680 4426438 4492800 308 155 188 326 1527 0 0 0 0 14 0 0 0 0 0 +4509 1783754687361832600 DEPTH 30 1 0.63921415317178365 1 8 1 8 0 0 137 37 2522 23664853 81600 870.34060668945312 5.8331999999999997 1203.6492000000001 120960 65691 1 0 5898240 4423680 4423680 4426451 4492800 156 150 174 150 1892 0 0 0 0 37 0 0 0 0 0 +4510 1783754688685886400 DEPTH 54 1 0.60186255179723702 1 8 1 8 0 0 114 9 2608 23664833 81600 863.46444702148438 5.8382000000000005 1298.6832999999999 120960 65262 1 0 5898240 4423680 4423680 4426433 4492800 713 150 316 806 623 0 0 0 0 9 0 0 0 0 0 +4511 1783754689810616400 DEPTH 8 1 0.65038946571420719 2 5 2 5 0 0 228 18 2569 23664792 81600 869.83372497558594 5.8837999999999999 1099.5705 120960 55084 1 0 5898240 4423680 4423680 4426385 4492800 280 150 156 171 1812 0 0 0 0 18 0 0 0 0 0 +4512 1783754691049494800 DEPTH 14 1 0.59069242899229457 0 12 0 12 1 0 118 30 2574 23664865 81600 866.15449523925781 5.8484999999999996 1237.7366999999999 120960 61486 1 0 5898240 4423680 4423680 4426465 4492800 256 152 168 188 1810 0 0 0 0 30 0 0 0 0 1 +4513 1783754692337791600 DEPTH 2 1 0.59057589872806004 2 8 2 8 0 0 142 39 2555 23664936 81600 871.02903747558594 5.8584000000000005 1260.2040999999999 120960 66313 1 0 5898240 4423680 4423680 4426535 4492800 156 150 150 150 1949 0 0 1 0 38 0 0 0 0 0 +4514 1783754693506253500 DEPTH 16 1 0.61976274319439539 2 6 2 6 0 0 185 32 2535 23664844 81600 866.77098083496094 5.8841000000000001 1138.6445000000001 120960 54504 1 0 5898240 4423680 4423680 4426444 4492800 164 156 156 398 1661 0 0 0 0 32 0 0 0 0 0 +4515 1783754694823810400 DEPTH 56 1 0.62005654585015713 2 5 2 5 0 0 217 12 2583 23664934 81600 850.46481323242188 5.8540999999999999 1291.752 120960 42909 1 0 5898240 4423680 4423680 4426534 4492800 547 156 186 558 1136 0 0 0 0 12 0 0 0 0 0 +4516 1783754696095690800 DEPTH 33 1 0.61337766762530199 1 7 1 7 1 0 185 22 2549 23664868 81600 866.90412902832031 5.8681999999999999 1225.1303 120960 54997 1 0 5898240 4423680 4423680 4426467 4492800 210 154 161 156 1868 0 0 0 0 22 0 0 0 0 1 +4517 1783754697364736200 DEPTH 48 1 0.58908778980833709 2 9 2 9 0 0 165 32 2559 23664796 81600 864.38400268554688 5.8496000000000006 1252.9992999999999 120960 63069 1 0 5898240 4423680 4423680 4426394 4492800 150 150 150 150 1959 0 0 0 0 32 0 0 0 0 0 +4518 1783754698681432100 DEPTH 41 1 0.58899188257054236 1 10 1 10 0 0 110 27 2589 23664844 81600 859.93801879882812 5.8491999999999997 1276.8389 120960 62491 1 0 5898240 4423680 4423680 4426443 4492800 499 153 237 226 1474 2 0 0 0 25 0 0 0 0 0 +4519 1783754700017610600 DEPTH 17 1 0.63831378025681262 0 7 0 7 0 0 195 21 2528 23664738 81600 851.42961120605469 5.8301999999999996 1296.0800999999999 120960 43225 1 0 5898240 4423680 4423680 4426338 4492800 219 156 171 295 1687 0 0 0 0 21 0 0 0 0 0 +4520 1783754701081093100 DEPTH 19 1 0.58714625058552672 2 11 2 11 0 0 132 24 2616 23664778 81600 867.55123901367188 5.8803000000000001 1038.8579 120960 63037 1 0 5898240 4423680 4423680 4426377 4492800 224 150 150 167 1925 0 0 0 0 24 0 0 0 0 0 +4521 1783754702129935900 DEPTH 43 1 0.58704970664933642 3 12 3 12 0 0 135 27 2567 23664880 81600 871.10348510742188 5.8673999999999999 1047.6659 120960 62423 1 0 5898240 4423680 4423680 4426479 4492800 426 155 193 256 1537 0 0 0 0 27 0 0 0 0 0 +4522 1783754702375228800 REFRESH 1 0 0.63219590552748195 1 7 1 7 0 0 126 4 430 3943924 55200 152.89549255371094 0.97440000000000004 218.82329999999999 20160 13398 0 0 983040 737280 737280 737523 748800 134 26 78 89 103 0 0 0 0 4 0 0 0 0 0 +4523 1783754702572172500 REFRESH 12 0 0.58080205922764416 3 8 3 8 0 0 183 8 414 3943904 55200 150.40512084960938 0.97940000000000005 182.7133 20160 12725 0 0 983040 737280 737280 737504 748800 146 26 46 104 92 0 0 0 0 8 0 0 0 0 0 +4524 1783754702766654900 REFRESH 15 0 0.57899586648685641 3 12 3 12 0 0 100 8 416 3943901 55200 151.85920715332031 0.9728 180.56639999999999 20160 12114 0 0 983040 737280 737280 737501 748800 64 27 35 26 264 0 0 0 0 8 0 0 0 0 0 +4525 1783754702971945600 REFRESH 41 0 0.41020871475763998 1 10 1 10 0 0 110 5 413 3943916 55200 150.32115173339844 0.97529999999999994 204.1326 20160 12665 0 0 983040 737280 737280 737516 748800 142 26 59 54 132 0 0 0 0 5 0 0 0 0 0 +4526 1783754703170742300 REFRESH 39 0 0.57429501293002527 3 8 3 8 0 0 172 8 414 3943914 55200 152.65895080566406 0.98099999999999998 182.7045 20160 13400 0 0 983040 737280 737280 737513 748800 114 28 31 33 208 0 0 0 0 8 0 0 0 0 0 +4527 1783754703360923600 REFRESH 5 0 0.58517849831917568 2 11 2 11 0 0 92 7 420 3943936 55200 149.84089660644531 0.97340000000000004 177.59049999999999 20160 13504 0 0 983040 737280 737280 737536 748800 103 25 95 110 87 0 0 0 0 7 0 0 0 0 0 +4528 1783754703557595500 REFRESH 40 0 0.57016121987098156 1 12 1 12 1 0 119 7 418 3943892 55200 152.08755493164062 0.9768 181.13679999999999 20160 13376 0 0 983040 737280 737280 737492 748800 158 25 41 90 104 0 0 0 1 6 0 0 0 1 0 +4529 1783754703785392000 REFRESH 17 0 0.61964064625028137 0 7 0 7 0 0 195 4 411 3943921 55200 152.03532409667969 0.97919999999999996 226.66579999999999 20160 13435 0 0 983040 737280 737280 737521 748800 117 26 46 113 109 0 0 0 0 4 0 0 0 0 0 +4530 1783754703974254400 REFRESH 2 0 0.51084016957894496 2 8 2 8 0 0 142 7 417 3943892 55200 151.67692565917969 0.97689999999999999 187.72040000000001 20160 13549 0 0 983040 737280 737280 737490 748800 30 25 67 114 181 0 0 0 0 7 0 0 0 0 0 +4531 1783754704164891100 REFRESH 14 0 0.53080181561472906 0 12 0 12 0 0 118 10 415 3943909 55200 152.60569763183594 0.98140000000000005 189.5138 20160 12682 0 0 983040 737280 737280 737509 748800 148 26 32 55 154 0 0 0 0 10 0 0 0 0 0 +4532 1783754704369699700 REFRESH 7 0 0.58329183216381553 1 12 1 12 0 0 132 5 420 3943943 55200 152.36186218261719 0.98080000000000001 182.5059 20160 12416 0 0 983040 737280 737280 737543 748800 170 26 29 35 160 0 0 0 0 5 0 0 0 0 0 +4533 1783754704563428600 REFRESH 4 0 0.5402993522248476 1 13 1 13 1 0 49 3 423 3943898 55200 149.17018127441406 0.97389999999999999 177.58019999999999 20160 12797 0 0 983040 737280 737280 737498 748800 28 25 40 38 292 0 0 0 0 3 0 0 0 0 1 +4534 1783754704759586700 REFRESH 10 0 0.55934797954205229 1 10 1 10 0 0 119 2 432 3943939 55200 150.95603942871094 0.97199999999999998 180.6224 20160 13141 0 0 983040 737280 737280 737539 748800 240 25 39 44 84 0 0 0 0 2 0 0 0 0 0 +4535 1783754704953315800 REFRESH 6 0 0.55932522952341635 3 11 3 11 0 0 119 5 418 3943910 55200 150.60581970214844 0.97519999999999996 178.6174 20160 12846 0 0 983040 737280 737280 737510 748800 26 25 25 25 317 0 0 0 0 5 0 0 0 0 0 +4536 1783754705155009700 REFRESH 42 0 0.69432037374936662 2 6 2 6 0 0 147 7 417 3943900 55200 153.67782592773438 0.98099999999999998 200.24119999999999 20160 13558 0 0 983040 737280 737280 737499 748800 25 25 25 25 317 0 0 0 0 7 0 0 0 0 0 +4537 1783754705352680200 REFRESH 35 0 0.58387852655040828 2 11 2 11 0 0 163 8 418 3943884 55200 152.12339782714844 0.9788 182.20009999999999 20160 13182 0 0 983040 737280 737280 737484 748800 160 25 29 105 99 0 0 0 0 8 0 0 0 0 0 +4538 1783754705547831200 REFRESH 51 0 0.57395268242027619 3 12 3 12 0 0 93 4 427 3943917 55200 150.43276977539062 0.98580000000000001 179.7688 20160 12614 0 0 983040 737280 737280 737517 748800 116 25 107 73 106 0 0 0 0 4 0 0 0 0 0 +4539 1783754705751211600 REFRESH 13 0 0.76755358586973133 1 6 1 6 0 0 185 6 415 3943931 55200 151.51411437988281 0.97430000000000005 202.2705 20160 13635 0 0 983040 737280 737280 737531 748800 149 26 57 93 90 0 0 0 0 6 0 0 0 0 0 +4540 1783754705946078800 REFRESH 48 0 0.56920313484356944 2 9 2 9 0 0 166 5 411 3943935 55200 152.11827087402344 0.98050000000000004 193.64510000000001 20160 12616 0 0 983040 737280 737280 737534 748800 69 25 40 48 229 0 0 0 0 5 0 0 0 0 0 +4541 1783754706152329200 REFRESH 49 0 0.57704699937093218 3 10 3 10 0 0 130 12 423 3943896 55200 152.29849243164062 0.98029999999999995 181.67060000000001 20160 12627 0 0 983040 737280 737280 737496 748800 141 26 69 55 132 0 0 0 0 12 0 0 0 0 0 +4542 1783754706347292100 REFRESH 32 0 0.57658765015243774 2 14 2 14 0 0 120 3 434 3943885 55200 151.10552978515625 0.97640000000000005 179.9683 20160 12589 0 0 983040 737280 737280 737485 748800 188 25 36 33 152 0 0 0 0 3 0 0 0 0 0 +4543 1783754706546755300 REFRESH 28 0 0.58634759993032715 1 12 1 12 0 0 147 3 408 3943933 55200 151.90631103515625 0.97689999999999999 183.2413 20160 12538 0 0 983040 737280 737280 737531 748800 170 26 31 31 150 0 0 0 0 3 0 0 0 0 0 +4544 1783754706743058200 REFRESH 55 0 0.58153178209941259 1 12 1 12 0 0 147 15 425 3943917 55200 152.22067260742188 0.97999999999999998 181.29580000000001 20160 13282 0 0 983040 737280 737280 737517 748800 131 25 58 110 101 0 0 0 0 15 0 0 0 0 0 +4545 1783754706931364600 REFRESH 30 0 0.63707672782170499 1 8 1 8 0 0 137 8 411 3943905 55200 151.59397888183594 0.97999999999999998 187.13990000000001 20160 13554 0 0 983040 737280 737280 737505 748800 90 25 56 43 197 0 0 0 0 8 0 0 0 0 0 +4546 1783754707150905400 REFRESH 57 0 0.58369347231836755 2 12 2 12 1 0 123 6 417 3943933 55200 152.49282836914062 0.98089999999999999 181.68879999999999 20160 12396 0 0 983040 737280 737280 737533 748800 116 26 98 81 96 0 0 0 0 6 0 0 0 0 1 +4547 1783754707347428500 REFRESH 46 0 0.58333002774034126 2 15 2 15 1 0 115 10 415 3943935 55200 150.9222412109375 0.98019999999999996 180.2433 20160 12031 0 0 983040 737280 737280 737535 748800 114 26 62 37 176 0 0 0 0 10 0 0 0 0 1 +4548 1783754707573328600 REFRESH 56 0 0.77131988860120659 2 5 2 5 0 0 217 6 414 3943913 55200 152.34764099121094 0.98140000000000005 224.66210000000001 20160 13617 0 0 983040 737280 737280 737513 748800 187 26 43 67 91 0 0 0 0 6 0 0 0 0 0 +4549 1783754707767721400 REFRESH 58 0 0.5866056910910038 2 12 2 12 0 0 123 8 423 3943899 55200 151.02156066894531 0.98319999999999996 179.4367 20160 12677 0 0 983040 737280 737280 737499 748800 104 26 52 61 180 0 0 0 0 8 0 0 0 0 0 +4550 1783754707995321100 REFRESH 44 0 0.60293668893200825 2 7 2 7 0 0 157 6 430 3943874 55200 151.80184936523438 0.97929999999999995 226.4126 20160 13461 0 0 983040 737280 737280 737474 748800 101 26 74 38 191 0 0 0 0 6 0 0 0 0 0 +4551 1783754708177879800 REFRESH 38 0 0.62324066671328704 2 10 2 10 0 0 119 4 413 3943919 55200 152.56268310546875 0.97870000000000001 181.35499999999999 20160 13215 0 0 983040 737280 737280 737519 748800 139 26 44 34 170 0 0 0 0 4 0 0 0 0 0 +4552 1783754708394427800 REFRESH 43 0 0.58574063188800518 3 12 3 12 1 0 135 11 416 3943918 55200 152.22988891601562 0.98029999999999995 181.36019999999999 20160 13166 0 0 983040 737280 737280 737518 748800 154 26 45 65 126 0 0 0 0 11 0 0 0 0 1 +4553 1783754708589639400 REFRESH 47 0 0.58390571746358577 2 11 2 11 0 0 112 6 424 3943923 55200 150.96832275390625 0.98019999999999996 180.4546 20160 12392 0 0 983040 737280 737280 737523 748800 161 26 57 36 144 0 0 0 0 6 0 0 0 0 0 +4554 1783754708781242100 REFRESH 53 0 0.63955939439215925 0 8 0 8 0 0 152 7 418 3943902 55200 152.55039978027344 0.97940000000000005 190.3511 20160 13587 0 0 983040 737280 737280 737500 748800 171 26 27 60 134 0 0 0 0 7 0 0 0 0 0 +4555 1783754709008683200 REFRESH 31 0 0.6201838291434052 2 6 2 6 0 0 129 5 427 3943893 55200 151.83462524414062 0.98770000000000002 225.49260000000001 20160 13352 0 0 983040 737280 737280 737493 748800 213 25 32 77 80 0 0 0 0 5 0 0 0 0 0 +4556 1783754709200250300 REFRESH 33 0 0.64474998737277933 1 7 1 7 0 0 185 7 418 3943943 55200 153.21498107910156 0.98209999999999997 190.23609999999999 20160 13669 0 0 983040 737280 737280 737543 748800 112 26 48 39 193 0 0 0 0 7 0 0 0 0 0 +4557 1783754709387850700 REFRESH 8 0 0.77145462997504488 2 5 2 5 0 0 228 7 415 3943914 55200 152.82176208496094 0.9738 186.46969999999999 20160 13541 0 0 983040 737280 737280 737512 748800 175 26 30 66 118 0 0 0 0 7 0 0 0 0 0 +4558 1783754709591388600 REFRESH 50 0 0.56794893643971678 2 9 2 9 0 0 131 4 425 3943917 55200 151.52639770507812 0.98040000000000005 187.4667 20160 13229 0 0 983040 737280 737280 737517 748800 133 25 39 46 182 0 0 0 0 4 0 0 0 0 0 +4559 1783754709782679800 REFRESH 45 0 0.60955711652386979 2 7 2 7 0 0 145 9 422 3943914 55200 152.57907104492188 0.98280000000000001 190.04810000000001 20160 13496 0 0 983040 737280 737280 737514 748800 137 25 59 62 139 0 0 0 0 9 0 0 0 0 0 +4560 1783754709982724400 REFRESH 34 0 0.56669820337417409 1 13 1 13 0 0 105 3 435 3943911 55200 150.17062377929688 0.97729999999999995 178.21559999999999 20160 13064 0 0 983040 737280 737280 737511 748800 174 25 59 68 109 0 0 0 0 3 0 0 0 0 0 +4561 1783754710206350900 REFRESH 52 0 0.60814732512320835 1 8 1 8 0 0 109 5 430 3943884 55200 151.59397888183594 0.9798 222.41380000000001 20160 13245 0 0 983040 737280 737280 737484 748800 125 25 37 161 82 0 0 0 0 5 0 0 0 0 0 +4562 1783754710403711100 REFRESH 24 0 0.58498522924029372 4 11 4 11 0 0 135 12 412 3943911 55200 150.93452453613281 0.97450000000000003 181.2424 20160 12144 0 0 983040 737280 737280 737509 748800 92 28 42 59 191 0 0 0 0 12 0 0 0 0 0 +4563 1783754710599443200 REFRESH 37 0 0.58421044379842701 1 12 1 12 0 0 142 9 432 3943915 55200 151.17208862304688 0.98160000000000003 180.66079999999999 20160 12827 0 0 983040 737280 737280 737515 748800 178 26 58 41 129 0 0 0 0 9 0 0 0 0 0 +4564 1783754710799506900 REFRESH 3 0 0.58306994859121186 2 9 2 9 0 0 145 8 423 3943911 55200 152.42547607421875 1.0684 187.27330000000001 20160 13235 0 0 983040 737280 737280 737509 748800 200 25 38 66 94 0 0 0 0 8 0 0 0 0 0 +4565 1783754711011438400 REFRESH 26 0 0.5818111609986516 1 13 1 13 0 0 85 4 427 3943909 55200 150.33445739746094 0.98060000000000003 178.6643 20160 12280 0 0 983040 737280 737280 737509 748800 59 25 39 55 249 0 0 0 0 4 0 0 0 0 0 +4566 1783754711228239900 REFRESH 21 0 0.58418974104681087 0 10 0 10 0 0 178 3 417 3943904 55200 152.90176391601562 0.97629999999999995 204.00200000000001 20160 13443 0 0 983040 737280 737280 737503 748800 110 26 35 105 141 0 0 0 0 3 0 0 0 0 0 +4567 1783754711419721300 REFRESH 36 0 0.5758793049576667 3 10 3 10 0 0 115 5 430 3943920 55200 150.69696044921875 0.98280000000000001 179.6953 20160 12306 0 0 983040 737280 737280 737519 748800 243 25 39 45 78 0 0 0 0 5 0 0 0 0 0 +4568 1783754711609630400 REFRESH 0 0 0.56766196677769631 1 12 1 12 0 0 91 4 430 3943912 55200 150.19418334960938 0.98060000000000003 178.33199999999999 20160 12497 0 0 983040 737280 737280 737512 748800 90 25 44 40 231 0 0 0 0 4 0 0 0 0 0 +4569 1783754711833046800 REFRESH 54 0 0.60341260576802958 1 8 1 8 0 0 114 4 428 3943891 55200 151.79696655273438 0.97509999999999997 221.80070000000001 20160 13483 0 0 983040 737280 737280 737491 748800 133 25 64 129 77 0 0 0 0 4 0 0 0 0 0 +4570 1783754712035449900 REFRESH 20 0 0.55432280957303015 2 11 2 11 0 0 118 3 433 3943889 55200 152.14183044433594 0.97989999999999999 180.79990000000001 20160 13216 0 0 983040 737280 737280 737489 748800 152 25 75 98 83 0 0 0 0 3 0 0 0 0 0 +4571 1783754712227770000 REFRESH 23 0 0.58558559669474475 3 14 3 14 1 0 109 11 412 3943901 55200 151.17106628417969 0.97319999999999995 180.50389999999999 20160 12098 0 0 983040 737280 737280 737500 748800 96 25 45 52 194 1 0 0 0 10 1 0 0 0 0 +4572 1783754712451279300 REFRESH 9 0 0.61526136347502125 2 6 2 6 0 0 137 3 432 3943914 55200 152.36505126953125 0.97599999999999998 222.34119999999999 20160 13685 0 0 983040 737280 737280 737514 748800 152 25 92 83 80 0 0 0 0 3 0 0 0 0 0 +4573 1783754712653745200 REFRESH 25 0 0.57856141760041113 3 11 3 11 0 0 115 7 421 3943928 55200 152.22784423828125 0.9778 181.89519999999999 20160 12026 0 0 983040 737280 737280 737528 748800 117 25 65 75 139 0 0 0 0 7 0 0 0 0 0 +4574 1783754712847212400 REFRESH 27 0 0.58695181742709879 0 14 0 14 0 0 148 17 417 3943924 55200 151.70252990722656 0.97440000000000004 180.9332 20160 12499 0 0 983040 737280 737280 737524 748800 107 26 39 34 211 0 0 0 0 17 0 0 0 0 0 +4575 1783754713033412900 REFRESH 16 0 0.65964680886631055 2 6 2 6 0 0 185 4 416 3943913 55200 152.22169494628906 0.98280000000000001 185.04730000000001 20160 13541 0 0 983040 737280 737280 737512 748800 36 27 26 220 107 0 0 0 0 4 0 0 0 0 0 +4576 1783754713215098700 REFRESH 19 0 0.58672875632134314 2 11 2 11 0 0 133 11 421 3943932 55200 152.04966735839844 0.97799999999999998 180.52809999999999 20160 13156 0 0 983040 737280 737280 737532 748800 104 25 26 45 221 0 0 0 0 11 0 0 0 0 0 +4577 1783754713415542800 REFRESH 18 0 0.58714781369478797 4 15 4 15 1 0 105 10 415 3943901 55200 151.39634704589844 1.01 179.57579999999999 20160 12108 0 0 983040 737280 737280 737501 748800 46 25 26 27 291 0 0 0 0 10 0 0 0 0 1 +4578 1783754713608879300 REFRESH 29 0 0.57608517264415893 1 12 1 12 0 0 128 4 418 3943932 55200 151.7127685546875 0.97370000000000001 181.52520000000001 20160 13261 0 0 983040 737280 737280 737532 748800 120 25 59 48 166 0 0 0 0 4 0 0 0 0 0 +4579 1783754713804563300 REFRESH 22 0 0.5773836952828324 3 11 3 11 0 0 126 11 423 3943893 55200 151.24803161621094 0.97960000000000003 183.65219999999999 20160 12324 0 0 983040 737280 737280 737493 748800 153 25 33 30 182 0 0 0 0 11 0 0 0 0 0 +4580 1783754714050654500 REFRESH 11 0 0.64165015604825304 0 8 0 8 0 0 106 6 418 3943894 55200 150.88946533203125 0.97850000000000004 224.42420000000001 20160 13407 0 0 983040 737280 737280 737494 748800 104 25 57 71 161 0 0 0 0 6 0 0 0 0 0 +4581 1783754715383484600 DEPTH 56 1 0.76842408384162542 2 5 2 5 0 0 217 24 2590 23664790 81600 865.88723754882812 5.8460000000000001 1307.7581 120960 65639 1 0 5898240 4423680 4423680 4426389 4492800 556 156 186 357 1335 0 0 0 0 24 0 0 0 0 0 +4582 1783754716664725600 DEPTH 13 1 0.76504891622929139 1 6 1 6 0 0 185 17 2505 23664798 81600 866.49241638183594 5.8398000000000003 1280.0886 120960 66328 1 0 5898240 4423680 4423680 4426396 4492800 315 154 189 244 1603 0 0 0 0 17 0 0 0 0 0 +4583 1783754717997124300 DEPTH 17 1 0.76486883893310798 0 7 0 7 0 0 196 23 2523 23664832 81600 865.88824462890625 5.8410000000000002 1310.4639999999999 120960 65629 1 0 5898240 4423680 4423680 4426430 4492800 232 156 175 246 1714 0 0 0 0 23 0 0 0 0 0 +4584 1783754719109832800 DEPTH 8 1 0.76935405110858912 2 5 2 5 0 0 228 17 2567 23664875 81600 879.51022338867188 5.8716000000000008 1100.616 120960 66376 1 0 5898240 4423680 4423680 4426466 4492800 307 151 158 192 1759 1 0 0 0 16 0 0 0 0 0 +4585 1783754720400657300 DEPTH 42 1 0.68855361264735437 2 6 2 6 1 0 147 23 2585 23664796 81600 871.76934814453125 5.9074999999999998 1277.6403 120960 65861 1 0 5898240 4423680 4423680 4426395 4492800 150 150 150 150 1985 0 0 0 0 23 0 0 0 0 1 +4586 1783754721637343000 DEPTH 33 1 0.64283471129670133 1 7 1 7 0 0 185 16 2550 23664783 81600 874.74176025390625 5.8402999999999992 1235.5069000000001 120960 66446 1 0 5898240 4423680 4423680 4426382 4492800 210 153 161 156 1870 0 0 0 0 16 0 0 0 0 0 +4587 1783754722895531600 DEPTH 53 1 0.63816846662645565 0 8 0 8 0 0 152 31 2528 23664801 81600 869.69345092773438 5.8545999999999996 1236.5341000000001 120960 65569 1 0 5898240 4423680 4423680 4426397 4492800 224 156 150 170 1828 0 0 0 0 31 0 0 0 0 0 +4588 1783754724129077100 DEPTH 30 1 0.63309832270437028 1 8 1 8 0 0 138 44 2535 23664854 81600 869.18348693847656 5.8654999999999999 1211.6574000000001 120960 66061 1 0 5898240 4423680 4423680 4426451 4492800 156 150 174 150 1905 0 0 0 0 44 0 0 0 0 0 +4589 1783754725466744600 DEPTH 1 1 0.62891364561444363 1 7 1 7 0 0 126 11 2624 23664930 81600 870.31398010253906 5.9000000000000004 1319.7777000000001 120960 65389 1 0 5898240 4423680 4423680 4426530 4492800 431 155 312 357 1369 0 0 0 0 11 0 0 0 0 0 +4590 1783754726797468500 DEPTH 31 1 0.61904692831476793 2 6 2 6 0 0 130 13 2623 23664857 81600 866.91961669921875 5.867 1281.2321999999999 120960 65764 1 0 5898240 4423680 4423680 4426456 4492800 1077 150 192 412 792 0 0 0 0 13 0 0 0 0 0 +4591 1783754727844318500 DEPTH 38 1 0.61337410681980975 2 10 2 10 1 0 120 38 2533 23664832 81600 865.65791320800781 5.8615000000000004 1034.8064999999999 120960 64657 1 0 5898240 4423680 4423680 4426431 4492800 150 150 150 150 1933 0 0 0 0 38 0 0 0 0 3 +4592 1783754729121937700 DEPTH 45 1 0.60902094807231344 2 7 2 7 0 0 145 14 2622 23664736 81600 877.28230285644531 5.8414999999999999 1241.9457 120960 66025 1 0 5898240 4423680 4423680 4426335 4492800 242 150 217 213 1800 0 0 0 0 14 0 0 0 0 0 +4593 1783754730434897900 DEPTH 52 1 0.60577398737123889 1 8 1 8 0 0 109 12 2596 23664882 81600 862.18142700195312 5.8427000000000007 1285.6505999999999 120960 64036 1 0 5898240 4423680 4423680 4426481 4492800 673 150 212 954 607 0 0 0 0 12 0 0 0 0 0 +4594 1783754731776296000 DEPTH 44 1 0.59994221585766483 2 7 2 7 0 0 158 21 2592 23664815 81600 869.31353759765625 5.9078999999999997 1319.9820999999999 120960 65339 1 0 5898240 4423680 4423680 4426411 4492800 291 151 321 174 1655 0 0 0 0 21 0 0 0 0 0 +4595 1783754733098017900 DEPTH 56 1 0.65975554928756108 2 5 2 5 0 0 217 14 2566 23664864 81600 854.04786682128906 5.8566000000000003 1297.5508 120960 54231 1 0 5898240 4423680 4423680 4426463 4492800 580 156 186 427 1217 0 0 0 0 14 0 0 0 0 0 +4596 1783754734345922500 DEPTH 14 1 0.59086640014935821 0 12 0 12 0 0 118 26 2573 23664888 81600 870.52491760253906 5.8538999999999994 1246.7692 120960 62240 1 0 5898240 4423680 4423680 4426486 4492800 263 151 171 199 1789 0 0 0 0 26 0 0 0 0 0 +4597 1783754735620455700 DEPTH 13 1 0.66671961567404969 1 6 1 6 0 0 185 24 2498 23664895 81600 861.03553771972656 5.8428000000000004 1272.2406000000001 120960 54839 1 0 5898240 4423680 4423680 4426494 4492800 314 155 185 289 1555 0 0 0 0 24 0 0 0 0 0 +4598 1783754736920425100 DEPTH 17 1 0.66648423253624167 0 7 0 7 0 0 197 14 2529 23664915 81600 856.90061950683594 5.8378999999999994 1298.7361000000001 120960 54796 1 0 5898240 4423680 4423680 4426513 4492800 216 156 180 257 1720 0 0 0 0 14 0 0 0 0 0 +4599 1783754738036615400 DEPTH 8 1 0.6704131369035905 2 5 2 5 0 0 228 14 2563 23664873 81600 870.30368041992188 5.8708 1092.9494 120960 55365 1 0 5898240 4423680 4423680 4426466 4492800 241 150 156 175 1841 0 0 0 0 14 0 0 0 0 0 +4600 1783754739181980300 DEPTH 16 1 0.65342082563980142 2 6 2 6 0 0 186 19 2549 23664872 81600 874.90354919433594 5.8825000000000003 1120.9855 120960 66018 1 0 5898240 4423680 4423680 4426471 4492800 162 156 156 327 1748 0 0 0 0 19 0 0 0 0 0 +4601 1783754740480616200 DEPTH 9 1 0.6125441897092071 2 6 2 6 0 0 137 4 2629 23664808 81600 868.71061706542969 5.8464999999999998 1297.3586 120960 66429 1 0 5898240 4423680 4423680 4426407 4492800 814 150 473 548 644 0 0 0 0 4 0 0 0 0 0 +4602 1783754741807633300 DEPTH 54 1 0.59967444728992114 1 8 1 8 0 0 114 9 2602 23664821 81600 866.99853515625 5.8482000000000003 1303.9267 120960 65028 1 0 5898240 4423680 4423680 4426420 4492800 730 150 332 791 599 0 0 0 0 9 0 0 0 0 0 +4603 1783754743055028300 DEPTH 2 1 0.58811937767357358 2 8 2 8 0 0 142 32 2544 23664875 81600 868.54757690429688 5.8638000000000003 1246.3115 120960 65992 1 0 5898240 4423680 4423680 4426475 4492800 156 150 150 150 1938 0 0 0 0 32 0 0 0 0 0 +4604 1783754744352301600 DEPTH 41 1 0.58636432794853122 1 10 1 10 1 0 112 27 2575 23664768 81600 861.13090515136719 5.8449999999999998 1272.6039000000001 120960 61919 1 0 5898240 4423680 4423680 4426365 4492800 515 155 247 240 1418 0 0 0 0 27 0 0 0 0 1 +4605 1783754745629148000 DEPTH 42 1 0.6440479778703172 2 6 2 6 0 0 147 30 2576 23664864 81600 863.30081176757812 5.8546000000000005 1249.5624 120960 54599 1 0 5898240 4423680 4423680 4426462 4492800 150 150 150 150 1976 0 0 0 0 30 0 0 0 0 0 +4606 1783754746957047600 DEPTH 11 1 0.63935372393958323 0 8 0 8 0 0 106 12 2534 23664871 81600 861.25074768066406 5.8407000000000009 1305.8979999999999 120960 65308 1 0 5898240 4423680 4423680 4426468 4492800 245 150 196 236 1707 0 0 0 0 12 0 0 0 0 0 +4607 1783754748273811300 DEPTH 56 1 0.64091593939966263 2 5 2 5 0 0 217 15 2581 23664876 81600 852.77632141113281 5.8369 1294.0273 120960 43299 1 0 5898240 4423680 4423680 4426474 4492800 591 156 186 474 1174 0 0 0 0 15 0 0 0 0 0 +4608 1783754749563045700 DEPTH 13 1 0.62818233562941017 1 6 1 6 0 0 185 29 2496 23664909 81600 855.23355102539062 5.8685999999999998 1274.8723 120960 43832 1 0 5898240 4423680 4423680 4426508 4492800 303 155 190 331 1517 0 0 0 0 29 0 0 0 0 0 +4609 1783754750892337500 DEPTH 17 1 0.6278978115741799 0 7 0 7 0 0 197 16 2530 23664889 81600 852.63360595703125 5.8714000000000004 1307.7831000000001 120960 44136 1 0 5898240 4423680 4423680 4426487 4492800 214 156 178 283 1699 0 0 0 0 16 0 0 0 0 0 +4610 1783754751951709400 DEPTH 27 1 0.58655040788758228 0 14 0 14 0 0 149 27 2574 23664819 81600 867.49798583984375 5.8774000000000006 1046.7358999999999 120960 60034 1 0 5898240 4423680 4423680 4426419 4492800 221 156 177 175 1845 0 0 0 0 27 0 0 0 0 0 +4611 1783754753037750700 DEPTH 19 1 0.58620719708741575 2 11 2 11 0 0 133 16 2617 23664887 81600 866.92558288574219 5.8518000000000008 1058.7720999999999 120960 63410 1 0 5898240 4423680 4423680 4426487 4492800 210 150 150 162 1945 0 0 0 0 16 0 0 0 0 0 +4612 1783754754098132300 DEPTH 18 1 0.58617012908236266 4 15 4 15 1 0 109 32 2600 23664848 81600 863.30685424804688 5.8632 1038.1638 120960 57956 1 0 5898240 4423680 4423680 4426447 4492800 177 150 153 173 1947 1 0 0 3 28 0 0 0 0 1 +4613 1783754754307364200 REFRESH 2 0 0.43848060343745443 2 8 2 8 0 0 142 4 414 3943935 55200 151.93702697753906 1.1374 193.03360000000001 20160 13574 0 0 983040 737280 737280 737535 748800 30 25 71 114 174 0 0 0 0 4 0 0 0 0 0 +4614 1783754754513339500 REFRESH 41 0 0.43779634856962168 1 10 1 10 0 0 112 4 416 3943921 55200 151.00227355957031 0.98029999999999995 204.8124 20160 12713 0 0 983040 737280 737280 737520 748800 141 26 61 52 136 0 0 0 0 4 0 0 0 0 0 +4615 1783754754706707800 REFRESH 25 0 0.57689986917249581 3 11 3 11 0 0 115 6 427 3943890 55200 151.95954895019531 0.9758 181.4933 20160 12069 0 0 983040 737280 737280 737489 748800 117 25 65 79 141 0 0 0 0 6 0 0 0 0 0 +4616 1783754754899619500 REFRESH 20 0 0.55006604667365955 2 11 2 11 0 0 118 6 429 3943895 55200 152.30259704589844 0.9768 180.88159999999999 20160 13132 0 0 983040 737280 737280 737495 748800 151 25 74 102 77 0 0 0 0 6 0 0 0 0 0 +4617 1783754755092306000 REFRESH 36 0 0.57264621130060378 3 10 3 10 0 0 115 5 436 3943937 55200 151.4229736328125 0.98229999999999995 180.63460000000001 20160 12206 0 0 983040 737280 737280 737537 748800 243 25 37 42 89 0 0 0 0 5 0 0 0 0 0 +4618 1783754755299037800 REFRESH 42 0 0.57110284490471896 2 6 2 6 0 0 147 6 415 3943915 55200 152.26573181152344 0.97060000000000002 205.0042 20160 13589 0 0 983040 737280 737280 737514 748800 25 25 25 25 315 0 0 0 0 6 0 0 0 0 0 +4619 1783754755508318100 REFRESH 10 0 0.55583210517206783 1 10 1 10 0 0 119 1 428 3943910 55200 150.55973815917969 0.97770000000000001 180.71700000000001 20160 13091 0 0 983040 737280 737280 737510 748800 237 25 39 46 81 0 0 0 0 1 0 0 0 0 0 +4620 1783754755694480100 REFRESH 16 0 0.60374992198256816 2 6 2 6 0 0 186 3 417 3943906 55200 152.61900329589844 0.97909999999999997 184.84229999999999 20160 13509 0 0 983040 737280 737280 737506 748800 37 27 26 233 94 0 0 0 0 3 0 0 0 0 0 +4621 1783754755899181700 REFRESH 35 0 0.58174762527821966 2 11 2 11 0 0 163 10 419 3943904 55200 152.42044067382812 0.97909999999999997 182.47749999999999 20160 13040 0 0 983040 737280 737280 737504 748800 158 25 31 105 100 0 0 0 0 10 0 0 0 0 0 +4622 1783754756092088700 REFRESH 5 0 0.58379324087956297 2 11 2 11 0 0 92 9 424 3943897 55200 150.78604125976562 0.97999999999999998 180.28569999999999 20160 13563 0 0 983040 737280 737280 737497 748800 104 25 96 104 95 0 0 0 0 9 0 0 0 0 0 +4623 1783754756286585200 REFRESH 43 0 0.58455244998867495 3 12 3 12 0 0 135 7 421 3943911 55200 151.77011108398438 0.97470000000000001 182.25880000000001 20160 13144 0 0 983040 737280 737280 737511 748800 166 26 48 68 113 1 0 0 0 6 0 0 0 0 0 +4624 1783754756478687200 REFRESH 23 0 0.58517921825262786 3 14 3 14 1 0 109 10 412 3943901 55200 150.84953308105469 0.97999999999999998 179.92789999999999 20160 12189 0 0 983040 737280 737280 737501 748800 95 25 42 49 201 1 0 0 0 9 1 0 0 0 0 +4625 1783754756670213300 REFRESH 37 0 0.58356106785972461 1 12 1 12 0 0 142 7 429 3943907 55200 150.85670471191406 0.98040000000000005 179.65090000000001 20160 12898 0 0 983040 737280 737280 737507 748800 189 26 61 39 114 0 0 0 0 7 0 0 0 0 0 +4626 1783754756905932900 REFRESH 58 0 0.58482735992405732 2 12 2 12 0 0 123 9 427 3943884 55200 151.69842529296875 0.97699999999999998 180.55840000000001 20160 12727 0 0 983040 737280 737280 737484 748800 112 26 65 67 157 0 0 0 0 9 0 0 0 0 0 +4627 1783754757131817900 REFRESH 17 0 0.69914647912182359 0 7 0 7 0 0 197 4 413 3943899 55200 151.39840698242188 0.98560000000000003 224.73660000000001 20160 13613 0 0 983040 737280 737280 737499 748800 110 26 46 117 114 0 0 0 0 4 0 0 0 0 0 +4628 1783754757321786200 REFRESH 6 0 0.55646626489629569 3 11 3 11 0 0 119 5 414 3943894 55200 150.97360229492188 0.97989999999999999 178.26480000000001 20160 12617 0 0 983040 737280 737280 737493 748800 26 25 25 25 313 0 0 0 0 5 0 0 0 0 0 +4629 1783754757514120600 REFRESH 7 0 0.57905120334264226 1 12 1 12 1 0 132 10 420 3943924 55200 150.67648315429688 0.97489999999999999 180.44589999999999 20160 12393 0 0 983040 737280 737280 737524 748800 150 26 29 35 180 1 0 0 0 9 1 0 0 0 0 +4630 1783754757709134100 REFRESH 51 0 0.56959200154107137 3 12 3 12 0 0 93 3 428 3943882 55200 151.14445495605469 0.98040000000000005 181.06059999999999 20160 12528 0 0 983040 737280 737280 737482 748800 120 25 106 71 106 0 0 0 0 3 0 0 0 0 0 +4631 1783754757935836800 REFRESH 56 0 0.76194409749351588 2 5 2 5 0 0 217 3 414 3943927 55200 151.625732421875 0.97360000000000002 225.41059999999999 20160 13483 0 0 983040 737280 737280 737527 748800 184 26 42 67 95 0 0 0 0 3 0 0 0 0 0 +4632 1783754758133956600 REFRESH 4 0 0.53932681500776125 1 13 1 13 0 0 50 2 416 3943882 55200 149.970947265625 0.97860000000000003 177.55459999999999 20160 12613 0 0 983040 737280 737280 737482 748800 28 25 39 36 288 0 0 0 0 2 0 0 0 0 0 +4633 1783754758328844100 REFRESH 22 0 0.57822559572739918 3 11 3 11 0 0 126 5 422 3943907 55200 151.41477966308594 0.97699999999999998 183.06389999999999 20160 12457 0 0 983040 737280 737280 737507 748800 123 25 27 28 219 0 0 0 0 5 0 0 0 0 0 +4634 1783754758520352000 REFRESH 40 0 0.56846804875557444 1 12 1 12 0 0 119 10 423 3943931 55200 151.04818725585938 0.96730000000000005 179.53880000000001 20160 13409 0 0 983040 737280 737280 737531 748800 163 25 42 96 97 0 0 0 0 10 0 0 0 0 0 +4635 1783754758713231600 REFRESH 57 0 0.58010812198992379 2 12 2 12 0 0 123 7 417 3943910 55200 151.60421752929688 0.96809999999999996 180.70490000000001 20160 12376 0 0 983040 737280 737280 737509 748800 116 26 99 82 94 0 0 0 0 7 0 0 0 0 0 +4636 1783754758902286700 REFRESH 30 0 0.63146076749015823 1 8 1 8 0 0 138 6 415 3943912 55200 151.97395324707031 0.97489999999999999 187.88499999999999 20160 13628 0 0 983040 737280 737280 737512 748800 110 25 67 48 165 0 0 0 0 6 0 0 0 0 0 +4637 1783754759095525900 REFRESH 53 0 0.63989330288417512 0 8 0 8 0 0 152 5 419 3943901 55200 153.94508361816406 0.98070000000000002 191.97040000000001 20160 13530 0 0 983040 737280 737280 737501 748800 167 27 27 60 138 0 0 0 0 5 0 0 0 0 0 +4638 1783754759297718300 REFRESH 24 0 0.58548530138534938 4 11 4 11 0 0 135 10 411 3943921 55200 151.1884765625 0.9748 181.45670000000001 20160 12026 0 0 983040 737280 737280 737521 748800 80 27 40 53 211 0 0 0 0 10 0 0 0 0 0 +4639 1783754759477586800 REFRESH 18 0 0.5851424432308876 4 15 4 15 0 0 109 10 415 3943915 55200 150.71868896484375 0.97170000000000001 178.71250000000001 20160 12116 0 0 983040 737280 737280 737515 748800 55 25 26 27 282 0 0 0 0 10 0 0 0 0 0 +4640 1783754759673896000 REFRESH 8 0 0.7713729273075326 2 5 2 5 0 0 228 6 414 3943945 55200 153.70451354980469 0.97760000000000002 185.65440000000001 20160 13608 0 0 983040 737280 737280 737543 748800 180 27 30 71 106 0 0 0 0 6 0 0 0 0 0 +4641 1783754759856466300 REFRESH 27 0 0.58606708211681713 0 14 0 14 0 0 149 10 410 3943931 55200 151.68511962890625 0.98089999999999999 181.3578 20160 12612 0 0 983040 737280 737280 737531 748800 112 26 39 40 193 0 0 0 0 10 0 0 0 0 0 +4642 1783754760049974900 REFRESH 29 0 0.57058853770592166 1 12 1 12 0 0 128 6 413 3943902 55200 151.51104736328125 0.97860000000000003 181.89019999999999 20160 13194 0 0 983040 737280 737280 737502 748800 125 25 60 51 152 0 0 0 0 6 0 0 0 0 0 +4643 1783754760242726900 REFRESH 46 0 0.58316517286192737 2 15 2 15 0 0 115 9 415 3943918 55200 150.90789794921875 0.97599999999999998 180.4879 20160 12151 0 0 983040 737280 737280 737518 748800 129 26 70 38 152 0 0 0 0 9 0 0 0 0 0 +4644 1783754760465286600 REFRESH 33 0 0.64410753946635824 1 7 1 7 0 0 185 3 417 3943921 55200 152.64358520507812 0.97809999999999997 187.96369999999999 20160 13513 0 0 983040 737280 737280 737521 748800 125 26 52 45 169 0 0 0 0 3 0 0 0 0 0 +4645 1783754760670452200 REFRESH 13 0 0.76950409397377495 1 6 1 6 0 0 185 3 415 3943903 55200 152.09779357910156 0.9788 204.00729999999999 20160 13494 0 0 983040 737280 737280 737502 748800 147 26 58 92 92 0 0 0 0 3 0 0 0 0 0 +4646 1783754760863506900 REFRESH 45 0 0.60951469054284724 2 7 2 7 0 0 145 8 431 3943911 55200 152.73062133789062 0.97389999999999999 191.8252 20160 13474 0 0 983040 737280 737280 737511 748800 136 25 58 56 156 0 0 0 0 8 0 0 0 0 0 +4647 1783754761072033900 REFRESH 3 0 0.58221941962189927 2 9 2 9 0 0 146 11 417 3943933 55200 152.00460815429688 0.98750000000000004 186.2704 20160 13351 0 0 983040 737280 737280 737533 748800 193 25 37 64 98 0 0 0 0 11 0 0 0 0 0 +4648 1783754761280245300 REFRESH 48 0 0.58440429295916219 2 9 2 9 0 0 166 7 411 3943908 55200 152.49305725097656 0.97709999999999997 195.71299999999999 20160 12552 0 0 983040 737280 737280 737508 748800 69 25 40 50 227 0 0 0 0 7 0 0 0 0 0 +4649 1783754761474713800 REFRESH 39 0 0.57339353556853778 3 8 3 8 0 0 173 9 408 3943903 55200 151.74143981933594 0.97509999999999997 181.5342 20160 13504 0 0 983040 737280 737280 737503 748800 115 28 31 36 198 1 0 0 0 8 0 0 0 0 0 +4650 1783754761673765200 REFRESH 12 0 0.58089883202161308 3 8 3 8 0 0 184 9 414 3943921 55200 151.85920715332031 0.998 187.011 20160 12868 0 0 983040 737280 737280 737521 748800 146 26 44 101 97 0 0 0 0 9 0 0 0 0 0 +4651 1783754761876347100 REFRESH 38 0 0.61088722179775035 2 10 2 10 1 0 120 5 418 3943896 55200 151.267333984375 0.97789999999999999 180.12860000000001 20160 13293 0 0 983040 737280 737280 737496 748800 139 26 45 34 174 0 0 0 0 5 0 0 0 0 1 +4652 1783754762094745400 REFRESH 21 0 0.57925612551527994 0 10 0 10 0 0 179 8 416 3943900 55200 152.89958190917969 0.98140000000000005 204.92349999999999 20160 13243 0 0 983040 737280 737280 737499 748800 100 26 34 93 163 0 0 0 0 8 0 0 0 0 0 +4653 1783754762320996700 REFRESH 11 0 0.6412670897272793 0 8 0 8 0 0 106 3 421 3943905 55200 150.719482421875 0.9778 225.13409999999999 20160 13617 0 0 983040 737280 737280 737504 748800 116 25 59 74 147 0 0 0 0 3 0 0 0 0 0 +4654 1783754762527028600 REFRESH 50 0 0.56526540828499994 2 9 2 9 0 0 131 5 424 3943898 55200 151.90118408203125 0.97160000000000002 184.0401 20160 13244 0 0 983040 737280 737280 737497 748800 178 25 42 65 114 0 0 0 0 5 0 0 0 0 0 +4655 1783754762750361700 REFRESH 52 0 0.60861162589543083 1 8 1 8 0 0 109 2 424 3943917 55200 151.41171264648438 0.97750000000000004 222.1662 20160 13329 0 0 983040 737280 737280 737516 748800 124 25 37 160 78 0 0 0 0 2 0 0 0 0 0 +4656 1783754762941333200 REFRESH 0 0 0.56474103077945248 1 12 1 12 0 0 91 2 432 3943908 55200 150.297607421875 0.97660000000000002 178.72640000000001 20160 12488 0 0 983040 737280 737280 737507 748800 92 25 44 37 234 0 0 0 0 2 0 0 0 0 0 +4657 1783754763192829100 REFRESH 44 0 0.60122248663812194 2 7 2 7 0 0 159 7 429 3943912 55200 151.98924255371094 1.0001 226.4024 20160 13535 0 0 983040 737280 737280 737512 748800 92 26 73 39 199 0 0 0 0 7 0 0 0 0 0 +4658 1783754763394441900 REFRESH 49 0 0.57885720800791307 3 10 3 10 0 0 131 9 420 3943879 55200 150.71641540527344 0.97409999999999997 180.69810000000001 20160 12674 0 0 983040 737280 737280 737479 748800 131 26 66 49 148 0 0 0 0 9 0 0 0 0 0 +4659 1783754763585022500 REFRESH 34 0 0.56278471527405505 1 13 1 13 0 0 105 7 435 3943906 55200 150.78810119628906 0.97470000000000001 178.4581 20160 13134 0 0 983040 737280 737280 737506 748800 166 25 54 63 127 0 0 0 0 7 0 0 0 0 0 +4660 1783754763777433900 REFRESH 26 0 0.57767148694745307 1 13 1 13 0 0 85 6 431 3943927 55200 151.84486389160156 0.97489999999999999 180.49270000000001 20160 12260 0 0 983040 737280 737280 737527 748800 62 25 39 55 250 0 0 0 0 6 0 0 0 0 0 +4661 1783754763971904100 REFRESH 55 0 0.58129347152672395 1 12 1 12 0 0 147 6 427 3943915 55200 152.20223999023438 0.97330000000000005 181.72139999999999 20160 13253 0 0 983040 737280 737280 737515 748800 138 25 60 115 89 0 0 0 0 6 0 0 0 0 0 +4662 1783754764196309100 REFRESH 54 0 0.60128651819987389 1 8 1 8 0 0 114 2 429 3943911 55200 152.16026306152344 0.97960000000000003 223.16220000000001 20160 13404 0 0 983040 737280 737280 737511 748800 130 25 63 134 77 0 0 0 0 2 0 0 0 0 0 +4663 1783754764403267200 REFRESH 15 0 0.57810924813079478 3 12 3 12 0 0 100 9 419 3943922 55200 151.60319519042969 0.9748 180.71279999999999 20160 12099 0 0 983040 737280 737280 737522 748800 64 27 34 26 268 0 0 1 0 8 0 0 0 0 0 +4664 1783754764621885300 REFRESH 1 0 0.63192095762086575 1 7 1 7 0 0 126 3 425 3943899 55200 151.78761291503906 0.97089999999999999 217.2825 20160 13545 0 0 983040 737280 737280 737499 748800 134 26 79 85 101 0 0 0 0 3 0 0 0 0 0 +4665 1783754764841484800 REFRESH 31 0 0.62304106563028727 2 6 2 6 0 0 130 4 429 3943927 55200 151.73631286621094 0.97240000000000004 218.37790000000001 20160 13509 0 0 983040 737280 737280 737526 748800 211 25 32 83 78 0 0 0 0 4 0 0 0 0 0 +4666 1783754765045258100 REFRESH 28 0 0.57974464351434474 1 12 1 12 0 0 147 6 411 3943915 55200 151.73939514160156 0.9798 182.5402 20160 12640 0 0 983040 737280 737280 737515 748800 187 26 31 31 136 0 0 0 0 6 0 0 0 0 0 +4667 1783754765226799200 REFRESH 19 0 0.58568637628120368 2 11 2 11 0 0 133 13 424 3943910 55200 151.29190063476562 0.98019999999999996 180.38839999999999 20160 13099 0 0 983040 737280 737280 737510 748800 124 25 26 48 201 0 0 0 0 13 0 0 0 0 0 +4668 1783754765429502100 REFRESH 47 0 0.58115745316067335 2 11 2 11 0 0 112 6 420 3943904 55200 151.24787902832031 0.97199999999999998 180.3305 20160 12496 0 0 983040 737280 737280 737504 748800 151 26 54 37 152 0 0 0 0 6 0 0 0 0 0 +4669 1783754765620436700 REFRESH 32 0 0.57031317057180742 2 14 2 14 0 0 120 8 430 3943903 55200 150.30476379394531 0.97189999999999999 178.65950000000001 20160 12506 0 0 983040 737280 737280 737503 748800 196 25 35 33 141 0 0 0 0 8 0 0 0 0 0 +4670 1783754765811238300 REFRESH 14 0 0.59084731168494464 0 12 0 12 0 0 118 2 416 3943923 55200 151.63494873046875 0.97199999999999998 189.64779999999999 20160 13073 0 0 983040 737280 737280 737523 748800 123 26 32 44 191 0 0 0 0 2 0 0 0 0 0 +4671 1783754766035603900 REFRESH 9 0 0.61111735799092071 2 6 2 6 0 0 137 1 430 3943916 55200 151.84895324707031 0.97860000000000003 223.25800000000001 20160 13545 0 0 983040 737280 737280 737516 748800 152 25 93 80 80 0 0 0 0 1 0 0 0 0 0 +4672 1783754767139167100 DEPTH 8 1 0.76819348648263386 2 5 2 5 0 0 228 28 2560 23664843 81600 876.45899963378906 5.8482000000000003 1102.3943999999999 120960 66827 1 0 5898240 4423680 4423680 4426434 4492800 317 150 157 201 1735 0 0 0 0 28 0 0 0 0 0 +4673 1783754768473049900 DEPTH 56 1 0.7658641432656188 2 5 2 5 0 0 217 11 2596 23664842 81600 863.78608703613281 5.8545000000000007 1306.5858000000001 120960 65228 1 0 5898240 4423680 4423680 4426441 4492800 565 156 186 402 1287 0 0 0 0 11 0 0 0 0 0 +4674 1783754769805991000 DEPTH 17 1 0.76428141510124525 0 7 0 7 0 0 197 17 2532 23664738 81600 866.43528747558594 5.8323 1311.2093 120960 66229 1 0 5898240 4423680 4423680 4426335 4492800 215 156 173 254 1734 0 0 0 0 17 0 0 0 0 0 +4675 1783754771089836600 DEPTH 13 1 0.76365172031524398 1 6 1 6 0 0 185 18 2502 23664855 81600 868.90707397460938 5.8456000000000001 1282.7166 120960 65424 1 0 5898240 4423680 4423680 4426454 4492800 318 155 187 274 1568 0 0 0 0 18 0 0 0 0 0 +4676 1783754772370802400 DEPTH 42 1 0.68447143826480872 2 6 2 6 0 0 147 35 2576 23664828 81600 871.38528442382812 5.8668999999999993 1267.8701000000001 120960 66385 1 0 5898240 4423680 4423680 4426427 4492800 150 150 150 150 1976 0 0 0 0 35 0 0 0 0 0 +4677 1783754773487069200 DEPTH 16 1 0.64705654294156767 2 6 2 6 0 0 187 30 2542 23664841 81600 872.98876953125 5.8929 1115.1335999999999 120960 66176 1 0 5898240 4423680 4423680 4426441 4492800 164 156 156 330 1736 0 0 0 0 30 0 0 0 0 0 +4678 1783754774730297100 DEPTH 33 1 0.63815858005345605 1 7 1 7 0 0 185 31 2541 23664919 81600 875.13212585449219 5.8646000000000003 1221.2828 120960 66128 1 0 5898240 4423680 4423680 4426519 4492800 207 154 163 157 1860 0 0 0 0 31 0 0 0 0 0 +4679 1783754776010748700 DEPTH 53 1 0.63637922730058627 0 8 0 8 0 0 152 22 2531 23664824 81600 871.13215637207031 5.8482000000000003 1247.9819 120960 65543 1 0 5898240 4423680 4423680 4426422 4492800 216 156 150 181 1828 0 0 0 0 22 0 0 0 0 0 +4680 1783754777331433000 DEPTH 11 1 0.63589619588278656 0 8 0 8 0 0 106 8 2518 23664783 81600 860.97100830078125 5.8542999999999994 1297.9824000000001 120960 65713 1 0 5898240 4423680 4423680 4426381 4492800 274 150 198 230 1666 0 0 0 0 8 0 0 0 0 0 +4681 1783754778560061100 DEPTH 30 1 0.62591564852050829 1 8 1 8 0 0 139 32 2530 23664823 81600 867.79107666015625 5.8449999999999998 1205.6142 120960 66499 1 0 5898240 4423680 4423680 4426421 4492800 156 150 174 150 1900 0 0 0 0 32 0 0 0 0 0 +4682 1783754779823511000 DEPTH 45 1 0.6078633243570104 2 7 2 7 0 0 147 24 2614 23664857 81600 873.70780944824219 5.8911999999999995 1241.6054999999999 120960 65822 1 0 5898240 4423680 4423680 4426456 4492800 313 150 228 209 1714 0 0 0 0 24 0 0 0 0 0 +4683 1783754780860210400 DEPTH 38 1 0.6030745871101173 2 10 2 10 1 0 120 38 2533 23664825 81600 865.85630798339844 5.8595999999999995 1035.4965 120960 65435 1 0 5898240 4423680 4423680 4426425 4492800 150 150 150 150 1933 0 0 0 0 38 0 0 0 0 3 +4684 1783754782178940300 DEPTH 52 1 0.60300635139729719 1 8 1 8 0 0 109 16 2593 23664825 81600 861.78933715820312 5.8773999999999997 1285.2221999999999 120960 64290 1 0 5898240 4423680 4423680 4426421 4492800 669 150 214 984 576 0 0 0 0 16 0 0 0 0 0 +4685 1783754783295657600 DEPTH 8 1 0.64927293895660498 2 5 2 5 0 0 228 19 2564 23664846 81600 871.36869812011719 5.8548999999999998 1100.5579 120960 55792 1 0 5898240 4423680 4423680 4426439 4492800 246 150 156 166 1846 0 0 0 0 19 0 0 0 0 0 +4686 1783754784604129500 DEPTH 56 1 0.6473177787814397 2 5 2 5 0 0 217 8 2577 23664864 81600 855.4864501953125 5.8780000000000001 1296.1586 120960 54326 1 0 5898240 4423680 4423680 4426463 4492800 586 156 186 483 1166 0 0 0 0 8 0 0 0 0 0 +4687 1783754785661145200 DEPTH 24 1 0.58574605083862363 4 11 4 11 0 0 136 51 2527 23664825 81600 867.06169128417969 5.8681999999999999 1041.6992 120960 56605 1 0 5898240 4423680 4423680 4426424 4492800 180 154 169 186 1838 0 0 0 0 51 0 0 0 0 0 +4688 1783754787012378100 DEPTH 17 1 0.65582385317389469 0 7 0 7 0 0 197 21 2523 23664867 81600 856.68984985351562 5.8328000000000007 1299.4197999999999 120960 55179 1 0 5898240 4423680 4423680 4426466 4492800 216 156 178 277 1696 0 0 0 0 21 0 0 0 0 0 +4689 1783754788293224000 DEPTH 13 1 0.65532840810266668 1 6 1 6 0 0 185 32 2496 23664852 81600 862.89108276367188 5.8550000000000004 1279.1836000000001 120960 53735 1 0 5898240 4423680 4423680 4426452 4492800 318 156 188 310 1524 0 0 0 0 32 0 0 0 0 0 +4690 1783754789654509700 DEPTH 1 1 0.62748468095090049 1 7 1 7 0 0 126 10 2626 23664853 81600 887.76687622070312 5.8813999999999993 1338.0949000000001 120960 65831 1 0 5898240 4423680 4423680 4426453 4492800 420 153 306 347 1400 0 0 0 0 10 0 0 0 0 0 +4691 1783754790982681500 DEPTH 31 1 0.62049294774212871 2 6 2 6 0 0 132 7 2625 23664753 81600 858.24711608886719 5.8496000000000006 1275.4540999999999 120960 66030 1 0 5898240 4423680 4423680 4426351 4492800 1087 150 192 427 769 0 0 0 0 7 0 0 0 0 0 +4692 1783754792331326000 DEPTH 44 1 0.59926321005206673 2 7 2 7 0 0 160 21 2611 23664858 81600 863.56787109375 5.8489000000000004 1309.3530000000001 120960 65546 1 0 5898240 4423680 4423680 4426455 4492800 210 150 250 167 1834 0 0 0 0 21 0 0 0 0 0 +4693 1783754793655968900 DEPTH 54 1 0.59560193031286768 1 8 1 8 1 0 115 9 2610 23664854 81600 861.37727355957031 5.8740999999999994 1295.6719000000001 120960 64475 1 0 5898240 4423680 4423680 4426452 4492800 720 150 322 824 594 0 0 0 0 9 0 0 0 0 1 +4694 1783754794693475300 DEPTH 27 1 0.58557436327837808 0 14 0 14 0 0 150 42 2572 23664840 81600 861.6090087890625 5.8533999999999997 1036.3133 120960 60574 1 0 5898240 4423680 4423680 4426440 4492800 241 156 185 199 1791 0 0 0 0 42 0 0 0 0 0 +4695 1783754795743186500 DEPTH 23 1 0.58452685954981765 3 14 3 14 1 0 110 42 2530 23664886 81600 860.36685180664062 5.8502999999999998 1033.8898999999999 120960 57784 1 0 5898240 4423680 4423680 4426485 4492800 180 150 150 173 1877 4 0 0 0 38 2 0 0 0 0 +4696 1783754796585542800 DEPTH 42 1 0.63236851329999633 2 6 2 6 0 0 147 21 1716 15776583 58560 582.40092468261719 3.9205999999999999 841.13800000000003 80640 37841 0 0 3932160 2949120 2949120 2950983 2995200 100 100 100 100 1316 0 0 0 0 21 0 0 0 0 0 diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/run.tsv b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/run.tsv new file mode 100644 index 00000000..51c059c4 --- /dev/null +++ b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/run.tsv @@ -0,0 +1,28 @@ +format szilassi-global-search-v3 +run_id b577ed1d-d662-4fba-9fc4-21e2d2b697b2 +node_id LOOKICH +seed 1311515175 +topology_from 0 +topology_to 58 +backend cuda-fp32 +cuda_math standard-fp32 +cuda_chains_requested 0 +cuda_chains_effective 61440 +cuda_iterations_per_batch 64 +cuda_depth_batches 6 +cuda_session_cache 59 +algorithm hybrid-quality-diversity-v1 +control_baseline_fraction 0.25 +strategy_weights baseline:4,replica:3,adaptive:3,pbt:3,injected:3 +fresh_fractions depth:1/4,breadth:7/8,injected-protected +replica_exchange group:8,temperature-ratio:16 +pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04 +verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1 +accounted_fp32_steps proposal-iterations-plus-injection-pbt;setup-retries-excluded +map_elites_bins determinant:8,edge:8,turn:8,extent:8 +map_elites_max_cells_per_topology 4096 +cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only +spsa adam:6,cpu-double,fp32-roundtrip,final-canonical-dd-gate +topology_scheduler ucb-plus-quality,full-refresh-every-5 +cpu_iterations_per_trial 50000 +degeneracy_weight 0.02 diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000001_cebf3280.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000001_cebf3280.szar new file mode 100644 index 00000000..a2aea6e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000001_cebf3280.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000002_35937d48.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000002_35937d48.szar new file mode 100644 index 00000000..e7308315 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000002_35937d48.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000003_8ab80d31.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000003_8ab80d31.szar new file mode 100644 index 00000000..5962c764 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000003_8ab80d31.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000004_064bd378.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000004_064bd378.szar new file mode 100644 index 00000000..f66f03d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000004_064bd378.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000005_04b64cc7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000005_04b64cc7.szar new file mode 100644 index 00000000..298c2350 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000005_04b64cc7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000006_bb5e015d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000006_bb5e015d.szar new file mode 100644 index 00000000..cd15361c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000006_bb5e015d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000007_c18cc799.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000007_c18cc799.szar new file mode 100644 index 00000000..829bc07b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000007_c18cc799.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000008_ca252e6f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000008_ca252e6f.szar new file mode 100644 index 00000000..49329512 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000008_ca252e6f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000009_6e052df5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000009_6e052df5.szar new file mode 100644 index 00000000..899ad86d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000009_6e052df5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000010_677f0caa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000010_677f0caa.szar new file mode 100644 index 00000000..30f44e3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000010_677f0caa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000011_657a2966.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000011_657a2966.szar new file mode 100644 index 00000000..cb70d2a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000011_657a2966.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000012_dce5e37e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000012_dce5e37e.szar new file mode 100644 index 00000000..07476063 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000012_dce5e37e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000013_d9ba5774.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000013_d9ba5774.szar new file mode 100644 index 00000000..48942e75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000013_d9ba5774.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000014_a8cfea09.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000014_a8cfea09.szar new file mode 100644 index 00000000..3db8760b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000014_a8cfea09.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000015_949a581d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000015_949a581d.szar new file mode 100644 index 00000000..ad9f6088 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000015_949a581d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000016_c025ab14.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000016_c025ab14.szar new file mode 100644 index 00000000..7c96f8b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000016_c025ab14.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000017_22394469.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000017_22394469.szar new file mode 100644 index 00000000..8647f110 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000017_22394469.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000018_dfca8d46.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000018_dfca8d46.szar new file mode 100644 index 00000000..ec82de34 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000018_dfca8d46.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000019_00ce0976.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000019_00ce0976.szar new file mode 100644 index 00000000..c065062c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000019_00ce0976.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000020_b9ded941.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000020_b9ded941.szar new file mode 100644 index 00000000..8fdb2481 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000020_b9ded941.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000021_febcab23.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000021_febcab23.szar new file mode 100644 index 00000000..97c3153a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000021_febcab23.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000022_0023f3d9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000022_0023f3d9.szar new file mode 100644 index 00000000..70e79fa4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000022_0023f3d9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000023_3efa4b40.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000023_3efa4b40.szar new file mode 100644 index 00000000..045ee0ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000023_3efa4b40.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000024_5935b584.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000024_5935b584.szar new file mode 100644 index 00000000..d3d36403 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000024_5935b584.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000025_7c29466c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000025_7c29466c.szar new file mode 100644 index 00000000..187a7976 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000025_7c29466c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000026_06043427.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000026_06043427.szar new file mode 100644 index 00000000..ea0e39b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000026_06043427.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000027_74993a9a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000027_74993a9a.szar new file mode 100644 index 00000000..6b93401e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000027_74993a9a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000028_568cf802.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000028_568cf802.szar new file mode 100644 index 00000000..0dc691c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000028_568cf802.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000029_02de3229.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000029_02de3229.szar new file mode 100644 index 00000000..c4ae0f31 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000029_02de3229.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000030_3515084a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000030_3515084a.szar new file mode 100644 index 00000000..d6c63a37 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000030_3515084a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000031_5ac80ea2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000031_5ac80ea2.szar new file mode 100644 index 00000000..9a9504cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000031_5ac80ea2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000032_19cb691a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000032_19cb691a.szar new file mode 100644 index 00000000..fbe0beb5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000032_19cb691a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000033_809b04dd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000033_809b04dd.szar new file mode 100644 index 00000000..13e68f1f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000033_809b04dd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000034_bc70ebc0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000034_bc70ebc0.szar new file mode 100644 index 00000000..265233fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000034_bc70ebc0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000035_5fe8436f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000035_5fe8436f.szar new file mode 100644 index 00000000..6cb169b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000035_5fe8436f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000036_427e436e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000036_427e436e.szar new file mode 100644 index 00000000..d3448aa2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000036_427e436e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000037_020d664d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000037_020d664d.szar new file mode 100644 index 00000000..d1cb0174 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000037_020d664d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000038_6c281e4b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000038_6c281e4b.szar new file mode 100644 index 00000000..dab7c1d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000038_6c281e4b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000039_6ca1eb07.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000039_6ca1eb07.szar new file mode 100644 index 00000000..1f6c80f3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000039_6ca1eb07.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000040_40e33b2d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000040_40e33b2d.szar new file mode 100644 index 00000000..0a3cabb5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000040_40e33b2d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000041_97ec7c86.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000041_97ec7c86.szar new file mode 100644 index 00000000..3ad3122e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000041_97ec7c86.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000042_444947b9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000042_444947b9.szar new file mode 100644 index 00000000..45842d03 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000042_444947b9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000043_7abd18be.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000043_7abd18be.szar new file mode 100644 index 00000000..a9c87cd1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000043_7abd18be.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000044_921e1430.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000044_921e1430.szar new file mode 100644 index 00000000..29711f51 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000044_921e1430.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000045_360a58f0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000045_360a58f0.szar new file mode 100644 index 00000000..ace2b923 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000045_360a58f0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000046_450436cf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000046_450436cf.szar new file mode 100644 index 00000000..fa386314 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000046_450436cf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000047_fc1ee59f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000047_fc1ee59f.szar new file mode 100644 index 00000000..b2fd4de4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000047_fc1ee59f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000048_49c89a1f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000048_49c89a1f.szar new file mode 100644 index 00000000..e75d4a06 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000048_49c89a1f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000049_7e41920c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000049_7e41920c.szar new file mode 100644 index 00000000..11cda13e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000049_7e41920c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000050_624f9610.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000050_624f9610.szar new file mode 100644 index 00000000..33b1feae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000050_624f9610.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000051_db6cdec8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000051_db6cdec8.szar new file mode 100644 index 00000000..a165ed11 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000051_db6cdec8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000052_32d0f8bd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000052_32d0f8bd.szar new file mode 100644 index 00000000..16ce0e02 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000052_32d0f8bd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000053_356f1d30.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000053_356f1d30.szar new file mode 100644 index 00000000..dc32495f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000053_356f1d30.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000054_1ba3cdac.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000054_1ba3cdac.szar new file mode 100644 index 00000000..6583cb20 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000054_1ba3cdac.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000055_d7f994f2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000055_d7f994f2.szar new file mode 100644 index 00000000..4841b5d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000055_d7f994f2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000056_0551be60.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000056_0551be60.szar new file mode 100644 index 00000000..56bd7cbf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/archive/delta_00000000000000000056_0551be60.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000001_d877dc34.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000001_d877dc34.szcp new file mode 100644 index 00000000..40331db2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000001_d877dc34.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000002_91c8d702.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000002_91c8d702.szcp new file mode 100644 index 00000000..14707a83 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000002_91c8d702.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000003_882ccb93.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000003_882ccb93.szcp new file mode 100644 index 00000000..80cc19e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000003_882ccb93.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000004_59d5f4b9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000004_59d5f4b9.szcp new file mode 100644 index 00000000..6f0252d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000004_59d5f4b9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000005_54decdda.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000005_54decdda.szcp new file mode 100644 index 00000000..29aa4b7d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000005_54decdda.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000006_bf29b45c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000006_bf29b45c.szcp new file mode 100644 index 00000000..14d94d5f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000006_bf29b45c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000007_14ead753.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000007_14ead753.szcp new file mode 100644 index 00000000..ac415130 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000007_14ead753.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000008_14ebe098.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000008_14ebe098.szcp new file mode 100644 index 00000000..534980b3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000008_14ebe098.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000009_fac51a3a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000009_fac51a3a.szcp new file mode 100644 index 00000000..dccf2c1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000009_fac51a3a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000010_7ef7a042.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000010_7ef7a042.szcp new file mode 100644 index 00000000..a996aeea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000010_7ef7a042.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000011_44e68c20.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000011_44e68c20.szcp new file mode 100644 index 00000000..cdf9385b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000011_44e68c20.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000012_2bdfdadb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000012_2bdfdadb.szcp new file mode 100644 index 00000000..a134562a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000012_2bdfdadb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000013_c9848101.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000013_c9848101.szcp new file mode 100644 index 00000000..9049452e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000013_c9848101.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000014_51a4d709.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000014_51a4d709.szcp new file mode 100644 index 00000000..deef0f95 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000014_51a4d709.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000015_662c976a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000015_662c976a.szcp new file mode 100644 index 00000000..4de36451 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000015_662c976a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000016_2b118287.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000016_2b118287.szcp new file mode 100644 index 00000000..52fc8168 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000016_2b118287.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000017_d56caefe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000017_d56caefe.szcp new file mode 100644 index 00000000..dcd6fcf4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000017_d56caefe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000018_558de30a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000018_558de30a.szcp new file mode 100644 index 00000000..64a01e11 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000018_558de30a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000019_9f221529.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000019_9f221529.szcp new file mode 100644 index 00000000..a264ed7c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000019_9f221529.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000020_bcba04ff.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000020_bcba04ff.szcp new file mode 100644 index 00000000..73ee853d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000020_bcba04ff.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000021_5d28268d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000021_5d28268d.szcp new file mode 100644 index 00000000..8d7b3d92 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000021_5d28268d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000022_d34e61a0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000022_d34e61a0.szcp new file mode 100644 index 00000000..6ca57ce5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000022_d34e61a0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000023_ecd0561b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000023_ecd0561b.szcp new file mode 100644 index 00000000..8b80196f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000023_ecd0561b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000024_161c8753.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000024_161c8753.szcp new file mode 100644 index 00000000..57e2e237 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000024_161c8753.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000025_3fe1b922.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000025_3fe1b922.szcp new file mode 100644 index 00000000..51828061 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000025_3fe1b922.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000026_4cb4e1a9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000026_4cb4e1a9.szcp new file mode 100644 index 00000000..1b643c8c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000026_4cb4e1a9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000027_9539b740.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000027_9539b740.szcp new file mode 100644 index 00000000..7eabd495 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000027_9539b740.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000028_539f9807.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000028_539f9807.szcp new file mode 100644 index 00000000..2890a7a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000028_539f9807.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000029_a26e30bd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000029_a26e30bd.szcp new file mode 100644 index 00000000..351108ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000029_a26e30bd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000030_7f180fe9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000030_7f180fe9.szcp new file mode 100644 index 00000000..6536cf56 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000030_7f180fe9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000031_6715111c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000031_6715111c.szcp new file mode 100644 index 00000000..f06de139 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000031_6715111c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000032_7c7c84ff.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000032_7c7c84ff.szcp new file mode 100644 index 00000000..6d1b077a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000032_7c7c84ff.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000033_fc8b7425.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000033_fc8b7425.szcp new file mode 100644 index 00000000..ced38ca4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000033_fc8b7425.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000034_9f3c5654.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000034_9f3c5654.szcp new file mode 100644 index 00000000..8b26c4a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000034_9f3c5654.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000035_cd8f92d0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000035_cd8f92d0.szcp new file mode 100644 index 00000000..67bf88c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000035_cd8f92d0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000036_1dfd4f80.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000036_1dfd4f80.szcp new file mode 100644 index 00000000..efcd55f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000036_1dfd4f80.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000037_c5e22120.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000037_c5e22120.szcp new file mode 100644 index 00000000..f48166ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000037_c5e22120.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000038_cfc85aec.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000038_cfc85aec.szcp new file mode 100644 index 00000000..ef8f311b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000038_cfc85aec.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000039_e8f4b7c8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000039_e8f4b7c8.szcp new file mode 100644 index 00000000..ae899996 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000039_e8f4b7c8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000040_e5a377fa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000040_e5a377fa.szcp new file mode 100644 index 00000000..2196a5eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000040_e5a377fa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000041_afb4bb04.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000041_afb4bb04.szcp new file mode 100644 index 00000000..28e1c114 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000041_afb4bb04.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000042_b0fd549b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000042_b0fd549b.szcp new file mode 100644 index 00000000..f2498424 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000042_b0fd549b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000043_d7bf5c73.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000043_d7bf5c73.szcp new file mode 100644 index 00000000..bd3b793f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000043_d7bf5c73.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000044_76af4912.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000044_76af4912.szcp new file mode 100644 index 00000000..3cd9ccb1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000044_76af4912.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000045_dbdd7fbf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000045_dbdd7fbf.szcp new file mode 100644 index 00000000..fac25ab5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000045_dbdd7fbf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000046_9e5b8861.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000046_9e5b8861.szcp new file mode 100644 index 00000000..5e19683f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000046_9e5b8861.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000047_22c83d0d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000047_22c83d0d.szcp new file mode 100644 index 00000000..11fdcbaf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000047_22c83d0d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000048_8de9fdca.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000048_8de9fdca.szcp new file mode 100644 index 00000000..b2db1893 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000048_8de9fdca.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000049_ee2c8cac.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000049_ee2c8cac.szcp new file mode 100644 index 00000000..a54ef244 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000049_ee2c8cac.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000050_62c6e45c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000050_62c6e45c.szcp new file mode 100644 index 00000000..109fc041 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000050_62c6e45c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000051_230288db.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000051_230288db.szcp new file mode 100644 index 00000000..18e23b65 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000051_230288db.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000052_9fc79c8e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000052_9fc79c8e.szcp new file mode 100644 index 00000000..1d4d0644 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000052_9fc79c8e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000053_aee9137e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000053_aee9137e.szcp new file mode 100644 index 00000000..69629b6a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000053_aee9137e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000054_774a8ea6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000054_774a8ea6.szcp new file mode 100644 index 00000000..c03be604 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000054_774a8ea6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000055_532e303c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000055_532e303c.szcp new file mode 100644 index 00000000..5976a332 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000055_532e303c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000056_abd48d28.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000056_abd48d28.szcp new file mode 100644 index 00000000..4735eb97 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_000/checkpoints/checkpoint_00000000000000000056_abd48d28.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000001_c559c7a4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000001_c559c7a4.szar new file mode 100644 index 00000000..e373847b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000001_c559c7a4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000002_b73892aa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000002_b73892aa.szar new file mode 100644 index 00000000..e1457e8c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000002_b73892aa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000003_ad5097b7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000003_ad5097b7.szar new file mode 100644 index 00000000..8de569b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000003_ad5097b7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000004_4e5efb7e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000004_4e5efb7e.szar new file mode 100644 index 00000000..f82c0a1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000004_4e5efb7e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000005_0ed07b58.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000005_0ed07b58.szar new file mode 100644 index 00000000..740eb20c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000005_0ed07b58.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000006_d9c16764.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000006_d9c16764.szar new file mode 100644 index 00000000..6c2ed80b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000006_d9c16764.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000007_c5797b70.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000007_c5797b70.szar new file mode 100644 index 00000000..b6904d75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000007_c5797b70.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000008_850d1af8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000008_850d1af8.szar new file mode 100644 index 00000000..11ffa21c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000008_850d1af8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000009_5d121632.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000009_5d121632.szar new file mode 100644 index 00000000..f8ae3da0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000009_5d121632.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000010_22c0cda3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000010_22c0cda3.szar new file mode 100644 index 00000000..4225fa67 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000010_22c0cda3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000011_e5bac3f4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000011_e5bac3f4.szar new file mode 100644 index 00000000..0e46a8de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000011_e5bac3f4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000012_1beab90a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000012_1beab90a.szar new file mode 100644 index 00000000..d9b1e00a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000012_1beab90a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000013_d980389f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000013_d980389f.szar new file mode 100644 index 00000000..78b32146 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000013_d980389f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000014_817f8d55.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000014_817f8d55.szar new file mode 100644 index 00000000..b54578f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000014_817f8d55.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000015_3126b18e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000015_3126b18e.szar new file mode 100644 index 00000000..eff9c381 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000015_3126b18e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000016_34eaef72.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000016_34eaef72.szar new file mode 100644 index 00000000..c0f1d403 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000016_34eaef72.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000017_e01abbbf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000017_e01abbbf.szar new file mode 100644 index 00000000..e215965e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000017_e01abbbf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000018_1eafd4e1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000018_1eafd4e1.szar new file mode 100644 index 00000000..3fa4bcc7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000018_1eafd4e1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000019_958e0e95.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000019_958e0e95.szar new file mode 100644 index 00000000..969b6970 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000019_958e0e95.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000020_ba022e04.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000020_ba022e04.szar new file mode 100644 index 00000000..27d9829a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000020_ba022e04.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000021_7ebb7ed5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000021_7ebb7ed5.szar new file mode 100644 index 00000000..d6141590 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000021_7ebb7ed5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000022_d682d10b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000022_d682d10b.szar new file mode 100644 index 00000000..d9ec5457 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000022_d682d10b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000023_070381d5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000023_070381d5.szar new file mode 100644 index 00000000..bfd86e73 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000023_070381d5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000024_65c4e9b6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000024_65c4e9b6.szar new file mode 100644 index 00000000..e0799aab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000024_65c4e9b6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000025_20853dee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000025_20853dee.szar new file mode 100644 index 00000000..4ff1aa66 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000025_20853dee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000026_55140218.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000026_55140218.szar new file mode 100644 index 00000000..99846101 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000026_55140218.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000027_2aa55876.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000027_2aa55876.szar new file mode 100644 index 00000000..5c7dc03e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000027_2aa55876.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000028_f9de428a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000028_f9de428a.szar new file mode 100644 index 00000000..1d646572 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000028_f9de428a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000029_55a6071a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000029_55a6071a.szar new file mode 100644 index 00000000..47ba608f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000029_55a6071a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000030_eb492c58.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000030_eb492c58.szar new file mode 100644 index 00000000..4a081a10 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000030_eb492c58.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000031_91a689ec.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000031_91a689ec.szar new file mode 100644 index 00000000..f303ee38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000031_91a689ec.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000032_d0dc9966.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000032_d0dc9966.szar new file mode 100644 index 00000000..87ff4ee8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000032_d0dc9966.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000033_8faa5a6d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000033_8faa5a6d.szar new file mode 100644 index 00000000..18795494 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000033_8faa5a6d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000034_66cd85c7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000034_66cd85c7.szar new file mode 100644 index 00000000..2c8765b3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000034_66cd85c7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000035_41adeb16.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000035_41adeb16.szar new file mode 100644 index 00000000..3f1728d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000035_41adeb16.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000036_39b853d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000036_39b853d7.szar new file mode 100644 index 00000000..28ddc81b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000036_39b853d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000037_489dd443.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000037_489dd443.szar new file mode 100644 index 00000000..f8e04e68 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000037_489dd443.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000038_1b45fc74.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000038_1b45fc74.szar new file mode 100644 index 00000000..17fa6803 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000038_1b45fc74.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000039_04162f87.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000039_04162f87.szar new file mode 100644 index 00000000..9b9e2582 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000039_04162f87.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000040_96b54348.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000040_96b54348.szar new file mode 100644 index 00000000..3a98d661 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000040_96b54348.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000041_3c0436ae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000041_3c0436ae.szar new file mode 100644 index 00000000..bae0dd26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000041_3c0436ae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000042_bf0abc32.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000042_bf0abc32.szar new file mode 100644 index 00000000..eb87ce6f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000042_bf0abc32.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000043_f9bf4713.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000043_f9bf4713.szar new file mode 100644 index 00000000..2e03bce2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000043_f9bf4713.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000044_b3a004f4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000044_b3a004f4.szar new file mode 100644 index 00000000..e8b5cda2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000044_b3a004f4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000045_e283f570.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000045_e283f570.szar new file mode 100644 index 00000000..ad4066d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000045_e283f570.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000046_de12c31c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000046_de12c31c.szar new file mode 100644 index 00000000..a321eb88 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000046_de12c31c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000047_2e6b5fad.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000047_2e6b5fad.szar new file mode 100644 index 00000000..159b95bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000047_2e6b5fad.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000048_b49ab8e9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000048_b49ab8e9.szar new file mode 100644 index 00000000..6272c6d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000048_b49ab8e9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000049_c9ca41c1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000049_c9ca41c1.szar new file mode 100644 index 00000000..b263b8e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000049_c9ca41c1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000050_1ffb2141.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000050_1ffb2141.szar new file mode 100644 index 00000000..dd275870 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000050_1ffb2141.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000051_067e0a15.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000051_067e0a15.szar new file mode 100644 index 00000000..b13aacb4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000051_067e0a15.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000052_766c93e5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000052_766c93e5.szar new file mode 100644 index 00000000..6e192057 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000052_766c93e5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000053_64466153.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000053_64466153.szar new file mode 100644 index 00000000..0a24622e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000053_64466153.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000054_53097b6d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000054_53097b6d.szar new file mode 100644 index 00000000..4771743d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000054_53097b6d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000055_d6a79fa3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000055_d6a79fa3.szar new file mode 100644 index 00000000..5938b56a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000055_d6a79fa3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000056_a9e5408c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000056_a9e5408c.szar new file mode 100644 index 00000000..5c76de96 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000056_a9e5408c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000057_8baf7d6d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000057_8baf7d6d.szar new file mode 100644 index 00000000..b74a420e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000057_8baf7d6d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000058_6c756c7b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000058_6c756c7b.szar new file mode 100644 index 00000000..02f818b6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000058_6c756c7b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000059_8ab32114.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000059_8ab32114.szar new file mode 100644 index 00000000..2a598b35 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000059_8ab32114.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000060_9fea1191.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000060_9fea1191.szar new file mode 100644 index 00000000..f5b31fc5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000060_9fea1191.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000061_b7dcacd1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000061_b7dcacd1.szar new file mode 100644 index 00000000..16cfd94d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000061_b7dcacd1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000062_a41f49ce.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000062_a41f49ce.szar new file mode 100644 index 00000000..415093da Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000062_a41f49ce.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000063_07468713.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000063_07468713.szar new file mode 100644 index 00000000..c1f430de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000063_07468713.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000064_93d47900.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000064_93d47900.szar new file mode 100644 index 00000000..58739cfb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000064_93d47900.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000065_78e70e83.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000065_78e70e83.szar new file mode 100644 index 00000000..157d5848 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000065_78e70e83.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000066_3b6cf839.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000066_3b6cf839.szar new file mode 100644 index 00000000..ab9a79be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000066_3b6cf839.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000067_097d9bbc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000067_097d9bbc.szar new file mode 100644 index 00000000..e606fe34 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000067_097d9bbc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000068_33e436a3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000068_33e436a3.szar new file mode 100644 index 00000000..e111aab9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000068_33e436a3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000069_c950405c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000069_c950405c.szar new file mode 100644 index 00000000..6838ff7e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000069_c950405c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000070_4ef366a1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000070_4ef366a1.szar new file mode 100644 index 00000000..07429f03 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000070_4ef366a1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000071_5a7b10ac.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000071_5a7b10ac.szar new file mode 100644 index 00000000..ac3d1262 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000071_5a7b10ac.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000072_617c8ca6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000072_617c8ca6.szar new file mode 100644 index 00000000..babddeba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000072_617c8ca6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000073_583587d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000073_583587d7.szar new file mode 100644 index 00000000..bcd32f13 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000073_583587d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000074_585aa606.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000074_585aa606.szar new file mode 100644 index 00000000..6a11d74d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000074_585aa606.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000075_9f718b1e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000075_9f718b1e.szar new file mode 100644 index 00000000..66cfb1a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000075_9f718b1e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000076_29a10d3b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000076_29a10d3b.szar new file mode 100644 index 00000000..e3e741e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000076_29a10d3b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000077_441f5385.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000077_441f5385.szar new file mode 100644 index 00000000..451ebf25 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000077_441f5385.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000078_c321f65a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000078_c321f65a.szar new file mode 100644 index 00000000..650faeea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000078_c321f65a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000079_42edb257.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000079_42edb257.szar new file mode 100644 index 00000000..b16bce34 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000079_42edb257.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000080_e0c330e5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000080_e0c330e5.szar new file mode 100644 index 00000000..e93d9ee8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000080_e0c330e5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000081_7190193a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000081_7190193a.szar new file mode 100644 index 00000000..1e3a11fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000081_7190193a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000082_b6576f88.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000082_b6576f88.szar new file mode 100644 index 00000000..a6a4a83b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000082_b6576f88.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000083_f5b0726a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000083_f5b0726a.szar new file mode 100644 index 00000000..0eb0d608 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000083_f5b0726a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000084_31ece0c6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000084_31ece0c6.szar new file mode 100644 index 00000000..12b5119d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000084_31ece0c6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000085_5a8f505a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000085_5a8f505a.szar new file mode 100644 index 00000000..a8c64f2e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000085_5a8f505a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000086_cb0b3667.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000086_cb0b3667.szar new file mode 100644 index 00000000..67489f3b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000086_cb0b3667.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000087_ea159769.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000087_ea159769.szar new file mode 100644 index 00000000..0f4d8a4d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/archive/delta_00000000000000000087_ea159769.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000001_ae7ed87d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000001_ae7ed87d.szcp new file mode 100644 index 00000000..86160880 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000001_ae7ed87d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000002_e5ccc018.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000002_e5ccc018.szcp new file mode 100644 index 00000000..1b50f714 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000002_e5ccc018.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000003_4ae7b0ee.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000003_4ae7b0ee.szcp new file mode 100644 index 00000000..04ef1391 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000003_4ae7b0ee.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000004_d9072453.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000004_d9072453.szcp new file mode 100644 index 00000000..0ca5c142 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000004_d9072453.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000005_5a2bbe23.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000005_5a2bbe23.szcp new file mode 100644 index 00000000..93f1fa06 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000005_5a2bbe23.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000006_c5e4b2a8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000006_c5e4b2a8.szcp new file mode 100644 index 00000000..00784c2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000006_c5e4b2a8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000007_cb44f852.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000007_cb44f852.szcp new file mode 100644 index 00000000..9657abca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000007_cb44f852.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000008_32507c47.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000008_32507c47.szcp new file mode 100644 index 00000000..2500b4da Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000008_32507c47.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000009_51826967.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000009_51826967.szcp new file mode 100644 index 00000000..271308f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000009_51826967.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000010_264c3aaa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000010_264c3aaa.szcp new file mode 100644 index 00000000..8b366475 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000010_264c3aaa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000011_6b381193.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000011_6b381193.szcp new file mode 100644 index 00000000..a7a69ccd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000011_6b381193.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000012_bc7c0291.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000012_bc7c0291.szcp new file mode 100644 index 00000000..a431281c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000012_bc7c0291.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000013_954a9b24.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000013_954a9b24.szcp new file mode 100644 index 00000000..28737d58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000013_954a9b24.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000014_c154fa28.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000014_c154fa28.szcp new file mode 100644 index 00000000..e8ab0d47 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000014_c154fa28.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000015_1e00f8a0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000015_1e00f8a0.szcp new file mode 100644 index 00000000..0d87408a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000015_1e00f8a0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000016_80df88fc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000016_80df88fc.szcp new file mode 100644 index 00000000..f92a8cbb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000016_80df88fc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000017_1c10f980.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000017_1c10f980.szcp new file mode 100644 index 00000000..0dd4ff48 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000017_1c10f980.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000018_f7458f4d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000018_f7458f4d.szcp new file mode 100644 index 00000000..c8b69841 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000018_f7458f4d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000019_4c41e2ea.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000019_4c41e2ea.szcp new file mode 100644 index 00000000..e5f9cf9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000019_4c41e2ea.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000020_e7f76b90.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000020_e7f76b90.szcp new file mode 100644 index 00000000..0bc31ff7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000020_e7f76b90.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000021_fa257e53.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000021_fa257e53.szcp new file mode 100644 index 00000000..a13755a9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000021_fa257e53.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000022_8d25a74f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000022_8d25a74f.szcp new file mode 100644 index 00000000..72eea9f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000022_8d25a74f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000023_93015871.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000023_93015871.szcp new file mode 100644 index 00000000..7a2f3a4c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000023_93015871.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000024_b95bf1a1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000024_b95bf1a1.szcp new file mode 100644 index 00000000..ec08c640 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000024_b95bf1a1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000025_15a7c15e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000025_15a7c15e.szcp new file mode 100644 index 00000000..040a09d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000025_15a7c15e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000026_92fc6465.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000026_92fc6465.szcp new file mode 100644 index 00000000..9f71e52c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000026_92fc6465.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000027_60ad7bb8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000027_60ad7bb8.szcp new file mode 100644 index 00000000..7158de0f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000027_60ad7bb8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000028_f7f5dd35.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000028_f7f5dd35.szcp new file mode 100644 index 00000000..e0f80274 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000028_f7f5dd35.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000029_45d5dff2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000029_45d5dff2.szcp new file mode 100644 index 00000000..753caba2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000029_45d5dff2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000030_9466a135.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000030_9466a135.szcp new file mode 100644 index 00000000..21170bf3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000030_9466a135.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000031_f02ea845.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000031_f02ea845.szcp new file mode 100644 index 00000000..aded66aa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000031_f02ea845.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000032_cfc3b9b6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000032_cfc3b9b6.szcp new file mode 100644 index 00000000..83ef50a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000032_cfc3b9b6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000033_80c79d58.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000033_80c79d58.szcp new file mode 100644 index 00000000..d7c67348 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000033_80c79d58.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000034_d7cd405f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000034_d7cd405f.szcp new file mode 100644 index 00000000..56e540ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000034_d7cd405f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000035_b9839767.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000035_b9839767.szcp new file mode 100644 index 00000000..81833c8b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000035_b9839767.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000036_c0d4b837.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000036_c0d4b837.szcp new file mode 100644 index 00000000..28616c80 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000036_c0d4b837.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000037_ec92a328.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000037_ec92a328.szcp new file mode 100644 index 00000000..9c905810 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000037_ec92a328.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000038_b0fae1a0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000038_b0fae1a0.szcp new file mode 100644 index 00000000..d7ed8945 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000038_b0fae1a0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000039_0db90e27.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000039_0db90e27.szcp new file mode 100644 index 00000000..a509aaff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000039_0db90e27.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000040_2e7fd3a7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000040_2e7fd3a7.szcp new file mode 100644 index 00000000..55519680 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000040_2e7fd3a7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000041_ce4daf11.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000041_ce4daf11.szcp new file mode 100644 index 00000000..685763c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000041_ce4daf11.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000042_820ed074.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000042_820ed074.szcp new file mode 100644 index 00000000..0c18cc27 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000042_820ed074.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000043_406552ac.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000043_406552ac.szcp new file mode 100644 index 00000000..c0406694 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000043_406552ac.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000044_dce57b54.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000044_dce57b54.szcp new file mode 100644 index 00000000..5d2969cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000044_dce57b54.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000045_1f2ca263.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000045_1f2ca263.szcp new file mode 100644 index 00000000..70f1fde4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000045_1f2ca263.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000046_f9caf0ad.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000046_f9caf0ad.szcp new file mode 100644 index 00000000..605ff73e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000046_f9caf0ad.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000047_708c4f00.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000047_708c4f00.szcp new file mode 100644 index 00000000..da3ccbef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000047_708c4f00.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000048_4574e7c0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000048_4574e7c0.szcp new file mode 100644 index 00000000..ed80362b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000048_4574e7c0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000049_0055b751.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000049_0055b751.szcp new file mode 100644 index 00000000..1c0c11c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000049_0055b751.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000050_0b845341.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000050_0b845341.szcp new file mode 100644 index 00000000..3803047f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000050_0b845341.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000051_13106948.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000051_13106948.szcp new file mode 100644 index 00000000..c71d7022 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000051_13106948.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000052_ea6948e8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000052_ea6948e8.szcp new file mode 100644 index 00000000..bc578439 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000052_ea6948e8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000053_95308099.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000053_95308099.szcp new file mode 100644 index 00000000..0214f88e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000053_95308099.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000054_7fb96da1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000054_7fb96da1.szcp new file mode 100644 index 00000000..085e2694 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000054_7fb96da1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000055_b43c639f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000055_b43c639f.szcp new file mode 100644 index 00000000..978a3c6f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000055_b43c639f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000056_1d694017.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000056_1d694017.szcp new file mode 100644 index 00000000..25ac5608 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000056_1d694017.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000057_194a466a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000057_194a466a.szcp new file mode 100644 index 00000000..9576e61c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000057_194a466a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000058_9df45ef5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000058_9df45ef5.szcp new file mode 100644 index 00000000..c10106d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000058_9df45ef5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000059_31fa54b7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000059_31fa54b7.szcp new file mode 100644 index 00000000..ea4b034c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000059_31fa54b7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000060_b67678ae.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000060_b67678ae.szcp new file mode 100644 index 00000000..8d875892 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000060_b67678ae.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000061_37a077d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000061_37a077d1.szcp new file mode 100644 index 00000000..1e263635 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000061_37a077d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000062_afa841b7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000062_afa841b7.szcp new file mode 100644 index 00000000..f50b94b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000062_afa841b7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000063_f9e17847.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000063_f9e17847.szcp new file mode 100644 index 00000000..f0124322 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000063_f9e17847.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000064_942567fb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000064_942567fb.szcp new file mode 100644 index 00000000..ae79228f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000064_942567fb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000065_37733a49.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000065_37733a49.szcp new file mode 100644 index 00000000..e57bad5f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000065_37733a49.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000066_8e568f37.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000066_8e568f37.szcp new file mode 100644 index 00000000..51bfd0e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000066_8e568f37.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000067_d12768aa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000067_d12768aa.szcp new file mode 100644 index 00000000..c7f5eb85 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000067_d12768aa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000068_7ef9834a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000068_7ef9834a.szcp new file mode 100644 index 00000000..6c9bb5fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000068_7ef9834a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000069_54ec64ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000069_54ec64ce.szcp new file mode 100644 index 00000000..59fa42b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000069_54ec64ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000070_8a9dd39b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000070_8a9dd39b.szcp new file mode 100644 index 00000000..4c282bd7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000070_8a9dd39b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000071_6464b7ef.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000071_6464b7ef.szcp new file mode 100644 index 00000000..e18acae2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000071_6464b7ef.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000072_9fe0fe35.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000072_9fe0fe35.szcp new file mode 100644 index 00000000..9053d8fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000072_9fe0fe35.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000073_777ee620.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000073_777ee620.szcp new file mode 100644 index 00000000..18952310 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000073_777ee620.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000074_7ded0feb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000074_7ded0feb.szcp new file mode 100644 index 00000000..2ee7fe1f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000074_7ded0feb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000075_5df944a6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000075_5df944a6.szcp new file mode 100644 index 00000000..72757485 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000075_5df944a6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000076_c474a834.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000076_c474a834.szcp new file mode 100644 index 00000000..ee179495 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000076_c474a834.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000077_92792e85.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000077_92792e85.szcp new file mode 100644 index 00000000..eea03919 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000077_92792e85.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000078_4165df27.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000078_4165df27.szcp new file mode 100644 index 00000000..24dd2252 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000078_4165df27.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000079_c9b54371.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000079_c9b54371.szcp new file mode 100644 index 00000000..fb9f8071 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000079_c9b54371.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000080_98fececc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000080_98fececc.szcp new file mode 100644 index 00000000..43fe8519 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000080_98fececc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000081_b9cd3de9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000081_b9cd3de9.szcp new file mode 100644 index 00000000..9778f316 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000081_b9cd3de9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000082_0b11ec37.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000082_0b11ec37.szcp new file mode 100644 index 00000000..1a0b703e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000082_0b11ec37.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000083_39b74ca6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000083_39b74ca6.szcp new file mode 100644 index 00000000..651bee69 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000083_39b74ca6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000084_28d9002f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000084_28d9002f.szcp new file mode 100644 index 00000000..c5170837 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000084_28d9002f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000085_fc1f720d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000085_fc1f720d.szcp new file mode 100644 index 00000000..b7633870 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000085_fc1f720d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000086_358e71e8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000086_358e71e8.szcp new file mode 100644 index 00000000..3a5cc861 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000086_358e71e8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000087_d90cc5b4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000087_d90cc5b4.szcp new file mode 100644 index 00000000..d9272c76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_001/checkpoints/checkpoint_00000000000000000087_d90cc5b4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000001_f70f45ff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000001_f70f45ff.szar new file mode 100644 index 00000000..96bfc2b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000001_f70f45ff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000002_c46fd0bc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000002_c46fd0bc.szar new file mode 100644 index 00000000..8b18ef43 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000002_c46fd0bc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000003_d7f5f165.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000003_d7f5f165.szar new file mode 100644 index 00000000..fd8b03c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000003_d7f5f165.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000004_c177814c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000004_c177814c.szar new file mode 100644 index 00000000..6aaaf890 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000004_c177814c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000005_6169f482.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000005_6169f482.szar new file mode 100644 index 00000000..ab465b4b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000005_6169f482.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000006_b54b2a4a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000006_b54b2a4a.szar new file mode 100644 index 00000000..e18806ce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000006_b54b2a4a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000007_f4e09355.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000007_f4e09355.szar new file mode 100644 index 00000000..4cd7afc1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000007_f4e09355.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000008_0448b7df.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000008_0448b7df.szar new file mode 100644 index 00000000..0d9953df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000008_0448b7df.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000009_3f208487.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000009_3f208487.szar new file mode 100644 index 00000000..7889fc54 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000009_3f208487.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000010_14b16f42.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000010_14b16f42.szar new file mode 100644 index 00000000..1b4778e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000010_14b16f42.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000011_63902654.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000011_63902654.szar new file mode 100644 index 00000000..95f13dc6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000011_63902654.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000012_f9bcd86f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000012_f9bcd86f.szar new file mode 100644 index 00000000..7323d1cb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000012_f9bcd86f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000013_c1a4ed02.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000013_c1a4ed02.szar new file mode 100644 index 00000000..f704d7a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000013_c1a4ed02.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000014_0656542c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000014_0656542c.szar new file mode 100644 index 00000000..84f8ff16 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000014_0656542c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000015_e6a63f00.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000015_e6a63f00.szar new file mode 100644 index 00000000..4dfb806f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000015_e6a63f00.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000016_9b73ef49.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000016_9b73ef49.szar new file mode 100644 index 00000000..c7a91b3d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000016_9b73ef49.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000017_ab861cc5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000017_ab861cc5.szar new file mode 100644 index 00000000..20c25e6e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000017_ab861cc5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000018_cec12e28.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000018_cec12e28.szar new file mode 100644 index 00000000..f70aa497 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000018_cec12e28.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000019_8ec91c8e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000019_8ec91c8e.szar new file mode 100644 index 00000000..78de0216 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000019_8ec91c8e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000020_07284446.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000020_07284446.szar new file mode 100644 index 00000000..882d45de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000020_07284446.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000021_13edd5c3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000021_13edd5c3.szar new file mode 100644 index 00000000..21ddca9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000021_13edd5c3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000022_6465428c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000022_6465428c.szar new file mode 100644 index 00000000..9ab28236 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000022_6465428c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000023_00c76227.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000023_00c76227.szar new file mode 100644 index 00000000..8d07e3ce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000023_00c76227.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000024_b3d3cc4a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000024_b3d3cc4a.szar new file mode 100644 index 00000000..567c0698 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000024_b3d3cc4a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000025_d4d20d2d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000025_d4d20d2d.szar new file mode 100644 index 00000000..c1ae1328 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000025_d4d20d2d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000026_238c34a4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000026_238c34a4.szar new file mode 100644 index 00000000..4b4b2868 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000026_238c34a4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000027_570a9dc8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000027_570a9dc8.szar new file mode 100644 index 00000000..2af6a04a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000027_570a9dc8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000028_08398d4f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000028_08398d4f.szar new file mode 100644 index 00000000..f946791a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000028_08398d4f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000029_4e046cf1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000029_4e046cf1.szar new file mode 100644 index 00000000..70fedcc7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000029_4e046cf1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000030_268076d0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000030_268076d0.szar new file mode 100644 index 00000000..f64ec209 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000030_268076d0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000031_031f3e04.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000031_031f3e04.szar new file mode 100644 index 00000000..894743c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000031_031f3e04.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000032_e2f87e70.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000032_e2f87e70.szar new file mode 100644 index 00000000..fe31de11 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000032_e2f87e70.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000033_a1dfc833.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000033_a1dfc833.szar new file mode 100644 index 00000000..b0821c06 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000033_a1dfc833.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000034_b9f8cc15.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000034_b9f8cc15.szar new file mode 100644 index 00000000..7a0ae56d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000034_b9f8cc15.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000035_b5d5eb00.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000035_b5d5eb00.szar new file mode 100644 index 00000000..85a11b2d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000035_b5d5eb00.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000036_70cc7b67.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000036_70cc7b67.szar new file mode 100644 index 00000000..3d5e0eed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000036_70cc7b67.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000037_915b3ec1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000037_915b3ec1.szar new file mode 100644 index 00000000..9f37b34c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000037_915b3ec1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000038_355b21d4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000038_355b21d4.szar new file mode 100644 index 00000000..5495cb1d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000038_355b21d4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000039_c65ec30f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000039_c65ec30f.szar new file mode 100644 index 00000000..2955c102 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000039_c65ec30f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000040_3c836391.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000040_3c836391.szar new file mode 100644 index 00000000..2900cc89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000040_3c836391.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000041_61688ec5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000041_61688ec5.szar new file mode 100644 index 00000000..c88c85f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000041_61688ec5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000042_db531129.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000042_db531129.szar new file mode 100644 index 00000000..f8e8369d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000042_db531129.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000043_0851f914.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000043_0851f914.szar new file mode 100644 index 00000000..b3e31501 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000043_0851f914.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000044_c02b8652.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000044_c02b8652.szar new file mode 100644 index 00000000..0392611a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000044_c02b8652.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000045_133e2abb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000045_133e2abb.szar new file mode 100644 index 00000000..e30d3778 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000045_133e2abb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000046_991fa05f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000046_991fa05f.szar new file mode 100644 index 00000000..09433fc3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000046_991fa05f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000047_466215d4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000047_466215d4.szar new file mode 100644 index 00000000..e07f32b3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000047_466215d4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000048_1a3b421f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000048_1a3b421f.szar new file mode 100644 index 00000000..e882d021 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000048_1a3b421f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000049_38321e5c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000049_38321e5c.szar new file mode 100644 index 00000000..997dfabf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000049_38321e5c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000050_4cb41e3d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000050_4cb41e3d.szar new file mode 100644 index 00000000..399b2c1e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000050_4cb41e3d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000051_bc4939d8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000051_bc4939d8.szar new file mode 100644 index 00000000..9f592ccf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000051_bc4939d8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000052_3861ae41.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000052_3861ae41.szar new file mode 100644 index 00000000..de1d1cbb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000052_3861ae41.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000053_aa926cbd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000053_aa926cbd.szar new file mode 100644 index 00000000..cfc5c9da Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000053_aa926cbd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000054_466c410c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000054_466c410c.szar new file mode 100644 index 00000000..49fce5f3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000054_466c410c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000055_e5c6f5f6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000055_e5c6f5f6.szar new file mode 100644 index 00000000..3ca65d32 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000055_e5c6f5f6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000056_3d1a03fb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000056_3d1a03fb.szar new file mode 100644 index 00000000..e8e5cacb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000056_3d1a03fb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000057_e1821967.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000057_e1821967.szar new file mode 100644 index 00000000..07436a03 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000057_e1821967.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000058_af6bd406.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000058_af6bd406.szar new file mode 100644 index 00000000..c0cfa2de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000058_af6bd406.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000059_e1362317.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000059_e1362317.szar new file mode 100644 index 00000000..8bfae8f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000059_e1362317.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000060_86514fe0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000060_86514fe0.szar new file mode 100644 index 00000000..b41f0f36 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000060_86514fe0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000061_1b9d29b3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000061_1b9d29b3.szar new file mode 100644 index 00000000..72d7fdcc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000061_1b9d29b3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000062_af3ba56a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000062_af3ba56a.szar new file mode 100644 index 00000000..1968ae7d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000062_af3ba56a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000063_3e2cbfff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000063_3e2cbfff.szar new file mode 100644 index 00000000..0c8bf3fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000063_3e2cbfff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000064_a2e33955.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000064_a2e33955.szar new file mode 100644 index 00000000..89036a3e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000064_a2e33955.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000065_ccc0a84d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000065_ccc0a84d.szar new file mode 100644 index 00000000..c1d1c6bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000065_ccc0a84d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000066_437f017a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000066_437f017a.szar new file mode 100644 index 00000000..debea9db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000066_437f017a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000067_0a9498c5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000067_0a9498c5.szar new file mode 100644 index 00000000..51d64d58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000067_0a9498c5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000068_c798c766.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000068_c798c766.szar new file mode 100644 index 00000000..14de00bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000068_c798c766.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000069_a1c09acd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000069_a1c09acd.szar new file mode 100644 index 00000000..1f7e1bd0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000069_a1c09acd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000070_37b35bd5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000070_37b35bd5.szar new file mode 100644 index 00000000..64ea8ba2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000070_37b35bd5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000071_a9a431eb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000071_a9a431eb.szar new file mode 100644 index 00000000..7db44911 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000071_a9a431eb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000072_8f594ef4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000072_8f594ef4.szar new file mode 100644 index 00000000..39bd84bd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000072_8f594ef4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000073_94745c6e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000073_94745c6e.szar new file mode 100644 index 00000000..e19859ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/archive/delta_00000000000000000073_94745c6e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000001_9dc8d40b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000001_9dc8d40b.szcp new file mode 100644 index 00000000..b8b2c508 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000001_9dc8d40b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000002_7aedcd39.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000002_7aedcd39.szcp new file mode 100644 index 00000000..22d10cac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000002_7aedcd39.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000003_0e9698bb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000003_0e9698bb.szcp new file mode 100644 index 00000000..1496158e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000003_0e9698bb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000004_edf4f85d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000004_edf4f85d.szcp new file mode 100644 index 00000000..5bf8a76e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000004_edf4f85d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000005_2b06feef.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000005_2b06feef.szcp new file mode 100644 index 00000000..ce82af50 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000005_2b06feef.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000006_311e5076.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000006_311e5076.szcp new file mode 100644 index 00000000..5fc9b4bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000006_311e5076.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000007_7aeb111a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000007_7aeb111a.szcp new file mode 100644 index 00000000..b8b44419 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000007_7aeb111a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000008_2d967402.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000008_2d967402.szcp new file mode 100644 index 00000000..fb47058b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000008_2d967402.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000009_e863a03c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000009_e863a03c.szcp new file mode 100644 index 00000000..928f2a0a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000009_e863a03c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000010_9cbef131.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000010_9cbef131.szcp new file mode 100644 index 00000000..22a5648e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000010_9cbef131.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000011_6073562f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000011_6073562f.szcp new file mode 100644 index 00000000..5202ffae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000011_6073562f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000012_b008ebaf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000012_b008ebaf.szcp new file mode 100644 index 00000000..04fed3ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000012_b008ebaf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000013_af66dfd1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000013_af66dfd1.szcp new file mode 100644 index 00000000..06a14c44 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000013_af66dfd1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000014_bbe72b35.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000014_bbe72b35.szcp new file mode 100644 index 00000000..390a096c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000014_bbe72b35.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000015_f7b2048e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000015_f7b2048e.szcp new file mode 100644 index 00000000..d9ff08a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000015_f7b2048e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000016_6526947a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000016_6526947a.szcp new file mode 100644 index 00000000..964d1ad0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000016_6526947a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000017_4231f660.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000017_4231f660.szcp new file mode 100644 index 00000000..0c357705 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000017_4231f660.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000018_0c58e03a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000018_0c58e03a.szcp new file mode 100644 index 00000000..cf451c6e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000018_0c58e03a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000019_afca3cfc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000019_afca3cfc.szcp new file mode 100644 index 00000000..8438e444 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000019_afca3cfc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000020_c745bffa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000020_c745bffa.szcp new file mode 100644 index 00000000..3bbb432e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000020_c745bffa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000021_f2b409f0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000021_f2b409f0.szcp new file mode 100644 index 00000000..4d851651 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000021_f2b409f0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000022_354161ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000022_354161ce.szcp new file mode 100644 index 00000000..0b03c9ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000022_354161ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000023_564c0330.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000023_564c0330.szcp new file mode 100644 index 00000000..30ae0ea3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000023_564c0330.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000024_fa7211fd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000024_fa7211fd.szcp new file mode 100644 index 00000000..083b38b0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000024_fa7211fd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000025_dc5d0921.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000025_dc5d0921.szcp new file mode 100644 index 00000000..fcc72d0c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000025_dc5d0921.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000026_e08619d2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000026_e08619d2.szcp new file mode 100644 index 00000000..c617d4ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000026_e08619d2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000027_d7f04f08.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000027_d7f04f08.szcp new file mode 100644 index 00000000..fba716f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000027_d7f04f08.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000028_08b18e7a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000028_08b18e7a.szcp new file mode 100644 index 00000000..fb87bba7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000028_08b18e7a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000029_155af01a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000029_155af01a.szcp new file mode 100644 index 00000000..739e3fec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000029_155af01a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000030_e04d2062.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000030_e04d2062.szcp new file mode 100644 index 00000000..c8a3b311 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000030_e04d2062.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000031_f228caa3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000031_f228caa3.szcp new file mode 100644 index 00000000..59b0d79c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000031_f228caa3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000032_b37fead1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000032_b37fead1.szcp new file mode 100644 index 00000000..31dfb495 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000032_b37fead1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000033_826f739e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000033_826f739e.szcp new file mode 100644 index 00000000..01ea01b2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000033_826f739e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000034_8738dd39.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000034_8738dd39.szcp new file mode 100644 index 00000000..dfeb441d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000034_8738dd39.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000035_98e714c8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000035_98e714c8.szcp new file mode 100644 index 00000000..421a2efe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000035_98e714c8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000036_59e11e49.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000036_59e11e49.szcp new file mode 100644 index 00000000..9af1d4da Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000036_59e11e49.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000037_ee953f81.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000037_ee953f81.szcp new file mode 100644 index 00000000..62c9c6e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000037_ee953f81.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000038_c0c822db.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000038_c0c822db.szcp new file mode 100644 index 00000000..8d92778b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000038_c0c822db.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000039_66115459.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000039_66115459.szcp new file mode 100644 index 00000000..f8581638 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000039_66115459.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000040_1fc5f5b6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000040_1fc5f5b6.szcp new file mode 100644 index 00000000..603e634c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000040_1fc5f5b6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000041_ac494a80.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000041_ac494a80.szcp new file mode 100644 index 00000000..137de02d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000041_ac494a80.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000042_fe7a8db2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000042_fe7a8db2.szcp new file mode 100644 index 00000000..7f86f3b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000042_fe7a8db2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000043_5f407ea8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000043_5f407ea8.szcp new file mode 100644 index 00000000..eddd2502 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000043_5f407ea8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000044_7fcb5798.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000044_7fcb5798.szcp new file mode 100644 index 00000000..96e3ef0d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000044_7fcb5798.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000045_a5e372fd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000045_a5e372fd.szcp new file mode 100644 index 00000000..157d2b11 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000045_a5e372fd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000046_6232be32.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000046_6232be32.szcp new file mode 100644 index 00000000..dfa9cd5e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000046_6232be32.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000047_e63d031f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000047_e63d031f.szcp new file mode 100644 index 00000000..107ba3c8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000047_e63d031f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000048_37f6ccd8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000048_37f6ccd8.szcp new file mode 100644 index 00000000..4114d5a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000048_37f6ccd8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000049_a87b68e0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000049_a87b68e0.szcp new file mode 100644 index 00000000..4fe9f5a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000049_a87b68e0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000050_9b172164.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000050_9b172164.szcp new file mode 100644 index 00000000..8bf06e83 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000050_9b172164.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000051_89a3b38e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000051_89a3b38e.szcp new file mode 100644 index 00000000..3acf9daf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000051_89a3b38e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000052_c4778609.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000052_c4778609.szcp new file mode 100644 index 00000000..453b4183 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000052_c4778609.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000053_b02c9308.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000053_b02c9308.szcp new file mode 100644 index 00000000..a7900b01 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000053_b02c9308.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000054_d4bcb9e2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000054_d4bcb9e2.szcp new file mode 100644 index 00000000..c0c7679d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000054_d4bcb9e2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000055_02e1b3ef.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000055_02e1b3ef.szcp new file mode 100644 index 00000000..3a8e1939 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000055_02e1b3ef.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000056_a497124a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000056_a497124a.szcp new file mode 100644 index 00000000..f3dab97d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000056_a497124a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000057_b16f3c55.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000057_b16f3c55.szcp new file mode 100644 index 00000000..ffbc0d39 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000057_b16f3c55.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000058_249254ee.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000058_249254ee.szcp new file mode 100644 index 00000000..130da739 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000058_249254ee.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000059_17a600c0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000059_17a600c0.szcp new file mode 100644 index 00000000..554fc44a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000059_17a600c0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000060_439c6446.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000060_439c6446.szcp new file mode 100644 index 00000000..c3e78918 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000060_439c6446.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000061_62ae4a92.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000061_62ae4a92.szcp new file mode 100644 index 00000000..74218561 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000061_62ae4a92.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000062_59cae014.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000062_59cae014.szcp new file mode 100644 index 00000000..0d4bdb5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000062_59cae014.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000063_597e4f3c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000063_597e4f3c.szcp new file mode 100644 index 00000000..0ff9055f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000063_597e4f3c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000064_1dfeb372.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000064_1dfeb372.szcp new file mode 100644 index 00000000..84cb976b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000064_1dfeb372.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000065_6761eb77.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000065_6761eb77.szcp new file mode 100644 index 00000000..1adbbb64 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000065_6761eb77.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000066_e8155ef1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000066_e8155ef1.szcp new file mode 100644 index 00000000..71fba4fc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000066_e8155ef1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000067_9afd767d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000067_9afd767d.szcp new file mode 100644 index 00000000..05c6664c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000067_9afd767d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000068_035a7ef2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000068_035a7ef2.szcp new file mode 100644 index 00000000..b90bea20 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000068_035a7ef2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000069_45c8dfdf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000069_45c8dfdf.szcp new file mode 100644 index 00000000..2d8fb523 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000069_45c8dfdf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000070_2fb1a02c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000070_2fb1a02c.szcp new file mode 100644 index 00000000..606f1dd4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000070_2fb1a02c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000071_8a055206.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000071_8a055206.szcp new file mode 100644 index 00000000..3a9a97cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000071_8a055206.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000072_53390a55.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000072_53390a55.szcp new file mode 100644 index 00000000..7b994940 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000072_53390a55.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000073_26c9836f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000073_26c9836f.szcp new file mode 100644 index 00000000..156c167f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_002/checkpoints/checkpoint_00000000000000000073_26c9836f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000001_51baade9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000001_51baade9.szar new file mode 100644 index 00000000..91208500 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000001_51baade9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000002_4b05a359.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000002_4b05a359.szar new file mode 100644 index 00000000..b8ece291 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000002_4b05a359.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000003_c81deb3c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000003_c81deb3c.szar new file mode 100644 index 00000000..cb2f97f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000003_c81deb3c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000004_f1488f42.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000004_f1488f42.szar new file mode 100644 index 00000000..91c95f07 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000004_f1488f42.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000005_629eefa6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000005_629eefa6.szar new file mode 100644 index 00000000..659eb27b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000005_629eefa6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000006_305e4b17.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000006_305e4b17.szar new file mode 100644 index 00000000..26512f6c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000006_305e4b17.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000007_f4ec072d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000007_f4ec072d.szar new file mode 100644 index 00000000..275c4423 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000007_f4ec072d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000008_0197d525.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000008_0197d525.szar new file mode 100644 index 00000000..1b1357dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000008_0197d525.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000009_ad53271c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000009_ad53271c.szar new file mode 100644 index 00000000..77113e64 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000009_ad53271c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000010_7666c97d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000010_7666c97d.szar new file mode 100644 index 00000000..d053a0b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000010_7666c97d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000011_8aabc309.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000011_8aabc309.szar new file mode 100644 index 00000000..fb87c58d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000011_8aabc309.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000012_1a1b6cd1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000012_1a1b6cd1.szar new file mode 100644 index 00000000..b03970a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000012_1a1b6cd1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000013_89cbe189.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000013_89cbe189.szar new file mode 100644 index 00000000..b560178b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000013_89cbe189.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000014_20f664d8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000014_20f664d8.szar new file mode 100644 index 00000000..7c02bc23 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000014_20f664d8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000015_4ac3b431.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000015_4ac3b431.szar new file mode 100644 index 00000000..a7651088 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000015_4ac3b431.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000016_c42d7220.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000016_c42d7220.szar new file mode 100644 index 00000000..9219a463 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000016_c42d7220.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000017_39d5c29a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000017_39d5c29a.szar new file mode 100644 index 00000000..680ae9b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000017_39d5c29a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000018_70ccd8c0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000018_70ccd8c0.szar new file mode 100644 index 00000000..7eaa8a47 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000018_70ccd8c0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000019_1737309f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000019_1737309f.szar new file mode 100644 index 00000000..65035b37 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000019_1737309f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000020_f9d410a6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000020_f9d410a6.szar new file mode 100644 index 00000000..f2504a2c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000020_f9d410a6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000021_c4d61bba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000021_c4d61bba.szar new file mode 100644 index 00000000..581ad39d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000021_c4d61bba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000022_e53a3813.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000022_e53a3813.szar new file mode 100644 index 00000000..5224596c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000022_e53a3813.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000023_7755cff4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000023_7755cff4.szar new file mode 100644 index 00000000..56ba2d8c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000023_7755cff4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000024_a2d3a716.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000024_a2d3a716.szar new file mode 100644 index 00000000..02363f06 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000024_a2d3a716.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000025_8bcc8ce8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000025_8bcc8ce8.szar new file mode 100644 index 00000000..fbe9d3fc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000025_8bcc8ce8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000026_f2d694c1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000026_f2d694c1.szar new file mode 100644 index 00000000..60573b37 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000026_f2d694c1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000027_14a7f300.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000027_14a7f300.szar new file mode 100644 index 00000000..aaa9573a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000027_14a7f300.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000028_4f46a04a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000028_4f46a04a.szar new file mode 100644 index 00000000..683470fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000028_4f46a04a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000029_2b3b2455.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000029_2b3b2455.szar new file mode 100644 index 00000000..9acce280 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000029_2b3b2455.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000030_24f02cb9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000030_24f02cb9.szar new file mode 100644 index 00000000..bd9e3242 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000030_24f02cb9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000031_9cad40d6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000031_9cad40d6.szar new file mode 100644 index 00000000..a7e9bddd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000031_9cad40d6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000032_f993a591.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000032_f993a591.szar new file mode 100644 index 00000000..b80d1797 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000032_f993a591.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000033_4feac6f8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000033_4feac6f8.szar new file mode 100644 index 00000000..52c6b11a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000033_4feac6f8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000034_54b2f8c2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000034_54b2f8c2.szar new file mode 100644 index 00000000..30aa0384 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000034_54b2f8c2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000035_1dd81b5b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000035_1dd81b5b.szar new file mode 100644 index 00000000..738e36e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000035_1dd81b5b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000036_e110c119.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000036_e110c119.szar new file mode 100644 index 00000000..4d9d6d6a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000036_e110c119.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000037_f9584a80.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000037_f9584a80.szar new file mode 100644 index 00000000..b04bdc38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000037_f9584a80.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000038_17effcfa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000038_17effcfa.szar new file mode 100644 index 00000000..8a7b127a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000038_17effcfa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000039_7c6e7235.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000039_7c6e7235.szar new file mode 100644 index 00000000..c09dba9b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000039_7c6e7235.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000040_41e917dd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000040_41e917dd.szar new file mode 100644 index 00000000..0394578e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000040_41e917dd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000041_0dadcdc3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000041_0dadcdc3.szar new file mode 100644 index 00000000..a4d379ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000041_0dadcdc3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000042_899bce56.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000042_899bce56.szar new file mode 100644 index 00000000..bc72f398 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000042_899bce56.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000043_c5f30b24.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000043_c5f30b24.szar new file mode 100644 index 00000000..6935fbd7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000043_c5f30b24.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000044_9abb4a23.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000044_9abb4a23.szar new file mode 100644 index 00000000..a8277bb0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000044_9abb4a23.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000045_25193268.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000045_25193268.szar new file mode 100644 index 00000000..266b24a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000045_25193268.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000046_34492e12.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000046_34492e12.szar new file mode 100644 index 00000000..ac99ca68 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000046_34492e12.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000047_ab7ec124.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000047_ab7ec124.szar new file mode 100644 index 00000000..1ebf7053 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000047_ab7ec124.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000048_36ba69ad.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000048_36ba69ad.szar new file mode 100644 index 00000000..68b4618e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000048_36ba69ad.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000049_95096f67.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000049_95096f67.szar new file mode 100644 index 00000000..a016e6dd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000049_95096f67.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000050_0230b63e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000050_0230b63e.szar new file mode 100644 index 00000000..0e1b8d75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000050_0230b63e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000051_c7f69d8a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000051_c7f69d8a.szar new file mode 100644 index 00000000..78516f46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000051_c7f69d8a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000052_0b57d4e6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000052_0b57d4e6.szar new file mode 100644 index 00000000..708e5cc3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000052_0b57d4e6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000053_b831a32a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000053_b831a32a.szar new file mode 100644 index 00000000..78a1d603 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000053_b831a32a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000054_7164e4cf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000054_7164e4cf.szar new file mode 100644 index 00000000..8193d12b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000054_7164e4cf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000055_4cfe4036.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000055_4cfe4036.szar new file mode 100644 index 00000000..57cf9205 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000055_4cfe4036.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000056_e58ae602.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000056_e58ae602.szar new file mode 100644 index 00000000..cc26f8ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000056_e58ae602.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000057_e1c825c3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000057_e1c825c3.szar new file mode 100644 index 00000000..93e07646 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000057_e1c825c3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000058_46816fab.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000058_46816fab.szar new file mode 100644 index 00000000..88b27ce0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000058_46816fab.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000059_18b3ad61.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000059_18b3ad61.szar new file mode 100644 index 00000000..149f5b4a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000059_18b3ad61.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000060_0b78c32d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000060_0b78c32d.szar new file mode 100644 index 00000000..c7669882 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000060_0b78c32d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000061_76e29950.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000061_76e29950.szar new file mode 100644 index 00000000..7dcdf453 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000061_76e29950.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000062_f3bee3f5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000062_f3bee3f5.szar new file mode 100644 index 00000000..4498339f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000062_f3bee3f5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000063_5e2b9dd4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000063_5e2b9dd4.szar new file mode 100644 index 00000000..4a2adb59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000063_5e2b9dd4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000064_5e0ca695.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000064_5e0ca695.szar new file mode 100644 index 00000000..2ea53e77 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/archive/delta_00000000000000000064_5e0ca695.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000001_f01ffe33.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000001_f01ffe33.szcp new file mode 100644 index 00000000..cc839a17 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000001_f01ffe33.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000002_8fe1c5f3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000002_8fe1c5f3.szcp new file mode 100644 index 00000000..5ce78aa3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000002_8fe1c5f3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000003_7a37e652.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000003_7a37e652.szcp new file mode 100644 index 00000000..c76aecce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000003_7a37e652.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000004_16f0e521.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000004_16f0e521.szcp new file mode 100644 index 00000000..ba70755f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000004_16f0e521.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000005_f8951624.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000005_f8951624.szcp new file mode 100644 index 00000000..6ddff781 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000005_f8951624.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000006_e2198950.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000006_e2198950.szcp new file mode 100644 index 00000000..276aa0d0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000006_e2198950.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000007_e8e70b13.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000007_e8e70b13.szcp new file mode 100644 index 00000000..588c6e01 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000007_e8e70b13.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000008_9cc7abb9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000008_9cc7abb9.szcp new file mode 100644 index 00000000..c73afe1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000008_9cc7abb9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000009_e9370775.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000009_e9370775.szcp new file mode 100644 index 00000000..3dbd3228 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000009_e9370775.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000010_6879c520.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000010_6879c520.szcp new file mode 100644 index 00000000..9af9ae07 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000010_6879c520.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000011_79abcccc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000011_79abcccc.szcp new file mode 100644 index 00000000..8bcd96f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000011_79abcccc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000012_0c460a90.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000012_0c460a90.szcp new file mode 100644 index 00000000..58b08a34 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000012_0c460a90.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000013_419e96dd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000013_419e96dd.szcp new file mode 100644 index 00000000..ab6c9b7d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000013_419e96dd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000014_484e77b2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000014_484e77b2.szcp new file mode 100644 index 00000000..0810f03b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000014_484e77b2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000015_6df77ea9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000015_6df77ea9.szcp new file mode 100644 index 00000000..710c2503 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000015_6df77ea9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000016_b70dfdb3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000016_b70dfdb3.szcp new file mode 100644 index 00000000..26769096 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000016_b70dfdb3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000017_5d93d654.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000017_5d93d654.szcp new file mode 100644 index 00000000..c82bfbd3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000017_5d93d654.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000018_5e65dd52.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000018_5e65dd52.szcp new file mode 100644 index 00000000..36e6fd26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000018_5e65dd52.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000019_cc669de7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000019_cc669de7.szcp new file mode 100644 index 00000000..abc41a34 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000019_cc669de7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000020_e8fc3c9e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000020_e8fc3c9e.szcp new file mode 100644 index 00000000..e41c7177 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000020_e8fc3c9e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000021_2a826513.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000021_2a826513.szcp new file mode 100644 index 00000000..b19ea190 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000021_2a826513.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000022_cb714815.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000022_cb714815.szcp new file mode 100644 index 00000000..20429150 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000022_cb714815.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000023_978fd1fb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000023_978fd1fb.szcp new file mode 100644 index 00000000..91479c3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000023_978fd1fb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000024_4cacf518.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000024_4cacf518.szcp new file mode 100644 index 00000000..9d236183 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000024_4cacf518.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000025_1d6f707c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000025_1d6f707c.szcp new file mode 100644 index 00000000..e2fc95ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000025_1d6f707c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000026_d41e368d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000026_d41e368d.szcp new file mode 100644 index 00000000..9ecb0581 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000026_d41e368d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000027_8875e697.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000027_8875e697.szcp new file mode 100644 index 00000000..30e3d3d0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000027_8875e697.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000028_fbe622a0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000028_fbe622a0.szcp new file mode 100644 index 00000000..23dfb5bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000028_fbe622a0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000029_5a24badc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000029_5a24badc.szcp new file mode 100644 index 00000000..c80e9f15 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000029_5a24badc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000030_694efd8a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000030_694efd8a.szcp new file mode 100644 index 00000000..cc1eb726 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000030_694efd8a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000031_94948486.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000031_94948486.szcp new file mode 100644 index 00000000..5e408b1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000031_94948486.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000032_89703d87.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000032_89703d87.szcp new file mode 100644 index 00000000..3395e611 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000032_89703d87.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000033_3952a36f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000033_3952a36f.szcp new file mode 100644 index 00000000..92e7519b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000033_3952a36f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000034_f30164e6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000034_f30164e6.szcp new file mode 100644 index 00000000..00854844 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000034_f30164e6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000035_de1c64fb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000035_de1c64fb.szcp new file mode 100644 index 00000000..ad8d45bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000035_de1c64fb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000036_bede1e7c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000036_bede1e7c.szcp new file mode 100644 index 00000000..7ae83ee3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000036_bede1e7c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000037_2dd00e66.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000037_2dd00e66.szcp new file mode 100644 index 00000000..433b20b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000037_2dd00e66.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000038_e979d695.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000038_e979d695.szcp new file mode 100644 index 00000000..fa9ab8bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000038_e979d695.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000039_1ff18e8a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000039_1ff18e8a.szcp new file mode 100644 index 00000000..4bc4e493 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000039_1ff18e8a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000040_e6e8cc02.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000040_e6e8cc02.szcp new file mode 100644 index 00000000..db1af235 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000040_e6e8cc02.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000041_4b981e57.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000041_4b981e57.szcp new file mode 100644 index 00000000..ce8714fc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000041_4b981e57.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000042_93424a97.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000042_93424a97.szcp new file mode 100644 index 00000000..d09b8426 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000042_93424a97.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000043_4eabcf44.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000043_4eabcf44.szcp new file mode 100644 index 00000000..57a73d5a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000043_4eabcf44.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000044_4d0f07a4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000044_4d0f07a4.szcp new file mode 100644 index 00000000..bf5aa7c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000044_4d0f07a4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000045_6a840ddb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000045_6a840ddb.szcp new file mode 100644 index 00000000..37b017c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000045_6a840ddb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000046_c2595b4c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000046_c2595b4c.szcp new file mode 100644 index 00000000..2556e0b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000046_c2595b4c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000047_488c6f05.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000047_488c6f05.szcp new file mode 100644 index 00000000..0546fc1f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000047_488c6f05.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000048_a7798f26.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000048_a7798f26.szcp new file mode 100644 index 00000000..ba3786c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000048_a7798f26.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000049_5bd6083d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000049_5bd6083d.szcp new file mode 100644 index 00000000..9f110b5a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000049_5bd6083d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000050_9a976562.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000050_9a976562.szcp new file mode 100644 index 00000000..8c74ca99 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000050_9a976562.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000051_ed164dc8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000051_ed164dc8.szcp new file mode 100644 index 00000000..0d9d0981 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000051_ed164dc8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000052_5c235ca2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000052_5c235ca2.szcp new file mode 100644 index 00000000..c3fde662 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000052_5c235ca2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000053_e4d60af4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000053_e4d60af4.szcp new file mode 100644 index 00000000..35c22d38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000053_e4d60af4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000054_5ae3a5f1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000054_5ae3a5f1.szcp new file mode 100644 index 00000000..f9c476f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000054_5ae3a5f1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000055_d2c13f16.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000055_d2c13f16.szcp new file mode 100644 index 00000000..babbf712 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000055_d2c13f16.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000056_b8250998.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000056_b8250998.szcp new file mode 100644 index 00000000..cb321754 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000056_b8250998.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000057_af851031.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000057_af851031.szcp new file mode 100644 index 00000000..bdd87017 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000057_af851031.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000058_79ccac1c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000058_79ccac1c.szcp new file mode 100644 index 00000000..3365cbe7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000058_79ccac1c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000059_48ecd1ae.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000059_48ecd1ae.szcp new file mode 100644 index 00000000..c22dbcd1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000059_48ecd1ae.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000060_a3ab4041.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000060_a3ab4041.szcp new file mode 100644 index 00000000..d418ea7a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000060_a3ab4041.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000061_5dac8552.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000061_5dac8552.szcp new file mode 100644 index 00000000..74f521bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000061_5dac8552.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000062_77359afa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000062_77359afa.szcp new file mode 100644 index 00000000..0ed84d22 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000062_77359afa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000063_8d2d3ff0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000063_8d2d3ff0.szcp new file mode 100644 index 00000000..eac12b0d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000063_8d2d3ff0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000064_1cd27099.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000064_1cd27099.szcp new file mode 100644 index 00000000..d8a0335b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_003/checkpoints/checkpoint_00000000000000000064_1cd27099.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000001_9c2f05ef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000001_9c2f05ef.szar new file mode 100644 index 00000000..b336bdde Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000001_9c2f05ef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000002_59307824.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000002_59307824.szar new file mode 100644 index 00000000..ef2bde3e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000002_59307824.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000003_2a49f47a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000003_2a49f47a.szar new file mode 100644 index 00000000..4e9c3d1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000003_2a49f47a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000004_f82983f6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000004_f82983f6.szar new file mode 100644 index 00000000..db5ec182 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000004_f82983f6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000005_15d5267a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000005_15d5267a.szar new file mode 100644 index 00000000..9c175f10 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000005_15d5267a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000006_65c67f5d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000006_65c67f5d.szar new file mode 100644 index 00000000..be8d02c9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000006_65c67f5d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000007_94006daa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000007_94006daa.szar new file mode 100644 index 00000000..0e28d785 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000007_94006daa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000008_f549dba6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000008_f549dba6.szar new file mode 100644 index 00000000..e928e22b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000008_f549dba6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000009_ec7722e3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000009_ec7722e3.szar new file mode 100644 index 00000000..e30db5a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000009_ec7722e3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000010_d347b80e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000010_d347b80e.szar new file mode 100644 index 00000000..2149251a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000010_d347b80e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000011_f6687600.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000011_f6687600.szar new file mode 100644 index 00000000..546ec184 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000011_f6687600.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000012_3f65f4fd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000012_3f65f4fd.szar new file mode 100644 index 00000000..1a110324 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000012_3f65f4fd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000013_c3129de9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000013_c3129de9.szar new file mode 100644 index 00000000..9181b710 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000013_c3129de9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000014_b9d694b2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000014_b9d694b2.szar new file mode 100644 index 00000000..d3da57cb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000014_b9d694b2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000015_4a0c9d70.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000015_4a0c9d70.szar new file mode 100644 index 00000000..01de04b0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000015_4a0c9d70.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000016_e71a46c9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000016_e71a46c9.szar new file mode 100644 index 00000000..47c09e91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000016_e71a46c9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000017_3884291c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000017_3884291c.szar new file mode 100644 index 00000000..ca5314ac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000017_3884291c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000018_f996d87a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000018_f996d87a.szar new file mode 100644 index 00000000..826c8fe9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000018_f996d87a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000019_2d3caea5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000019_2d3caea5.szar new file mode 100644 index 00000000..5c94bd19 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000019_2d3caea5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000020_38ffad55.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000020_38ffad55.szar new file mode 100644 index 00000000..ada55854 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000020_38ffad55.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000021_ee925a8f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000021_ee925a8f.szar new file mode 100644 index 00000000..c8771e74 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000021_ee925a8f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000022_8b7c011e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000022_8b7c011e.szar new file mode 100644 index 00000000..9a316f90 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000022_8b7c011e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000023_44cf7571.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000023_44cf7571.szar new file mode 100644 index 00000000..9558cf96 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000023_44cf7571.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000024_210e6a50.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000024_210e6a50.szar new file mode 100644 index 00000000..363f3cfc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000024_210e6a50.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000025_d8311b9a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000025_d8311b9a.szar new file mode 100644 index 00000000..4e01abc2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000025_d8311b9a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000026_2cab75bf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000026_2cab75bf.szar new file mode 100644 index 00000000..8ce7e77c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000026_2cab75bf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000027_234e474f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000027_234e474f.szar new file mode 100644 index 00000000..25a2ef2e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000027_234e474f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000028_f1852a22.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000028_f1852a22.szar new file mode 100644 index 00000000..8704b241 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000028_f1852a22.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000029_1348f406.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000029_1348f406.szar new file mode 100644 index 00000000..ca3e8f8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000029_1348f406.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000030_fd60afb6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000030_fd60afb6.szar new file mode 100644 index 00000000..de4d776e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000030_fd60afb6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000031_af110001.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000031_af110001.szar new file mode 100644 index 00000000..9d1a24dd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000031_af110001.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000032_1735f755.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000032_1735f755.szar new file mode 100644 index 00000000..8542e420 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000032_1735f755.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000033_701ddddf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000033_701ddddf.szar new file mode 100644 index 00000000..bcc44341 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000033_701ddddf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000034_aae17e18.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000034_aae17e18.szar new file mode 100644 index 00000000..d1817b1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000034_aae17e18.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000035_b0b8ab82.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000035_b0b8ab82.szar new file mode 100644 index 00000000..d086033f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000035_b0b8ab82.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000036_dc70e1d5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000036_dc70e1d5.szar new file mode 100644 index 00000000..504ddc16 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000036_dc70e1d5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000037_6736e28c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000037_6736e28c.szar new file mode 100644 index 00000000..a6a32095 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000037_6736e28c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000038_3600002a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000038_3600002a.szar new file mode 100644 index 00000000..e850bfdc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000038_3600002a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000039_e0cee829.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000039_e0cee829.szar new file mode 100644 index 00000000..ff138abb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000039_e0cee829.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000040_d22a2b3a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000040_d22a2b3a.szar new file mode 100644 index 00000000..7104aee7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000040_d22a2b3a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000041_e476f9cb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000041_e476f9cb.szar new file mode 100644 index 00000000..78091046 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000041_e476f9cb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000042_ea3945e5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000042_ea3945e5.szar new file mode 100644 index 00000000..5ba5cf2d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000042_ea3945e5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000043_c934d246.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000043_c934d246.szar new file mode 100644 index 00000000..09c2ebc6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000043_c934d246.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000044_e01cd7d3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000044_e01cd7d3.szar new file mode 100644 index 00000000..569ae1d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000044_e01cd7d3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000045_63384b18.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000045_63384b18.szar new file mode 100644 index 00000000..ca7cfeb1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000045_63384b18.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000046_c73cd5dc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000046_c73cd5dc.szar new file mode 100644 index 00000000..b60ab1f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000046_c73cd5dc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000047_13fa473e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000047_13fa473e.szar new file mode 100644 index 00000000..cab73473 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000047_13fa473e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000048_8866744f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000048_8866744f.szar new file mode 100644 index 00000000..fbede958 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/archive/delta_00000000000000000048_8866744f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000001_5b1e6fa5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000001_5b1e6fa5.szcp new file mode 100644 index 00000000..1c6759bf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000001_5b1e6fa5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000002_67660d30.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000002_67660d30.szcp new file mode 100644 index 00000000..90805070 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000002_67660d30.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000003_74b76bad.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000003_74b76bad.szcp new file mode 100644 index 00000000..0c07c8ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000003_74b76bad.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000004_0d4bde60.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000004_0d4bde60.szcp new file mode 100644 index 00000000..bce0f429 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000004_0d4bde60.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000005_f1a5a94b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000005_f1a5a94b.szcp new file mode 100644 index 00000000..294f8e81 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000005_f1a5a94b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000006_ac05bf1f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000006_ac05bf1f.szcp new file mode 100644 index 00000000..2ac93447 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000006_ac05bf1f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000007_fa25eef2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000007_fa25eef2.szcp new file mode 100644 index 00000000..ae8a216e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000007_fa25eef2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000008_ee009592.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000008_ee009592.szcp new file mode 100644 index 00000000..8c29d44f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000008_ee009592.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000009_cf624984.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000009_cf624984.szcp new file mode 100644 index 00000000..2480c3c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000009_cf624984.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000010_948b89cd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000010_948b89cd.szcp new file mode 100644 index 00000000..a42c05e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000010_948b89cd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000011_842daff4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000011_842daff4.szcp new file mode 100644 index 00000000..7b1e74a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000011_842daff4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000012_6b9462c6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000012_6b9462c6.szcp new file mode 100644 index 00000000..a2ecd08e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000012_6b9462c6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000013_472b6d14.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000013_472b6d14.szcp new file mode 100644 index 00000000..bfb9faff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000013_472b6d14.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000014_a11bc9cf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000014_a11bc9cf.szcp new file mode 100644 index 00000000..81ba38c8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000014_a11bc9cf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000015_43a6a48b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000015_43a6a48b.szcp new file mode 100644 index 00000000..6414c2bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000015_43a6a48b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000016_1f3dafdb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000016_1f3dafdb.szcp new file mode 100644 index 00000000..aeac1a11 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000016_1f3dafdb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000017_6d6a6646.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000017_6d6a6646.szcp new file mode 100644 index 00000000..2feee8df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000017_6d6a6646.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000018_445d419d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000018_445d419d.szcp new file mode 100644 index 00000000..191a0af9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000018_445d419d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000019_b55b81ac.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000019_b55b81ac.szcp new file mode 100644 index 00000000..ebf4fec2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000019_b55b81ac.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000020_8b775af9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000020_8b775af9.szcp new file mode 100644 index 00000000..d372e3b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000020_8b775af9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000021_d8da398e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000021_d8da398e.szcp new file mode 100644 index 00000000..ec52cb4b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000021_d8da398e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000022_e3b48072.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000022_e3b48072.szcp new file mode 100644 index 00000000..2830fbe6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000022_e3b48072.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000023_349ef8b2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000023_349ef8b2.szcp new file mode 100644 index 00000000..2dab80ac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000023_349ef8b2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000024_91d4014e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000024_91d4014e.szcp new file mode 100644 index 00000000..3baa15b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000024_91d4014e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000025_7e29f489.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000025_7e29f489.szcp new file mode 100644 index 00000000..41ede2df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000025_7e29f489.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000026_e6a7e606.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000026_e6a7e606.szcp new file mode 100644 index 00000000..49596d89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000026_e6a7e606.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000027_6897c623.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000027_6897c623.szcp new file mode 100644 index 00000000..21415a3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000027_6897c623.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000028_879c1707.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000028_879c1707.szcp new file mode 100644 index 00000000..4b9c2af0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000028_879c1707.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000029_21bb947d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000029_21bb947d.szcp new file mode 100644 index 00000000..f41a0eaf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000029_21bb947d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000030_d0345ae7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000030_d0345ae7.szcp new file mode 100644 index 00000000..4805c60f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000030_d0345ae7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000031_8382f891.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000031_8382f891.szcp new file mode 100644 index 00000000..298ef225 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000031_8382f891.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000032_65c705da.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000032_65c705da.szcp new file mode 100644 index 00000000..f1987f16 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000032_65c705da.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000033_7d801e11.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000033_7d801e11.szcp new file mode 100644 index 00000000..7c1fafd9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000033_7d801e11.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000034_ad72e0ab.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000034_ad72e0ab.szcp new file mode 100644 index 00000000..e51a066f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000034_ad72e0ab.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000035_0c3bca49.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000035_0c3bca49.szcp new file mode 100644 index 00000000..2bb98dac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000035_0c3bca49.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000036_317c88ab.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000036_317c88ab.szcp new file mode 100644 index 00000000..84661e00 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000036_317c88ab.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000037_3a1d83a0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000037_3a1d83a0.szcp new file mode 100644 index 00000000..d8072f81 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000037_3a1d83a0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000038_504279f8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000038_504279f8.szcp new file mode 100644 index 00000000..da3e7766 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000038_504279f8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000039_d80c4e88.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000039_d80c4e88.szcp new file mode 100644 index 00000000..adace542 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000039_d80c4e88.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000040_d9cbb1f4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000040_d9cbb1f4.szcp new file mode 100644 index 00000000..ecd8dbfd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000040_d9cbb1f4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000041_38dd05d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000041_38dd05d1.szcp new file mode 100644 index 00000000..5647ea10 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000041_38dd05d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000042_b1b8ab7e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000042_b1b8ab7e.szcp new file mode 100644 index 00000000..b01c4df5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000042_b1b8ab7e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000043_259ba952.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000043_259ba952.szcp new file mode 100644 index 00000000..3e0f08a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000043_259ba952.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000044_ab54f888.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000044_ab54f888.szcp new file mode 100644 index 00000000..09ddb809 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000044_ab54f888.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000045_5e417708.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000045_5e417708.szcp new file mode 100644 index 00000000..592763e9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000045_5e417708.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000046_93a32642.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000046_93a32642.szcp new file mode 100644 index 00000000..e63d5a7e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000046_93a32642.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000047_8246aece.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000047_8246aece.szcp new file mode 100644 index 00000000..00005707 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000047_8246aece.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000048_13c8d9c9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000048_13c8d9c9.szcp new file mode 100644 index 00000000..57a1a8fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000048_13c8d9c9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000049_e8c78810.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000049_e8c78810.szcp new file mode 100644 index 00000000..7b093d0d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000049_e8c78810.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000050_3f98ee99.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000050_3f98ee99.szcp new file mode 100644 index 00000000..402c1413 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000050_3f98ee99.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000051_4a3f3c58.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000051_4a3f3c58.szcp new file mode 100644 index 00000000..bc2bbbf4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_004/checkpoints/checkpoint_00000000000000000051_4a3f3c58.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000001_837c9b29.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000001_837c9b29.szar new file mode 100644 index 00000000..eac3ef1f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000001_837c9b29.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000002_66a44fa4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000002_66a44fa4.szar new file mode 100644 index 00000000..5203772a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000002_66a44fa4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000003_3a1de6dd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000003_3a1de6dd.szar new file mode 100644 index 00000000..6373fcfa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000003_3a1de6dd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000004_83d32e1a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000004_83d32e1a.szar new file mode 100644 index 00000000..34b71305 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000004_83d32e1a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000005_ce1cf33d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000005_ce1cf33d.szar new file mode 100644 index 00000000..13f722d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000005_ce1cf33d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000006_7bd75cbb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000006_7bd75cbb.szar new file mode 100644 index 00000000..1f4ebc0d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000006_7bd75cbb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000007_2f2894b4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000007_2f2894b4.szar new file mode 100644 index 00000000..da4b6385 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000007_2f2894b4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000008_0e1bb3fd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000008_0e1bb3fd.szar new file mode 100644 index 00000000..b64e9d57 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000008_0e1bb3fd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000009_2e010311.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000009_2e010311.szar new file mode 100644 index 00000000..05be7abe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000009_2e010311.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000010_3d5780fc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000010_3d5780fc.szar new file mode 100644 index 00000000..c259f98b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000010_3d5780fc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000011_040902a8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000011_040902a8.szar new file mode 100644 index 00000000..4cff3a6f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000011_040902a8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000012_59982af8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000012_59982af8.szar new file mode 100644 index 00000000..e04803c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000012_59982af8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000013_1d8dd2e1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000013_1d8dd2e1.szar new file mode 100644 index 00000000..b6868df4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000013_1d8dd2e1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000014_01c90b94.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000014_01c90b94.szar new file mode 100644 index 00000000..be9f13e4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000014_01c90b94.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000015_b14d30a6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000015_b14d30a6.szar new file mode 100644 index 00000000..7e90c01a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000015_b14d30a6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000016_a89774f6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000016_a89774f6.szar new file mode 100644 index 00000000..882feb2f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000016_a89774f6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000017_c7cafa0a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000017_c7cafa0a.szar new file mode 100644 index 00000000..43a5ca75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000017_c7cafa0a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000018_473e1b32.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000018_473e1b32.szar new file mode 100644 index 00000000..3973aece Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000018_473e1b32.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000019_fc25d9d9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000019_fc25d9d9.szar new file mode 100644 index 00000000..cf931e9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000019_fc25d9d9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000020_cd362650.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000020_cd362650.szar new file mode 100644 index 00000000..22046d5c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000020_cd362650.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000021_4320a54c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000021_4320a54c.szar new file mode 100644 index 00000000..f1752e8f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000021_4320a54c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000022_5597bc9e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000022_5597bc9e.szar new file mode 100644 index 00000000..3073a88e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000022_5597bc9e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000023_48130506.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000023_48130506.szar new file mode 100644 index 00000000..97e172a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000023_48130506.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000024_a0f3be5d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000024_a0f3be5d.szar new file mode 100644 index 00000000..91959ba4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000024_a0f3be5d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000025_d2dfb727.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000025_d2dfb727.szar new file mode 100644 index 00000000..77594ff8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000025_d2dfb727.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000026_874d00ca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000026_874d00ca.szar new file mode 100644 index 00000000..3ba03b55 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000026_874d00ca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000027_4f125bca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000027_4f125bca.szar new file mode 100644 index 00000000..e8bd3489 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000027_4f125bca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000028_33b30dde.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000028_33b30dde.szar new file mode 100644 index 00000000..83488724 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000028_33b30dde.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000029_a1242551.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000029_a1242551.szar new file mode 100644 index 00000000..0a051eae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000029_a1242551.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000030_b136b07f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000030_b136b07f.szar new file mode 100644 index 00000000..34379bb1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000030_b136b07f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000031_4225d3d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000031_4225d3d7.szar new file mode 100644 index 00000000..7f95f1ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000031_4225d3d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000032_02db71e4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000032_02db71e4.szar new file mode 100644 index 00000000..82f132a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000032_02db71e4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000033_a69bf2a5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000033_a69bf2a5.szar new file mode 100644 index 00000000..a9d4200a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000033_a69bf2a5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000034_fdc76843.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000034_fdc76843.szar new file mode 100644 index 00000000..11500d9c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000034_fdc76843.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000035_99e80f06.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000035_99e80f06.szar new file mode 100644 index 00000000..b275ccf7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000035_99e80f06.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000036_a1687efb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000036_a1687efb.szar new file mode 100644 index 00000000..9789cebf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000036_a1687efb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000037_368dc566.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000037_368dc566.szar new file mode 100644 index 00000000..2fe47290 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000037_368dc566.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000038_df8b9c6e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000038_df8b9c6e.szar new file mode 100644 index 00000000..4a871ecd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000038_df8b9c6e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000039_d9c96d67.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000039_d9c96d67.szar new file mode 100644 index 00000000..1e07aa52 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000039_d9c96d67.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000040_f89e3415.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000040_f89e3415.szar new file mode 100644 index 00000000..b34d0aea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000040_f89e3415.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000041_b2be9f41.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000041_b2be9f41.szar new file mode 100644 index 00000000..afd44b9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000041_b2be9f41.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000042_d3d01fc7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000042_d3d01fc7.szar new file mode 100644 index 00000000..5d85087e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000042_d3d01fc7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000043_61a4d199.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000043_61a4d199.szar new file mode 100644 index 00000000..c73a58ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000043_61a4d199.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000044_21d049aa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000044_21d049aa.szar new file mode 100644 index 00000000..cb94758c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000044_21d049aa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000045_8b854a8b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000045_8b854a8b.szar new file mode 100644 index 00000000..9cf3d0be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000045_8b854a8b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000046_540df02c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000046_540df02c.szar new file mode 100644 index 00000000..4cf08551 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000046_540df02c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000047_0c35963d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000047_0c35963d.szar new file mode 100644 index 00000000..328a7338 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000047_0c35963d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000048_52903498.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000048_52903498.szar new file mode 100644 index 00000000..f3c1945f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000048_52903498.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000049_bab62bce.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000049_bab62bce.szar new file mode 100644 index 00000000..c21871d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000049_bab62bce.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000050_4e455a0a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000050_4e455a0a.szar new file mode 100644 index 00000000..2882c868 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000050_4e455a0a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000051_bf5bedba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000051_bf5bedba.szar new file mode 100644 index 00000000..74c1aa5e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000051_bf5bedba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000052_071826fd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000052_071826fd.szar new file mode 100644 index 00000000..259b2f8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000052_071826fd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000053_75a54b63.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000053_75a54b63.szar new file mode 100644 index 00000000..1265a0c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000053_75a54b63.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000054_25459bfb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000054_25459bfb.szar new file mode 100644 index 00000000..49aec01d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/archive/delta_00000000000000000054_25459bfb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000001_1207d663.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000001_1207d663.szcp new file mode 100644 index 00000000..d6c8376e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000001_1207d663.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000002_51671974.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000002_51671974.szcp new file mode 100644 index 00000000..eff52044 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000002_51671974.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000003_81fa20cc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000003_81fa20cc.szcp new file mode 100644 index 00000000..53a402cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000003_81fa20cc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000004_9b6aae8f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000004_9b6aae8f.szcp new file mode 100644 index 00000000..9eb000bd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000004_9b6aae8f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000005_0cce4f84.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000005_0cce4f84.szcp new file mode 100644 index 00000000..c18bc81e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000005_0cce4f84.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000006_419e3fde.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000006_419e3fde.szcp new file mode 100644 index 00000000..8e351e97 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000006_419e3fde.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000007_ad91b387.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000007_ad91b387.szcp new file mode 100644 index 00000000..51c9ec40 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000007_ad91b387.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000008_66f0d397.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000008_66f0d397.szcp new file mode 100644 index 00000000..238a954a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000008_66f0d397.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000009_b1fca6b0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000009_b1fca6b0.szcp new file mode 100644 index 00000000..990f5ee7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000009_b1fca6b0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000010_3cd6e299.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000010_3cd6e299.szcp new file mode 100644 index 00000000..475c03b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000010_3cd6e299.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000011_c22c292e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000011_c22c292e.szcp new file mode 100644 index 00000000..47857c9b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000011_c22c292e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000012_c3c4e024.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000012_c3c4e024.szcp new file mode 100644 index 00000000..6ce1f617 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000012_c3c4e024.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000013_6f24464d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000013_6f24464d.szcp new file mode 100644 index 00000000..622b0804 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000013_6f24464d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000014_da0277d3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000014_da0277d3.szcp new file mode 100644 index 00000000..a60aa244 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000014_da0277d3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000015_4f51f271.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000015_4f51f271.szcp new file mode 100644 index 00000000..c01d5cc4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000015_4f51f271.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000016_af930eae.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000016_af930eae.szcp new file mode 100644 index 00000000..d35c3994 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000016_af930eae.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000017_3e9a66e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000017_3e9a66e9.szcp new file mode 100644 index 00000000..f5314ff2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000017_3e9a66e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000018_dc683fd3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000018_dc683fd3.szcp new file mode 100644 index 00000000..df942ab2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000018_dc683fd3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000019_dfe08097.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000019_dfe08097.szcp new file mode 100644 index 00000000..a7377edf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000019_dfe08097.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000020_c055b17f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000020_c055b17f.szcp new file mode 100644 index 00000000..204ab62f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000020_c055b17f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000021_02eb3b74.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000021_02eb3b74.szcp new file mode 100644 index 00000000..182061a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000021_02eb3b74.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000022_c95bfbda.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000022_c95bfbda.szcp new file mode 100644 index 00000000..747baf1d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000022_c95bfbda.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000023_930201fc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000023_930201fc.szcp new file mode 100644 index 00000000..d7320d66 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000023_930201fc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000024_0f525a4d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000024_0f525a4d.szcp new file mode 100644 index 00000000..378a9800 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000024_0f525a4d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000025_6132ebfa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000025_6132ebfa.szcp new file mode 100644 index 00000000..0069784d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000025_6132ebfa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000026_e5ca0761.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000026_e5ca0761.szcp new file mode 100644 index 00000000..fe74924d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000026_e5ca0761.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000027_d42009f5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000027_d42009f5.szcp new file mode 100644 index 00000000..60ad2abf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000027_d42009f5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000028_a950a18c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000028_a950a18c.szcp new file mode 100644 index 00000000..0dc3ee5e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000028_a950a18c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000029_66b2fb75.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000029_66b2fb75.szcp new file mode 100644 index 00000000..6145cce3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000029_66b2fb75.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000030_801d8936.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000030_801d8936.szcp new file mode 100644 index 00000000..58645e09 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000030_801d8936.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000031_7038b9be.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000031_7038b9be.szcp new file mode 100644 index 00000000..1ea2e30c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000031_7038b9be.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000032_7ca4965a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000032_7ca4965a.szcp new file mode 100644 index 00000000..fea9e8e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000032_7ca4965a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000033_5cae22e6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000033_5cae22e6.szcp new file mode 100644 index 00000000..eade1746 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000033_5cae22e6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000034_766f9cf3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000034_766f9cf3.szcp new file mode 100644 index 00000000..a00c771e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000034_766f9cf3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000035_83fac3b7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000035_83fac3b7.szcp new file mode 100644 index 00000000..1241191b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000035_83fac3b7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000036_66f41969.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000036_66f41969.szcp new file mode 100644 index 00000000..3ceb31ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000036_66f41969.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000037_d3bb0234.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000037_d3bb0234.szcp new file mode 100644 index 00000000..3389d627 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000037_d3bb0234.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000038_f2cac49d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000038_f2cac49d.szcp new file mode 100644 index 00000000..af8a656b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000038_f2cac49d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000039_df11ec19.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000039_df11ec19.szcp new file mode 100644 index 00000000..9ac733a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000039_df11ec19.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000040_c4b704d9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000040_c4b704d9.szcp new file mode 100644 index 00000000..9ec6f7b0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000040_c4b704d9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000041_9de35622.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000041_9de35622.szcp new file mode 100644 index 00000000..b4fffdc6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000041_9de35622.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000042_737369e1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000042_737369e1.szcp new file mode 100644 index 00000000..d95c4724 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000042_737369e1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000043_0e32323a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000043_0e32323a.szcp new file mode 100644 index 00000000..0eef76b6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000043_0e32323a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000044_b6231708.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000044_b6231708.szcp new file mode 100644 index 00000000..bf44dc1b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000044_b6231708.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000045_2b8b407b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000045_2b8b407b.szcp new file mode 100644 index 00000000..b346b939 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000045_2b8b407b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000046_a6da5d64.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000046_a6da5d64.szcp new file mode 100644 index 00000000..5329d842 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000046_a6da5d64.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000047_67e73587.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000047_67e73587.szcp new file mode 100644 index 00000000..6c5aa5ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000047_67e73587.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000048_85482fa5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000048_85482fa5.szcp new file mode 100644 index 00000000..40c34d90 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000048_85482fa5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000049_d4ae49c9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000049_d4ae49c9.szcp new file mode 100644 index 00000000..855f916e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000049_d4ae49c9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000050_f0f829f5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000050_f0f829f5.szcp new file mode 100644 index 00000000..59faea54 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000050_f0f829f5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000051_9814e9d4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000051_9814e9d4.szcp new file mode 100644 index 00000000..bbc61650 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000051_9814e9d4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000052_0140604e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000052_0140604e.szcp new file mode 100644 index 00000000..617815a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000052_0140604e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000053_767ac833.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000053_767ac833.szcp new file mode 100644 index 00000000..93d1fe39 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000053_767ac833.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000054_84855d67.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000054_84855d67.szcp new file mode 100644 index 00000000..f48fcf27 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_005/checkpoints/checkpoint_00000000000000000054_84855d67.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000001_32522e36.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000001_32522e36.szar new file mode 100644 index 00000000..1a28c737 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000001_32522e36.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000002_7bd89896.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000002_7bd89896.szar new file mode 100644 index 00000000..d2d24ed8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000002_7bd89896.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000003_acc66887.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000003_acc66887.szar new file mode 100644 index 00000000..7c18caef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000003_acc66887.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000004_0b147f73.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000004_0b147f73.szar new file mode 100644 index 00000000..34b24271 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000004_0b147f73.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000005_a1a19a7a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000005_a1a19a7a.szar new file mode 100644 index 00000000..7dc3c9e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000005_a1a19a7a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000006_d03ccccb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000006_d03ccccb.szar new file mode 100644 index 00000000..d762648a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000006_d03ccccb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000007_72e5513b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000007_72e5513b.szar new file mode 100644 index 00000000..23996f48 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000007_72e5513b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000008_50f51255.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000008_50f51255.szar new file mode 100644 index 00000000..e839041e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000008_50f51255.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000009_0d51dfff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000009_0d51dfff.szar new file mode 100644 index 00000000..1c8aab4d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000009_0d51dfff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000010_3fcedfb4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000010_3fcedfb4.szar new file mode 100644 index 00000000..d63057ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000010_3fcedfb4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000011_59376aaf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000011_59376aaf.szar new file mode 100644 index 00000000..c4676683 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000011_59376aaf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000012_c81d8e96.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000012_c81d8e96.szar new file mode 100644 index 00000000..b17ce2fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000012_c81d8e96.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000013_24fc68e3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000013_24fc68e3.szar new file mode 100644 index 00000000..c427e4e9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000013_24fc68e3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000014_95a0236d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000014_95a0236d.szar new file mode 100644 index 00000000..6d6073b3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000014_95a0236d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000015_f78a0a0b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000015_f78a0a0b.szar new file mode 100644 index 00000000..8c302864 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000015_f78a0a0b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000016_54db0cc7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000016_54db0cc7.szar new file mode 100644 index 00000000..8bfee546 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000016_54db0cc7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000017_29b654fe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000017_29b654fe.szar new file mode 100644 index 00000000..fb56cfee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000017_29b654fe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000018_ad0d4faf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000018_ad0d4faf.szar new file mode 100644 index 00000000..2741e400 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000018_ad0d4faf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000019_c68c55d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000019_c68c55d7.szar new file mode 100644 index 00000000..f082584c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000019_c68c55d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000020_36229932.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000020_36229932.szar new file mode 100644 index 00000000..6cce5896 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000020_36229932.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000021_83285fac.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000021_83285fac.szar new file mode 100644 index 00000000..7b9fd65b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000021_83285fac.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000022_00b4d774.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000022_00b4d774.szar new file mode 100644 index 00000000..9583282d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000022_00b4d774.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000023_41c949a1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000023_41c949a1.szar new file mode 100644 index 00000000..4887423d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000023_41c949a1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000024_0ae12634.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000024_0ae12634.szar new file mode 100644 index 00000000..87a84cb4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000024_0ae12634.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000025_94c951da.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000025_94c951da.szar new file mode 100644 index 00000000..c6a78d7b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000025_94c951da.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000026_e02380da.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000026_e02380da.szar new file mode 100644 index 00000000..2b591107 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000026_e02380da.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000027_c6430c44.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000027_c6430c44.szar new file mode 100644 index 00000000..f25b7da0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000027_c6430c44.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000028_53fe40bc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000028_53fe40bc.szar new file mode 100644 index 00000000..8a782e7a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000028_53fe40bc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000029_72582616.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000029_72582616.szar new file mode 100644 index 00000000..55553808 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000029_72582616.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000030_cbf1da56.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000030_cbf1da56.szar new file mode 100644 index 00000000..a6e238a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000030_cbf1da56.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000031_ac61f7bd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000031_ac61f7bd.szar new file mode 100644 index 00000000..047a271d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000031_ac61f7bd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000032_c822eb8a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000032_c822eb8a.szar new file mode 100644 index 00000000..4c5e9445 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000032_c822eb8a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000033_0330f996.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000033_0330f996.szar new file mode 100644 index 00000000..c0096d3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000033_0330f996.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000034_6eb0b5b1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000034_6eb0b5b1.szar new file mode 100644 index 00000000..94f6465e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000034_6eb0b5b1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000035_0204e999.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000035_0204e999.szar new file mode 100644 index 00000000..0fd35ef2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000035_0204e999.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000036_27472f7f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000036_27472f7f.szar new file mode 100644 index 00000000..2d45ff2e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000036_27472f7f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000037_282b805c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000037_282b805c.szar new file mode 100644 index 00000000..671ffa52 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000037_282b805c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000038_dff20cd7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000038_dff20cd7.szar new file mode 100644 index 00000000..b5220ec0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000038_dff20cd7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000039_bb0644c8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000039_bb0644c8.szar new file mode 100644 index 00000000..c558ae7c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000039_bb0644c8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000040_a8ba06e0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000040_a8ba06e0.szar new file mode 100644 index 00000000..6139866e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000040_a8ba06e0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000041_f72b6c20.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000041_f72b6c20.szar new file mode 100644 index 00000000..6d14560d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000041_f72b6c20.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000042_00f37bfe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000042_00f37bfe.szar new file mode 100644 index 00000000..ea00a320 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000042_00f37bfe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000043_3a6aca2f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000043_3a6aca2f.szar new file mode 100644 index 00000000..18a3b066 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000043_3a6aca2f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000044_88f37bb5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000044_88f37bb5.szar new file mode 100644 index 00000000..0066a8a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000044_88f37bb5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000045_81b37f0b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000045_81b37f0b.szar new file mode 100644 index 00000000..26e434ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000045_81b37f0b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000046_2b70f6cf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000046_2b70f6cf.szar new file mode 100644 index 00000000..a59c096f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000046_2b70f6cf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000047_aa1ba6e3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000047_aa1ba6e3.szar new file mode 100644 index 00000000..bdbf84e4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000047_aa1ba6e3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000048_118926b1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000048_118926b1.szar new file mode 100644 index 00000000..befe1a99 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000048_118926b1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000049_ca5a8a2a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000049_ca5a8a2a.szar new file mode 100644 index 00000000..1e8d1004 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000049_ca5a8a2a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000050_9edd0be2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000050_9edd0be2.szar new file mode 100644 index 00000000..8c9a7caf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000050_9edd0be2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000051_a418c010.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000051_a418c010.szar new file mode 100644 index 00000000..95900b7d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000051_a418c010.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000052_ad5d51bd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000052_ad5d51bd.szar new file mode 100644 index 00000000..4e182c47 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000052_ad5d51bd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000053_13baa8ed.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000053_13baa8ed.szar new file mode 100644 index 00000000..c5341b5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000053_13baa8ed.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000054_3ca9afe7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000054_3ca9afe7.szar new file mode 100644 index 00000000..a36c63dd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000054_3ca9afe7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000055_357b9322.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000055_357b9322.szar new file mode 100644 index 00000000..01fba9cb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000055_357b9322.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000056_95fd8500.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000056_95fd8500.szar new file mode 100644 index 00000000..029c275b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000056_95fd8500.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000057_7e4538b1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000057_7e4538b1.szar new file mode 100644 index 00000000..ce4379fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000057_7e4538b1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000058_67cb0e32.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000058_67cb0e32.szar new file mode 100644 index 00000000..a7f2417c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/archive/delta_00000000000000000058_67cb0e32.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000001_479a7a6b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000001_479a7a6b.szcp new file mode 100644 index 00000000..ade29073 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000001_479a7a6b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000002_f1cfa3b1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000002_f1cfa3b1.szcp new file mode 100644 index 00000000..ced703e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000002_f1cfa3b1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000003_76d45d98.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000003_76d45d98.szcp new file mode 100644 index 00000000..060c685d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000003_76d45d98.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000004_a1436138.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000004_a1436138.szcp new file mode 100644 index 00000000..cab2dd2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000004_a1436138.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000005_a4453a9a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000005_a4453a9a.szcp new file mode 100644 index 00000000..dfc35a64 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000005_a4453a9a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000006_00e6804e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000006_00e6804e.szcp new file mode 100644 index 00000000..87e3d678 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000006_00e6804e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000007_8ccf6e00.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000007_8ccf6e00.szcp new file mode 100644 index 00000000..7baf288e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000007_8ccf6e00.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000008_900bb9ee.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000008_900bb9ee.szcp new file mode 100644 index 00000000..47b1c207 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000008_900bb9ee.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000009_d4a92de2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000009_d4a92de2.szcp new file mode 100644 index 00000000..e5d164ba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000009_d4a92de2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000010_60b87e64.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000010_60b87e64.szcp new file mode 100644 index 00000000..9def5888 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000010_60b87e64.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000011_84fbfae5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000011_84fbfae5.szcp new file mode 100644 index 00000000..9f66469b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000011_84fbfae5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000012_56f50193.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000012_56f50193.szcp new file mode 100644 index 00000000..06929539 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000012_56f50193.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000013_796edf0a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000013_796edf0a.szcp new file mode 100644 index 00000000..4c188088 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000013_796edf0a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000014_b9c5001c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000014_b9c5001c.szcp new file mode 100644 index 00000000..f14cafeb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000014_b9c5001c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000015_9b61a3d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000015_9b61a3d7.szcp new file mode 100644 index 00000000..38487a8d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000015_9b61a3d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000016_c4f75ed7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000016_c4f75ed7.szcp new file mode 100644 index 00000000..9a67e4e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000016_c4f75ed7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000017_6c0ece06.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000017_6c0ece06.szcp new file mode 100644 index 00000000..1919ad9c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000017_6c0ece06.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000018_06ce5411.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000018_06ce5411.szcp new file mode 100644 index 00000000..295da6a9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000018_06ce5411.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000019_32b40fd8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000019_32b40fd8.szcp new file mode 100644 index 00000000..23ec184f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000019_32b40fd8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000020_f68ef44d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000020_f68ef44d.szcp new file mode 100644 index 00000000..18778e30 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000020_f68ef44d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000021_0b67a95c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000021_0b67a95c.szcp new file mode 100644 index 00000000..c67308e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000021_0b67a95c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000022_814b80b7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000022_814b80b7.szcp new file mode 100644 index 00000000..8d98c746 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000022_814b80b7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000023_5a920851.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000023_5a920851.szcp new file mode 100644 index 00000000..b31d281d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000023_5a920851.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000024_8e145479.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000024_8e145479.szcp new file mode 100644 index 00000000..83189011 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000024_8e145479.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000025_2492badc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000025_2492badc.szcp new file mode 100644 index 00000000..d3bc75e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000025_2492badc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000026_50415f69.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000026_50415f69.szcp new file mode 100644 index 00000000..f36c725a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000026_50415f69.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000027_1f084f8f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000027_1f084f8f.szcp new file mode 100644 index 00000000..32d20d71 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000027_1f084f8f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000028_0a716916.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000028_0a716916.szcp new file mode 100644 index 00000000..1c87c291 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000028_0a716916.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000029_a85c93f7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000029_a85c93f7.szcp new file mode 100644 index 00000000..c2d8318d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000029_a85c93f7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000030_aadd5437.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000030_aadd5437.szcp new file mode 100644 index 00000000..fbc68374 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000030_aadd5437.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000031_5d7c93ca.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000031_5d7c93ca.szcp new file mode 100644 index 00000000..95d1682b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000031_5d7c93ca.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000032_c82faa3e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000032_c82faa3e.szcp new file mode 100644 index 00000000..669f18ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000032_c82faa3e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000033_f06fb039.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000033_f06fb039.szcp new file mode 100644 index 00000000..38d2ea30 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000033_f06fb039.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000034_2d23d124.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000034_2d23d124.szcp new file mode 100644 index 00000000..d259ea5c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000034_2d23d124.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000035_ef698774.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000035_ef698774.szcp new file mode 100644 index 00000000..4ed51b56 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000035_ef698774.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000036_106cca2d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000036_106cca2d.szcp new file mode 100644 index 00000000..39eaadfc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000036_106cca2d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000037_cfc534e1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000037_cfc534e1.szcp new file mode 100644 index 00000000..57560eae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000037_cfc534e1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000038_4f35159f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000038_4f35159f.szcp new file mode 100644 index 00000000..78292271 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000038_4f35159f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000039_d6fcc8b4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000039_d6fcc8b4.szcp new file mode 100644 index 00000000..962695c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000039_d6fcc8b4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000040_14f8620f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000040_14f8620f.szcp new file mode 100644 index 00000000..66a2549d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000040_14f8620f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000041_bf25d04f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000041_bf25d04f.szcp new file mode 100644 index 00000000..122fcd6e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000041_bf25d04f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000042_b7fdcb44.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000042_b7fdcb44.szcp new file mode 100644 index 00000000..dc4dd543 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000042_b7fdcb44.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000043_8d954655.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000043_8d954655.szcp new file mode 100644 index 00000000..5e8eda96 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000043_8d954655.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000044_3b9ad2f7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000044_3b9ad2f7.szcp new file mode 100644 index 00000000..559def14 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000044_3b9ad2f7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000045_7a6ec3a7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000045_7a6ec3a7.szcp new file mode 100644 index 00000000..7c480fc4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000045_7a6ec3a7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000046_5ce73ff4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000046_5ce73ff4.szcp new file mode 100644 index 00000000..e4703817 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000046_5ce73ff4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000047_64131b53.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000047_64131b53.szcp new file mode 100644 index 00000000..e2a9273f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000047_64131b53.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000048_263f18f5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000048_263f18f5.szcp new file mode 100644 index 00000000..3221a123 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000048_263f18f5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000049_4a639059.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000049_4a639059.szcp new file mode 100644 index 00000000..82f04907 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000049_4a639059.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000050_d28e0c01.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000050_d28e0c01.szcp new file mode 100644 index 00000000..8e23acb4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000050_d28e0c01.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000051_20aea583.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000051_20aea583.szcp new file mode 100644 index 00000000..cd3b1e41 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000051_20aea583.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000052_bf52fcbc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000052_bf52fcbc.szcp new file mode 100644 index 00000000..ebc6a183 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000052_bf52fcbc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000053_3d653173.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000053_3d653173.szcp new file mode 100644 index 00000000..2090d420 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000053_3d653173.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000054_dac6aa9d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000054_dac6aa9d.szcp new file mode 100644 index 00000000..4ff7a122 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000054_dac6aa9d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000055_89f1b43b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000055_89f1b43b.szcp new file mode 100644 index 00000000..2b87e8b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000055_89f1b43b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000056_c266f213.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000056_c266f213.szcp new file mode 100644 index 00000000..09ca6d9f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000056_c266f213.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000057_8d56098c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000057_8d56098c.szcp new file mode 100644 index 00000000..682a5516 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000057_8d56098c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000058_da0fc49f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000058_da0fc49f.szcp new file mode 100644 index 00000000..438d39ba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_006/checkpoints/checkpoint_00000000000000000058_da0fc49f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000001_d215c7d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000001_d215c7d7.szar new file mode 100644 index 00000000..e2892ff7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000001_d215c7d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000002_a2f178cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000002_a2f178cc.szar new file mode 100644 index 00000000..a56a1f0a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000002_a2f178cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000003_03ca9bfc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000003_03ca9bfc.szar new file mode 100644 index 00000000..3c114318 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000003_03ca9bfc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000004_693b6969.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000004_693b6969.szar new file mode 100644 index 00000000..d2115450 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000004_693b6969.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000005_eeebaf5c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000005_eeebaf5c.szar new file mode 100644 index 00000000..73845c8b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000005_eeebaf5c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000006_367921f6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000006_367921f6.szar new file mode 100644 index 00000000..340d05f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000006_367921f6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000007_01cc14d9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000007_01cc14d9.szar new file mode 100644 index 00000000..f9139126 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000007_01cc14d9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000008_54f1c441.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000008_54f1c441.szar new file mode 100644 index 00000000..7a2d2340 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000008_54f1c441.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000009_292cd03a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000009_292cd03a.szar new file mode 100644 index 00000000..7db6f370 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000009_292cd03a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000010_67d5cc49.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000010_67d5cc49.szar new file mode 100644 index 00000000..2ac2fff5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000010_67d5cc49.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000011_d625c21b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000011_d625c21b.szar new file mode 100644 index 00000000..a5e2c641 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000011_d625c21b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000012_3259ff54.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000012_3259ff54.szar new file mode 100644 index 00000000..cb43c1b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000012_3259ff54.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000013_0728bcc7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000013_0728bcc7.szar new file mode 100644 index 00000000..30b45825 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000013_0728bcc7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000014_edb109fb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000014_edb109fb.szar new file mode 100644 index 00000000..fcb634db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000014_edb109fb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000015_540c9b23.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000015_540c9b23.szar new file mode 100644 index 00000000..14d94beb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000015_540c9b23.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000016_c7b4c9a7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000016_c7b4c9a7.szar new file mode 100644 index 00000000..40107a17 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000016_c7b4c9a7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000017_6328f208.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000017_6328f208.szar new file mode 100644 index 00000000..66849f02 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000017_6328f208.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000018_fd2ad135.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000018_fd2ad135.szar new file mode 100644 index 00000000..db171c71 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000018_fd2ad135.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000019_3479ae67.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000019_3479ae67.szar new file mode 100644 index 00000000..98bcca41 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000019_3479ae67.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000020_ee806831.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000020_ee806831.szar new file mode 100644 index 00000000..a812922b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000020_ee806831.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000021_03b72882.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000021_03b72882.szar new file mode 100644 index 00000000..b4393de2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000021_03b72882.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000022_4803fba6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000022_4803fba6.szar new file mode 100644 index 00000000..a932f57c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000022_4803fba6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000023_b8a85bdd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000023_b8a85bdd.szar new file mode 100644 index 00000000..376bdb9d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000023_b8a85bdd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000024_2a0c9c5d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000024_2a0c9c5d.szar new file mode 100644 index 00000000..129b1e12 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000024_2a0c9c5d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000025_133b64f4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000025_133b64f4.szar new file mode 100644 index 00000000..e7d2092b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000025_133b64f4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000026_9e74eccf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000026_9e74eccf.szar new file mode 100644 index 00000000..84889963 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000026_9e74eccf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000027_d22dc84e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000027_d22dc84e.szar new file mode 100644 index 00000000..22feaa66 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000027_d22dc84e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000028_810052fe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000028_810052fe.szar new file mode 100644 index 00000000..3ea631a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000028_810052fe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000029_2ae12f0c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000029_2ae12f0c.szar new file mode 100644 index 00000000..b0beffe3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000029_2ae12f0c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000030_49015b29.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000030_49015b29.szar new file mode 100644 index 00000000..43a0d779 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000030_49015b29.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000031_f5de3ab0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000031_f5de3ab0.szar new file mode 100644 index 00000000..3892cc6e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000031_f5de3ab0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000032_c8f624e4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000032_c8f624e4.szar new file mode 100644 index 00000000..752fa963 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000032_c8f624e4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000033_566c02a1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000033_566c02a1.szar new file mode 100644 index 00000000..882e19ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000033_566c02a1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000034_355111b4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000034_355111b4.szar new file mode 100644 index 00000000..3088df35 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000034_355111b4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000035_cfc7a078.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000035_cfc7a078.szar new file mode 100644 index 00000000..0622664d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000035_cfc7a078.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000036_5346d49f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000036_5346d49f.szar new file mode 100644 index 00000000..af50d376 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000036_5346d49f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000037_3c24a278.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000037_3c24a278.szar new file mode 100644 index 00000000..2c6a8d2d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000037_3c24a278.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000038_71b5eaea.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000038_71b5eaea.szar new file mode 100644 index 00000000..b8d5b581 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000038_71b5eaea.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000039_cd1792a9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000039_cd1792a9.szar new file mode 100644 index 00000000..bbb8801c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000039_cd1792a9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000040_6b09d2c3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000040_6b09d2c3.szar new file mode 100644 index 00000000..5ddb6d6a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000040_6b09d2c3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000041_54e4f456.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000041_54e4f456.szar new file mode 100644 index 00000000..21b3b43d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000041_54e4f456.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000042_d91c5b6c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000042_d91c5b6c.szar new file mode 100644 index 00000000..6aac569b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000042_d91c5b6c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000043_5ef24ab7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000043_5ef24ab7.szar new file mode 100644 index 00000000..59fd520c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000043_5ef24ab7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000044_b8005548.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000044_b8005548.szar new file mode 100644 index 00000000..2b5c64d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000044_b8005548.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000045_a5c177ca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000045_a5c177ca.szar new file mode 100644 index 00000000..a4b348bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000045_a5c177ca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000046_ca937c1b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000046_ca937c1b.szar new file mode 100644 index 00000000..dec5cc8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000046_ca937c1b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000047_78e8449e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000047_78e8449e.szar new file mode 100644 index 00000000..51c29c9c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000047_78e8449e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000048_3228c933.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000048_3228c933.szar new file mode 100644 index 00000000..5e22686f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000048_3228c933.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000049_4777fff5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000049_4777fff5.szar new file mode 100644 index 00000000..deddca41 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000049_4777fff5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000050_ce240193.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000050_ce240193.szar new file mode 100644 index 00000000..84d5c406 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000050_ce240193.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000051_5f4f701c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000051_5f4f701c.szar new file mode 100644 index 00000000..0e501575 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000051_5f4f701c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000052_13aa40a0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000052_13aa40a0.szar new file mode 100644 index 00000000..7894e735 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000052_13aa40a0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000053_04230344.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000053_04230344.szar new file mode 100644 index 00000000..3986813c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000053_04230344.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000054_8a12034f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000054_8a12034f.szar new file mode 100644 index 00000000..02b6d521 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000054_8a12034f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000055_c8535f9e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000055_c8535f9e.szar new file mode 100644 index 00000000..73add015 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000055_c8535f9e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000056_6f838723.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000056_6f838723.szar new file mode 100644 index 00000000..b5b63798 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000056_6f838723.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000057_2590b3fd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000057_2590b3fd.szar new file mode 100644 index 00000000..1deceb75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000057_2590b3fd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000058_d9ca9aa3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000058_d9ca9aa3.szar new file mode 100644 index 00000000..bdce4206 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/archive/delta_00000000000000000058_d9ca9aa3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000001_390a9050.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000001_390a9050.szcp new file mode 100644 index 00000000..56f02b11 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000001_390a9050.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000002_26fcce75.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000002_26fcce75.szcp new file mode 100644 index 00000000..0c9b2316 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000002_26fcce75.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000003_940ca91d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000003_940ca91d.szcp new file mode 100644 index 00000000..77c7c938 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000003_940ca91d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000004_790d376c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000004_790d376c.szcp new file mode 100644 index 00000000..c6f66513 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000004_790d376c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000005_731b9d93.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000005_731b9d93.szcp new file mode 100644 index 00000000..99164153 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000005_731b9d93.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000006_7dac9cce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000006_7dac9cce.szcp new file mode 100644 index 00000000..f564f68e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000006_7dac9cce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000007_9a676cae.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000007_9a676cae.szcp new file mode 100644 index 00000000..247356fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000007_9a676cae.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000008_0c6000eb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000008_0c6000eb.szcp new file mode 100644 index 00000000..6a4d99bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000008_0c6000eb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000009_016266f1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000009_016266f1.szcp new file mode 100644 index 00000000..45d1c542 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000009_016266f1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000010_65693d64.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000010_65693d64.szcp new file mode 100644 index 00000000..b09d1962 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000010_65693d64.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000011_32cd2126.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000011_32cd2126.szcp new file mode 100644 index 00000000..0223e4a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000011_32cd2126.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000012_df78fd6b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000012_df78fd6b.szcp new file mode 100644 index 00000000..acd4b316 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000012_df78fd6b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000013_67cc8a55.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000013_67cc8a55.szcp new file mode 100644 index 00000000..f7de6154 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000013_67cc8a55.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000014_ec871038.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000014_ec871038.szcp new file mode 100644 index 00000000..620158dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000014_ec871038.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000015_6e1284fc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000015_6e1284fc.szcp new file mode 100644 index 00000000..ed9425e9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000015_6e1284fc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000016_7a4e48a0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000016_7a4e48a0.szcp new file mode 100644 index 00000000..aa52f507 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000016_7a4e48a0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000017_05fba66c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000017_05fba66c.szcp new file mode 100644 index 00000000..d53a4a84 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000017_05fba66c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000018_8a752c39.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000018_8a752c39.szcp new file mode 100644 index 00000000..d7c53f24 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000018_8a752c39.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000019_ce0a4af0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000019_ce0a4af0.szcp new file mode 100644 index 00000000..d9f30d45 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000019_ce0a4af0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000020_41b3ce4d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000020_41b3ce4d.szcp new file mode 100644 index 00000000..6264644a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000020_41b3ce4d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000021_6724d897.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000021_6724d897.szcp new file mode 100644 index 00000000..ee322a14 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000021_6724d897.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000022_4c45d276.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000022_4c45d276.szcp new file mode 100644 index 00000000..f03d164a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000022_4c45d276.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000023_c423626d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000023_c423626d.szcp new file mode 100644 index 00000000..2b5d835e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000023_c423626d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000024_3bbdfb45.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000024_3bbdfb45.szcp new file mode 100644 index 00000000..a0ce8781 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000024_3bbdfb45.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000025_e143eff2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000025_e143eff2.szcp new file mode 100644 index 00000000..8e690a74 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000025_e143eff2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000026_b96613c5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000026_b96613c5.szcp new file mode 100644 index 00000000..7aa8d93d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000026_b96613c5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000027_dc2d690b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000027_dc2d690b.szcp new file mode 100644 index 00000000..367395e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000027_dc2d690b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000028_75ea8ec5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000028_75ea8ec5.szcp new file mode 100644 index 00000000..4203bd4a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000028_75ea8ec5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000029_411bc925.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000029_411bc925.szcp new file mode 100644 index 00000000..4526a530 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000029_411bc925.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000030_08a01ffe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000030_08a01ffe.szcp new file mode 100644 index 00000000..6e2367a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000030_08a01ffe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000031_4b168bb2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000031_4b168bb2.szcp new file mode 100644 index 00000000..fb382c1a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000031_4b168bb2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000032_21bca62d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000032_21bca62d.szcp new file mode 100644 index 00000000..0598493e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000032_21bca62d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000033_4e012ee6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000033_4e012ee6.szcp new file mode 100644 index 00000000..bd1e4333 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000033_4e012ee6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000034_ecfc6cc9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000034_ecfc6cc9.szcp new file mode 100644 index 00000000..6edde2ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000034_ecfc6cc9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000035_13d02f62.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000035_13d02f62.szcp new file mode 100644 index 00000000..1741425a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000035_13d02f62.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000036_5d03fb6b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000036_5d03fb6b.szcp new file mode 100644 index 00000000..80de1f6b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000036_5d03fb6b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000037_174d3e6e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000037_174d3e6e.szcp new file mode 100644 index 00000000..a1223e13 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000037_174d3e6e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000038_51f6532f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000038_51f6532f.szcp new file mode 100644 index 00000000..11857be4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000038_51f6532f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000039_0bf8c6e5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000039_0bf8c6e5.szcp new file mode 100644 index 00000000..8996d57c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000039_0bf8c6e5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000040_a45a4ff2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000040_a45a4ff2.szcp new file mode 100644 index 00000000..8a2002dd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000040_a45a4ff2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000041_c6b6ce75.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000041_c6b6ce75.szcp new file mode 100644 index 00000000..3b740873 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000041_c6b6ce75.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000042_faa93a1b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000042_faa93a1b.szcp new file mode 100644 index 00000000..fc537e05 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000042_faa93a1b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000043_2a999751.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000043_2a999751.szcp new file mode 100644 index 00000000..649b13a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000043_2a999751.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000044_e4969d6d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000044_e4969d6d.szcp new file mode 100644 index 00000000..dd8e6576 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000044_e4969d6d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000045_94ac63c8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000045_94ac63c8.szcp new file mode 100644 index 00000000..24a5bfed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000045_94ac63c8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000046_5a0767e3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000046_5a0767e3.szcp new file mode 100644 index 00000000..7a9772df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000046_5a0767e3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000047_15af5a31.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000047_15af5a31.szcp new file mode 100644 index 00000000..9d562397 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000047_15af5a31.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000048_d3bbac44.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000048_d3bbac44.szcp new file mode 100644 index 00000000..e8675402 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000048_d3bbac44.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000049_16455d9a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000049_16455d9a.szcp new file mode 100644 index 00000000..05a4626f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000049_16455d9a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000050_fc57dd80.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000050_fc57dd80.szcp new file mode 100644 index 00000000..b1498f1d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000050_fc57dd80.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000051_fa1ca466.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000051_fa1ca466.szcp new file mode 100644 index 00000000..6f10ada9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000051_fa1ca466.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000052_2c04277f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000052_2c04277f.szcp new file mode 100644 index 00000000..c7355455 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000052_2c04277f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000053_eef5c51e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000053_eef5c51e.szcp new file mode 100644 index 00000000..4b278e46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000053_eef5c51e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000054_4791c7c2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000054_4791c7c2.szcp new file mode 100644 index 00000000..44ab6424 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000054_4791c7c2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000055_8d7ecb2a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000055_8d7ecb2a.szcp new file mode 100644 index 00000000..0e917b44 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000055_8d7ecb2a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000056_fd893e9f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000056_fd893e9f.szcp new file mode 100644 index 00000000..12006f5e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000056_fd893e9f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000057_234d2b90.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000057_234d2b90.szcp new file mode 100644 index 00000000..3ab9d7f7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000057_234d2b90.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000058_dcd0e0fe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000058_dcd0e0fe.szcp new file mode 100644 index 00000000..5097d04b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_007/checkpoints/checkpoint_00000000000000000058_dcd0e0fe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000001_dbc5cbfd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000001_dbc5cbfd.szar new file mode 100644 index 00000000..65a6c890 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000001_dbc5cbfd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000002_862ceec2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000002_862ceec2.szar new file mode 100644 index 00000000..0055f223 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000002_862ceec2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000003_70e220e6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000003_70e220e6.szar new file mode 100644 index 00000000..bf2b9e70 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000003_70e220e6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000004_f34842a2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000004_f34842a2.szar new file mode 100644 index 00000000..9c877ed9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000004_f34842a2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000005_43a19f38.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000005_43a19f38.szar new file mode 100644 index 00000000..c288582f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000005_43a19f38.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000006_4e6f3fcb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000006_4e6f3fcb.szar new file mode 100644 index 00000000..f00f7f0a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000006_4e6f3fcb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000007_10f3bad0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000007_10f3bad0.szar new file mode 100644 index 00000000..5f926112 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000007_10f3bad0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000008_576343b6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000008_576343b6.szar new file mode 100644 index 00000000..b4a2d5de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000008_576343b6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000009_79d98b2e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000009_79d98b2e.szar new file mode 100644 index 00000000..05d67015 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000009_79d98b2e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000010_b2cdc92a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000010_b2cdc92a.szar new file mode 100644 index 00000000..f41213a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000010_b2cdc92a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000011_b4a1989a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000011_b4a1989a.szar new file mode 100644 index 00000000..b93e988a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000011_b4a1989a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000012_c3bf56de.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000012_c3bf56de.szar new file mode 100644 index 00000000..94b949ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000012_c3bf56de.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000013_da7038a2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000013_da7038a2.szar new file mode 100644 index 00000000..c8cfee4d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000013_da7038a2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000014_4660063f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000014_4660063f.szar new file mode 100644 index 00000000..55861943 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000014_4660063f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000015_62da422a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000015_62da422a.szar new file mode 100644 index 00000000..4b9f118b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000015_62da422a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000016_2fb2a20a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000016_2fb2a20a.szar new file mode 100644 index 00000000..2b08666c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000016_2fb2a20a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000017_8e5861ff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000017_8e5861ff.szar new file mode 100644 index 00000000..096d550f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000017_8e5861ff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000018_3c22d18b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000018_3c22d18b.szar new file mode 100644 index 00000000..6b4813a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000018_3c22d18b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000019_63ad47e1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000019_63ad47e1.szar new file mode 100644 index 00000000..9e99a38b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000019_63ad47e1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000020_efa0a01c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000020_efa0a01c.szar new file mode 100644 index 00000000..6e457f58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000020_efa0a01c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000021_ce1b2e16.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000021_ce1b2e16.szar new file mode 100644 index 00000000..693b116e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000021_ce1b2e16.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000022_a6bd491d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000022_a6bd491d.szar new file mode 100644 index 00000000..e118a3b2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000022_a6bd491d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000023_4b203a24.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000023_4b203a24.szar new file mode 100644 index 00000000..86096342 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000023_4b203a24.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000024_a5347d0e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000024_a5347d0e.szar new file mode 100644 index 00000000..57ca1d75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000024_a5347d0e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000025_66283041.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000025_66283041.szar new file mode 100644 index 00000000..22552a3e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000025_66283041.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000026_d83d8ad1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000026_d83d8ad1.szar new file mode 100644 index 00000000..3e924d79 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000026_d83d8ad1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000027_2b31f6db.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000027_2b31f6db.szar new file mode 100644 index 00000000..78764979 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000027_2b31f6db.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000028_76c8dc93.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000028_76c8dc93.szar new file mode 100644 index 00000000..f19e295f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000028_76c8dc93.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000029_c328817c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000029_c328817c.szar new file mode 100644 index 00000000..803cf508 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000029_c328817c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000030_bad1f58f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000030_bad1f58f.szar new file mode 100644 index 00000000..555adc3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000030_bad1f58f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000031_028f91da.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000031_028f91da.szar new file mode 100644 index 00000000..48512485 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000031_028f91da.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000032_50d1b7e9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000032_50d1b7e9.szar new file mode 100644 index 00000000..071778c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000032_50d1b7e9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000033_b89a9370.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000033_b89a9370.szar new file mode 100644 index 00000000..490edd3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000033_b89a9370.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000034_633db9c7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000034_633db9c7.szar new file mode 100644 index 00000000..84e66c0f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000034_633db9c7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000035_9a574d5c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000035_9a574d5c.szar new file mode 100644 index 00000000..5c55676c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000035_9a574d5c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000036_4e068e88.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000036_4e068e88.szar new file mode 100644 index 00000000..818dbdfd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000036_4e068e88.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000037_5eabaa3b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000037_5eabaa3b.szar new file mode 100644 index 00000000..14ebfee5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000037_5eabaa3b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000038_cf5448f9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000038_cf5448f9.szar new file mode 100644 index 00000000..321f91eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000038_cf5448f9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000039_3bacee14.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000039_3bacee14.szar new file mode 100644 index 00000000..6aef91e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000039_3bacee14.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000040_e788e32e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000040_e788e32e.szar new file mode 100644 index 00000000..436c2aa8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000040_e788e32e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000041_fdf87166.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000041_fdf87166.szar new file mode 100644 index 00000000..3c2aba78 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000041_fdf87166.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000042_37430d5a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000042_37430d5a.szar new file mode 100644 index 00000000..5162e6ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000042_37430d5a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000043_df25140e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000043_df25140e.szar new file mode 100644 index 00000000..e0b10f37 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000043_df25140e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000044_57795d83.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000044_57795d83.szar new file mode 100644 index 00000000..66ffedba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000044_57795d83.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000045_16e5aec6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000045_16e5aec6.szar new file mode 100644 index 00000000..6f08493c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000045_16e5aec6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000046_59021868.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000046_59021868.szar new file mode 100644 index 00000000..50aa55a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000046_59021868.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000047_457403bd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000047_457403bd.szar new file mode 100644 index 00000000..0ccc1b2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000047_457403bd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000048_c1e9d2ee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000048_c1e9d2ee.szar new file mode 100644 index 00000000..adc5bd5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000048_c1e9d2ee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000049_3e677b60.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000049_3e677b60.szar new file mode 100644 index 00000000..c20ae77a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000049_3e677b60.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000050_9499c092.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000050_9499c092.szar new file mode 100644 index 00000000..6ba7abe5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000050_9499c092.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000051_f94ade88.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000051_f94ade88.szar new file mode 100644 index 00000000..980995f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000051_f94ade88.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000052_1b7eff0f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000052_1b7eff0f.szar new file mode 100644 index 00000000..8ed13377 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000052_1b7eff0f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000053_42f1097f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000053_42f1097f.szar new file mode 100644 index 00000000..fa2597a9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000053_42f1097f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000054_e6fe4f80.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000054_e6fe4f80.szar new file mode 100644 index 00000000..c5449f8c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000054_e6fe4f80.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000055_f3c36508.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000055_f3c36508.szar new file mode 100644 index 00000000..45437a78 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000055_f3c36508.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000056_f1ec5484.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000056_f1ec5484.szar new file mode 100644 index 00000000..e16210cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000056_f1ec5484.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000057_b20c525d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000057_b20c525d.szar new file mode 100644 index 00000000..a5a5d432 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000057_b20c525d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000058_96c8f8ca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000058_96c8f8ca.szar new file mode 100644 index 00000000..b4ef3f18 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000058_96c8f8ca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000059_bb6e1a46.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000059_bb6e1a46.szar new file mode 100644 index 00000000..6421e326 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000059_bb6e1a46.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000060_e769fdd5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000060_e769fdd5.szar new file mode 100644 index 00000000..9b560591 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000060_e769fdd5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000061_595b01d8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000061_595b01d8.szar new file mode 100644 index 00000000..c642bb2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000061_595b01d8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000062_760de740.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000062_760de740.szar new file mode 100644 index 00000000..30e6f98b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000062_760de740.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000063_441eea0b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000063_441eea0b.szar new file mode 100644 index 00000000..1878b62a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000063_441eea0b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000064_014f9e7f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000064_014f9e7f.szar new file mode 100644 index 00000000..ab8eb0be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000064_014f9e7f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000065_320e0c78.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000065_320e0c78.szar new file mode 100644 index 00000000..933866c8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000065_320e0c78.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000066_71851376.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000066_71851376.szar new file mode 100644 index 00000000..9216d472 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000066_71851376.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000067_e33000cb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000067_e33000cb.szar new file mode 100644 index 00000000..144ec96a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000067_e33000cb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000068_8c62545d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000068_8c62545d.szar new file mode 100644 index 00000000..71ae5ee0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000068_8c62545d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000069_c63a6fe9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000069_c63a6fe9.szar new file mode 100644 index 00000000..f286530c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000069_c63a6fe9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000070_751e408b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000070_751e408b.szar new file mode 100644 index 00000000..ea94be8c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000070_751e408b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000071_d07f932e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000071_d07f932e.szar new file mode 100644 index 00000000..a347c6dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000071_d07f932e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000072_03ebefac.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000072_03ebefac.szar new file mode 100644 index 00000000..2a01d0cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000072_03ebefac.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000073_17cdc2eb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000073_17cdc2eb.szar new file mode 100644 index 00000000..1e02f19f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000073_17cdc2eb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000074_ce8cca8f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000074_ce8cca8f.szar new file mode 100644 index 00000000..990b92f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000074_ce8cca8f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000075_5762b26e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000075_5762b26e.szar new file mode 100644 index 00000000..dbfa6df5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000075_5762b26e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000076_d64af55d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000076_d64af55d.szar new file mode 100644 index 00000000..b6ecdb6f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000076_d64af55d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000077_6fb4ece5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000077_6fb4ece5.szar new file mode 100644 index 00000000..5e86311c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000077_6fb4ece5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000078_938f3874.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000078_938f3874.szar new file mode 100644 index 00000000..59006eef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000078_938f3874.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000079_da08fdef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000079_da08fdef.szar new file mode 100644 index 00000000..be2ca251 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000079_da08fdef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000080_c9ed09d9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000080_c9ed09d9.szar new file mode 100644 index 00000000..5ce39d36 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000080_c9ed09d9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000081_d51ff36b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000081_d51ff36b.szar new file mode 100644 index 00000000..d1086e51 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000081_d51ff36b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000082_f0bbfb02.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000082_f0bbfb02.szar new file mode 100644 index 00000000..535b8241 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000082_f0bbfb02.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000083_67a68e7d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000083_67a68e7d.szar new file mode 100644 index 00000000..b0fbc771 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000083_67a68e7d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000084_5ed2c238.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000084_5ed2c238.szar new file mode 100644 index 00000000..c6734042 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000084_5ed2c238.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000085_f2b30fdd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000085_f2b30fdd.szar new file mode 100644 index 00000000..3db78f9d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000085_f2b30fdd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000086_6b030f80.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000086_6b030f80.szar new file mode 100644 index 00000000..480794d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000086_6b030f80.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000087_80102096.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000087_80102096.szar new file mode 100644 index 00000000..31902673 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/archive/delta_00000000000000000087_80102096.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000001_7fda13db.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000001_7fda13db.szcp new file mode 100644 index 00000000..fad4114a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000001_7fda13db.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000002_4924e7f0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000002_4924e7f0.szcp new file mode 100644 index 00000000..32ff1798 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000002_4924e7f0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000003_0c5ff6f4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000003_0c5ff6f4.szcp new file mode 100644 index 00000000..09f7ccfe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000003_0c5ff6f4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000004_8a081839.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000004_8a081839.szcp new file mode 100644 index 00000000..8197d858 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000004_8a081839.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000005_6c19d668.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000005_6c19d668.szcp new file mode 100644 index 00000000..b71ad043 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000005_6c19d668.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000006_f4074326.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000006_f4074326.szcp new file mode 100644 index 00000000..09b420f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000006_f4074326.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000007_4cf0b7c9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000007_4cf0b7c9.szcp new file mode 100644 index 00000000..1514b3ae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000007_4cf0b7c9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000008_14caab00.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000008_14caab00.szcp new file mode 100644 index 00000000..bf3e441d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000008_14caab00.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000009_17b57e4a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000009_17b57e4a.szcp new file mode 100644 index 00000000..63dc652a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000009_17b57e4a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000010_6176beb0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000010_6176beb0.szcp new file mode 100644 index 00000000..2d9955da Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000010_6176beb0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000011_5e00ba00.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000011_5e00ba00.szcp new file mode 100644 index 00000000..5982a856 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000011_5e00ba00.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000012_b5988cd2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000012_b5988cd2.szcp new file mode 100644 index 00000000..a6a2558f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000012_b5988cd2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000013_c79175ab.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000013_c79175ab.szcp new file mode 100644 index 00000000..e26a31a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000013_c79175ab.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000014_e67b51a5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000014_e67b51a5.szcp new file mode 100644 index 00000000..28321537 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000014_e67b51a5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000015_5946f5df.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000015_5946f5df.szcp new file mode 100644 index 00000000..8a162d4c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000015_5946f5df.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000016_a7df3c93.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000016_a7df3c93.szcp new file mode 100644 index 00000000..b724b2f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000016_a7df3c93.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000017_711c67df.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000017_711c67df.szcp new file mode 100644 index 00000000..8c67a396 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000017_711c67df.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000018_2f27bbf3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000018_2f27bbf3.szcp new file mode 100644 index 00000000..d1afb3e4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000018_2f27bbf3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000019_34c56d7c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000019_34c56d7c.szcp new file mode 100644 index 00000000..4570b48a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000019_34c56d7c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000020_4019c506.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000020_4019c506.szcp new file mode 100644 index 00000000..31f30dc3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000020_4019c506.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000021_bba4fbd2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000021_bba4fbd2.szcp new file mode 100644 index 00000000..73f56df8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000021_bba4fbd2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000022_6aed1626.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000022_6aed1626.szcp new file mode 100644 index 00000000..9335756d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000022_6aed1626.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000023_33a2a400.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000023_33a2a400.szcp new file mode 100644 index 00000000..a9edb424 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000023_33a2a400.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000024_3e3c1bee.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000024_3e3c1bee.szcp new file mode 100644 index 00000000..d1cf082f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000024_3e3c1bee.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000025_ad11baa6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000025_ad11baa6.szcp new file mode 100644 index 00000000..3b7ae9dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000025_ad11baa6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000026_7c720baf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000026_7c720baf.szcp new file mode 100644 index 00000000..a84673fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000026_7c720baf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000027_019e6fd7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000027_019e6fd7.szcp new file mode 100644 index 00000000..7c5aaf9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000027_019e6fd7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000028_4873fccb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000028_4873fccb.szcp new file mode 100644 index 00000000..f4c69d38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000028_4873fccb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000029_9dacc27f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000029_9dacc27f.szcp new file mode 100644 index 00000000..54cd64a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000029_9dacc27f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000030_ce5eb8c9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000030_ce5eb8c9.szcp new file mode 100644 index 00000000..37c3e1cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000030_ce5eb8c9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000031_6727bcc8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000031_6727bcc8.szcp new file mode 100644 index 00000000..bdd5ded9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000031_6727bcc8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000032_64c9839f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000032_64c9839f.szcp new file mode 100644 index 00000000..51d18a5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000032_64c9839f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000033_41b1baf8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000033_41b1baf8.szcp new file mode 100644 index 00000000..05eb4529 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000033_41b1baf8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000034_b0163126.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000034_b0163126.szcp new file mode 100644 index 00000000..66a3efba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000034_b0163126.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000035_79005f59.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000035_79005f59.szcp new file mode 100644 index 00000000..c1618023 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000035_79005f59.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000036_101993d8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000036_101993d8.szcp new file mode 100644 index 00000000..66cb6f9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000036_101993d8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000037_cf4b3d6d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000037_cf4b3d6d.szcp new file mode 100644 index 00000000..b8438121 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000037_cf4b3d6d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000038_877ab345.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000038_877ab345.szcp new file mode 100644 index 00000000..6d17be26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000038_877ab345.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000039_0d73c1d9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000039_0d73c1d9.szcp new file mode 100644 index 00000000..b4c8c82b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000039_0d73c1d9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000040_604f5502.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000040_604f5502.szcp new file mode 100644 index 00000000..3447159e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000040_604f5502.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000041_e5fc8847.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000041_e5fc8847.szcp new file mode 100644 index 00000000..05e307b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000041_e5fc8847.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000042_8819c560.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000042_8819c560.szcp new file mode 100644 index 00000000..fd6e6e3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000042_8819c560.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000043_832c7a8f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000043_832c7a8f.szcp new file mode 100644 index 00000000..24173ca9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000043_832c7a8f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000044_6f8e140c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000044_6f8e140c.szcp new file mode 100644 index 00000000..65aa8dc8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000044_6f8e140c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000045_9b5ec547.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000045_9b5ec547.szcp new file mode 100644 index 00000000..07972cc6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000045_9b5ec547.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000046_e9629404.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000046_e9629404.szcp new file mode 100644 index 00000000..cdbd4a53 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000046_e9629404.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000047_34c60c53.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000047_34c60c53.szcp new file mode 100644 index 00000000..29a9dc77 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000047_34c60c53.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000048_68800cab.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000048_68800cab.szcp new file mode 100644 index 00000000..448c84bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000048_68800cab.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000049_5f5ab21c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000049_5f5ab21c.szcp new file mode 100644 index 00000000..c1616c3b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000049_5f5ab21c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000050_a9ae040c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000050_a9ae040c.szcp new file mode 100644 index 00000000..3a588601 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000050_a9ae040c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000051_b4e0a8f4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000051_b4e0a8f4.szcp new file mode 100644 index 00000000..b52c8831 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000051_b4e0a8f4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000052_b085f41d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000052_b085f41d.szcp new file mode 100644 index 00000000..49441657 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000052_b085f41d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000053_27003cda.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000053_27003cda.szcp new file mode 100644 index 00000000..8b0ca0af Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000053_27003cda.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000054_f923e9c3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000054_f923e9c3.szcp new file mode 100644 index 00000000..5c423296 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000054_f923e9c3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000055_8dcc0337.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000055_8dcc0337.szcp new file mode 100644 index 00000000..e2869753 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000055_8dcc0337.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000056_0662c222.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000056_0662c222.szcp new file mode 100644 index 00000000..3cec3d7d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000056_0662c222.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000057_a9964ed7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000057_a9964ed7.szcp new file mode 100644 index 00000000..4173ae6d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000057_a9964ed7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000058_ca5c3f2e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000058_ca5c3f2e.szcp new file mode 100644 index 00000000..564955d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000058_ca5c3f2e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000059_5792a67e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000059_5792a67e.szcp new file mode 100644 index 00000000..a6be450b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000059_5792a67e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000060_699b30bf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000060_699b30bf.szcp new file mode 100644 index 00000000..a4b8d0eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000060_699b30bf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000061_781ffad1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000061_781ffad1.szcp new file mode 100644 index 00000000..9fbc7ec2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000061_781ffad1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000062_a0029c90.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000062_a0029c90.szcp new file mode 100644 index 00000000..e4630d5f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000062_a0029c90.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000063_11d5048e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000063_11d5048e.szcp new file mode 100644 index 00000000..dce29b05 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000063_11d5048e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000064_4e12b0e8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000064_4e12b0e8.szcp new file mode 100644 index 00000000..eb1ef1e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000064_4e12b0e8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000065_9206a776.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000065_9206a776.szcp new file mode 100644 index 00000000..b09665fc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000065_9206a776.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000066_e1501a50.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000066_e1501a50.szcp new file mode 100644 index 00000000..34537970 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000066_e1501a50.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000067_7c9a3572.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000067_7c9a3572.szcp new file mode 100644 index 00000000..dc459612 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000067_7c9a3572.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000068_9decee45.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000068_9decee45.szcp new file mode 100644 index 00000000..4d75bbb7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000068_9decee45.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000069_516a4faa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000069_516a4faa.szcp new file mode 100644 index 00000000..7352c92f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000069_516a4faa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000070_60cb8159.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000070_60cb8159.szcp new file mode 100644 index 00000000..94e97b27 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000070_60cb8159.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000071_408914d9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000071_408914d9.szcp new file mode 100644 index 00000000..572f7959 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000071_408914d9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000072_05b48c09.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000072_05b48c09.szcp new file mode 100644 index 00000000..83f926f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000072_05b48c09.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000073_eacfe480.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000073_eacfe480.szcp new file mode 100644 index 00000000..f05ef147 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000073_eacfe480.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000074_61f9fe74.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000074_61f9fe74.szcp new file mode 100644 index 00000000..f657b98b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000074_61f9fe74.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000075_e32b8119.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000075_e32b8119.szcp new file mode 100644 index 00000000..4294211b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000075_e32b8119.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000076_07fd6c0a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000076_07fd6c0a.szcp new file mode 100644 index 00000000..5c4e4490 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000076_07fd6c0a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000077_0d14708f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000077_0d14708f.szcp new file mode 100644 index 00000000..a7c21da7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000077_0d14708f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000078_6ef8258f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000078_6ef8258f.szcp new file mode 100644 index 00000000..ca1971d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000078_6ef8258f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000079_937cce5b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000079_937cce5b.szcp new file mode 100644 index 00000000..a53ca532 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000079_937cce5b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000080_b057ae85.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000080_b057ae85.szcp new file mode 100644 index 00000000..d1539397 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000080_b057ae85.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000081_306be453.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000081_306be453.szcp new file mode 100644 index 00000000..a2eb6ae4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000081_306be453.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000082_3a69b0f3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000082_3a69b0f3.szcp new file mode 100644 index 00000000..716342f7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000082_3a69b0f3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000083_e8c44c3e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000083_e8c44c3e.szcp new file mode 100644 index 00000000..e8b6ecac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000083_e8c44c3e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000084_2720decc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000084_2720decc.szcp new file mode 100644 index 00000000..5772b468 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000084_2720decc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000085_996104b8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000085_996104b8.szcp new file mode 100644 index 00000000..546d46d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000085_996104b8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000086_be904880.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000086_be904880.szcp new file mode 100644 index 00000000..4b9809f7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000086_be904880.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000087_c50e21cc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000087_c50e21cc.szcp new file mode 100644 index 00000000..f3ee144c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_008/checkpoints/checkpoint_00000000000000000087_c50e21cc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000001_47fb6697.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000001_47fb6697.szar new file mode 100644 index 00000000..9baf3f26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000001_47fb6697.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000002_3ce8aa96.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000002_3ce8aa96.szar new file mode 100644 index 00000000..33f428db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000002_3ce8aa96.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000003_b531aee4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000003_b531aee4.szar new file mode 100644 index 00000000..c8cb2d11 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000003_b531aee4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000004_b467bc00.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000004_b467bc00.szar new file mode 100644 index 00000000..cd26fa4a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000004_b467bc00.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000005_2b81de86.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000005_2b81de86.szar new file mode 100644 index 00000000..747854c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000005_2b81de86.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000006_033b4b47.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000006_033b4b47.szar new file mode 100644 index 00000000..9c39ee3e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000006_033b4b47.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000007_b74df2b5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000007_b74df2b5.szar new file mode 100644 index 00000000..3f99a12a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000007_b74df2b5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000008_91a29054.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000008_91a29054.szar new file mode 100644 index 00000000..49b2ac35 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000008_91a29054.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000009_d8db2509.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000009_d8db2509.szar new file mode 100644 index 00000000..124d6ca4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000009_d8db2509.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000010_58bcecff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000010_58bcecff.szar new file mode 100644 index 00000000..3c67c4cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000010_58bcecff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000011_41c166cd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000011_41c166cd.szar new file mode 100644 index 00000000..2360611e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000011_41c166cd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000012_7a88b5be.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000012_7a88b5be.szar new file mode 100644 index 00000000..231cb490 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000012_7a88b5be.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000013_9c83e8d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000013_9c83e8d7.szar new file mode 100644 index 00000000..e1878cce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000013_9c83e8d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000014_89f72ddd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000014_89f72ddd.szar new file mode 100644 index 00000000..9b15b220 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000014_89f72ddd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000015_6977b07a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000015_6977b07a.szar new file mode 100644 index 00000000..06f3906c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000015_6977b07a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000016_0bfc9435.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000016_0bfc9435.szar new file mode 100644 index 00000000..76145cdc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000016_0bfc9435.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000017_021d5724.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000017_021d5724.szar new file mode 100644 index 00000000..9150eddd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000017_021d5724.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000018_761854dc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000018_761854dc.szar new file mode 100644 index 00000000..49ce6425 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000018_761854dc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000019_74221f6f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000019_74221f6f.szar new file mode 100644 index 00000000..0632407c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000019_74221f6f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000020_68f9eeb4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000020_68f9eeb4.szar new file mode 100644 index 00000000..c10a90dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000020_68f9eeb4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000021_b111540b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000021_b111540b.szar new file mode 100644 index 00000000..9e4e3154 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000021_b111540b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000022_e56755cb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000022_e56755cb.szar new file mode 100644 index 00000000..8b8a9056 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000022_e56755cb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000023_c26462f0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000023_c26462f0.szar new file mode 100644 index 00000000..02f2c841 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000023_c26462f0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000024_df49a634.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000024_df49a634.szar new file mode 100644 index 00000000..2a757184 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000024_df49a634.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000025_15624d5b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000025_15624d5b.szar new file mode 100644 index 00000000..616f37c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000025_15624d5b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000026_93cbc3ce.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000026_93cbc3ce.szar new file mode 100644 index 00000000..aed84e22 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000026_93cbc3ce.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000027_0eef2fcc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000027_0eef2fcc.szar new file mode 100644 index 00000000..c426aa74 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000027_0eef2fcc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000028_769975b4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000028_769975b4.szar new file mode 100644 index 00000000..a38790de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000028_769975b4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000029_7fe4cc5c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000029_7fe4cc5c.szar new file mode 100644 index 00000000..c67b2df9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000029_7fe4cc5c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000030_9259cfe4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000030_9259cfe4.szar new file mode 100644 index 00000000..364eb08c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000030_9259cfe4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000031_9b5ee21a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000031_9b5ee21a.szar new file mode 100644 index 00000000..7b8cb315 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000031_9b5ee21a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000032_27b125fe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000032_27b125fe.szar new file mode 100644 index 00000000..5172bd63 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000032_27b125fe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000033_435b9493.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000033_435b9493.szar new file mode 100644 index 00000000..8e914a65 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000033_435b9493.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000034_4587cc12.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000034_4587cc12.szar new file mode 100644 index 00000000..a26b4903 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000034_4587cc12.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000035_77d7411c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000035_77d7411c.szar new file mode 100644 index 00000000..ac998823 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000035_77d7411c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000036_f48dd2b1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000036_f48dd2b1.szar new file mode 100644 index 00000000..41e977eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000036_f48dd2b1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000037_7acc96bb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000037_7acc96bb.szar new file mode 100644 index 00000000..ebecce41 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000037_7acc96bb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000038_13838652.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000038_13838652.szar new file mode 100644 index 00000000..737ecb66 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000038_13838652.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000039_1d1b6c79.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000039_1d1b6c79.szar new file mode 100644 index 00000000..ba6a35f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000039_1d1b6c79.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000040_c1121cc8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000040_c1121cc8.szar new file mode 100644 index 00000000..5f11b774 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000040_c1121cc8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000041_bc84dcf0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000041_bc84dcf0.szar new file mode 100644 index 00000000..c3d6bb41 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000041_bc84dcf0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000042_704a8663.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000042_704a8663.szar new file mode 100644 index 00000000..3596193b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000042_704a8663.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000043_255f31f7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000043_255f31f7.szar new file mode 100644 index 00000000..308b8689 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000043_255f31f7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000044_fee98ea7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000044_fee98ea7.szar new file mode 100644 index 00000000..dd43f91d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000044_fee98ea7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000045_70f9d606.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000045_70f9d606.szar new file mode 100644 index 00000000..5e25ed0c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000045_70f9d606.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000046_6fbee592.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000046_6fbee592.szar new file mode 100644 index 00000000..444ed7ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000046_6fbee592.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000047_49e3648e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000047_49e3648e.szar new file mode 100644 index 00000000..024d18d0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000047_49e3648e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000048_e00241d1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000048_e00241d1.szar new file mode 100644 index 00000000..445be7fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000048_e00241d1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000049_a0968a91.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000049_a0968a91.szar new file mode 100644 index 00000000..0219116c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000049_a0968a91.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000050_d817e706.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000050_d817e706.szar new file mode 100644 index 00000000..235b2269 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000050_d817e706.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000051_d7450c95.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000051_d7450c95.szar new file mode 100644 index 00000000..264a1167 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000051_d7450c95.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000052_0f5f1a80.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000052_0f5f1a80.szar new file mode 100644 index 00000000..8f8c23ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000052_0f5f1a80.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000053_3c6a64a5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000053_3c6a64a5.szar new file mode 100644 index 00000000..dd0eeb95 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000053_3c6a64a5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000054_3339cb1f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000054_3339cb1f.szar new file mode 100644 index 00000000..3c58bf9b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000054_3339cb1f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000055_23ea0710.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000055_23ea0710.szar new file mode 100644 index 00000000..87e91992 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000055_23ea0710.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000056_2356851e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000056_2356851e.szar new file mode 100644 index 00000000..b7d42ad9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000056_2356851e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000057_7df06286.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000057_7df06286.szar new file mode 100644 index 00000000..98160829 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000057_7df06286.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000058_4134ed29.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000058_4134ed29.szar new file mode 100644 index 00000000..4962bc64 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000058_4134ed29.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000059_927809e0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000059_927809e0.szar new file mode 100644 index 00000000..301d7a94 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000059_927809e0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000060_2de2f279.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000060_2de2f279.szar new file mode 100644 index 00000000..181be3ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000060_2de2f279.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000061_b4b0b71b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000061_b4b0b71b.szar new file mode 100644 index 00000000..6ce9e068 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000061_b4b0b71b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000062_95218440.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000062_95218440.szar new file mode 100644 index 00000000..2e2ce906 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000062_95218440.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000063_e349cb06.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000063_e349cb06.szar new file mode 100644 index 00000000..b6080661 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000063_e349cb06.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000064_461a3e7d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000064_461a3e7d.szar new file mode 100644 index 00000000..b1c7204f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000064_461a3e7d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000065_21ccb9c9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000065_21ccb9c9.szar new file mode 100644 index 00000000..13008c54 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000065_21ccb9c9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000066_2b5869a7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000066_2b5869a7.szar new file mode 100644 index 00000000..2739cca9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000066_2b5869a7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000067_674ad3c1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000067_674ad3c1.szar new file mode 100644 index 00000000..647bd63f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000067_674ad3c1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000068_1b5b8666.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000068_1b5b8666.szar new file mode 100644 index 00000000..ad4f64f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000068_1b5b8666.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000069_e5016ef9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000069_e5016ef9.szar new file mode 100644 index 00000000..3955827b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000069_e5016ef9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000070_c05203bb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000070_c05203bb.szar new file mode 100644 index 00000000..3b078396 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000070_c05203bb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000071_4fb46cb8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000071_4fb46cb8.szar new file mode 100644 index 00000000..f77cd0ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000071_4fb46cb8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000072_6b808322.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000072_6b808322.szar new file mode 100644 index 00000000..25d0a08e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000072_6b808322.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000073_bceb93fc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000073_bceb93fc.szar new file mode 100644 index 00000000..1a289adb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000073_bceb93fc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000074_12563d7b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000074_12563d7b.szar new file mode 100644 index 00000000..7d8d75ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000074_12563d7b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000075_0fd24b00.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000075_0fd24b00.szar new file mode 100644 index 00000000..97e57f69 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000075_0fd24b00.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000076_7e1a1df0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000076_7e1a1df0.szar new file mode 100644 index 00000000..d5792e85 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000076_7e1a1df0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000077_063b26fd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000077_063b26fd.szar new file mode 100644 index 00000000..71651c42 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000077_063b26fd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000078_087b41e5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000078_087b41e5.szar new file mode 100644 index 00000000..1ebcd685 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000078_087b41e5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000079_91b8b708.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000079_91b8b708.szar new file mode 100644 index 00000000..2805086e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000079_91b8b708.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000080_6cf8fc55.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000080_6cf8fc55.szar new file mode 100644 index 00000000..9d70f4df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000080_6cf8fc55.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000081_8e9e933d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000081_8e9e933d.szar new file mode 100644 index 00000000..7607a51d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000081_8e9e933d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000082_07ea132d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000082_07ea132d.szar new file mode 100644 index 00000000..b9d9e59a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000082_07ea132d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000083_e6581e47.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000083_e6581e47.szar new file mode 100644 index 00000000..eed287e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000083_e6581e47.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000084_00cdac44.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000084_00cdac44.szar new file mode 100644 index 00000000..c05ae8e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000084_00cdac44.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000085_15b092dc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000085_15b092dc.szar new file mode 100644 index 00000000..eccdc619 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/archive/delta_00000000000000000085_15b092dc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000001_3bf1e2cb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000001_3bf1e2cb.szcp new file mode 100644 index 00000000..f6488939 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000001_3bf1e2cb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000002_1b2fd6dc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000002_1b2fd6dc.szcp new file mode 100644 index 00000000..35dfd203 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000002_1b2fd6dc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000003_ec84b322.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000003_ec84b322.szcp new file mode 100644 index 00000000..53af0c68 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000003_ec84b322.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000004_52338019.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000004_52338019.szcp new file mode 100644 index 00000000..1e0540b3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000004_52338019.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000005_8274a80e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000005_8274a80e.szcp new file mode 100644 index 00000000..db6d9d9f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000005_8274a80e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000006_1a9194cc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000006_1a9194cc.szcp new file mode 100644 index 00000000..1d5a011a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000006_1a9194cc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000007_5aa75e77.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000007_5aa75e77.szcp new file mode 100644 index 00000000..2c7d737f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000007_5aa75e77.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000008_b6d28315.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000008_b6d28315.szcp new file mode 100644 index 00000000..5ed9f360 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000008_b6d28315.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000009_6c1ce902.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000009_6c1ce902.szcp new file mode 100644 index 00000000..573a951f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000009_6c1ce902.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000010_743b32f2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000010_743b32f2.szcp new file mode 100644 index 00000000..c2060c75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000010_743b32f2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000011_8e67ee13.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000011_8e67ee13.szcp new file mode 100644 index 00000000..3439facc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000011_8e67ee13.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000012_84c41d27.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000012_84c41d27.szcp new file mode 100644 index 00000000..493ec8fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000012_84c41d27.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000013_c6dfc270.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000013_c6dfc270.szcp new file mode 100644 index 00000000..fcb66b17 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000013_c6dfc270.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000014_65df8b9d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000014_65df8b9d.szcp new file mode 100644 index 00000000..c6accad4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000014_65df8b9d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000015_b2d57ef5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000015_b2d57ef5.szcp new file mode 100644 index 00000000..5508d9a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000015_b2d57ef5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000016_8f17560b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000016_8f17560b.szcp new file mode 100644 index 00000000..9ac23f65 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000016_8f17560b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000017_2b5c3856.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000017_2b5c3856.szcp new file mode 100644 index 00000000..f3e3ca18 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000017_2b5c3856.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000018_fde69710.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000018_fde69710.szcp new file mode 100644 index 00000000..fbe4af56 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000018_fde69710.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000019_4b15e18c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000019_4b15e18c.szcp new file mode 100644 index 00000000..14634ee6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000019_4b15e18c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000020_1af34597.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000020_1af34597.szcp new file mode 100644 index 00000000..88eedcee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000020_1af34597.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000021_952f128c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000021_952f128c.szcp new file mode 100644 index 00000000..04f5d8c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000021_952f128c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000022_e3f2aa4d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000022_e3f2aa4d.szcp new file mode 100644 index 00000000..ad26acba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000022_e3f2aa4d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000023_3793d4e3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000023_3793d4e3.szcp new file mode 100644 index 00000000..b53165b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000023_3793d4e3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000024_93f3cb7a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000024_93f3cb7a.szcp new file mode 100644 index 00000000..07fb679a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000024_93f3cb7a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000025_2150557e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000025_2150557e.szcp new file mode 100644 index 00000000..abe80c74 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000025_2150557e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000026_317f6a07.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000026_317f6a07.szcp new file mode 100644 index 00000000..315ec371 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000026_317f6a07.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000027_4af4524a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000027_4af4524a.szcp new file mode 100644 index 00000000..4e4be1a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000027_4af4524a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000028_71bf2969.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000028_71bf2969.szcp new file mode 100644 index 00000000..6cf93efe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000028_71bf2969.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000029_f8eff73a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000029_f8eff73a.szcp new file mode 100644 index 00000000..bcb3b1c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000029_f8eff73a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000030_2b8e3959.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000030_2b8e3959.szcp new file mode 100644 index 00000000..34c01991 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000030_2b8e3959.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000031_569f0aa2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000031_569f0aa2.szcp new file mode 100644 index 00000000..5155438d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000031_569f0aa2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000032_8dde6fc4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000032_8dde6fc4.szcp new file mode 100644 index 00000000..1d0afa32 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000032_8dde6fc4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000033_a98d6a5e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000033_a98d6a5e.szcp new file mode 100644 index 00000000..15bdf902 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000033_a98d6a5e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000034_bd1369f6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000034_bd1369f6.szcp new file mode 100644 index 00000000..274fae2e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000034_bd1369f6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000035_f8db1b1b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000035_f8db1b1b.szcp new file mode 100644 index 00000000..cf385bc8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000035_f8db1b1b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000036_f6764828.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000036_f6764828.szcp new file mode 100644 index 00000000..b8ca40a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000036_f6764828.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000037_99a5f6e6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000037_99a5f6e6.szcp new file mode 100644 index 00000000..735da5aa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000037_99a5f6e6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000038_655b2621.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000038_655b2621.szcp new file mode 100644 index 00000000..d348ee50 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000038_655b2621.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000039_f0b6396f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000039_f0b6396f.szcp new file mode 100644 index 00000000..f375eecb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000039_f0b6396f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000040_005e4044.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000040_005e4044.szcp new file mode 100644 index 00000000..853c7736 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000040_005e4044.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000041_e2413b1f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000041_e2413b1f.szcp new file mode 100644 index 00000000..e08f9121 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000041_e2413b1f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000042_32cd66fc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000042_32cd66fc.szcp new file mode 100644 index 00000000..146e7bd8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000042_32cd66fc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000043_4c9ac2c1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000043_4c9ac2c1.szcp new file mode 100644 index 00000000..9636d341 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000043_4c9ac2c1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000044_a96ff86c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000044_a96ff86c.szcp new file mode 100644 index 00000000..404249fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000044_a96ff86c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000045_f3d19f6a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000045_f3d19f6a.szcp new file mode 100644 index 00000000..58b207af Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000045_f3d19f6a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000046_81b5623e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000046_81b5623e.szcp new file mode 100644 index 00000000..315a8061 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000046_81b5623e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000047_54f961ff.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000047_54f961ff.szcp new file mode 100644 index 00000000..ee346b69 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000047_54f961ff.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000048_2ae89f5d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000048_2ae89f5d.szcp new file mode 100644 index 00000000..b9562eaa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000048_2ae89f5d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000049_83741678.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000049_83741678.szcp new file mode 100644 index 00000000..d9362fe1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000049_83741678.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000050_7ec79cd1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000050_7ec79cd1.szcp new file mode 100644 index 00000000..e4fe756f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000050_7ec79cd1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000051_bb6b6786.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000051_bb6b6786.szcp new file mode 100644 index 00000000..d2b2341b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000051_bb6b6786.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000052_db11f561.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000052_db11f561.szcp new file mode 100644 index 00000000..2e3b4a30 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000052_db11f561.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000053_35c090e4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000053_35c090e4.szcp new file mode 100644 index 00000000..85aa1739 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000053_35c090e4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000054_fdd2b151.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000054_fdd2b151.szcp new file mode 100644 index 00000000..0444e042 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000054_fdd2b151.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000055_911f2f12.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000055_911f2f12.szcp new file mode 100644 index 00000000..bdf850c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000055_911f2f12.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000056_a1aa218c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000056_a1aa218c.szcp new file mode 100644 index 00000000..bd0c950c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000056_a1aa218c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000057_70df5a54.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000057_70df5a54.szcp new file mode 100644 index 00000000..3fb4fbe7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000057_70df5a54.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000058_445c9da7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000058_445c9da7.szcp new file mode 100644 index 00000000..3522ee7b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000058_445c9da7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000059_6634e647.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000059_6634e647.szcp new file mode 100644 index 00000000..03a1e5cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000059_6634e647.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000060_141e8954.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000060_141e8954.szcp new file mode 100644 index 00000000..1286a6c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000060_141e8954.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000061_d4e0e9c4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000061_d4e0e9c4.szcp new file mode 100644 index 00000000..e51b9a6f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000061_d4e0e9c4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000062_47f6e14d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000062_47f6e14d.szcp new file mode 100644 index 00000000..570377db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000062_47f6e14d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000063_64b61672.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000063_64b61672.szcp new file mode 100644 index 00000000..3d36a73c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000063_64b61672.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000064_146a0e46.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000064_146a0e46.szcp new file mode 100644 index 00000000..d4b82e31 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000064_146a0e46.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000065_601a3208.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000065_601a3208.szcp new file mode 100644 index 00000000..7294ce2f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000065_601a3208.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000066_7ce5d31a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000066_7ce5d31a.szcp new file mode 100644 index 00000000..c9b12b2c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000066_7ce5d31a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000067_eb7c62e8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000067_eb7c62e8.szcp new file mode 100644 index 00000000..235a4a9b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000067_eb7c62e8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000068_018db351.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000068_018db351.szcp new file mode 100644 index 00000000..01c6b6a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000068_018db351.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000069_68732135.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000069_68732135.szcp new file mode 100644 index 00000000..3baa2993 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000069_68732135.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000070_27d2f48c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000070_27d2f48c.szcp new file mode 100644 index 00000000..d04aff8f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000070_27d2f48c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000071_d035cd41.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000071_d035cd41.szcp new file mode 100644 index 00000000..3d611060 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000071_d035cd41.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000072_cf2b9942.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000072_cf2b9942.szcp new file mode 100644 index 00000000..d276f689 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000072_cf2b9942.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000073_c0b059d8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000073_c0b059d8.szcp new file mode 100644 index 00000000..1369cf03 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000073_c0b059d8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000074_df5a5a5e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000074_df5a5a5e.szcp new file mode 100644 index 00000000..da2129f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000074_df5a5a5e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000075_036dc085.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000075_036dc085.szcp new file mode 100644 index 00000000..23378a13 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000075_036dc085.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000076_b609403c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000076_b609403c.szcp new file mode 100644 index 00000000..ca415e76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000076_b609403c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000077_affe6b84.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000077_affe6b84.szcp new file mode 100644 index 00000000..189df2bd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000077_affe6b84.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000078_f85a5c61.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000078_f85a5c61.szcp new file mode 100644 index 00000000..564a7426 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000078_f85a5c61.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000079_4fb35817.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000079_4fb35817.szcp new file mode 100644 index 00000000..d7f15497 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000079_4fb35817.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000080_693de7ad.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000080_693de7ad.szcp new file mode 100644 index 00000000..687ed55a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000080_693de7ad.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000081_65af7b5a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000081_65af7b5a.szcp new file mode 100644 index 00000000..e80dc369 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000081_65af7b5a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000082_703d6e72.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000082_703d6e72.szcp new file mode 100644 index 00000000..4e089712 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000082_703d6e72.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000083_8f009378.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000083_8f009378.szcp new file mode 100644 index 00000000..e4e6018b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000083_8f009378.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000084_5bfba01f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000084_5bfba01f.szcp new file mode 100644 index 00000000..4d7772ae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000084_5bfba01f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000085_524c5af0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000085_524c5af0.szcp new file mode 100644 index 00000000..e8ba27be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000085_524c5af0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000086_2e194f23.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000086_2e194f23.szcp new file mode 100644 index 00000000..a2a0c84b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_009/checkpoints/checkpoint_00000000000000000086_2e194f23.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000001_95b6a6bf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000001_95b6a6bf.szar new file mode 100644 index 00000000..5c96123d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000001_95b6a6bf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000002_11a88cb6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000002_11a88cb6.szar new file mode 100644 index 00000000..eed2d657 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000002_11a88cb6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000003_60e325a3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000003_60e325a3.szar new file mode 100644 index 00000000..e849ec1e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000003_60e325a3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000004_b1c6e1ec.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000004_b1c6e1ec.szar new file mode 100644 index 00000000..0561fd00 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000004_b1c6e1ec.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000005_7b02d69d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000005_7b02d69d.szar new file mode 100644 index 00000000..9f80fb9c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000005_7b02d69d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000006_75ed366c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000006_75ed366c.szar new file mode 100644 index 00000000..d8cebb36 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000006_75ed366c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000007_c5a829b8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000007_c5a829b8.szar new file mode 100644 index 00000000..0b696b6c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000007_c5a829b8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000008_05189fb9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000008_05189fb9.szar new file mode 100644 index 00000000..36443a6d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000008_05189fb9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000009_24f1346b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000009_24f1346b.szar new file mode 100644 index 00000000..d3db7996 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000009_24f1346b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000010_f6c171cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000010_f6c171cc.szar new file mode 100644 index 00000000..892b57d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000010_f6c171cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000011_76dfa07d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000011_76dfa07d.szar new file mode 100644 index 00000000..2f7fdf5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000011_76dfa07d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000012_e02c86b2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000012_e02c86b2.szar new file mode 100644 index 00000000..216d9de7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000012_e02c86b2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000013_0c69f963.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000013_0c69f963.szar new file mode 100644 index 00000000..95b5d260 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000013_0c69f963.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000014_b51f4828.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000014_b51f4828.szar new file mode 100644 index 00000000..f65f6e32 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000014_b51f4828.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000015_638dc1a3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000015_638dc1a3.szar new file mode 100644 index 00000000..71ca7b81 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000015_638dc1a3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000016_84f0d97f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000016_84f0d97f.szar new file mode 100644 index 00000000..22238aea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000016_84f0d97f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000017_86539b65.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000017_86539b65.szar new file mode 100644 index 00000000..e14c8412 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000017_86539b65.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000018_c7850a67.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000018_c7850a67.szar new file mode 100644 index 00000000..8b450168 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000018_c7850a67.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000019_8607ec83.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000019_8607ec83.szar new file mode 100644 index 00000000..1162b393 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000019_8607ec83.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000020_44f73b62.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000020_44f73b62.szar new file mode 100644 index 00000000..6225cb21 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000020_44f73b62.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000021_e15beed1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000021_e15beed1.szar new file mode 100644 index 00000000..52aeb338 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000021_e15beed1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000022_1a52c347.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000022_1a52c347.szar new file mode 100644 index 00000000..05f434ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000022_1a52c347.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000023_4239a654.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000023_4239a654.szar new file mode 100644 index 00000000..e67b43ae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000023_4239a654.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000024_24a7ef58.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000024_24a7ef58.szar new file mode 100644 index 00000000..21339e45 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000024_24a7ef58.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000025_60d1e2cf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000025_60d1e2cf.szar new file mode 100644 index 00000000..a26ef4ac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000025_60d1e2cf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000026_431c465a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000026_431c465a.szar new file mode 100644 index 00000000..9972c1a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000026_431c465a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000027_e1251609.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000027_e1251609.szar new file mode 100644 index 00000000..16c6876c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000027_e1251609.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000028_4c2f8596.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000028_4c2f8596.szar new file mode 100644 index 00000000..9ba61b0a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000028_4c2f8596.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000029_2364c526.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000029_2364c526.szar new file mode 100644 index 00000000..a6bb0000 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000029_2364c526.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000030_18bb0d0b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000030_18bb0d0b.szar new file mode 100644 index 00000000..16b8a733 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000030_18bb0d0b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000031_11d155f5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000031_11d155f5.szar new file mode 100644 index 00000000..48234519 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000031_11d155f5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000032_916e619a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000032_916e619a.szar new file mode 100644 index 00000000..2cfd4e6f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000032_916e619a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000033_734f6f71.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000033_734f6f71.szar new file mode 100644 index 00000000..f4e80ec2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000033_734f6f71.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000034_10a3374e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000034_10a3374e.szar new file mode 100644 index 00000000..a57ddb38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000034_10a3374e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000035_d0fb4b32.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000035_d0fb4b32.szar new file mode 100644 index 00000000..9cc40106 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000035_d0fb4b32.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000036_3ac73c92.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000036_3ac73c92.szar new file mode 100644 index 00000000..662a09bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000036_3ac73c92.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000037_5297d35e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000037_5297d35e.szar new file mode 100644 index 00000000..5213268a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000037_5297d35e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000038_6a8d0993.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000038_6a8d0993.szar new file mode 100644 index 00000000..afe060e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000038_6a8d0993.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000039_6905735a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000039_6905735a.szar new file mode 100644 index 00000000..06834076 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000039_6905735a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000040_2627e42c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000040_2627e42c.szar new file mode 100644 index 00000000..ca5d52d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000040_2627e42c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000041_59d57b99.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000041_59d57b99.szar new file mode 100644 index 00000000..042b121b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000041_59d57b99.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000042_d49f0713.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000042_d49f0713.szar new file mode 100644 index 00000000..0f223dbb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000042_d49f0713.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000043_a4cbf131.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000043_a4cbf131.szar new file mode 100644 index 00000000..71f0b8a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000043_a4cbf131.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000044_c495e1b7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000044_c495e1b7.szar new file mode 100644 index 00000000..25b18099 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000044_c495e1b7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000045_4effc7b3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000045_4effc7b3.szar new file mode 100644 index 00000000..9794fb48 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000045_4effc7b3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000046_7726dab1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000046_7726dab1.szar new file mode 100644 index 00000000..406cdaa6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000046_7726dab1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000047_08f7744b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000047_08f7744b.szar new file mode 100644 index 00000000..7fe5bfd9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000047_08f7744b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000048_4251d977.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000048_4251d977.szar new file mode 100644 index 00000000..81ce73af Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000048_4251d977.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000049_3e151c26.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000049_3e151c26.szar new file mode 100644 index 00000000..df2daa01 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000049_3e151c26.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000050_19561398.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000050_19561398.szar new file mode 100644 index 00000000..3999b31d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000050_19561398.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000051_0e4edf89.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000051_0e4edf89.szar new file mode 100644 index 00000000..24192c2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000051_0e4edf89.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000052_64fe81ab.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000052_64fe81ab.szar new file mode 100644 index 00000000..4f8eb5ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000052_64fe81ab.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000053_6019fa4d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000053_6019fa4d.szar new file mode 100644 index 00000000..f3ddeed0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000053_6019fa4d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000054_d6c95d97.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000054_d6c95d97.szar new file mode 100644 index 00000000..879beeeb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000054_d6c95d97.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000055_7f22fc3b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000055_7f22fc3b.szar new file mode 100644 index 00000000..7fa5a7e4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000055_7f22fc3b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000056_e9b29acf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000056_e9b29acf.szar new file mode 100644 index 00000000..2254e7a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000056_e9b29acf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000057_bc88a4f8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000057_bc88a4f8.szar new file mode 100644 index 00000000..b49fe68b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000057_bc88a4f8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000058_e5e0905a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000058_e5e0905a.szar new file mode 100644 index 00000000..cfabd12c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000058_e5e0905a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000059_30a74007.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000059_30a74007.szar new file mode 100644 index 00000000..737b1629 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000059_30a74007.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000060_425ff51c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000060_425ff51c.szar new file mode 100644 index 00000000..1db1d52b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000060_425ff51c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000061_915780ec.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000061_915780ec.szar new file mode 100644 index 00000000..d0a6bfaa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/archive/delta_00000000000000000061_915780ec.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000001_dafe9a23.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000001_dafe9a23.szcp new file mode 100644 index 00000000..9e32285e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000001_dafe9a23.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000002_2137d15e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000002_2137d15e.szcp new file mode 100644 index 00000000..a49ba29d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000002_2137d15e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000003_8642f15f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000003_8642f15f.szcp new file mode 100644 index 00000000..0d841638 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000003_8642f15f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000004_1a41d4f2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000004_1a41d4f2.szcp new file mode 100644 index 00000000..aa555ce2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000004_1a41d4f2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000005_845ab59f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000005_845ab59f.szcp new file mode 100644 index 00000000..5644387e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000005_845ab59f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000006_d5223205.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000006_d5223205.szcp new file mode 100644 index 00000000..d8afc4bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000006_d5223205.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000007_3230ae0c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000007_3230ae0c.szcp new file mode 100644 index 00000000..35a53b81 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000007_3230ae0c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000008_d49ad5bc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000008_d49ad5bc.szcp new file mode 100644 index 00000000..8d98c201 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000008_d49ad5bc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000009_fbaf872a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000009_fbaf872a.szcp new file mode 100644 index 00000000..a081b3f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000009_fbaf872a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000010_91fcba47.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000010_91fcba47.szcp new file mode 100644 index 00000000..0af79e6a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000010_91fcba47.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000011_2fb0d705.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000011_2fb0d705.szcp new file mode 100644 index 00000000..7edfc6f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000011_2fb0d705.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000012_26626c71.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000012_26626c71.szcp new file mode 100644 index 00000000..eaacf5be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000012_26626c71.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000013_b3b3c413.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000013_b3b3c413.szcp new file mode 100644 index 00000000..2cf3f01a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000013_b3b3c413.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000014_5be6a0d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000014_5be6a0d7.szcp new file mode 100644 index 00000000..7c3aad69 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000014_5be6a0d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000015_6f3884b3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000015_6f3884b3.szcp new file mode 100644 index 00000000..7767272e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000015_6f3884b3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000016_5c399b71.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000016_5c399b71.szcp new file mode 100644 index 00000000..a58fb9dd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000016_5c399b71.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000017_fecdf8e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000017_fecdf8e9.szcp new file mode 100644 index 00000000..4a51aeb9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000017_fecdf8e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000018_bb25c2bf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000018_bb25c2bf.szcp new file mode 100644 index 00000000..da24137b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000018_bb25c2bf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000019_6811334a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000019_6811334a.szcp new file mode 100644 index 00000000..93baf2e9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000019_6811334a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000020_de783554.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000020_de783554.szcp new file mode 100644 index 00000000..9eeacdd3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000020_de783554.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000021_f4949876.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000021_f4949876.szcp new file mode 100644 index 00000000..d1b2cf18 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000021_f4949876.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000022_f1561a3d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000022_f1561a3d.szcp new file mode 100644 index 00000000..2a93b133 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000022_f1561a3d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000023_53d76c59.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000023_53d76c59.szcp new file mode 100644 index 00000000..cc77a638 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000023_53d76c59.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000024_f628bf11.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000024_f628bf11.szcp new file mode 100644 index 00000000..92d9454f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000024_f628bf11.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000025_5337230e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000025_5337230e.szcp new file mode 100644 index 00000000..18079db0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000025_5337230e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000026_19220ca1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000026_19220ca1.szcp new file mode 100644 index 00000000..fe5997f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000026_19220ca1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000027_58cac837.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000027_58cac837.szcp new file mode 100644 index 00000000..c3719ccb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000027_58cac837.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000028_4fe3bace.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000028_4fe3bace.szcp new file mode 100644 index 00000000..9a62d561 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000028_4fe3bace.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000029_a66f8225.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000029_a66f8225.szcp new file mode 100644 index 00000000..f02fa737 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000029_a66f8225.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000030_759ca738.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000030_759ca738.szcp new file mode 100644 index 00000000..235f6cf3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000030_759ca738.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000031_644970de.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000031_644970de.szcp new file mode 100644 index 00000000..dc983a92 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000031_644970de.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000032_58d8a439.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000032_58d8a439.szcp new file mode 100644 index 00000000..019af48d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000032_58d8a439.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000033_51aa8c1b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000033_51aa8c1b.szcp new file mode 100644 index 00000000..5281e79d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000033_51aa8c1b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000034_47082b6a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000034_47082b6a.szcp new file mode 100644 index 00000000..ee621ff1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000034_47082b6a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000035_e9e0690f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000035_e9e0690f.szcp new file mode 100644 index 00000000..fc515c45 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000035_e9e0690f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000036_676a06e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000036_676a06e9.szcp new file mode 100644 index 00000000..57644834 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000036_676a06e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000037_3abde205.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000037_3abde205.szcp new file mode 100644 index 00000000..3d33df0c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000037_3abde205.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000038_c5776b05.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000038_c5776b05.szcp new file mode 100644 index 00000000..0ef056cb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000038_c5776b05.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000039_50e8cc6e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000039_50e8cc6e.szcp new file mode 100644 index 00000000..8228be67 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000039_50e8cc6e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000040_cb391aef.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000040_cb391aef.szcp new file mode 100644 index 00000000..3aa7d51e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000040_cb391aef.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000041_f099dd8c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000041_f099dd8c.szcp new file mode 100644 index 00000000..89199d07 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000041_f099dd8c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000042_5b700d6e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000042_5b700d6e.szcp new file mode 100644 index 00000000..02f40c92 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000042_5b700d6e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000043_5e467c05.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000043_5e467c05.szcp new file mode 100644 index 00000000..a81c1016 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000043_5e467c05.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000044_21973ab0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000044_21973ab0.szcp new file mode 100644 index 00000000..0219847b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000044_21973ab0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000045_c1692415.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000045_c1692415.szcp new file mode 100644 index 00000000..cef62612 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000045_c1692415.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000046_30657d83.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000046_30657d83.szcp new file mode 100644 index 00000000..7f87f357 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000046_30657d83.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000047_ea359f73.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000047_ea359f73.szcp new file mode 100644 index 00000000..3d8bbecc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000047_ea359f73.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000048_fa600028.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000048_fa600028.szcp new file mode 100644 index 00000000..9ac28c64 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000048_fa600028.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000049_ef585066.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000049_ef585066.szcp new file mode 100644 index 00000000..b905cc83 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000049_ef585066.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000050_273be9f3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000050_273be9f3.szcp new file mode 100644 index 00000000..8f365119 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000050_273be9f3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000051_1640f8d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000051_1640f8d1.szcp new file mode 100644 index 00000000..6060868d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000051_1640f8d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000052_22ab2f83.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000052_22ab2f83.szcp new file mode 100644 index 00000000..a8e7dc0e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000052_22ab2f83.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000053_3fd85331.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000053_3fd85331.szcp new file mode 100644 index 00000000..fedb3b28 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000053_3fd85331.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000054_a2d7be2a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000054_a2d7be2a.szcp new file mode 100644 index 00000000..da92b753 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000054_a2d7be2a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000055_bba0f479.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000055_bba0f479.szcp new file mode 100644 index 00000000..4701ebe0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000055_bba0f479.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000056_12f1d39d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000056_12f1d39d.szcp new file mode 100644 index 00000000..1776dea1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000056_12f1d39d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000057_39786442.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000057_39786442.szcp new file mode 100644 index 00000000..481a6b1d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000057_39786442.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000058_ee7ecd48.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000058_ee7ecd48.szcp new file mode 100644 index 00000000..9c9b8880 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000058_ee7ecd48.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000059_4652702f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000059_4652702f.szcp new file mode 100644 index 00000000..62c918dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000059_4652702f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000060_980961f7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000060_980961f7.szcp new file mode 100644 index 00000000..d024f947 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000060_980961f7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000061_67de74bb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000061_67de74bb.szcp new file mode 100644 index 00000000..eb8c185d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_010/checkpoints/checkpoint_00000000000000000061_67de74bb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000001_4605df67.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000001_4605df67.szar new file mode 100644 index 00000000..861d9ab0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000001_4605df67.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000002_5e77beac.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000002_5e77beac.szar new file mode 100644 index 00000000..8fbb0f63 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000002_5e77beac.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000003_de4859b8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000003_de4859b8.szar new file mode 100644 index 00000000..99d51385 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000003_de4859b8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000004_8d873611.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000004_8d873611.szar new file mode 100644 index 00000000..ab78d169 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000004_8d873611.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000005_52b20686.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000005_52b20686.szar new file mode 100644 index 00000000..af9189ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000005_52b20686.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000006_48178d84.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000006_48178d84.szar new file mode 100644 index 00000000..afafc598 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000006_48178d84.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000007_1389bbbb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000007_1389bbbb.szar new file mode 100644 index 00000000..c8cbb7c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000007_1389bbbb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000008_daa19d12.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000008_daa19d12.szar new file mode 100644 index 00000000..fdddd701 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000008_daa19d12.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000009_da6e4185.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000009_da6e4185.szar new file mode 100644 index 00000000..a2db5af8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000009_da6e4185.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000010_5a269975.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000010_5a269975.szar new file mode 100644 index 00000000..6096aa8b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000010_5a269975.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000011_48dc8a8e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000011_48dc8a8e.szar new file mode 100644 index 00000000..3594a1f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000011_48dc8a8e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000012_21d2c0a0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000012_21d2c0a0.szar new file mode 100644 index 00000000..2ed12a8b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000012_21d2c0a0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000013_c0d53487.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000013_c0d53487.szar new file mode 100644 index 00000000..969233c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000013_c0d53487.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000014_740ccc26.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000014_740ccc26.szar new file mode 100644 index 00000000..32312b67 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000014_740ccc26.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000015_be88b02e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000015_be88b02e.szar new file mode 100644 index 00000000..d4695194 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000015_be88b02e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000016_965f332b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000016_965f332b.szar new file mode 100644 index 00000000..cb0803a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000016_965f332b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000017_765172d5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000017_765172d5.szar new file mode 100644 index 00000000..40552c48 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000017_765172d5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000018_b2587be7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000018_b2587be7.szar new file mode 100644 index 00000000..5cde0d90 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000018_b2587be7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000019_2f0e477c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000019_2f0e477c.szar new file mode 100644 index 00000000..7ad0c923 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000019_2f0e477c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000020_5b790b80.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000020_5b790b80.szar new file mode 100644 index 00000000..93fcd038 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000020_5b790b80.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000021_df3dc2e4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000021_df3dc2e4.szar new file mode 100644 index 00000000..2e65ef4c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000021_df3dc2e4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000022_2f4b2c1b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000022_2f4b2c1b.szar new file mode 100644 index 00000000..b336ac20 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000022_2f4b2c1b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000023_ca31b958.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000023_ca31b958.szar new file mode 100644 index 00000000..cbba86bd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000023_ca31b958.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000024_096203bd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000024_096203bd.szar new file mode 100644 index 00000000..4938beae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000024_096203bd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000025_5ee62619.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000025_5ee62619.szar new file mode 100644 index 00000000..186f6d65 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000025_5ee62619.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000026_63b9a385.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000026_63b9a385.szar new file mode 100644 index 00000000..8f25ebe7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000026_63b9a385.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000027_709ab07d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000027_709ab07d.szar new file mode 100644 index 00000000..e8dc2d4d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000027_709ab07d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000028_19f5759d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000028_19f5759d.szar new file mode 100644 index 00000000..9ae4173e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000028_19f5759d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000029_392274f5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000029_392274f5.szar new file mode 100644 index 00000000..eaeeb0cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000029_392274f5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000030_91a13a26.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000030_91a13a26.szar new file mode 100644 index 00000000..88d727f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000030_91a13a26.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000031_0e320bb4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000031_0e320bb4.szar new file mode 100644 index 00000000..757c17cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000031_0e320bb4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000032_8716d451.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000032_8716d451.szar new file mode 100644 index 00000000..d09f0a59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000032_8716d451.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000033_b5476084.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000033_b5476084.szar new file mode 100644 index 00000000..67ba9245 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000033_b5476084.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000034_7a2eb460.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000034_7a2eb460.szar new file mode 100644 index 00000000..59ec50cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000034_7a2eb460.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000035_d3b0b34c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000035_d3b0b34c.szar new file mode 100644 index 00000000..9bf0537b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000035_d3b0b34c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000036_a4081621.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000036_a4081621.szar new file mode 100644 index 00000000..4a2f8625 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000036_a4081621.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000037_91d2a84c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000037_91d2a84c.szar new file mode 100644 index 00000000..41dc12be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000037_91d2a84c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000038_01080703.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000038_01080703.szar new file mode 100644 index 00000000..ef2f93e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000038_01080703.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000039_82e1ce52.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000039_82e1ce52.szar new file mode 100644 index 00000000..e21d20c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000039_82e1ce52.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000040_72298033.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000040_72298033.szar new file mode 100644 index 00000000..18769fb4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000040_72298033.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000041_f0851225.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000041_f0851225.szar new file mode 100644 index 00000000..3500c229 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000041_f0851225.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000042_b541d241.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000042_b541d241.szar new file mode 100644 index 00000000..7073c9a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000042_b541d241.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000043_6d317055.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000043_6d317055.szar new file mode 100644 index 00000000..0b1e1e71 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000043_6d317055.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000044_bd8e33a0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000044_bd8e33a0.szar new file mode 100644 index 00000000..c3cbfdee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000044_bd8e33a0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000045_07981b21.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000045_07981b21.szar new file mode 100644 index 00000000..e53988d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000045_07981b21.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000046_7a617a93.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000046_7a617a93.szar new file mode 100644 index 00000000..446389f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000046_7a617a93.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000047_ffda65c6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000047_ffda65c6.szar new file mode 100644 index 00000000..4cb3b555 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000047_ffda65c6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000048_29f159f6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000048_29f159f6.szar new file mode 100644 index 00000000..0ae72f55 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000048_29f159f6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000049_7557f258.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000049_7557f258.szar new file mode 100644 index 00000000..70ed26e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000049_7557f258.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000050_f37b45e0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000050_f37b45e0.szar new file mode 100644 index 00000000..0c148f89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000050_f37b45e0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000051_dfad4397.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000051_dfad4397.szar new file mode 100644 index 00000000..b941b1af Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000051_dfad4397.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000052_44069093.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000052_44069093.szar new file mode 100644 index 00000000..0020eb80 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000052_44069093.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000053_19f4e716.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000053_19f4e716.szar new file mode 100644 index 00000000..359568ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000053_19f4e716.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000054_80f89b2e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000054_80f89b2e.szar new file mode 100644 index 00000000..ac753b5c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000054_80f89b2e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000055_b9968d64.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000055_b9968d64.szar new file mode 100644 index 00000000..888eeda0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000055_b9968d64.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000056_7649195c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000056_7649195c.szar new file mode 100644 index 00000000..d4c31f8b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000056_7649195c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000057_08406590.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000057_08406590.szar new file mode 100644 index 00000000..929ee17f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000057_08406590.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000058_3cb01b5c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000058_3cb01b5c.szar new file mode 100644 index 00000000..af0afc46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000058_3cb01b5c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000059_20bc1c05.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000059_20bc1c05.szar new file mode 100644 index 00000000..4ee43514 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000059_20bc1c05.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000060_2d382875.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000060_2d382875.szar new file mode 100644 index 00000000..8ac07c7f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000060_2d382875.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000061_b12ac029.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000061_b12ac029.szar new file mode 100644 index 00000000..694106f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000061_b12ac029.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000062_2e48ff08.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000062_2e48ff08.szar new file mode 100644 index 00000000..790c7c15 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000062_2e48ff08.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000063_7fa0376d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000063_7fa0376d.szar new file mode 100644 index 00000000..bfde6444 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000063_7fa0376d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000064_7ea2c969.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000064_7ea2c969.szar new file mode 100644 index 00000000..3f4befeb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000064_7ea2c969.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000065_10336c20.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000065_10336c20.szar new file mode 100644 index 00000000..a576e0d2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000065_10336c20.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000066_045f71cf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000066_045f71cf.szar new file mode 100644 index 00000000..c918094c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000066_045f71cf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000067_fc0e103c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000067_fc0e103c.szar new file mode 100644 index 00000000..ef626946 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000067_fc0e103c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000068_52421d5a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000068_52421d5a.szar new file mode 100644 index 00000000..a529f522 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000068_52421d5a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000069_8293d42b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000069_8293d42b.szar new file mode 100644 index 00000000..677bc139 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000069_8293d42b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000070_0fe4001b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000070_0fe4001b.szar new file mode 100644 index 00000000..10946488 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000070_0fe4001b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000071_3c6fd502.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000071_3c6fd502.szar new file mode 100644 index 00000000..7c9bf2a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000071_3c6fd502.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000072_68d2f245.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000072_68d2f245.szar new file mode 100644 index 00000000..2b7d8090 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000072_68d2f245.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000073_d7eeab77.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000073_d7eeab77.szar new file mode 100644 index 00000000..25f43279 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000073_d7eeab77.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000074_2bd5a5fd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000074_2bd5a5fd.szar new file mode 100644 index 00000000..88f04243 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000074_2bd5a5fd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000075_7c73e4af.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000075_7c73e4af.szar new file mode 100644 index 00000000..12d7036c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000075_7c73e4af.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000076_dd339afb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000076_dd339afb.szar new file mode 100644 index 00000000..89e597a9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000076_dd339afb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000077_5d37e367.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000077_5d37e367.szar new file mode 100644 index 00000000..1e7d1f6a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000077_5d37e367.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000078_540b2699.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000078_540b2699.szar new file mode 100644 index 00000000..82f8233f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000078_540b2699.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000079_b4e8c84d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000079_b4e8c84d.szar new file mode 100644 index 00000000..0499efa9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000079_b4e8c84d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000080_41bb888d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000080_41bb888d.szar new file mode 100644 index 00000000..2f1046dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000080_41bb888d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000081_41cc35c9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000081_41cc35c9.szar new file mode 100644 index 00000000..fc84dad9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000081_41cc35c9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000082_a0d90064.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000082_a0d90064.szar new file mode 100644 index 00000000..5e69a754 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000082_a0d90064.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000083_1b0d0954.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000083_1b0d0954.szar new file mode 100644 index 00000000..ad791fb0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000083_1b0d0954.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000084_49a76272.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000084_49a76272.szar new file mode 100644 index 00000000..09817451 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000084_49a76272.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000085_b4f4a8a4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000085_b4f4a8a4.szar new file mode 100644 index 00000000..20206568 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/archive/delta_00000000000000000085_b4f4a8a4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000001_5a28cd74.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000001_5a28cd74.szcp new file mode 100644 index 00000000..ec00c281 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000001_5a28cd74.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000002_1a243ec2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000002_1a243ec2.szcp new file mode 100644 index 00000000..a1a2db41 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000002_1a243ec2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000003_6ca836fe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000003_6ca836fe.szcp new file mode 100644 index 00000000..a547d53b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000003_6ca836fe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000004_a8b515cb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000004_a8b515cb.szcp new file mode 100644 index 00000000..be71e9ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000004_a8b515cb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000005_eb7b82dd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000005_eb7b82dd.szcp new file mode 100644 index 00000000..0a4f188f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000005_eb7b82dd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000006_0c06aa22.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000006_0c06aa22.szcp new file mode 100644 index 00000000..3392a4ba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000006_0c06aa22.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000007_973ac55c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000007_973ac55c.szcp new file mode 100644 index 00000000..fedbbb2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000007_973ac55c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000008_5f2be611.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000008_5f2be611.szcp new file mode 100644 index 00000000..d4311a1a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000008_5f2be611.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000009_9b4a4dad.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000009_9b4a4dad.szcp new file mode 100644 index 00000000..5de87083 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000009_9b4a4dad.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000010_c1d91beb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000010_c1d91beb.szcp new file mode 100644 index 00000000..fbb9deb1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000010_c1d91beb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000011_602d687b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000011_602d687b.szcp new file mode 100644 index 00000000..23e4393d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000011_602d687b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000012_e29bec36.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000012_e29bec36.szcp new file mode 100644 index 00000000..1599fe60 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000012_e29bec36.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000013_c66a40ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000013_c66a40ce.szcp new file mode 100644 index 00000000..804c6ada Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000013_c66a40ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000014_43b3e836.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000014_43b3e836.szcp new file mode 100644 index 00000000..51accc9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000014_43b3e836.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000015_646be8ab.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000015_646be8ab.szcp new file mode 100644 index 00000000..748911cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000015_646be8ab.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000016_7195993c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000016_7195993c.szcp new file mode 100644 index 00000000..0f72a41e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000016_7195993c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000017_b6f8b099.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000017_b6f8b099.szcp new file mode 100644 index 00000000..ec059121 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000017_b6f8b099.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000018_3dc385a5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000018_3dc385a5.szcp new file mode 100644 index 00000000..34590a70 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000018_3dc385a5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000019_063a7982.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000019_063a7982.szcp new file mode 100644 index 00000000..b24a9554 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000019_063a7982.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000020_67c39a09.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000020_67c39a09.szcp new file mode 100644 index 00000000..9520cdcf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000020_67c39a09.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000021_78393fe3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000021_78393fe3.szcp new file mode 100644 index 00000000..6b93c8aa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000021_78393fe3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000022_fd15d4b3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000022_fd15d4b3.szcp new file mode 100644 index 00000000..b6eb3c60 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000022_fd15d4b3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000023_d672fe60.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000023_d672fe60.szcp new file mode 100644 index 00000000..40d8ab8c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000023_d672fe60.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000024_7710b00b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000024_7710b00b.szcp new file mode 100644 index 00000000..1887f2d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000024_7710b00b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000025_e3d9f34f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000025_e3d9f34f.szcp new file mode 100644 index 00000000..a01c58f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000025_e3d9f34f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000026_065a9055.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000026_065a9055.szcp new file mode 100644 index 00000000..a013c80d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000026_065a9055.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000027_21aa73ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000027_21aa73ce.szcp new file mode 100644 index 00000000..274d6b53 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000027_21aa73ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000028_9b547416.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000028_9b547416.szcp new file mode 100644 index 00000000..79890497 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000028_9b547416.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000029_c0550b21.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000029_c0550b21.szcp new file mode 100644 index 00000000..4a192991 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000029_c0550b21.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000030_cfcda36c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000030_cfcda36c.szcp new file mode 100644 index 00000000..4c9d1e15 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000030_cfcda36c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000031_284fd7e4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000031_284fd7e4.szcp new file mode 100644 index 00000000..b2509e73 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000031_284fd7e4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000032_47e6788a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000032_47e6788a.szcp new file mode 100644 index 00000000..3e5ddaac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000032_47e6788a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000033_9c8b3662.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000033_9c8b3662.szcp new file mode 100644 index 00000000..9bad6880 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000033_9c8b3662.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000034_2d9a2ff7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000034_2d9a2ff7.szcp new file mode 100644 index 00000000..81e69847 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000034_2d9a2ff7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000035_a9bf2d32.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000035_a9bf2d32.szcp new file mode 100644 index 00000000..cee25e10 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000035_a9bf2d32.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000036_edc467d3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000036_edc467d3.szcp new file mode 100644 index 00000000..fbccd9db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000036_edc467d3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000037_0f1753fc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000037_0f1753fc.szcp new file mode 100644 index 00000000..46e735d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000037_0f1753fc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000038_a10d133b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000038_a10d133b.szcp new file mode 100644 index 00000000..92d72c5a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000038_a10d133b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000039_e29ca630.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000039_e29ca630.szcp new file mode 100644 index 00000000..38d8bd01 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000039_e29ca630.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000040_21144e5e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000040_21144e5e.szcp new file mode 100644 index 00000000..0837d2da Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000040_21144e5e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000041_c02a9543.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000041_c02a9543.szcp new file mode 100644 index 00000000..85e1381e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000041_c02a9543.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000042_a3abac97.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000042_a3abac97.szcp new file mode 100644 index 00000000..f660b2f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000042_a3abac97.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000043_45e79850.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000043_45e79850.szcp new file mode 100644 index 00000000..1d1c3e6f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000043_45e79850.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000044_7fb7d2b8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000044_7fb7d2b8.szcp new file mode 100644 index 00000000..83eb85c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000044_7fb7d2b8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000045_f8bfb42a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000045_f8bfb42a.szcp new file mode 100644 index 00000000..5051d561 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000045_f8bfb42a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000046_92e38458.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000046_92e38458.szcp new file mode 100644 index 00000000..b2b7bb10 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000046_92e38458.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000047_678dc10a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000047_678dc10a.szcp new file mode 100644 index 00000000..f53f4ff7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000047_678dc10a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000048_db74ebbb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000048_db74ebbb.szcp new file mode 100644 index 00000000..ee9b4e04 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000048_db74ebbb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000049_0692d147.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000049_0692d147.szcp new file mode 100644 index 00000000..bbfabde1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000049_0692d147.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000050_b952079c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000050_b952079c.szcp new file mode 100644 index 00000000..910e6b3c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000050_b952079c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000051_6f741ca9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000051_6f741ca9.szcp new file mode 100644 index 00000000..3449a756 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000051_6f741ca9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000052_aa461aff.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000052_aa461aff.szcp new file mode 100644 index 00000000..3b54f1eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000052_aa461aff.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000053_ec855c09.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000053_ec855c09.szcp new file mode 100644 index 00000000..ee4fafb7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000053_ec855c09.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000054_15a29099.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000054_15a29099.szcp new file mode 100644 index 00000000..812b2060 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000054_15a29099.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000055_aebee654.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000055_aebee654.szcp new file mode 100644 index 00000000..c2d4dcaa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000055_aebee654.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000056_134c672c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000056_134c672c.szcp new file mode 100644 index 00000000..159bfdf6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000056_134c672c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000057_f08583d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000057_f08583d1.szcp new file mode 100644 index 00000000..35478367 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000057_f08583d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000058_554b1dcb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000058_554b1dcb.szcp new file mode 100644 index 00000000..a55ea923 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000058_554b1dcb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000059_28b8ead6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000059_28b8ead6.szcp new file mode 100644 index 00000000..6455466e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000059_28b8ead6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000060_e62c7290.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000060_e62c7290.szcp new file mode 100644 index 00000000..fbfe3057 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000060_e62c7290.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000061_138d098c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000061_138d098c.szcp new file mode 100644 index 00000000..240ceee7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000061_138d098c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000062_96290225.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000062_96290225.szcp new file mode 100644 index 00000000..e2270f5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000062_96290225.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000063_1dc71699.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000063_1dc71699.szcp new file mode 100644 index 00000000..8228a920 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000063_1dc71699.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000064_8de2dfaf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000064_8de2dfaf.szcp new file mode 100644 index 00000000..9281ed4b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000064_8de2dfaf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000065_90d09f00.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000065_90d09f00.szcp new file mode 100644 index 00000000..d7a78a1e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000065_90d09f00.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000066_8306fc17.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000066_8306fc17.szcp new file mode 100644 index 00000000..9f733b65 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000066_8306fc17.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000067_4456e50c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000067_4456e50c.szcp new file mode 100644 index 00000000..4d41628c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000067_4456e50c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000068_371f9435.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000068_371f9435.szcp new file mode 100644 index 00000000..442c2d08 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000068_371f9435.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000069_d3989091.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000069_d3989091.szcp new file mode 100644 index 00000000..a0416b22 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000069_d3989091.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000070_3f334c22.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000070_3f334c22.szcp new file mode 100644 index 00000000..37d41dc8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000070_3f334c22.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000071_fad1adb7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000071_fad1adb7.szcp new file mode 100644 index 00000000..a44055d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000071_fad1adb7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000072_7544d231.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000072_7544d231.szcp new file mode 100644 index 00000000..7c9b22fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000072_7544d231.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000073_ec8932e3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000073_ec8932e3.szcp new file mode 100644 index 00000000..9ea4dced Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000073_ec8932e3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000074_f8be305a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000074_f8be305a.szcp new file mode 100644 index 00000000..f56ee4fc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000074_f8be305a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000075_6bc436e4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000075_6bc436e4.szcp new file mode 100644 index 00000000..764d917d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000075_6bc436e4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000076_49c5d415.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000076_49c5d415.szcp new file mode 100644 index 00000000..2b45d46c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000076_49c5d415.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000077_67d007ec.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000077_67d007ec.szcp new file mode 100644 index 00000000..991c4c9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000077_67d007ec.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000078_498cd504.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000078_498cd504.szcp new file mode 100644 index 00000000..8048dc55 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000078_498cd504.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000079_bfe7adf8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000079_bfe7adf8.szcp new file mode 100644 index 00000000..0fa745d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000079_bfe7adf8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000080_5b61ec2b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000080_5b61ec2b.szcp new file mode 100644 index 00000000..e54ba24b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000080_5b61ec2b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000081_4dc0999b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000081_4dc0999b.szcp new file mode 100644 index 00000000..81816ee0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000081_4dc0999b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000082_224e20c6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000082_224e20c6.szcp new file mode 100644 index 00000000..7b067395 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000082_224e20c6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000083_adf750b9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000083_adf750b9.szcp new file mode 100644 index 00000000..29d3fd7f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000083_adf750b9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000084_436aeb4d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000084_436aeb4d.szcp new file mode 100644 index 00000000..6c46c627 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000084_436aeb4d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000085_0d3bb2fd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000085_0d3bb2fd.szcp new file mode 100644 index 00000000..b15221af Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_011/checkpoints/checkpoint_00000000000000000085_0d3bb2fd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000001_22567e1a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000001_22567e1a.szar new file mode 100644 index 00000000..313859db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000001_22567e1a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000002_49a08edc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000002_49a08edc.szar new file mode 100644 index 00000000..55db3a50 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000002_49a08edc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000003_761604ff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000003_761604ff.szar new file mode 100644 index 00000000..39cbf90d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000003_761604ff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000004_caf2ac53.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000004_caf2ac53.szar new file mode 100644 index 00000000..f13ec6c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000004_caf2ac53.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000005_aca03e0d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000005_aca03e0d.szar new file mode 100644 index 00000000..62755089 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000005_aca03e0d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000006_34aef0c0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000006_34aef0c0.szar new file mode 100644 index 00000000..5bf84665 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000006_34aef0c0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000007_a0713421.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000007_a0713421.szar new file mode 100644 index 00000000..5be8a1a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000007_a0713421.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000008_112fcec1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000008_112fcec1.szar new file mode 100644 index 00000000..b2abef5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000008_112fcec1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000009_264524a5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000009_264524a5.szar new file mode 100644 index 00000000..0e336c27 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000009_264524a5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000010_4215cb37.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000010_4215cb37.szar new file mode 100644 index 00000000..b7ed7ef7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000010_4215cb37.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000011_879d54a9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000011_879d54a9.szar new file mode 100644 index 00000000..1e827b42 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000011_879d54a9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000012_3b898b55.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000012_3b898b55.szar new file mode 100644 index 00000000..694fceac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000012_3b898b55.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000013_9489d4b8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000013_9489d4b8.szar new file mode 100644 index 00000000..288b0ee7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000013_9489d4b8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000014_ffe8facc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000014_ffe8facc.szar new file mode 100644 index 00000000..4e4b8dd6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000014_ffe8facc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000015_5415b4c5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000015_5415b4c5.szar new file mode 100644 index 00000000..a2fc655b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000015_5415b4c5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000016_b2f79a3d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000016_b2f79a3d.szar new file mode 100644 index 00000000..df51ce5a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000016_b2f79a3d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000017_652fcfce.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000017_652fcfce.szar new file mode 100644 index 00000000..990a3232 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000017_652fcfce.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000018_93062d52.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000018_93062d52.szar new file mode 100644 index 00000000..53a63443 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000018_93062d52.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000019_d49ea259.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000019_d49ea259.szar new file mode 100644 index 00000000..8877c940 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000019_d49ea259.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000020_f249c913.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000020_f249c913.szar new file mode 100644 index 00000000..1de3c98b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000020_f249c913.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000021_ef391c56.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000021_ef391c56.szar new file mode 100644 index 00000000..bd0362c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000021_ef391c56.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000022_90f6a42a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000022_90f6a42a.szar new file mode 100644 index 00000000..adf47cec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000022_90f6a42a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000023_838ba7d2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000023_838ba7d2.szar new file mode 100644 index 00000000..64ad9b92 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000023_838ba7d2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000024_5c4da304.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000024_5c4da304.szar new file mode 100644 index 00000000..b78e3e76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000024_5c4da304.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000025_42cf3809.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000025_42cf3809.szar new file mode 100644 index 00000000..546d2123 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000025_42cf3809.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000026_883b10a6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000026_883b10a6.szar new file mode 100644 index 00000000..de04abad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000026_883b10a6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000027_5db7ba81.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000027_5db7ba81.szar new file mode 100644 index 00000000..7ece5cbf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000027_5db7ba81.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000028_ba4ddaeb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000028_ba4ddaeb.szar new file mode 100644 index 00000000..4373a7c9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000028_ba4ddaeb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000029_c7a0b232.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000029_c7a0b232.szar new file mode 100644 index 00000000..9919bc51 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000029_c7a0b232.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000030_033e5efb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000030_033e5efb.szar new file mode 100644 index 00000000..b551ad51 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000030_033e5efb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000031_98b8c3c2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000031_98b8c3c2.szar new file mode 100644 index 00000000..65ffa631 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000031_98b8c3c2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000032_cbbca693.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000032_cbbca693.szar new file mode 100644 index 00000000..d1b7a273 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000032_cbbca693.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000033_fff2a0f7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000033_fff2a0f7.szar new file mode 100644 index 00000000..2b918871 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000033_fff2a0f7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000034_cc00e49c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000034_cc00e49c.szar new file mode 100644 index 00000000..782418fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000034_cc00e49c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000035_9d730ee1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000035_9d730ee1.szar new file mode 100644 index 00000000..0c727496 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000035_9d730ee1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000036_0530aa10.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000036_0530aa10.szar new file mode 100644 index 00000000..2640d8d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000036_0530aa10.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000037_e76f4a3a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000037_e76f4a3a.szar new file mode 100644 index 00000000..2ff78577 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000037_e76f4a3a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000038_42bb3ea3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000038_42bb3ea3.szar new file mode 100644 index 00000000..9aa63ee3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000038_42bb3ea3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000039_904ee3e9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000039_904ee3e9.szar new file mode 100644 index 00000000..8061c15d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000039_904ee3e9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000040_c51daded.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000040_c51daded.szar new file mode 100644 index 00000000..952cb1e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000040_c51daded.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000041_73629afa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000041_73629afa.szar new file mode 100644 index 00000000..f7b8dc78 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000041_73629afa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000042_63a62b79.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000042_63a62b79.szar new file mode 100644 index 00000000..29010779 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000042_63a62b79.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000043_0db10bdd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000043_0db10bdd.szar new file mode 100644 index 00000000..87b88bf5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000043_0db10bdd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000044_775817cd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000044_775817cd.szar new file mode 100644 index 00000000..c67a540a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000044_775817cd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000045_60897920.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000045_60897920.szar new file mode 100644 index 00000000..468301ba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000045_60897920.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000046_41b530e7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000046_41b530e7.szar new file mode 100644 index 00000000..4b5a5049 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000046_41b530e7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000047_d494ad72.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000047_d494ad72.szar new file mode 100644 index 00000000..9227dd6d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000047_d494ad72.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000048_5f3fcaba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000048_5f3fcaba.szar new file mode 100644 index 00000000..60f9cd22 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000048_5f3fcaba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000049_e5c2eb56.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000049_e5c2eb56.szar new file mode 100644 index 00000000..30b3ac4e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000049_e5c2eb56.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000050_08008339.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000050_08008339.szar new file mode 100644 index 00000000..48ed4932 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000050_08008339.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000051_f2c4b610.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000051_f2c4b610.szar new file mode 100644 index 00000000..c05ca481 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000051_f2c4b610.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000052_74d5b622.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000052_74d5b622.szar new file mode 100644 index 00000000..8c1e8407 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000052_74d5b622.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000053_0118daa8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000053_0118daa8.szar new file mode 100644 index 00000000..794ccb1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000053_0118daa8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000054_0ccca2cb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000054_0ccca2cb.szar new file mode 100644 index 00000000..e6ae3dff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000054_0ccca2cb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000055_d18168c4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000055_d18168c4.szar new file mode 100644 index 00000000..7a1671df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000055_d18168c4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000056_1e5263ed.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000056_1e5263ed.szar new file mode 100644 index 00000000..f4d55850 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000056_1e5263ed.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000057_c687925f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000057_c687925f.szar new file mode 100644 index 00000000..068eef74 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000057_c687925f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000058_88dd1cc4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000058_88dd1cc4.szar new file mode 100644 index 00000000..53c49209 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000058_88dd1cc4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000059_d499c184.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000059_d499c184.szar new file mode 100644 index 00000000..87f2c07b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000059_d499c184.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000060_a25f6c5f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000060_a25f6c5f.szar new file mode 100644 index 00000000..a67295bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000060_a25f6c5f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000061_7485556b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000061_7485556b.szar new file mode 100644 index 00000000..c428f04b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000061_7485556b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000062_32249d14.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000062_32249d14.szar new file mode 100644 index 00000000..b1e3335f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000062_32249d14.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000063_d53304f4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000063_d53304f4.szar new file mode 100644 index 00000000..d7c59b5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000063_d53304f4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000064_0c6fbc9f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000064_0c6fbc9f.szar new file mode 100644 index 00000000..441c2942 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000064_0c6fbc9f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000065_ce22d509.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000065_ce22d509.szar new file mode 100644 index 00000000..fd1191a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/archive/delta_00000000000000000065_ce22d509.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000001_3cb32159.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000001_3cb32159.szcp new file mode 100644 index 00000000..aa5fd0d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000001_3cb32159.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000002_048b9bca.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000002_048b9bca.szcp new file mode 100644 index 00000000..ff35fc42 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000002_048b9bca.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000003_9b7daa78.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000003_9b7daa78.szcp new file mode 100644 index 00000000..3492c332 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000003_9b7daa78.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000004_4b15860d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000004_4b15860d.szcp new file mode 100644 index 00000000..8d02b047 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000004_4b15860d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000005_07b65a39.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000005_07b65a39.szcp new file mode 100644 index 00000000..057e8e37 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000005_07b65a39.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000006_3179610d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000006_3179610d.szcp new file mode 100644 index 00000000..8eb0ae62 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000006_3179610d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000007_521caf38.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000007_521caf38.szcp new file mode 100644 index 00000000..084af96c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000007_521caf38.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000008_680aa620.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000008_680aa620.szcp new file mode 100644 index 00000000..6c968b93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000008_680aa620.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000009_2fa5a620.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000009_2fa5a620.szcp new file mode 100644 index 00000000..479f54d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000009_2fa5a620.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000010_0e32d490.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000010_0e32d490.szcp new file mode 100644 index 00000000..428ce888 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000010_0e32d490.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000011_d707779b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000011_d707779b.szcp new file mode 100644 index 00000000..626a23c9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000011_d707779b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000012_5b055d3a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000012_5b055d3a.szcp new file mode 100644 index 00000000..a2052534 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000012_5b055d3a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000013_734e031c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000013_734e031c.szcp new file mode 100644 index 00000000..fec48861 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000013_734e031c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000014_baf4d871.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000014_baf4d871.szcp new file mode 100644 index 00000000..89139206 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000014_baf4d871.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000015_8b1bbedf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000015_8b1bbedf.szcp new file mode 100644 index 00000000..66c6a8ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000015_8b1bbedf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000016_b86d8f68.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000016_b86d8f68.szcp new file mode 100644 index 00000000..be8257f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000016_b86d8f68.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000017_e39f308e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000017_e39f308e.szcp new file mode 100644 index 00000000..a5b815a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000017_e39f308e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000018_720735b2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000018_720735b2.szcp new file mode 100644 index 00000000..932a565a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000018_720735b2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000019_8279bae1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000019_8279bae1.szcp new file mode 100644 index 00000000..8cb2c013 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000019_8279bae1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000020_f1828bef.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000020_f1828bef.szcp new file mode 100644 index 00000000..554a3b5b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000020_f1828bef.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000021_b18dd15f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000021_b18dd15f.szcp new file mode 100644 index 00000000..1d59b61e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000021_b18dd15f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000022_b312eff8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000022_b312eff8.szcp new file mode 100644 index 00000000..08171445 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000022_b312eff8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000023_30892cf7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000023_30892cf7.szcp new file mode 100644 index 00000000..32a102a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000023_30892cf7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000024_468868a9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000024_468868a9.szcp new file mode 100644 index 00000000..d7f9ecce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000024_468868a9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000025_faba04eb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000025_faba04eb.szcp new file mode 100644 index 00000000..4b62dc4b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000025_faba04eb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000026_77ab268c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000026_77ab268c.szcp new file mode 100644 index 00000000..66428321 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000026_77ab268c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000027_b760d661.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000027_b760d661.szcp new file mode 100644 index 00000000..795ff1ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000027_b760d661.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000028_da7bfa5d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000028_da7bfa5d.szcp new file mode 100644 index 00000000..b2dd1cff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000028_da7bfa5d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000029_5232f985.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000029_5232f985.szcp new file mode 100644 index 00000000..0ece69b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000029_5232f985.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000030_456e18fd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000030_456e18fd.szcp new file mode 100644 index 00000000..42ff47f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000030_456e18fd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000031_39a42f35.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000031_39a42f35.szcp new file mode 100644 index 00000000..ed15a5db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000031_39a42f35.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000032_e89cfbb6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000032_e89cfbb6.szcp new file mode 100644 index 00000000..c504f425 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000032_e89cfbb6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000033_e79184fa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000033_e79184fa.szcp new file mode 100644 index 00000000..5d1d281b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000033_e79184fa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000034_f04ba40d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000034_f04ba40d.szcp new file mode 100644 index 00000000..7f6ce7cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000034_f04ba40d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000035_8e3d0f67.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000035_8e3d0f67.szcp new file mode 100644 index 00000000..b7670770 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000035_8e3d0f67.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000036_c4fe87d2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000036_c4fe87d2.szcp new file mode 100644 index 00000000..629ca3c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000036_c4fe87d2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000037_cfa40655.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000037_cfa40655.szcp new file mode 100644 index 00000000..a3d2320e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000037_cfa40655.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000038_4d004898.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000038_4d004898.szcp new file mode 100644 index 00000000..079ffbfe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000038_4d004898.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000039_428d5edc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000039_428d5edc.szcp new file mode 100644 index 00000000..6e7634c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000039_428d5edc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000040_3b30ff01.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000040_3b30ff01.szcp new file mode 100644 index 00000000..06e9d2a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000040_3b30ff01.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000041_278df429.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000041_278df429.szcp new file mode 100644 index 00000000..dce1b909 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000041_278df429.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000042_4e98bc2b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000042_4e98bc2b.szcp new file mode 100644 index 00000000..087d9f19 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000042_4e98bc2b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000043_7b1bc3a6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000043_7b1bc3a6.szcp new file mode 100644 index 00000000..62711422 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000043_7b1bc3a6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000044_6e0ded65.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000044_6e0ded65.szcp new file mode 100644 index 00000000..93d2d61a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000044_6e0ded65.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000045_670e59af.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000045_670e59af.szcp new file mode 100644 index 00000000..f509b56b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000045_670e59af.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000046_f76e4c00.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000046_f76e4c00.szcp new file mode 100644 index 00000000..2a4242df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000046_f76e4c00.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000047_ca514cbf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000047_ca514cbf.szcp new file mode 100644 index 00000000..2613572e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000047_ca514cbf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000048_e3b6cf40.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000048_e3b6cf40.szcp new file mode 100644 index 00000000..0906f77d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000048_e3b6cf40.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000049_9b05b7d5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000049_9b05b7d5.szcp new file mode 100644 index 00000000..123c812c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000049_9b05b7d5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000050_1fdbc7ff.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000050_1fdbc7ff.szcp new file mode 100644 index 00000000..85d0584e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000050_1fdbc7ff.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000051_fd690537.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000051_fd690537.szcp new file mode 100644 index 00000000..8a69e2c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000051_fd690537.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000052_17946756.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000052_17946756.szcp new file mode 100644 index 00000000..38b37f52 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000052_17946756.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000053_7484e7b1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000053_7484e7b1.szcp new file mode 100644 index 00000000..ea6da94f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000053_7484e7b1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000054_7883c62b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000054_7883c62b.szcp new file mode 100644 index 00000000..5fcb7b25 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000054_7883c62b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000055_5eefe37f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000055_5eefe37f.szcp new file mode 100644 index 00000000..c4439c38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000055_5eefe37f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000056_f9e3c1aa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000056_f9e3c1aa.szcp new file mode 100644 index 00000000..736921f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000056_f9e3c1aa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000057_069a49ad.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000057_069a49ad.szcp new file mode 100644 index 00000000..641465c1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000057_069a49ad.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000058_4990a436.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000058_4990a436.szcp new file mode 100644 index 00000000..e952898b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000058_4990a436.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000059_492c1328.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000059_492c1328.szcp new file mode 100644 index 00000000..0d4ddfe6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000059_492c1328.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000060_c54557c1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000060_c54557c1.szcp new file mode 100644 index 00000000..ff0bf224 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000060_c54557c1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000061_95be0a6a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000061_95be0a6a.szcp new file mode 100644 index 00000000..e144ddcd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000061_95be0a6a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000062_f15f090c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000062_f15f090c.szcp new file mode 100644 index 00000000..9e4bd49e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000062_f15f090c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000063_0fb08048.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000063_0fb08048.szcp new file mode 100644 index 00000000..1e906831 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000063_0fb08048.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000064_577df6f1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000064_577df6f1.szcp new file mode 100644 index 00000000..8145ee05 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000064_577df6f1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000065_4d3dba4e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000065_4d3dba4e.szcp new file mode 100644 index 00000000..f8a2a149 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_012/checkpoints/checkpoint_00000000000000000065_4d3dba4e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000001_0e2b757c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000001_0e2b757c.szar new file mode 100644 index 00000000..cd9e16df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000001_0e2b757c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000002_21561a76.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000002_21561a76.szar new file mode 100644 index 00000000..062d638e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000002_21561a76.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000003_1735545a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000003_1735545a.szar new file mode 100644 index 00000000..243e0743 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000003_1735545a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000004_b085e7e0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000004_b085e7e0.szar new file mode 100644 index 00000000..0916534e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000004_b085e7e0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000005_33c20a23.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000005_33c20a23.szar new file mode 100644 index 00000000..515acbf8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000005_33c20a23.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000006_a8300067.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000006_a8300067.szar new file mode 100644 index 00000000..d9d84c29 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000006_a8300067.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000007_d4fa858d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000007_d4fa858d.szar new file mode 100644 index 00000000..8df3e7bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000007_d4fa858d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000008_f2f8f0f7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000008_f2f8f0f7.szar new file mode 100644 index 00000000..962720e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000008_f2f8f0f7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000009_67881f89.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000009_67881f89.szar new file mode 100644 index 00000000..cbef5f5f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000009_67881f89.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000010_fc6508e2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000010_fc6508e2.szar new file mode 100644 index 00000000..bf946f17 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000010_fc6508e2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000011_5d3f6976.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000011_5d3f6976.szar new file mode 100644 index 00000000..f49cbf56 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000011_5d3f6976.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000012_e980d1de.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000012_e980d1de.szar new file mode 100644 index 00000000..135c7e57 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000012_e980d1de.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000013_a1c3e45b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000013_a1c3e45b.szar new file mode 100644 index 00000000..bb00b7ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000013_a1c3e45b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000014_929e18d8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000014_929e18d8.szar new file mode 100644 index 00000000..21b16115 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000014_929e18d8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000015_1a1bf7ba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000015_1a1bf7ba.szar new file mode 100644 index 00000000..56fe2f76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000015_1a1bf7ba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000016_ec0608bd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000016_ec0608bd.szar new file mode 100644 index 00000000..9f34335f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000016_ec0608bd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000017_e6b2ea6b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000017_e6b2ea6b.szar new file mode 100644 index 00000000..46842801 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000017_e6b2ea6b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000018_83cf4f82.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000018_83cf4f82.szar new file mode 100644 index 00000000..d0fd893a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000018_83cf4f82.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000019_93f4466e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000019_93f4466e.szar new file mode 100644 index 00000000..63187a82 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000019_93f4466e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000020_0c13357c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000020_0c13357c.szar new file mode 100644 index 00000000..5de4d253 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000020_0c13357c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000021_a135d39d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000021_a135d39d.szar new file mode 100644 index 00000000..213612f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000021_a135d39d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000022_080311df.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000022_080311df.szar new file mode 100644 index 00000000..4524885d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000022_080311df.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000023_79ed8ceb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000023_79ed8ceb.szar new file mode 100644 index 00000000..dcd571e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000023_79ed8ceb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000024_11a689aa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000024_11a689aa.szar new file mode 100644 index 00000000..c5a741e4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000024_11a689aa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000025_6c5bdfc4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000025_6c5bdfc4.szar new file mode 100644 index 00000000..004a42c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000025_6c5bdfc4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000026_6bfea575.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000026_6bfea575.szar new file mode 100644 index 00000000..a752518a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000026_6bfea575.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000027_e5849cc0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000027_e5849cc0.szar new file mode 100644 index 00000000..79d50310 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000027_e5849cc0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000028_0cd4fce8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000028_0cd4fce8.szar new file mode 100644 index 00000000..5b849627 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000028_0cd4fce8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000029_558641ea.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000029_558641ea.szar new file mode 100644 index 00000000..7b302740 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000029_558641ea.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000030_3bd9790a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000030_3bd9790a.szar new file mode 100644 index 00000000..6c7b2255 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000030_3bd9790a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000031_1c55f8c8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000031_1c55f8c8.szar new file mode 100644 index 00000000..1a80fb92 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000031_1c55f8c8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000032_c5ac6a14.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000032_c5ac6a14.szar new file mode 100644 index 00000000..f0743534 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000032_c5ac6a14.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000033_3997413b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000033_3997413b.szar new file mode 100644 index 00000000..bff2f1a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000033_3997413b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000034_a4430114.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000034_a4430114.szar new file mode 100644 index 00000000..3b5b3c83 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000034_a4430114.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000035_2eb5a349.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000035_2eb5a349.szar new file mode 100644 index 00000000..83fe062b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000035_2eb5a349.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000036_81b99b5b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000036_81b99b5b.szar new file mode 100644 index 00000000..b355777c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000036_81b99b5b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000037_0fe1141c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000037_0fe1141c.szar new file mode 100644 index 00000000..072bac3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000037_0fe1141c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000038_eac44382.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000038_eac44382.szar new file mode 100644 index 00000000..fa8f8f9d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000038_eac44382.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000039_7153104c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000039_7153104c.szar new file mode 100644 index 00000000..6d01c341 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000039_7153104c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000040_19dcff7a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000040_19dcff7a.szar new file mode 100644 index 00000000..6ecb09fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000040_19dcff7a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000041_b1ec23ff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000041_b1ec23ff.szar new file mode 100644 index 00000000..f86a1e26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000041_b1ec23ff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000042_a0e25411.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000042_a0e25411.szar new file mode 100644 index 00000000..b412d22c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000042_a0e25411.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000043_2ae8f09a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000043_2ae8f09a.szar new file mode 100644 index 00000000..ebb8ab90 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000043_2ae8f09a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000044_24874169.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000044_24874169.szar new file mode 100644 index 00000000..a39f3920 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000044_24874169.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000045_ae997cc2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000045_ae997cc2.szar new file mode 100644 index 00000000..62418125 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000045_ae997cc2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000046_c59b8668.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000046_c59b8668.szar new file mode 100644 index 00000000..fd7378fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000046_c59b8668.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000047_03c12ee9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000047_03c12ee9.szar new file mode 100644 index 00000000..8d053936 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000047_03c12ee9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000048_c726e315.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000048_c726e315.szar new file mode 100644 index 00000000..9307d3da Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000048_c726e315.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000049_38a4a29a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000049_38a4a29a.szar new file mode 100644 index 00000000..35968b22 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000049_38a4a29a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000050_0bbc26bc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000050_0bbc26bc.szar new file mode 100644 index 00000000..8f5e1d58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000050_0bbc26bc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000051_1e92ad35.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000051_1e92ad35.szar new file mode 100644 index 00000000..52923a1e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000051_1e92ad35.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000052_de95ed56.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000052_de95ed56.szar new file mode 100644 index 00000000..d9960c9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000052_de95ed56.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000053_b0990e21.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000053_b0990e21.szar new file mode 100644 index 00000000..7dfeae3c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000053_b0990e21.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000054_af97f9ab.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000054_af97f9ab.szar new file mode 100644 index 00000000..d6aa84df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000054_af97f9ab.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000055_0d43571f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000055_0d43571f.szar new file mode 100644 index 00000000..6da350b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000055_0d43571f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000056_a1ba6c6e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000056_a1ba6c6e.szar new file mode 100644 index 00000000..1266d6b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000056_a1ba6c6e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000057_711c9868.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000057_711c9868.szar new file mode 100644 index 00000000..5dea23e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000057_711c9868.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000058_af14e446.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000058_af14e446.szar new file mode 100644 index 00000000..c0a21339 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000058_af14e446.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000059_9b3b14bd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000059_9b3b14bd.szar new file mode 100644 index 00000000..cb97df8d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000059_9b3b14bd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000060_59dc4c52.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000060_59dc4c52.szar new file mode 100644 index 00000000..66d95dc1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000060_59dc4c52.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000061_8c13f602.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000061_8c13f602.szar new file mode 100644 index 00000000..428379ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000061_8c13f602.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000062_52dc7284.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000062_52dc7284.szar new file mode 100644 index 00000000..f5c4b938 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000062_52dc7284.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000063_86e331f3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000063_86e331f3.szar new file mode 100644 index 00000000..6893e39e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000063_86e331f3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000064_3abba569.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000064_3abba569.szar new file mode 100644 index 00000000..bbcff946 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000064_3abba569.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000065_b6db7852.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000065_b6db7852.szar new file mode 100644 index 00000000..0cd51102 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000065_b6db7852.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000066_44a828c9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000066_44a828c9.szar new file mode 100644 index 00000000..8b14a3e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000066_44a828c9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000067_44b2524e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000067_44b2524e.szar new file mode 100644 index 00000000..638be252 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000067_44b2524e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000068_524d944f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000068_524d944f.szar new file mode 100644 index 00000000..b5a8f436 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000068_524d944f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000069_450b84f3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000069_450b84f3.szar new file mode 100644 index 00000000..2dba1172 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000069_450b84f3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000070_69b7e7c2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000070_69b7e7c2.szar new file mode 100644 index 00000000..7e760587 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000070_69b7e7c2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000071_ba6eba3d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000071_ba6eba3d.szar new file mode 100644 index 00000000..e65ef67d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000071_ba6eba3d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000072_045be27d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000072_045be27d.szar new file mode 100644 index 00000000..d7a3ff3e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000072_045be27d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000073_1bd4f320.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000073_1bd4f320.szar new file mode 100644 index 00000000..4a0d4a3f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000073_1bd4f320.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000074_068fa90c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000074_068fa90c.szar new file mode 100644 index 00000000..84174bc1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000074_068fa90c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000075_155ed0b9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000075_155ed0b9.szar new file mode 100644 index 00000000..a843c505 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000075_155ed0b9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000076_98cf2b8d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000076_98cf2b8d.szar new file mode 100644 index 00000000..347e8aa3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000076_98cf2b8d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000077_5c0e5860.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000077_5c0e5860.szar new file mode 100644 index 00000000..1e4848fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000077_5c0e5860.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000078_46a235f4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000078_46a235f4.szar new file mode 100644 index 00000000..dcf9a2ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000078_46a235f4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000079_071a5380.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000079_071a5380.szar new file mode 100644 index 00000000..3d967227 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000079_071a5380.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000080_646d46a0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000080_646d46a0.szar new file mode 100644 index 00000000..420306d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000080_646d46a0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000081_911424cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000081_911424cc.szar new file mode 100644 index 00000000..32199040 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000081_911424cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000082_c6fcb5b8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000082_c6fcb5b8.szar new file mode 100644 index 00000000..87c8a455 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000082_c6fcb5b8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000083_555b8ff2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000083_555b8ff2.szar new file mode 100644 index 00000000..1978f52c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000083_555b8ff2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000084_48c7b746.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000084_48c7b746.szar new file mode 100644 index 00000000..0f20320f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000084_48c7b746.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000085_9d2569ab.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000085_9d2569ab.szar new file mode 100644 index 00000000..3bfb83ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000085_9d2569ab.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000086_4baf9bee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000086_4baf9bee.szar new file mode 100644 index 00000000..4ec52f61 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000086_4baf9bee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000087_09fcedba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000087_09fcedba.szar new file mode 100644 index 00000000..89ceb327 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000087_09fcedba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000088_11d56872.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000088_11d56872.szar new file mode 100644 index 00000000..a7e14bab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/archive/delta_00000000000000000088_11d56872.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000001_dd5ca7f8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000001_dd5ca7f8.szcp new file mode 100644 index 00000000..7a00f2e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000001_dd5ca7f8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000002_c6f63e2c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000002_c6f63e2c.szcp new file mode 100644 index 00000000..1dc85beb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000002_c6f63e2c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000003_e2108fe5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000003_e2108fe5.szcp new file mode 100644 index 00000000..91cedeb9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000003_e2108fe5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000004_75fffb86.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000004_75fffb86.szcp new file mode 100644 index 00000000..71a16ade Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000004_75fffb86.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000005_413edac7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000005_413edac7.szcp new file mode 100644 index 00000000..93d0040c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000005_413edac7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000006_d2113753.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000006_d2113753.szcp new file mode 100644 index 00000000..8da714f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000006_d2113753.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000007_23e54c96.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000007_23e54c96.szcp new file mode 100644 index 00000000..de45471f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000007_23e54c96.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000008_79116c6b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000008_79116c6b.szcp new file mode 100644 index 00000000..200338a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000008_79116c6b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000009_d426e908.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000009_d426e908.szcp new file mode 100644 index 00000000..838c8461 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000009_d426e908.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000010_9bf380d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000010_9bf380d7.szcp new file mode 100644 index 00000000..7a51cc39 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000010_9bf380d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000011_6a95204a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000011_6a95204a.szcp new file mode 100644 index 00000000..6643d437 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000011_6a95204a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000012_90d6e875.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000012_90d6e875.szcp new file mode 100644 index 00000000..0cdb1af4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000012_90d6e875.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000013_12e29a95.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000013_12e29a95.szcp new file mode 100644 index 00000000..50231f31 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000013_12e29a95.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000014_c0e3d112.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000014_c0e3d112.szcp new file mode 100644 index 00000000..83ea4856 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000014_c0e3d112.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000015_14f9fc19.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000015_14f9fc19.szcp new file mode 100644 index 00000000..30f47d74 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000015_14f9fc19.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000016_8ee3da1b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000016_8ee3da1b.szcp new file mode 100644 index 00000000..869c7295 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000016_8ee3da1b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000017_3de5ff3f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000017_3de5ff3f.szcp new file mode 100644 index 00000000..2764e65c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000017_3de5ff3f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000018_8ff63986.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000018_8ff63986.szcp new file mode 100644 index 00000000..f5a298f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000018_8ff63986.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000019_4aecb315.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000019_4aecb315.szcp new file mode 100644 index 00000000..87884a8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000019_4aecb315.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000020_3fc42229.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000020_3fc42229.szcp new file mode 100644 index 00000000..c528d60e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000020_3fc42229.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000021_28de9a43.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000021_28de9a43.szcp new file mode 100644 index 00000000..179db854 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000021_28de9a43.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000022_d707a758.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000022_d707a758.szcp new file mode 100644 index 00000000..bb07691c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000022_d707a758.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000023_6a3d8306.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000023_6a3d8306.szcp new file mode 100644 index 00000000..c8623bfc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000023_6a3d8306.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000024_b526f454.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000024_b526f454.szcp new file mode 100644 index 00000000..839c1426 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000024_b526f454.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000025_eb7ca1f7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000025_eb7ca1f7.szcp new file mode 100644 index 00000000..a7597151 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000025_eb7ca1f7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000026_382a56dd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000026_382a56dd.szcp new file mode 100644 index 00000000..7428ddc7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000026_382a56dd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000027_7601eab7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000027_7601eab7.szcp new file mode 100644 index 00000000..d2f5d6f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000027_7601eab7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000028_aabdea44.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000028_aabdea44.szcp new file mode 100644 index 00000000..ec5f2382 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000028_aabdea44.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000029_98e7bafd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000029_98e7bafd.szcp new file mode 100644 index 00000000..bdddcbf1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000029_98e7bafd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000030_4658ab58.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000030_4658ab58.szcp new file mode 100644 index 00000000..ee26d5bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000030_4658ab58.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000031_89373f03.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000031_89373f03.szcp new file mode 100644 index 00000000..038e8925 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000031_89373f03.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000032_05ee4821.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000032_05ee4821.szcp new file mode 100644 index 00000000..d83f9048 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000032_05ee4821.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000033_c7203556.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000033_c7203556.szcp new file mode 100644 index 00000000..0b1df7ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000033_c7203556.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000034_ac8bca25.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000034_ac8bca25.szcp new file mode 100644 index 00000000..1d919012 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000034_ac8bca25.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000035_bd27165d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000035_bd27165d.szcp new file mode 100644 index 00000000..e84a91ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000035_bd27165d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000036_953852b3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000036_953852b3.szcp new file mode 100644 index 00000000..253cca7e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000036_953852b3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000037_ce74ad6a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000037_ce74ad6a.szcp new file mode 100644 index 00000000..34b9f5e9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000037_ce74ad6a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000038_35b822c6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000038_35b822c6.szcp new file mode 100644 index 00000000..76fc64b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000038_35b822c6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000039_8f57a5a2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000039_8f57a5a2.szcp new file mode 100644 index 00000000..ec9271f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000039_8f57a5a2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000040_a7d6b381.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000040_a7d6b381.szcp new file mode 100644 index 00000000..0bb91ae7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000040_a7d6b381.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000041_40ec7ff2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000041_40ec7ff2.szcp new file mode 100644 index 00000000..69117022 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000041_40ec7ff2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000042_66581d9e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000042_66581d9e.szcp new file mode 100644 index 00000000..84c5acdc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000042_66581d9e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000043_af1a9fa1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000043_af1a9fa1.szcp new file mode 100644 index 00000000..35ff50ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000043_af1a9fa1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000044_4c7cd792.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000044_4c7cd792.szcp new file mode 100644 index 00000000..82467aa3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000044_4c7cd792.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000045_a42d691c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000045_a42d691c.szcp new file mode 100644 index 00000000..91610563 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000045_a42d691c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000046_9d3016a2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000046_9d3016a2.szcp new file mode 100644 index 00000000..fabf977d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000046_9d3016a2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000047_e5a75723.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000047_e5a75723.szcp new file mode 100644 index 00000000..6392d8f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000047_e5a75723.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000048_f7e026d3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000048_f7e026d3.szcp new file mode 100644 index 00000000..3adacabd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000048_f7e026d3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000049_9cf2dcd3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000049_9cf2dcd3.szcp new file mode 100644 index 00000000..9e1a73e9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000049_9cf2dcd3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000050_cac6ee8d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000050_cac6ee8d.szcp new file mode 100644 index 00000000..ae0557a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000050_cac6ee8d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000051_19374944.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000051_19374944.szcp new file mode 100644 index 00000000..5753d73b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000051_19374944.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000052_3802255e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000052_3802255e.szcp new file mode 100644 index 00000000..f3248b02 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000052_3802255e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000053_8977c692.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000053_8977c692.szcp new file mode 100644 index 00000000..f8423a91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000053_8977c692.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000054_e650ff17.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000054_e650ff17.szcp new file mode 100644 index 00000000..89669198 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000054_e650ff17.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000055_28f5e84f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000055_28f5e84f.szcp new file mode 100644 index 00000000..c5511e50 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000055_28f5e84f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000056_f871c711.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000056_f871c711.szcp new file mode 100644 index 00000000..c119fc0a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000056_f871c711.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000057_3677f8f6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000057_3677f8f6.szcp new file mode 100644 index 00000000..9cf1fc9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000057_3677f8f6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000058_691f6341.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000058_691f6341.szcp new file mode 100644 index 00000000..02f8cc2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000058_691f6341.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000059_09226104.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000059_09226104.szcp new file mode 100644 index 00000000..b96831d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000059_09226104.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000060_102e81d6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000060_102e81d6.szcp new file mode 100644 index 00000000..16a08ad4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000060_102e81d6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000061_9bd3b8d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000061_9bd3b8d7.szcp new file mode 100644 index 00000000..13ac1834 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000061_9bd3b8d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000062_f125228c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000062_f125228c.szcp new file mode 100644 index 00000000..0d80cd11 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000062_f125228c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000063_34a16050.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000063_34a16050.szcp new file mode 100644 index 00000000..424ece9d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000063_34a16050.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000064_7c5a4b2c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000064_7c5a4b2c.szcp new file mode 100644 index 00000000..f1e40937 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000064_7c5a4b2c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000065_0aca88f2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000065_0aca88f2.szcp new file mode 100644 index 00000000..83f0a652 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000065_0aca88f2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000066_dde7ed5a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000066_dde7ed5a.szcp new file mode 100644 index 00000000..f99b084a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000066_dde7ed5a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000067_397cbb71.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000067_397cbb71.szcp new file mode 100644 index 00000000..529f7f46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000067_397cbb71.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000068_025c48cd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000068_025c48cd.szcp new file mode 100644 index 00000000..86feb26e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000068_025c48cd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000069_3de9897e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000069_3de9897e.szcp new file mode 100644 index 00000000..b8a8841e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000069_3de9897e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000070_e6df41f8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000070_e6df41f8.szcp new file mode 100644 index 00000000..751272b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000070_e6df41f8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000071_1819665b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000071_1819665b.szcp new file mode 100644 index 00000000..05c7122f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000071_1819665b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000072_d109da47.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000072_d109da47.szcp new file mode 100644 index 00000000..1374b2dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000072_d109da47.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000073_eafc8e35.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000073_eafc8e35.szcp new file mode 100644 index 00000000..60668481 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000073_eafc8e35.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000074_3f39ebc1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000074_3f39ebc1.szcp new file mode 100644 index 00000000..ac5adcf9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000074_3f39ebc1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000075_18174824.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000075_18174824.szcp new file mode 100644 index 00000000..3186d4b6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000075_18174824.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000076_8d17f7d4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000076_8d17f7d4.szcp new file mode 100644 index 00000000..a7437f34 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000076_8d17f7d4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000077_261d2d97.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000077_261d2d97.szcp new file mode 100644 index 00000000..df3a9a1a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000077_261d2d97.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000078_d37683c1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000078_d37683c1.szcp new file mode 100644 index 00000000..41d16579 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000078_d37683c1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000079_60b19de3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000079_60b19de3.szcp new file mode 100644 index 00000000..613583c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000079_60b19de3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000080_4e091058.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000080_4e091058.szcp new file mode 100644 index 00000000..52b40f98 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000080_4e091058.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000081_387b3e40.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000081_387b3e40.szcp new file mode 100644 index 00000000..0a91d1ae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000081_387b3e40.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000082_f292daef.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000082_f292daef.szcp new file mode 100644 index 00000000..ec2847cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000082_f292daef.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000083_24102dee.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000083_24102dee.szcp new file mode 100644 index 00000000..e8beb87a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000083_24102dee.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000084_e9945630.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000084_e9945630.szcp new file mode 100644 index 00000000..4f39b953 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000084_e9945630.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000085_be399a3b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000085_be399a3b.szcp new file mode 100644 index 00000000..d90a9f8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000085_be399a3b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000086_7f421e5d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000086_7f421e5d.szcp new file mode 100644 index 00000000..e4fd255f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000086_7f421e5d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000087_7c634bab.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000087_7c634bab.szcp new file mode 100644 index 00000000..9497d17f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000087_7c634bab.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000088_c267ae13.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000088_c267ae13.szcp new file mode 100644 index 00000000..05e4f3f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_013/checkpoints/checkpoint_00000000000000000088_c267ae13.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000001_306bb674.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000001_306bb674.szar new file mode 100644 index 00000000..ddec6553 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000001_306bb674.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000002_d5454ebd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000002_d5454ebd.szar new file mode 100644 index 00000000..2490dac6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000002_d5454ebd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000003_b3f37991.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000003_b3f37991.szar new file mode 100644 index 00000000..de322b91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000003_b3f37991.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000004_08e95231.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000004_08e95231.szar new file mode 100644 index 00000000..54e8d2a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000004_08e95231.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000005_0fe0c5d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000005_0fe0c5d7.szar new file mode 100644 index 00000000..53fdd3d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000005_0fe0c5d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000006_3fbfdf92.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000006_3fbfdf92.szar new file mode 100644 index 00000000..ae576577 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000006_3fbfdf92.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000007_84c9a6f5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000007_84c9a6f5.szar new file mode 100644 index 00000000..e876b2c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000007_84c9a6f5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000008_a40e520a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000008_a40e520a.szar new file mode 100644 index 00000000..0a7a2199 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000008_a40e520a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000009_66c6735c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000009_66c6735c.szar new file mode 100644 index 00000000..5f6fcd88 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000009_66c6735c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000010_bc142f44.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000010_bc142f44.szar new file mode 100644 index 00000000..3d552eac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000010_bc142f44.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000011_880697f9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000011_880697f9.szar new file mode 100644 index 00000000..e429c88a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000011_880697f9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000012_4caf4bd4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000012_4caf4bd4.szar new file mode 100644 index 00000000..2e5b3b8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000012_4caf4bd4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000013_84f7d5d6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000013_84f7d5d6.szar new file mode 100644 index 00000000..89abf53e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000013_84f7d5d6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000014_c4253f89.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000014_c4253f89.szar new file mode 100644 index 00000000..85bbc35d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000014_c4253f89.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000015_8071f560.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000015_8071f560.szar new file mode 100644 index 00000000..93f418b0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000015_8071f560.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000016_fa73d6a7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000016_fa73d6a7.szar new file mode 100644 index 00000000..b80b83a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000016_fa73d6a7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000017_7c2a16ad.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000017_7c2a16ad.szar new file mode 100644 index 00000000..092d4659 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000017_7c2a16ad.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000018_19e1aac4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000018_19e1aac4.szar new file mode 100644 index 00000000..3637dffb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000018_19e1aac4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000019_e74e50de.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000019_e74e50de.szar new file mode 100644 index 00000000..ceb2ffec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000019_e74e50de.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000020_6d0b9569.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000020_6d0b9569.szar new file mode 100644 index 00000000..0bfb8dd3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000020_6d0b9569.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000021_f3db4f58.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000021_f3db4f58.szar new file mode 100644 index 00000000..b9c6f7c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000021_f3db4f58.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000022_ee7915a3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000022_ee7915a3.szar new file mode 100644 index 00000000..594facfb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000022_ee7915a3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000023_711d3708.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000023_711d3708.szar new file mode 100644 index 00000000..9a3e6590 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000023_711d3708.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000024_9391a1fd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000024_9391a1fd.szar new file mode 100644 index 00000000..b5ff0bc8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000024_9391a1fd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000025_12b33eea.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000025_12b33eea.szar new file mode 100644 index 00000000..ef435f99 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000025_12b33eea.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000026_415390af.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000026_415390af.szar new file mode 100644 index 00000000..5977a257 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000026_415390af.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000027_18e5666c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000027_18e5666c.szar new file mode 100644 index 00000000..85f291c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000027_18e5666c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000028_af3cf2bb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000028_af3cf2bb.szar new file mode 100644 index 00000000..62a61da5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000028_af3cf2bb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000029_d7508ae8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000029_d7508ae8.szar new file mode 100644 index 00000000..68023143 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000029_d7508ae8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000030_8de9aafc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000030_8de9aafc.szar new file mode 100644 index 00000000..9b739ab4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000030_8de9aafc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000031_2d9c47c3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000031_2d9c47c3.szar new file mode 100644 index 00000000..e6bca48e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000031_2d9c47c3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000032_3ab68916.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000032_3ab68916.szar new file mode 100644 index 00000000..d6980a9f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000032_3ab68916.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000033_95bb0168.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000033_95bb0168.szar new file mode 100644 index 00000000..ffb67102 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000033_95bb0168.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000034_23597d8d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000034_23597d8d.szar new file mode 100644 index 00000000..89001507 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000034_23597d8d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000035_e8f5fa23.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000035_e8f5fa23.szar new file mode 100644 index 00000000..21f0cd64 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000035_e8f5fa23.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000036_c4047cdd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000036_c4047cdd.szar new file mode 100644 index 00000000..3a9d6643 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000036_c4047cdd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000037_ab5cd76c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000037_ab5cd76c.szar new file mode 100644 index 00000000..f67d0440 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000037_ab5cd76c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000038_ab6b99a7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000038_ab6b99a7.szar new file mode 100644 index 00000000..bfc2c50d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000038_ab6b99a7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000039_c1fc5132.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000039_c1fc5132.szar new file mode 100644 index 00000000..fcc09dbe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000039_c1fc5132.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000040_010d6290.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000040_010d6290.szar new file mode 100644 index 00000000..75b6ca4d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000040_010d6290.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000041_5119b0b5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000041_5119b0b5.szar new file mode 100644 index 00000000..b0a7a52b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000041_5119b0b5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000042_0688f0d0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000042_0688f0d0.szar new file mode 100644 index 00000000..98d7a52b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000042_0688f0d0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000043_4450de7d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000043_4450de7d.szar new file mode 100644 index 00000000..affa2bc6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000043_4450de7d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000044_6d155253.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000044_6d155253.szar new file mode 100644 index 00000000..6e27fd18 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000044_6d155253.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000045_9c7fdf08.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000045_9c7fdf08.szar new file mode 100644 index 00000000..09f58e1e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000045_9c7fdf08.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000046_7c365fc9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000046_7c365fc9.szar new file mode 100644 index 00000000..3cb6b597 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000046_7c365fc9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000047_baba7150.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000047_baba7150.szar new file mode 100644 index 00000000..6891eb68 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000047_baba7150.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000048_b5ff300c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000048_b5ff300c.szar new file mode 100644 index 00000000..444418f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000048_b5ff300c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000049_1d32da32.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000049_1d32da32.szar new file mode 100644 index 00000000..045749e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000049_1d32da32.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000050_95a98122.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000050_95a98122.szar new file mode 100644 index 00000000..68850637 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000050_95a98122.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000051_7352da58.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000051_7352da58.szar new file mode 100644 index 00000000..20fd82aa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000051_7352da58.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000052_4f5994ae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000052_4f5994ae.szar new file mode 100644 index 00000000..184517d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000052_4f5994ae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000053_18911be8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000053_18911be8.szar new file mode 100644 index 00000000..c85acc46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000053_18911be8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000054_7b850ffa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000054_7b850ffa.szar new file mode 100644 index 00000000..88d93ae3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000054_7b850ffa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000055_827aa324.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000055_827aa324.szar new file mode 100644 index 00000000..74471f6f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000055_827aa324.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000056_adc6a195.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000056_adc6a195.szar new file mode 100644 index 00000000..1b0c4778 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000056_adc6a195.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000057_64122174.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000057_64122174.szar new file mode 100644 index 00000000..5ee0fe43 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000057_64122174.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000058_5d279be8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000058_5d279be8.szar new file mode 100644 index 00000000..1a26d1d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000058_5d279be8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000059_19beddbb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000059_19beddbb.szar new file mode 100644 index 00000000..bddb0c3b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000059_19beddbb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000060_b5c3f8ec.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000060_b5c3f8ec.szar new file mode 100644 index 00000000..a9fa4ebf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000060_b5c3f8ec.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000061_fa915921.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000061_fa915921.szar new file mode 100644 index 00000000..d2b9c083 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000061_fa915921.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000062_b3726773.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000062_b3726773.szar new file mode 100644 index 00000000..f059253e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000062_b3726773.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000063_f9c03e8d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000063_f9c03e8d.szar new file mode 100644 index 00000000..a8c3e74e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000063_f9c03e8d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000064_680ea63c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000064_680ea63c.szar new file mode 100644 index 00000000..26461a1a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000064_680ea63c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000065_3de86b01.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000065_3de86b01.szar new file mode 100644 index 00000000..93be0d54 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/archive/delta_00000000000000000065_3de86b01.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000001_5ebb3b1c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000001_5ebb3b1c.szcp new file mode 100644 index 00000000..9c8c9f23 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000001_5ebb3b1c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000002_dda671ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000002_dda671ce.szcp new file mode 100644 index 00000000..2bbffbbe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000002_dda671ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000003_ac4ceabe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000003_ac4ceabe.szcp new file mode 100644 index 00000000..11f9cf2d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000003_ac4ceabe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000004_c3ab7dfe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000004_c3ab7dfe.szcp new file mode 100644 index 00000000..91e3eb94 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000004_c3ab7dfe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000005_e085a02a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000005_e085a02a.szcp new file mode 100644 index 00000000..13eab9a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000005_e085a02a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000006_32e9d221.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000006_32e9d221.szcp new file mode 100644 index 00000000..3c1353bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000006_32e9d221.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000007_996e11a3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000007_996e11a3.szcp new file mode 100644 index 00000000..438e6c54 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000007_996e11a3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000008_94ee37da.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000008_94ee37da.szcp new file mode 100644 index 00000000..e3665c3b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000008_94ee37da.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000009_5feb6245.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000009_5feb6245.szcp new file mode 100644 index 00000000..8098dc71 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000009_5feb6245.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000010_7650d1f5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000010_7650d1f5.szcp new file mode 100644 index 00000000..72742aba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000010_7650d1f5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000011_b6711660.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000011_b6711660.szcp new file mode 100644 index 00000000..eb1ecf30 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000011_b6711660.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000012_fbb38c0c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000012_fbb38c0c.szcp new file mode 100644 index 00000000..2e83eaa2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000012_fbb38c0c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000013_8c37ea3d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000013_8c37ea3d.szcp new file mode 100644 index 00000000..20fa1ae5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000013_8c37ea3d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000014_9c5b4131.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000014_9c5b4131.szcp new file mode 100644 index 00000000..052e123d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000014_9c5b4131.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000015_3b5484ef.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000015_3b5484ef.szcp new file mode 100644 index 00000000..529b0b94 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000015_3b5484ef.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000016_c567a65a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000016_c567a65a.szcp new file mode 100644 index 00000000..c7f4c3f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000016_c567a65a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000017_715dd0ae.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000017_715dd0ae.szcp new file mode 100644 index 00000000..294ebbb0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000017_715dd0ae.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000018_b13e91a0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000018_b13e91a0.szcp new file mode 100644 index 00000000..bfb8b4fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000018_b13e91a0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000019_793f936e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000019_793f936e.szcp new file mode 100644 index 00000000..2bf110c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000019_793f936e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000020_4bad262a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000020_4bad262a.szcp new file mode 100644 index 00000000..5b49d105 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000020_4bad262a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000021_0870be96.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000021_0870be96.szcp new file mode 100644 index 00000000..f441ea36 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000021_0870be96.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000022_a5616a7c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000022_a5616a7c.szcp new file mode 100644 index 00000000..4889f74b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000022_a5616a7c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000023_d48d55ba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000023_d48d55ba.szcp new file mode 100644 index 00000000..34fad26a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000023_d48d55ba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000024_c515d673.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000024_c515d673.szcp new file mode 100644 index 00000000..d755649c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000024_c515d673.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000025_a21e6842.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000025_a21e6842.szcp new file mode 100644 index 00000000..55c2c3ac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000025_a21e6842.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000026_6e0536dc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000026_6e0536dc.szcp new file mode 100644 index 00000000..181f6dbf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000026_6e0536dc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000027_471420e4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000027_471420e4.szcp new file mode 100644 index 00000000..5d8cf437 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000027_471420e4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000028_0a46c90a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000028_0a46c90a.szcp new file mode 100644 index 00000000..c9cb5fa1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000028_0a46c90a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000029_3e890316.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000029_3e890316.szcp new file mode 100644 index 00000000..67491d59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000029_3e890316.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000030_7cf0613c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000030_7cf0613c.szcp new file mode 100644 index 00000000..fdc2101e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000030_7cf0613c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000031_9141c3a8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000031_9141c3a8.szcp new file mode 100644 index 00000000..896c89b3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000031_9141c3a8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000032_4398a32e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000032_4398a32e.szcp new file mode 100644 index 00000000..91887548 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000032_4398a32e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000033_567070d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000033_567070d1.szcp new file mode 100644 index 00000000..a1429f60 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000033_567070d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000034_1e45132e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000034_1e45132e.szcp new file mode 100644 index 00000000..d89fd591 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000034_1e45132e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000035_36461318.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000035_36461318.szcp new file mode 100644 index 00000000..6f2e5d29 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000035_36461318.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000036_f7fe2b87.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000036_f7fe2b87.szcp new file mode 100644 index 00000000..74f9e3a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000036_f7fe2b87.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000037_0cd2cd63.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000037_0cd2cd63.szcp new file mode 100644 index 00000000..0006c5c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000037_0cd2cd63.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000038_0fae740e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000038_0fae740e.szcp new file mode 100644 index 00000000..60d7d44f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000038_0fae740e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000039_5aaeb919.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000039_5aaeb919.szcp new file mode 100644 index 00000000..a8ca98fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000039_5aaeb919.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000040_99350420.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000040_99350420.szcp new file mode 100644 index 00000000..f338c229 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000040_99350420.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000041_86a96103.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000041_86a96103.szcp new file mode 100644 index 00000000..a6789bee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000041_86a96103.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000042_dccad108.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000042_dccad108.szcp new file mode 100644 index 00000000..1fadf241 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000042_dccad108.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000043_45972a63.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000043_45972a63.szcp new file mode 100644 index 00000000..6bf2f309 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000043_45972a63.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000044_f3b6a0bb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000044_f3b6a0bb.szcp new file mode 100644 index 00000000..075853eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000044_f3b6a0bb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000045_2886724d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000045_2886724d.szcp new file mode 100644 index 00000000..3cc640ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000045_2886724d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000046_031651e7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000046_031651e7.szcp new file mode 100644 index 00000000..cb2c7083 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000046_031651e7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000047_d6ec25e3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000047_d6ec25e3.szcp new file mode 100644 index 00000000..83fd6e24 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000047_d6ec25e3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000048_bcb35a4a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000048_bcb35a4a.szcp new file mode 100644 index 00000000..565ce0f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000048_bcb35a4a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000049_438e3b72.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000049_438e3b72.szcp new file mode 100644 index 00000000..26a5a5d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000049_438e3b72.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000050_bb4f805b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000050_bb4f805b.szcp new file mode 100644 index 00000000..68a97b3e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000050_bb4f805b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000051_03622153.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000051_03622153.szcp new file mode 100644 index 00000000..93d215e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000051_03622153.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000052_6f9b1632.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000052_6f9b1632.szcp new file mode 100644 index 00000000..168cc0d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000052_6f9b1632.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000053_1a8609ad.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000053_1a8609ad.szcp new file mode 100644 index 00000000..0d567dd0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000053_1a8609ad.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000054_55f92a3c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000054_55f92a3c.szcp new file mode 100644 index 00000000..410042d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000054_55f92a3c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000055_b2cb9462.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000055_b2cb9462.szcp new file mode 100644 index 00000000..ea1584ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000055_b2cb9462.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000056_daa10460.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000056_daa10460.szcp new file mode 100644 index 00000000..c4caec2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000056_daa10460.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000057_989bc00f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000057_989bc00f.szcp new file mode 100644 index 00000000..89028afa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000057_989bc00f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000058_fdf01e03.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000058_fdf01e03.szcp new file mode 100644 index 00000000..0e90a455 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000058_fdf01e03.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000059_e1cd7ec8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000059_e1cd7ec8.szcp new file mode 100644 index 00000000..24c57591 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000059_e1cd7ec8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000060_3c222306.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000060_3c222306.szcp new file mode 100644 index 00000000..0a20e0fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000060_3c222306.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000061_9154bbf3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000061_9154bbf3.szcp new file mode 100644 index 00000000..1616c8b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000061_9154bbf3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000062_b5c39982.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000062_b5c39982.szcp new file mode 100644 index 00000000..7d56a412 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000062_b5c39982.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000063_46727c99.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000063_46727c99.szcp new file mode 100644 index 00000000..f1cabeb4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000063_46727c99.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000064_e0efdfe8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000064_e0efdfe8.szcp new file mode 100644 index 00000000..fb907e65 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000064_e0efdfe8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000065_ea175122.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000065_ea175122.szcp new file mode 100644 index 00000000..12957b84 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_014/checkpoints/checkpoint_00000000000000000065_ea175122.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000001_52af803c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000001_52af803c.szar new file mode 100644 index 00000000..c31a79ba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000001_52af803c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000002_bdf2104b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000002_bdf2104b.szar new file mode 100644 index 00000000..af324330 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000002_bdf2104b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000003_5541b35e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000003_5541b35e.szar new file mode 100644 index 00000000..4cbe5dbd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000003_5541b35e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000004_02291a42.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000004_02291a42.szar new file mode 100644 index 00000000..09e9ec93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000004_02291a42.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000005_a699edcd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000005_a699edcd.szar new file mode 100644 index 00000000..23a5b878 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000005_a699edcd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000006_3cb2385d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000006_3cb2385d.szar new file mode 100644 index 00000000..08914c27 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000006_3cb2385d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000007_413d928e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000007_413d928e.szar new file mode 100644 index 00000000..ca71f719 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000007_413d928e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000008_cc6df2f9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000008_cc6df2f9.szar new file mode 100644 index 00000000..4e6c1521 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000008_cc6df2f9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000009_cb30e67a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000009_cb30e67a.szar new file mode 100644 index 00000000..3695cdea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000009_cb30e67a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000010_b9a34a85.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000010_b9a34a85.szar new file mode 100644 index 00000000..3eb4ade2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000010_b9a34a85.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000011_fd99469a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000011_fd99469a.szar new file mode 100644 index 00000000..f125300e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000011_fd99469a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000012_0c724711.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000012_0c724711.szar new file mode 100644 index 00000000..114bf4a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000012_0c724711.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000013_64d843ec.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000013_64d843ec.szar new file mode 100644 index 00000000..6206e58a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000013_64d843ec.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000014_3221bd6b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000014_3221bd6b.szar new file mode 100644 index 00000000..fc68a3a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000014_3221bd6b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000015_fc9de710.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000015_fc9de710.szar new file mode 100644 index 00000000..d32b2070 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000015_fc9de710.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000016_608c7070.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000016_608c7070.szar new file mode 100644 index 00000000..017da28b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000016_608c7070.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000017_645a5325.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000017_645a5325.szar new file mode 100644 index 00000000..ee978bc3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000017_645a5325.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000018_c2f868ae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000018_c2f868ae.szar new file mode 100644 index 00000000..2a918085 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000018_c2f868ae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000019_90be5ea9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000019_90be5ea9.szar new file mode 100644 index 00000000..94bae3c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000019_90be5ea9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000020_39a7f273.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000020_39a7f273.szar new file mode 100644 index 00000000..eed46c0b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000020_39a7f273.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000021_5dcec761.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000021_5dcec761.szar new file mode 100644 index 00000000..e37e128d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000021_5dcec761.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000022_2ed0caa5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000022_2ed0caa5.szar new file mode 100644 index 00000000..0a1379f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000022_2ed0caa5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000023_b2e618f2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000023_b2e618f2.szar new file mode 100644 index 00000000..dbad26c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000023_b2e618f2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000024_e01ce4fe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000024_e01ce4fe.szar new file mode 100644 index 00000000..7c3439f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000024_e01ce4fe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000025_6db8a03e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000025_6db8a03e.szar new file mode 100644 index 00000000..4b034b66 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000025_6db8a03e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000026_294297f7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000026_294297f7.szar new file mode 100644 index 00000000..49ba2cf6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000026_294297f7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000027_03ec25de.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000027_03ec25de.szar new file mode 100644 index 00000000..cddeb2ae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000027_03ec25de.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000028_001f04a7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000028_001f04a7.szar new file mode 100644 index 00000000..c34e9159 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000028_001f04a7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000029_2b8ed270.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000029_2b8ed270.szar new file mode 100644 index 00000000..dc27d0ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000029_2b8ed270.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000030_210f7676.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000030_210f7676.szar new file mode 100644 index 00000000..1e4f4b9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000030_210f7676.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000031_bcbc45c6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000031_bcbc45c6.szar new file mode 100644 index 00000000..5aa7d802 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000031_bcbc45c6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000032_7a354f84.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000032_7a354f84.szar new file mode 100644 index 00000000..1e5771b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000032_7a354f84.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000033_bfed1391.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000033_bfed1391.szar new file mode 100644 index 00000000..c2d91544 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000033_bfed1391.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000034_81e477ef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000034_81e477ef.szar new file mode 100644 index 00000000..f80c921b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000034_81e477ef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000035_79b26db6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000035_79b26db6.szar new file mode 100644 index 00000000..fe1712c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000035_79b26db6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000036_105bdc27.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000036_105bdc27.szar new file mode 100644 index 00000000..17d519e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000036_105bdc27.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000037_24172a16.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000037_24172a16.szar new file mode 100644 index 00000000..e59e4023 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000037_24172a16.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000038_c48fb488.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000038_c48fb488.szar new file mode 100644 index 00000000..d3e95796 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000038_c48fb488.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000039_d65b79cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000039_d65b79cc.szar new file mode 100644 index 00000000..dd0f66e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000039_d65b79cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000040_a0a1f719.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000040_a0a1f719.szar new file mode 100644 index 00000000..c3efed8b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000040_a0a1f719.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000041_56c0cc49.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000041_56c0cc49.szar new file mode 100644 index 00000000..1c62cb1a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000041_56c0cc49.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000042_51cff721.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000042_51cff721.szar new file mode 100644 index 00000000..c1cef885 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000042_51cff721.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000043_a7254009.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000043_a7254009.szar new file mode 100644 index 00000000..e07a8780 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000043_a7254009.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000044_98735acb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000044_98735acb.szar new file mode 100644 index 00000000..9303028c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000044_98735acb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000045_48869ed2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000045_48869ed2.szar new file mode 100644 index 00000000..b68da2a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000045_48869ed2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000046_5244f9ad.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000046_5244f9ad.szar new file mode 100644 index 00000000..653fadce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000046_5244f9ad.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000047_df51235f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000047_df51235f.szar new file mode 100644 index 00000000..27130189 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000047_df51235f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000048_42fa2e80.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000048_42fa2e80.szar new file mode 100644 index 00000000..b507942e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000048_42fa2e80.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000049_7031c84a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000049_7031c84a.szar new file mode 100644 index 00000000..01405559 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000049_7031c84a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000050_8c5c78ae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000050_8c5c78ae.szar new file mode 100644 index 00000000..d841abb4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000050_8c5c78ae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000051_0c65b1c5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000051_0c65b1c5.szar new file mode 100644 index 00000000..47e3fb24 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000051_0c65b1c5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000052_9162a3f3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000052_9162a3f3.szar new file mode 100644 index 00000000..49dbd48b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000052_9162a3f3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000053_558d3289.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000053_558d3289.szar new file mode 100644 index 00000000..32691f33 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000053_558d3289.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000054_4f4a3a54.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000054_4f4a3a54.szar new file mode 100644 index 00000000..80c9206e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000054_4f4a3a54.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000055_9098c2b7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000055_9098c2b7.szar new file mode 100644 index 00000000..eeb60569 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000055_9098c2b7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000056_68a0b346.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000056_68a0b346.szar new file mode 100644 index 00000000..770ea9e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/archive/delta_00000000000000000056_68a0b346.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000001_7e6c5602.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000001_7e6c5602.szcp new file mode 100644 index 00000000..3b08ba08 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000001_7e6c5602.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000002_5319520e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000002_5319520e.szcp new file mode 100644 index 00000000..76549d2b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000002_5319520e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000003_c4041fcf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000003_c4041fcf.szcp new file mode 100644 index 00000000..d92a18ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000003_c4041fcf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000004_631bf141.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000004_631bf141.szcp new file mode 100644 index 00000000..db1d8e7c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000004_631bf141.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000005_26723b18.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000005_26723b18.szcp new file mode 100644 index 00000000..e0ff28ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000005_26723b18.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000006_3332e3b8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000006_3332e3b8.szcp new file mode 100644 index 00000000..f795534d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000006_3332e3b8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000007_e1158f11.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000007_e1158f11.szcp new file mode 100644 index 00000000..c2fd31a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000007_e1158f11.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000008_7ebc3d86.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000008_7ebc3d86.szcp new file mode 100644 index 00000000..0cd756f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000008_7ebc3d86.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000009_e9fd942f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000009_e9fd942f.szcp new file mode 100644 index 00000000..042346cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000009_e9fd942f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000010_661afffd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000010_661afffd.szcp new file mode 100644 index 00000000..eb3f7626 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000010_661afffd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000011_f068db5e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000011_f068db5e.szcp new file mode 100644 index 00000000..1e1a5f30 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000011_f068db5e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000012_8991591e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000012_8991591e.szcp new file mode 100644 index 00000000..8536c3e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000012_8991591e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000013_1f97f2e7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000013_1f97f2e7.szcp new file mode 100644 index 00000000..b384cc23 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000013_1f97f2e7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000014_44550433.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000014_44550433.szcp new file mode 100644 index 00000000..43bd8d86 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000014_44550433.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000015_b30eddc7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000015_b30eddc7.szcp new file mode 100644 index 00000000..873778ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000015_b30eddc7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000016_0e192807.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000016_0e192807.szcp new file mode 100644 index 00000000..130cb934 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000016_0e192807.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000017_5642500c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000017_5642500c.szcp new file mode 100644 index 00000000..fd9793de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000017_5642500c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000018_0ce68f6e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000018_0ce68f6e.szcp new file mode 100644 index 00000000..da189ece Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000018_0ce68f6e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000019_330fec20.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000019_330fec20.szcp new file mode 100644 index 00000000..880cb2dd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000019_330fec20.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000020_f17fc1dc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000020_f17fc1dc.szcp new file mode 100644 index 00000000..e06ee723 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000020_f17fc1dc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000021_3d8c190a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000021_3d8c190a.szcp new file mode 100644 index 00000000..66b02f76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000021_3d8c190a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000022_1c90ef25.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000022_1c90ef25.szcp new file mode 100644 index 00000000..adc69bd1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000022_1c90ef25.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000023_85ecd6eb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000023_85ecd6eb.szcp new file mode 100644 index 00000000..66355912 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000023_85ecd6eb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000024_05eda4d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000024_05eda4d1.szcp new file mode 100644 index 00000000..f02b5355 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000024_05eda4d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000025_3f57f1d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000025_3f57f1d7.szcp new file mode 100644 index 00000000..f7e60f76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000025_3f57f1d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000026_057b8db5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000026_057b8db5.szcp new file mode 100644 index 00000000..be9c6327 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000026_057b8db5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000027_61e85288.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000027_61e85288.szcp new file mode 100644 index 00000000..cb21d28b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000027_61e85288.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000028_aaf57a6e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000028_aaf57a6e.szcp new file mode 100644 index 00000000..79704a5b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000028_aaf57a6e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000029_ce4116e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000029_ce4116e9.szcp new file mode 100644 index 00000000..26ed690a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000029_ce4116e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000030_b0c1f67a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000030_b0c1f67a.szcp new file mode 100644 index 00000000..5925d782 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000030_b0c1f67a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000031_80880330.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000031_80880330.szcp new file mode 100644 index 00000000..5f31e51e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000031_80880330.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000032_bc4ada3e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000032_bc4ada3e.szcp new file mode 100644 index 00000000..48974329 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000032_bc4ada3e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000033_1981ff56.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000033_1981ff56.szcp new file mode 100644 index 00000000..ee9c3200 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000033_1981ff56.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000034_7a90feb1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000034_7a90feb1.szcp new file mode 100644 index 00000000..44527eec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000034_7a90feb1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000035_0045b70d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000035_0045b70d.szcp new file mode 100644 index 00000000..e6aba3fc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000035_0045b70d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000036_c35684c2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000036_c35684c2.szcp new file mode 100644 index 00000000..8e06f976 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000036_c35684c2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000037_fc9f4e1e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000037_fc9f4e1e.szcp new file mode 100644 index 00000000..57e38b23 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000037_fc9f4e1e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000038_8682755a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000038_8682755a.szcp new file mode 100644 index 00000000..99e7638f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000038_8682755a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000039_860bbba1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000039_860bbba1.szcp new file mode 100644 index 00000000..6f584686 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000039_860bbba1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000040_d5ada64e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000040_d5ada64e.szcp new file mode 100644 index 00000000..d9b89bc0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000040_d5ada64e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000041_338a3730.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000041_338a3730.szcp new file mode 100644 index 00000000..7ad76477 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000041_338a3730.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000042_2fd85c58.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000042_2fd85c58.szcp new file mode 100644 index 00000000..884cb8f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000042_2fd85c58.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000043_f01abe31.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000043_f01abe31.szcp new file mode 100644 index 00000000..490e81d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000043_f01abe31.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000044_f81d9dca.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000044_f81d9dca.szcp new file mode 100644 index 00000000..e9295d93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000044_f81d9dca.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000045_7979ab90.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000045_7979ab90.szcp new file mode 100644 index 00000000..0c98eea3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000045_7979ab90.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000046_d3f74c78.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000046_d3f74c78.szcp new file mode 100644 index 00000000..642befb5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000046_d3f74c78.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000047_c25ea54d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000047_c25ea54d.szcp new file mode 100644 index 00000000..055f4c65 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000047_c25ea54d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000048_e7ed84a4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000048_e7ed84a4.szcp new file mode 100644 index 00000000..680501ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000048_e7ed84a4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000049_3d1ae9a9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000049_3d1ae9a9.szcp new file mode 100644 index 00000000..95e02adf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000049_3d1ae9a9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000050_2d21355d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000050_2d21355d.szcp new file mode 100644 index 00000000..ff30987a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000050_2d21355d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000051_6f9f543d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000051_6f9f543d.szcp new file mode 100644 index 00000000..7efc1c72 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000051_6f9f543d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000052_ca4653b9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000052_ca4653b9.szcp new file mode 100644 index 00000000..c6bd3207 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000052_ca4653b9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000053_53015f07.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000053_53015f07.szcp new file mode 100644 index 00000000..d3c50973 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000053_53015f07.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000054_ed85f653.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000054_ed85f653.szcp new file mode 100644 index 00000000..e6124e2b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000054_ed85f653.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000055_56065ba3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000055_56065ba3.szcp new file mode 100644 index 00000000..83063e18 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000055_56065ba3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000056_88f32015.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000056_88f32015.szcp new file mode 100644 index 00000000..d1560f0d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_015/checkpoints/checkpoint_00000000000000000056_88f32015.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000001_86f50688.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000001_86f50688.szar new file mode 100644 index 00000000..089a5c48 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000001_86f50688.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000002_9af6a044.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000002_9af6a044.szar new file mode 100644 index 00000000..316ce88d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000002_9af6a044.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000003_b35933c0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000003_b35933c0.szar new file mode 100644 index 00000000..94f2bcf1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000003_b35933c0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000004_c6626c40.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000004_c6626c40.szar new file mode 100644 index 00000000..53587444 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000004_c6626c40.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000005_fe3e568e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000005_fe3e568e.szar new file mode 100644 index 00000000..19c8f248 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000005_fe3e568e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000006_613100b0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000006_613100b0.szar new file mode 100644 index 00000000..00016825 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000006_613100b0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000007_3dee83ef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000007_3dee83ef.szar new file mode 100644 index 00000000..42b24989 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000007_3dee83ef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000008_c4f9f176.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000008_c4f9f176.szar new file mode 100644 index 00000000..b0c86a71 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000008_c4f9f176.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000009_5472375d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000009_5472375d.szar new file mode 100644 index 00000000..5d2c4a2e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000009_5472375d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000010_bcbbf84e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000010_bcbbf84e.szar new file mode 100644 index 00000000..7deb4e53 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000010_bcbbf84e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000011_073db2b5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000011_073db2b5.szar new file mode 100644 index 00000000..c2f34a58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000011_073db2b5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000012_fb9ae6db.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000012_fb9ae6db.szar new file mode 100644 index 00000000..0419d81c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000012_fb9ae6db.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000013_eee1d4f3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000013_eee1d4f3.szar new file mode 100644 index 00000000..f3f438f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000013_eee1d4f3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000014_98a53ea9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000014_98a53ea9.szar new file mode 100644 index 00000000..13cc01b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000014_98a53ea9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000015_20255172.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000015_20255172.szar new file mode 100644 index 00000000..34a323cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000015_20255172.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000016_39a5f324.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000016_39a5f324.szar new file mode 100644 index 00000000..cb53f7e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000016_39a5f324.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000017_c3bf6174.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000017_c3bf6174.szar new file mode 100644 index 00000000..126f0154 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000017_c3bf6174.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000018_683388fe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000018_683388fe.szar new file mode 100644 index 00000000..5bfb3c10 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000018_683388fe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000019_a346bd47.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000019_a346bd47.szar new file mode 100644 index 00000000..54630067 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000019_a346bd47.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000020_991d3040.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000020_991d3040.szar new file mode 100644 index 00000000..e0ed93bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000020_991d3040.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000021_4e8c1689.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000021_4e8c1689.szar new file mode 100644 index 00000000..2dcaabbb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000021_4e8c1689.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000022_f8c4b4d4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000022_f8c4b4d4.szar new file mode 100644 index 00000000..cc9bfd20 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000022_f8c4b4d4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000023_911b783a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000023_911b783a.szar new file mode 100644 index 00000000..7c02438e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000023_911b783a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000024_1227ec2e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000024_1227ec2e.szar new file mode 100644 index 00000000..9614c484 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000024_1227ec2e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000025_6cd6a8a2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000025_6cd6a8a2.szar new file mode 100644 index 00000000..85fd563a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000025_6cd6a8a2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000026_f5f39cf8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000026_f5f39cf8.szar new file mode 100644 index 00000000..68fbf4b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000026_f5f39cf8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000027_262ed43c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000027_262ed43c.szar new file mode 100644 index 00000000..5671dd1d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000027_262ed43c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000028_b95ba5f2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000028_b95ba5f2.szar new file mode 100644 index 00000000..cec442be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000028_b95ba5f2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000029_ebc19a32.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000029_ebc19a32.szar new file mode 100644 index 00000000..6ba801eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000029_ebc19a32.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000030_db8fbf2c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000030_db8fbf2c.szar new file mode 100644 index 00000000..a935046b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000030_db8fbf2c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000031_29e59e0a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000031_29e59e0a.szar new file mode 100644 index 00000000..fa8f4681 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000031_29e59e0a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000032_bedc5592.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000032_bedc5592.szar new file mode 100644 index 00000000..9bc07746 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000032_bedc5592.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000033_c52d9235.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000033_c52d9235.szar new file mode 100644 index 00000000..9e5279e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000033_c52d9235.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000034_ec028a34.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000034_ec028a34.szar new file mode 100644 index 00000000..28018495 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000034_ec028a34.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000035_2d8f1a44.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000035_2d8f1a44.szar new file mode 100644 index 00000000..614c85e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000035_2d8f1a44.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000036_f8d9e37d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000036_f8d9e37d.szar new file mode 100644 index 00000000..849fd328 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000036_f8d9e37d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000037_590ca577.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000037_590ca577.szar new file mode 100644 index 00000000..a740b64e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000037_590ca577.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000038_7b4a2cb3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000038_7b4a2cb3.szar new file mode 100644 index 00000000..e2235b8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000038_7b4a2cb3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000039_9a0ea2df.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000039_9a0ea2df.szar new file mode 100644 index 00000000..4a4378b6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000039_9a0ea2df.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000040_94c48fce.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000040_94c48fce.szar new file mode 100644 index 00000000..40df6f10 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000040_94c48fce.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000041_aa2527d5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000041_aa2527d5.szar new file mode 100644 index 00000000..a41e2134 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000041_aa2527d5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000042_98a06181.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000042_98a06181.szar new file mode 100644 index 00000000..a25b8217 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000042_98a06181.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000043_60220eb4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000043_60220eb4.szar new file mode 100644 index 00000000..3573cc0e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000043_60220eb4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000044_3921afd8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000044_3921afd8.szar new file mode 100644 index 00000000..79d3e03f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000044_3921afd8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000045_94dd33d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000045_94dd33d7.szar new file mode 100644 index 00000000..64399892 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000045_94dd33d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000046_2a867100.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000046_2a867100.szar new file mode 100644 index 00000000..1315f813 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000046_2a867100.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000047_98e643a6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000047_98e643a6.szar new file mode 100644 index 00000000..9f306fe8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000047_98e643a6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000048_f50fc2b6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000048_f50fc2b6.szar new file mode 100644 index 00000000..66630126 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000048_f50fc2b6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000049_1fc1441c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000049_1fc1441c.szar new file mode 100644 index 00000000..be2b43f3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000049_1fc1441c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000050_20303ffd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000050_20303ffd.szar new file mode 100644 index 00000000..08f7514a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000050_20303ffd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000051_8f30af7d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000051_8f30af7d.szar new file mode 100644 index 00000000..b6590be8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000051_8f30af7d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000052_400e9f6e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000052_400e9f6e.szar new file mode 100644 index 00000000..491656be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000052_400e9f6e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000053_43d6c6a4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000053_43d6c6a4.szar new file mode 100644 index 00000000..b0fa6240 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000053_43d6c6a4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000054_26502f10.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000054_26502f10.szar new file mode 100644 index 00000000..a8732588 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000054_26502f10.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000055_40cfc322.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000055_40cfc322.szar new file mode 100644 index 00000000..4b2b892d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000055_40cfc322.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000056_b2cc3458.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000056_b2cc3458.szar new file mode 100644 index 00000000..806f1b90 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000056_b2cc3458.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000057_3ece7e42.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000057_3ece7e42.szar new file mode 100644 index 00000000..761374f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000057_3ece7e42.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000058_ad8d538f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000058_ad8d538f.szar new file mode 100644 index 00000000..35d33209 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000058_ad8d538f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000059_6fd49a48.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000059_6fd49a48.szar new file mode 100644 index 00000000..68ae5ecb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000059_6fd49a48.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000060_145254f2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000060_145254f2.szar new file mode 100644 index 00000000..00f99e91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000060_145254f2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000061_2629f3e6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000061_2629f3e6.szar new file mode 100644 index 00000000..6e14eebf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000061_2629f3e6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000062_87f2f00f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000062_87f2f00f.szar new file mode 100644 index 00000000..fc13b434 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000062_87f2f00f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000063_5d63b192.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000063_5d63b192.szar new file mode 100644 index 00000000..4932c614 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000063_5d63b192.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000064_c8749986.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000064_c8749986.szar new file mode 100644 index 00000000..b5e77a5f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000064_c8749986.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000065_351b4fcc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000065_351b4fcc.szar new file mode 100644 index 00000000..32e22ae8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000065_351b4fcc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000066_5f446d43.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000066_5f446d43.szar new file mode 100644 index 00000000..908fe18f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000066_5f446d43.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000067_0f5e668c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000067_0f5e668c.szar new file mode 100644 index 00000000..60c1e3d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000067_0f5e668c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000068_24ad97b7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000068_24ad97b7.szar new file mode 100644 index 00000000..a5eee4ba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000068_24ad97b7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000069_3ac03d9d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000069_3ac03d9d.szar new file mode 100644 index 00000000..5936be37 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000069_3ac03d9d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000070_22a76b02.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000070_22a76b02.szar new file mode 100644 index 00000000..45c7caba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000070_22a76b02.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000071_0682225e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000071_0682225e.szar new file mode 100644 index 00000000..3a8c2e59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000071_0682225e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000072_13031c27.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000072_13031c27.szar new file mode 100644 index 00000000..a690982e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000072_13031c27.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000073_8ed429c2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000073_8ed429c2.szar new file mode 100644 index 00000000..3dc527e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000073_8ed429c2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000074_3e32f584.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000074_3e32f584.szar new file mode 100644 index 00000000..3eea6aed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000074_3e32f584.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000075_90b0eca3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000075_90b0eca3.szar new file mode 100644 index 00000000..ffcfc763 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000075_90b0eca3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000076_c8ff76ba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000076_c8ff76ba.szar new file mode 100644 index 00000000..b88c32a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000076_c8ff76ba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000077_322f8ef8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000077_322f8ef8.szar new file mode 100644 index 00000000..62b15cfb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000077_322f8ef8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000078_1fa5acfc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000078_1fa5acfc.szar new file mode 100644 index 00000000..9642f6c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000078_1fa5acfc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000079_fb2eaff2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000079_fb2eaff2.szar new file mode 100644 index 00000000..cdba8dc9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000079_fb2eaff2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000080_db9f85b4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000080_db9f85b4.szar new file mode 100644 index 00000000..34e8f493 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000080_db9f85b4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000081_aa6a1414.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000081_aa6a1414.szar new file mode 100644 index 00000000..695d7e20 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000081_aa6a1414.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000082_b2157e09.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000082_b2157e09.szar new file mode 100644 index 00000000..1b6a287d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000082_b2157e09.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000083_5f067815.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000083_5f067815.szar new file mode 100644 index 00000000..6c6efe4c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000083_5f067815.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000084_faa44906.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000084_faa44906.szar new file mode 100644 index 00000000..ce11dc1a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000084_faa44906.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000085_7562ecf1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000085_7562ecf1.szar new file mode 100644 index 00000000..5743bdc8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/archive/delta_00000000000000000085_7562ecf1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000001_08bf5ae2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000001_08bf5ae2.szcp new file mode 100644 index 00000000..c469e9c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000001_08bf5ae2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000002_b45b9b3d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000002_b45b9b3d.szcp new file mode 100644 index 00000000..c4a5e686 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000002_b45b9b3d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000003_af6512e0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000003_af6512e0.szcp new file mode 100644 index 00000000..410b0f1f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000003_af6512e0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000004_085a254b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000004_085a254b.szcp new file mode 100644 index 00000000..c94d8b12 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000004_085a254b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000005_21ab48b0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000005_21ab48b0.szcp new file mode 100644 index 00000000..a090c4a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000005_21ab48b0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000006_98bab6cb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000006_98bab6cb.szcp new file mode 100644 index 00000000..adc6bad9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000006_98bab6cb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000007_2f0acabc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000007_2f0acabc.szcp new file mode 100644 index 00000000..142f1253 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000007_2f0acabc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000008_e6ef7253.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000008_e6ef7253.szcp new file mode 100644 index 00000000..2c8cfc35 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000008_e6ef7253.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000009_edd8c055.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000009_edd8c055.szcp new file mode 100644 index 00000000..397aecb5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000009_edd8c055.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000010_2125cff8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000010_2125cff8.szcp new file mode 100644 index 00000000..e8b22b84 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000010_2125cff8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000011_dc8ab100.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000011_dc8ab100.szcp new file mode 100644 index 00000000..280a0b26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000011_dc8ab100.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000012_bc1ee32b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000012_bc1ee32b.szcp new file mode 100644 index 00000000..56149c59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000012_bc1ee32b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000013_fede53d0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000013_fede53d0.szcp new file mode 100644 index 00000000..0129a04c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000013_fede53d0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000014_7d8197b7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000014_7d8197b7.szcp new file mode 100644 index 00000000..3067444c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000014_7d8197b7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000015_ef3c1e22.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000015_ef3c1e22.szcp new file mode 100644 index 00000000..f3f2a954 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000015_ef3c1e22.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000016_71be9d1d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000016_71be9d1d.szcp new file mode 100644 index 00000000..f0ca6979 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000016_71be9d1d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000017_19f91527.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000017_19f91527.szcp new file mode 100644 index 00000000..2581e0d0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000017_19f91527.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000018_36f06475.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000018_36f06475.szcp new file mode 100644 index 00000000..75d43f44 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000018_36f06475.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000019_11b1f935.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000019_11b1f935.szcp new file mode 100644 index 00000000..ed01f29f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000019_11b1f935.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000020_9ccbb334.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000020_9ccbb334.szcp new file mode 100644 index 00000000..2dc09361 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000020_9ccbb334.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000021_9f71244e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000021_9f71244e.szcp new file mode 100644 index 00000000..13694135 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000021_9f71244e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000022_ea63c939.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000022_ea63c939.szcp new file mode 100644 index 00000000..6e462c38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000022_ea63c939.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000023_3479522a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000023_3479522a.szcp new file mode 100644 index 00000000..f63279bd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000023_3479522a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000024_87d6a959.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000024_87d6a959.szcp new file mode 100644 index 00000000..eeb5509a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000024_87d6a959.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000025_47a03e19.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000025_47a03e19.szcp new file mode 100644 index 00000000..0a2c0c87 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000025_47a03e19.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000026_f5a0748e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000026_f5a0748e.szcp new file mode 100644 index 00000000..71eee2b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000026_f5a0748e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000027_4d6ffb27.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000027_4d6ffb27.szcp new file mode 100644 index 00000000..2f5bba67 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000027_4d6ffb27.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000028_a66949d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000028_a66949d7.szcp new file mode 100644 index 00000000..dfc460ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000028_a66949d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000029_ac9270de.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000029_ac9270de.szcp new file mode 100644 index 00000000..551f6335 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000029_ac9270de.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000030_f683892d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000030_f683892d.szcp new file mode 100644 index 00000000..0a45da0b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000030_f683892d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000031_828090e2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000031_828090e2.szcp new file mode 100644 index 00000000..98c43290 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000031_828090e2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000032_d4535594.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000032_d4535594.szcp new file mode 100644 index 00000000..eb6cd8e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000032_d4535594.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000033_c2a6fc2c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000033_c2a6fc2c.szcp new file mode 100644 index 00000000..4bb78c4b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000033_c2a6fc2c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000034_62ea54f7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000034_62ea54f7.szcp new file mode 100644 index 00000000..a49d953e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000034_62ea54f7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000035_c9266abc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000035_c9266abc.szcp new file mode 100644 index 00000000..052a107a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000035_c9266abc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000036_b4434c1b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000036_b4434c1b.szcp new file mode 100644 index 00000000..2cc2cc8f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000036_b4434c1b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000037_bed7cc2b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000037_bed7cc2b.szcp new file mode 100644 index 00000000..b128a3ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000037_bed7cc2b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000038_0ac168db.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000038_0ac168db.szcp new file mode 100644 index 00000000..f43d9a08 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000038_0ac168db.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000039_38f82c12.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000039_38f82c12.szcp new file mode 100644 index 00000000..9b80b868 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000039_38f82c12.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000040_79a0b63c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000040_79a0b63c.szcp new file mode 100644 index 00000000..83f811f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000040_79a0b63c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000041_c8df8b12.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000041_c8df8b12.szcp new file mode 100644 index 00000000..b6be6329 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000041_c8df8b12.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000042_2f0a8e1b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000042_2f0a8e1b.szcp new file mode 100644 index 00000000..dd9b9d56 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000042_2f0a8e1b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000043_5382e462.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000043_5382e462.szcp new file mode 100644 index 00000000..4172cfa0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000043_5382e462.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000044_f86bc5da.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000044_f86bc5da.szcp new file mode 100644 index 00000000..5516a438 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000044_f86bc5da.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000045_7fa17e1a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000045_7fa17e1a.szcp new file mode 100644 index 00000000..34ed086a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000045_7fa17e1a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000046_9269f6cc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000046_9269f6cc.szcp new file mode 100644 index 00000000..4eb1d52a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000046_9269f6cc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000047_30c2ec92.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000047_30c2ec92.szcp new file mode 100644 index 00000000..92ac5ef4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000047_30c2ec92.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000048_6ff07ec6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000048_6ff07ec6.szcp new file mode 100644 index 00000000..1a3cc3b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000048_6ff07ec6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000049_54773205.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000049_54773205.szcp new file mode 100644 index 00000000..64d463c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000049_54773205.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000050_facfcefb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000050_facfcefb.szcp new file mode 100644 index 00000000..096700ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000050_facfcefb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000051_1aa1cb2c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000051_1aa1cb2c.szcp new file mode 100644 index 00000000..7d62291e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000051_1aa1cb2c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000052_560e23b8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000052_560e23b8.szcp new file mode 100644 index 00000000..70f0cae8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000052_560e23b8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000053_255685c7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000053_255685c7.szcp new file mode 100644 index 00000000..a3a543df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000053_255685c7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000054_6fc4bc12.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000054_6fc4bc12.szcp new file mode 100644 index 00000000..7fb2cf23 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000054_6fc4bc12.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000055_8190835c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000055_8190835c.szcp new file mode 100644 index 00000000..6db0acda Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000055_8190835c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000056_049abecd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000056_049abecd.szcp new file mode 100644 index 00000000..013f76d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000056_049abecd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000057_3d15d679.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000057_3d15d679.szcp new file mode 100644 index 00000000..f3691b85 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000057_3d15d679.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000058_dcc28a29.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000058_dcc28a29.szcp new file mode 100644 index 00000000..0437eaf7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000058_dcc28a29.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000059_05d7722f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000059_05d7722f.szcp new file mode 100644 index 00000000..8cc8809b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000059_05d7722f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000060_5dbd055e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000060_5dbd055e.szcp new file mode 100644 index 00000000..70d95b46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000060_5dbd055e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000061_4fe551ba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000061_4fe551ba.szcp new file mode 100644 index 00000000..5143eacd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000061_4fe551ba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000062_04b790d8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000062_04b790d8.szcp new file mode 100644 index 00000000..a53959b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000062_04b790d8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000063_b4e2a1f4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000063_b4e2a1f4.szcp new file mode 100644 index 00000000..18fa750d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000063_b4e2a1f4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000064_7269e397.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000064_7269e397.szcp new file mode 100644 index 00000000..ccf7f126 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000064_7269e397.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000065_88a348a2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000065_88a348a2.szcp new file mode 100644 index 00000000..e06fcb25 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000065_88a348a2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000066_7f4da19d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000066_7f4da19d.szcp new file mode 100644 index 00000000..ff3cfc82 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000066_7f4da19d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000067_2e8f661c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000067_2e8f661c.szcp new file mode 100644 index 00000000..de8f2f91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000067_2e8f661c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000068_1720fca7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000068_1720fca7.szcp new file mode 100644 index 00000000..ba4a3d7e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000068_1720fca7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000069_9f9b98ff.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000069_9f9b98ff.szcp new file mode 100644 index 00000000..a51adaea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000069_9f9b98ff.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000070_e26201b5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000070_e26201b5.szcp new file mode 100644 index 00000000..f77f1631 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000070_e26201b5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000071_5a2d5a67.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000071_5a2d5a67.szcp new file mode 100644 index 00000000..07d8bb0b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000071_5a2d5a67.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000072_061fe672.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000072_061fe672.szcp new file mode 100644 index 00000000..38e86a40 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000072_061fe672.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000073_fe009dd8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000073_fe009dd8.szcp new file mode 100644 index 00000000..90a5f8e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000073_fe009dd8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000074_47f7620c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000074_47f7620c.szcp new file mode 100644 index 00000000..0a03ea2f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000074_47f7620c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000075_6f2f4e5b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000075_6f2f4e5b.szcp new file mode 100644 index 00000000..ca4790a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000075_6f2f4e5b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000076_97f94bd7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000076_97f94bd7.szcp new file mode 100644 index 00000000..7afd87e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000076_97f94bd7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000077_3f4fc237.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000077_3f4fc237.szcp new file mode 100644 index 00000000..1719cade Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000077_3f4fc237.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000078_c35cf217.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000078_c35cf217.szcp new file mode 100644 index 00000000..7b89a2c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000078_c35cf217.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000079_c750cf6e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000079_c750cf6e.szcp new file mode 100644 index 00000000..a634a6dd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000079_c750cf6e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000080_edcefbd2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000080_edcefbd2.szcp new file mode 100644 index 00000000..fcd05b14 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000080_edcefbd2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000081_69b5f8ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000081_69b5f8ce.szcp new file mode 100644 index 00000000..ff40f8fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000081_69b5f8ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000082_1349571e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000082_1349571e.szcp new file mode 100644 index 00000000..eeebdc83 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000082_1349571e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000083_2b55cc87.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000083_2b55cc87.szcp new file mode 100644 index 00000000..b39df08d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000083_2b55cc87.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000084_21cba206.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000084_21cba206.szcp new file mode 100644 index 00000000..b9c13d66 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000084_21cba206.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000085_9956d699.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000085_9956d699.szcp new file mode 100644 index 00000000..9dfcb8f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_016/checkpoints/checkpoint_00000000000000000085_9956d699.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000001_b8602743.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000001_b8602743.szar new file mode 100644 index 00000000..5c3a975f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000001_b8602743.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000002_0d8dd153.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000002_0d8dd153.szar new file mode 100644 index 00000000..dd726fe5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000002_0d8dd153.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000003_12d068f9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000003_12d068f9.szar new file mode 100644 index 00000000..a849e03f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000003_12d068f9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000004_189d027d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000004_189d027d.szar new file mode 100644 index 00000000..9464e8fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000004_189d027d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000005_3eb90f04.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000005_3eb90f04.szar new file mode 100644 index 00000000..ef29c003 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000005_3eb90f04.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000006_6aafca4a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000006_6aafca4a.szar new file mode 100644 index 00000000..01b2c76c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000006_6aafca4a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000007_d2e26f3c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000007_d2e26f3c.szar new file mode 100644 index 00000000..4f828e3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000007_d2e26f3c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000008_1f1dc130.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000008_1f1dc130.szar new file mode 100644 index 00000000..3f8e6f1e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000008_1f1dc130.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000009_f6a1517d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000009_f6a1517d.szar new file mode 100644 index 00000000..dac85e3d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000009_f6a1517d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000010_dd4acbae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000010_dd4acbae.szar new file mode 100644 index 00000000..71273184 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000010_dd4acbae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000011_2db100ef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000011_2db100ef.szar new file mode 100644 index 00000000..53046783 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000011_2db100ef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000012_4595932d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000012_4595932d.szar new file mode 100644 index 00000000..a7226414 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000012_4595932d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000013_e6d76fb2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000013_e6d76fb2.szar new file mode 100644 index 00000000..aa6817b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000013_e6d76fb2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000014_6a92d787.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000014_6a92d787.szar new file mode 100644 index 00000000..1f4eafa8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000014_6a92d787.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000015_5228e5e8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000015_5228e5e8.szar new file mode 100644 index 00000000..82588152 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000015_5228e5e8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000016_0bb7b224.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000016_0bb7b224.szar new file mode 100644 index 00000000..13a7235e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000016_0bb7b224.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000017_82e05c33.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000017_82e05c33.szar new file mode 100644 index 00000000..fa29153e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000017_82e05c33.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000018_faee61db.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000018_faee61db.szar new file mode 100644 index 00000000..1000cd87 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000018_faee61db.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000019_61bcfd12.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000019_61bcfd12.szar new file mode 100644 index 00000000..58cdfc81 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000019_61bcfd12.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000020_83767513.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000020_83767513.szar new file mode 100644 index 00000000..f7d8ecd8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000020_83767513.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000021_68412363.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000021_68412363.szar new file mode 100644 index 00000000..4f380b86 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000021_68412363.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000022_94284771.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000022_94284771.szar new file mode 100644 index 00000000..f14ab801 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000022_94284771.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000023_310b65e7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000023_310b65e7.szar new file mode 100644 index 00000000..b0a25a51 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000023_310b65e7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000024_42a6f5cb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000024_42a6f5cb.szar new file mode 100644 index 00000000..e2c0761a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000024_42a6f5cb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000025_18ad077b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000025_18ad077b.szar new file mode 100644 index 00000000..37f5ffb7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000025_18ad077b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000026_51ba5f89.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000026_51ba5f89.szar new file mode 100644 index 00000000..015b9425 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000026_51ba5f89.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000027_76319f84.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000027_76319f84.szar new file mode 100644 index 00000000..fc0fb463 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000027_76319f84.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000028_5765aeba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000028_5765aeba.szar new file mode 100644 index 00000000..a8994959 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000028_5765aeba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000029_d54d07ca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000029_d54d07ca.szar new file mode 100644 index 00000000..373dd358 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000029_d54d07ca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000030_58947d96.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000030_58947d96.szar new file mode 100644 index 00000000..4bd616da Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000030_58947d96.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000031_3344b7da.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000031_3344b7da.szar new file mode 100644 index 00000000..edee4371 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000031_3344b7da.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000032_ed9b1c32.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000032_ed9b1c32.szar new file mode 100644 index 00000000..00af6d42 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000032_ed9b1c32.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000033_b4f0d7f9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000033_b4f0d7f9.szar new file mode 100644 index 00000000..98e746d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000033_b4f0d7f9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000034_54f3b3a5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000034_54f3b3a5.szar new file mode 100644 index 00000000..e8868e63 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000034_54f3b3a5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000035_c3cf495f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000035_c3cf495f.szar new file mode 100644 index 00000000..570de9d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000035_c3cf495f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000036_35bb17df.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000036_35bb17df.szar new file mode 100644 index 00000000..b689803b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000036_35bb17df.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000037_681428e4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000037_681428e4.szar new file mode 100644 index 00000000..0022ae4c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000037_681428e4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000038_743a22c9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000038_743a22c9.szar new file mode 100644 index 00000000..249b08d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000038_743a22c9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000039_8ace3726.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000039_8ace3726.szar new file mode 100644 index 00000000..a16d1f61 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000039_8ace3726.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000040_b10f378f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000040_b10f378f.szar new file mode 100644 index 00000000..ddcd831a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000040_b10f378f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000041_abb81c51.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000041_abb81c51.szar new file mode 100644 index 00000000..a7fe8363 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000041_abb81c51.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000042_7a400258.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000042_7a400258.szar new file mode 100644 index 00000000..83c134c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000042_7a400258.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000043_a049e6f0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000043_a049e6f0.szar new file mode 100644 index 00000000..3cf10ebf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000043_a049e6f0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000044_595d3c00.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000044_595d3c00.szar new file mode 100644 index 00000000..9f022feb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000044_595d3c00.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000045_93a042d6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000045_93a042d6.szar new file mode 100644 index 00000000..937baeb2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000045_93a042d6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000046_26ab56b3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000046_26ab56b3.szar new file mode 100644 index 00000000..461b5c92 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000046_26ab56b3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000047_c7ba793e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000047_c7ba793e.szar new file mode 100644 index 00000000..b0eb3c8e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000047_c7ba793e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000048_0215a742.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000048_0215a742.szar new file mode 100644 index 00000000..0637ecbd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000048_0215a742.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000049_2f374958.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000049_2f374958.szar new file mode 100644 index 00000000..5aad7072 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000049_2f374958.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000050_0e413407.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000050_0e413407.szar new file mode 100644 index 00000000..87724a76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000050_0e413407.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000051_14357f1e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000051_14357f1e.szar new file mode 100644 index 00000000..01ae97eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000051_14357f1e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000052_f401f31b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000052_f401f31b.szar new file mode 100644 index 00000000..c35f0dff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000052_f401f31b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000053_5d10a6aa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000053_5d10a6aa.szar new file mode 100644 index 00000000..86f4781e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000053_5d10a6aa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000054_27d5dfe8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000054_27d5dfe8.szar new file mode 100644 index 00000000..e4622d5a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000054_27d5dfe8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000055_dc751961.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000055_dc751961.szar new file mode 100644 index 00000000..f0b18c19 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000055_dc751961.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000056_f91dc48a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000056_f91dc48a.szar new file mode 100644 index 00000000..5b3f0e67 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000056_f91dc48a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000057_f8985620.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000057_f8985620.szar new file mode 100644 index 00000000..b076b839 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000057_f8985620.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000058_2cddcd05.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000058_2cddcd05.szar new file mode 100644 index 00000000..e0924a0e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000058_2cddcd05.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000059_f9535a14.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000059_f9535a14.szar new file mode 100644 index 00000000..3814e254 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000059_f9535a14.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000060_6c6c4efc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000060_6c6c4efc.szar new file mode 100644 index 00000000..5eb89abe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000060_6c6c4efc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000061_b6839448.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000061_b6839448.szar new file mode 100644 index 00000000..ab33df83 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000061_b6839448.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000062_5dba0207.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000062_5dba0207.szar new file mode 100644 index 00000000..978cba65 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000062_5dba0207.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000063_f107ebdb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000063_f107ebdb.szar new file mode 100644 index 00000000..790b944d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000063_f107ebdb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000064_7da15aa6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000064_7da15aa6.szar new file mode 100644 index 00000000..a2c27398 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000064_7da15aa6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000065_c9a1bc04.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000065_c9a1bc04.szar new file mode 100644 index 00000000..ba5733ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000065_c9a1bc04.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000066_b3675191.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000066_b3675191.szar new file mode 100644 index 00000000..d13c0f38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000066_b3675191.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000067_57ebace2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000067_57ebace2.szar new file mode 100644 index 00000000..b0cc2611 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000067_57ebace2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000068_5a151e01.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000068_5a151e01.szar new file mode 100644 index 00000000..33d2eb50 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000068_5a151e01.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000069_5638fdc2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000069_5638fdc2.szar new file mode 100644 index 00000000..7b72809f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000069_5638fdc2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000070_96cb6183.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000070_96cb6183.szar new file mode 100644 index 00000000..bcbfc1e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000070_96cb6183.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000071_7e513713.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000071_7e513713.szar new file mode 100644 index 00000000..31c0b064 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000071_7e513713.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000072_c652169b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000072_c652169b.szar new file mode 100644 index 00000000..79fc1a06 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000072_c652169b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000073_583e7cfc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000073_583e7cfc.szar new file mode 100644 index 00000000..5d956c63 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000073_583e7cfc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000074_19d2ab35.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000074_19d2ab35.szar new file mode 100644 index 00000000..ff2c34f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000074_19d2ab35.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000075_26bc07ad.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000075_26bc07ad.szar new file mode 100644 index 00000000..28147476 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000075_26bc07ad.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000076_65244e52.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000076_65244e52.szar new file mode 100644 index 00000000..a9d2bbd2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000076_65244e52.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000077_9745c739.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000077_9745c739.szar new file mode 100644 index 00000000..6d517a32 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000077_9745c739.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000078_ec7b94a7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000078_ec7b94a7.szar new file mode 100644 index 00000000..997a7ddb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000078_ec7b94a7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000079_8b65d66f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000079_8b65d66f.szar new file mode 100644 index 00000000..09b82558 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000079_8b65d66f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000080_8f55b2a4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000080_8f55b2a4.szar new file mode 100644 index 00000000..8f71757b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000080_8f55b2a4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000081_71a4d813.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000081_71a4d813.szar new file mode 100644 index 00000000..a6e8fc17 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000081_71a4d813.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000082_cbc80814.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000082_cbc80814.szar new file mode 100644 index 00000000..56927250 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000082_cbc80814.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000083_a3121bc7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000083_a3121bc7.szar new file mode 100644 index 00000000..3d9d78e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000083_a3121bc7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000084_88ba1949.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000084_88ba1949.szar new file mode 100644 index 00000000..a66f7bac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000084_88ba1949.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000085_09f9b79e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000085_09f9b79e.szar new file mode 100644 index 00000000..a837ef22 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000085_09f9b79e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000086_60f977f8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000086_60f977f8.szar new file mode 100644 index 00000000..fd92b670 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000086_60f977f8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000087_f326f523.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000087_f326f523.szar new file mode 100644 index 00000000..4ddf5ef2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000087_f326f523.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000088_bb84dfbb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000088_bb84dfbb.szar new file mode 100644 index 00000000..705cd601 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/archive/delta_00000000000000000088_bb84dfbb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000001_ae55d03d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000001_ae55d03d.szcp new file mode 100644 index 00000000..6fb7594b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000001_ae55d03d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000002_b76e0e58.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000002_b76e0e58.szcp new file mode 100644 index 00000000..6d1f97d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000002_b76e0e58.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000003_bb9c5d06.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000003_bb9c5d06.szcp new file mode 100644 index 00000000..e8c17d6d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000003_bb9c5d06.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000004_52449254.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000004_52449254.szcp new file mode 100644 index 00000000..719a9001 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000004_52449254.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000005_06dd2de5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000005_06dd2de5.szcp new file mode 100644 index 00000000..68f60cc3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000005_06dd2de5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000006_d5a6d7df.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000006_d5a6d7df.szcp new file mode 100644 index 00000000..49721c73 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000006_d5a6d7df.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000007_af05cfeb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000007_af05cfeb.szcp new file mode 100644 index 00000000..8551e305 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000007_af05cfeb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000008_82d7aa88.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000008_82d7aa88.szcp new file mode 100644 index 00000000..33e3a6cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000008_82d7aa88.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000009_e324d697.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000009_e324d697.szcp new file mode 100644 index 00000000..ef7d6b1f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000009_e324d697.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000010_301b9b8b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000010_301b9b8b.szcp new file mode 100644 index 00000000..da219f6b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000010_301b9b8b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000011_17ad4ab2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000011_17ad4ab2.szcp new file mode 100644 index 00000000..0c924339 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000011_17ad4ab2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000012_da2efccb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000012_da2efccb.szcp new file mode 100644 index 00000000..391cb589 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000012_da2efccb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000013_cba02126.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000013_cba02126.szcp new file mode 100644 index 00000000..08f7145a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000013_cba02126.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000014_1518cb5d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000014_1518cb5d.szcp new file mode 100644 index 00000000..7de55385 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000014_1518cb5d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000015_ad36fdeb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000015_ad36fdeb.szcp new file mode 100644 index 00000000..44c7922f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000015_ad36fdeb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000016_0c4ca7ca.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000016_0c4ca7ca.szcp new file mode 100644 index 00000000..52cdccce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000016_0c4ca7ca.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000017_672b7c60.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000017_672b7c60.szcp new file mode 100644 index 00000000..7e5efb4b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000017_672b7c60.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000018_ab9242a9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000018_ab9242a9.szcp new file mode 100644 index 00000000..10fd6038 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000018_ab9242a9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000019_9f6dcc0a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000019_9f6dcc0a.szcp new file mode 100644 index 00000000..da07f64b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000019_9f6dcc0a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000020_231a352c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000020_231a352c.szcp new file mode 100644 index 00000000..22a225c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000020_231a352c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000021_1db9410c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000021_1db9410c.szcp new file mode 100644 index 00000000..07ba2f6e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000021_1db9410c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000022_b370df44.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000022_b370df44.szcp new file mode 100644 index 00000000..e27e9cf8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000022_b370df44.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000023_3e3fda92.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000023_3e3fda92.szcp new file mode 100644 index 00000000..4d53781f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000023_3e3fda92.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000024_9dd37c64.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000024_9dd37c64.szcp new file mode 100644 index 00000000..ed087622 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000024_9dd37c64.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000025_798f155b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000025_798f155b.szcp new file mode 100644 index 00000000..20733f5e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000025_798f155b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000026_bdc5e2fb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000026_bdc5e2fb.szcp new file mode 100644 index 00000000..2aeecadc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000026_bdc5e2fb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000027_ed58d672.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000027_ed58d672.szcp new file mode 100644 index 00000000..a1008928 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000027_ed58d672.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000028_320a50ab.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000028_320a50ab.szcp new file mode 100644 index 00000000..b72ff735 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000028_320a50ab.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000029_22ad91e5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000029_22ad91e5.szcp new file mode 100644 index 00000000..a4ae416c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000029_22ad91e5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000030_e7002353.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000030_e7002353.szcp new file mode 100644 index 00000000..a7664153 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000030_e7002353.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000031_22d57c5c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000031_22d57c5c.szcp new file mode 100644 index 00000000..1859ab9d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000031_22d57c5c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000032_25cdd243.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000032_25cdd243.szcp new file mode 100644 index 00000000..144f50e9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000032_25cdd243.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000033_a45c8cbb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000033_a45c8cbb.szcp new file mode 100644 index 00000000..f04f9a83 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000033_a45c8cbb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000034_65f083bf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000034_65f083bf.szcp new file mode 100644 index 00000000..9af9d971 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000034_65f083bf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000035_19b464a8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000035_19b464a8.szcp new file mode 100644 index 00000000..574858a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000035_19b464a8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000036_976b91a2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000036_976b91a2.szcp new file mode 100644 index 00000000..bb4c481c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000036_976b91a2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000037_22c2d81c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000037_22c2d81c.szcp new file mode 100644 index 00000000..04cca3e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000037_22c2d81c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000038_d023a830.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000038_d023a830.szcp new file mode 100644 index 00000000..34e26ff3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000038_d023a830.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000039_98bec977.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000039_98bec977.szcp new file mode 100644 index 00000000..0c2f4913 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000039_98bec977.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000040_5d1dafe7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000040_5d1dafe7.szcp new file mode 100644 index 00000000..29e1f934 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000040_5d1dafe7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000041_a98ec1ad.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000041_a98ec1ad.szcp new file mode 100644 index 00000000..962d03bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000041_a98ec1ad.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000042_47ffed51.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000042_47ffed51.szcp new file mode 100644 index 00000000..4718e329 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000042_47ffed51.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000043_e33faa8d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000043_e33faa8d.szcp new file mode 100644 index 00000000..3fe03e7b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000043_e33faa8d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000044_db73ca6c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000044_db73ca6c.szcp new file mode 100644 index 00000000..8b53787a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000044_db73ca6c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000045_4abb8640.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000045_4abb8640.szcp new file mode 100644 index 00000000..7763e083 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000045_4abb8640.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000046_8a723c8f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000046_8a723c8f.szcp new file mode 100644 index 00000000..5cac5a58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000046_8a723c8f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000047_e93ef774.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000047_e93ef774.szcp new file mode 100644 index 00000000..4f68a2a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000047_e93ef774.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000048_ba3e41c9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000048_ba3e41c9.szcp new file mode 100644 index 00000000..e7714264 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000048_ba3e41c9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000049_70bf2379.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000049_70bf2379.szcp new file mode 100644 index 00000000..71555c86 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000049_70bf2379.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000050_99b8c357.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000050_99b8c357.szcp new file mode 100644 index 00000000..7ccef513 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000050_99b8c357.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000051_f655d42b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000051_f655d42b.szcp new file mode 100644 index 00000000..fcd96e8f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000051_f655d42b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000052_7bb26666.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000052_7bb26666.szcp new file mode 100644 index 00000000..69bed27e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000052_7bb26666.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000053_71c8d5f6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000053_71c8d5f6.szcp new file mode 100644 index 00000000..36776df0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000053_71c8d5f6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000054_6aa02e34.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000054_6aa02e34.szcp new file mode 100644 index 00000000..8bcd1b72 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000054_6aa02e34.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000055_45317dba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000055_45317dba.szcp new file mode 100644 index 00000000..783b3d92 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000055_45317dba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000056_82b7172a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000056_82b7172a.szcp new file mode 100644 index 00000000..481ec306 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000056_82b7172a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000057_15bb7414.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000057_15bb7414.szcp new file mode 100644 index 00000000..ef4799b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000057_15bb7414.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000058_470e168c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000058_470e168c.szcp new file mode 100644 index 00000000..ca6fa929 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000058_470e168c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000059_1e339f5f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000059_1e339f5f.szcp new file mode 100644 index 00000000..96b3da62 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000059_1e339f5f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000060_e155232e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000060_e155232e.szcp new file mode 100644 index 00000000..f9c6bc04 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000060_e155232e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000061_057ee071.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000061_057ee071.szcp new file mode 100644 index 00000000..01e2cca9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000061_057ee071.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000062_b90e298c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000062_b90e298c.szcp new file mode 100644 index 00000000..d43412d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000062_b90e298c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000063_1993d883.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000063_1993d883.szcp new file mode 100644 index 00000000..119c0328 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000063_1993d883.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000064_bab15573.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000064_bab15573.szcp new file mode 100644 index 00000000..d01355ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000064_bab15573.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000065_757749a9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000065_757749a9.szcp new file mode 100644 index 00000000..015363e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000065_757749a9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000066_9bb63aaf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000066_9bb63aaf.szcp new file mode 100644 index 00000000..7799bafa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000066_9bb63aaf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000067_f429b40d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000067_f429b40d.szcp new file mode 100644 index 00000000..307ad1cb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000067_f429b40d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000068_dc2a06fd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000068_dc2a06fd.szcp new file mode 100644 index 00000000..14de463e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000068_dc2a06fd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000069_b2bdf885.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000069_b2bdf885.szcp new file mode 100644 index 00000000..95dceebb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000069_b2bdf885.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000070_1868549e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000070_1868549e.szcp new file mode 100644 index 00000000..c37fbf17 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000070_1868549e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000071_c3ef6295.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000071_c3ef6295.szcp new file mode 100644 index 00000000..5df226f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000071_c3ef6295.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000072_830dc40c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000072_830dc40c.szcp new file mode 100644 index 00000000..634b7e7d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000072_830dc40c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000073_8da89c5f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000073_8da89c5f.szcp new file mode 100644 index 00000000..88121c12 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000073_8da89c5f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000074_d4ed942c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000074_d4ed942c.szcp new file mode 100644 index 00000000..49832b87 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000074_d4ed942c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000075_19c0dd3a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000075_19c0dd3a.szcp new file mode 100644 index 00000000..ffdf65f3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000075_19c0dd3a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000076_8f348fed.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000076_8f348fed.szcp new file mode 100644 index 00000000..70d181af Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000076_8f348fed.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000077_2b0b21ae.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000077_2b0b21ae.szcp new file mode 100644 index 00000000..cf3f66d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000077_2b0b21ae.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000078_dfa58fe7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000078_dfa58fe7.szcp new file mode 100644 index 00000000..71dbeeaf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000078_dfa58fe7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000079_f349092e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000079_f349092e.szcp new file mode 100644 index 00000000..03d1a2d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000079_f349092e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000080_3b0830a9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000080_3b0830a9.szcp new file mode 100644 index 00000000..649be658 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000080_3b0830a9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000081_daf1899e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000081_daf1899e.szcp new file mode 100644 index 00000000..f396ddb1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000081_daf1899e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000082_9cb6d061.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000082_9cb6d061.szcp new file mode 100644 index 00000000..ef937348 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000082_9cb6d061.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000083_8fa53523.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000083_8fa53523.szcp new file mode 100644 index 00000000..7f982779 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000083_8fa53523.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000084_cd52cc45.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000084_cd52cc45.szcp new file mode 100644 index 00000000..a1d63541 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000084_cd52cc45.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000085_e5b4d481.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000085_e5b4d481.szcp new file mode 100644 index 00000000..94d56c2b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000085_e5b4d481.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000086_87b613dd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000086_87b613dd.szcp new file mode 100644 index 00000000..c0c9cdc9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000086_87b613dd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000087_5892693b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000087_5892693b.szcp new file mode 100644 index 00000000..3aa6552a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000087_5892693b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000088_37c5b172.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000088_37c5b172.szcp new file mode 100644 index 00000000..e4793822 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_017/checkpoints/checkpoint_00000000000000000088_37c5b172.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000001_ae3f6834.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000001_ae3f6834.szar new file mode 100644 index 00000000..c00dd9b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000001_ae3f6834.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000002_3a7a7a70.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000002_3a7a7a70.szar new file mode 100644 index 00000000..986453bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000002_3a7a7a70.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000003_ce9f9f61.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000003_ce9f9f61.szar new file mode 100644 index 00000000..fba59722 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000003_ce9f9f61.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000004_30a7d955.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000004_30a7d955.szar new file mode 100644 index 00000000..b6b0c43b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000004_30a7d955.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000005_9cd7d016.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000005_9cd7d016.szar new file mode 100644 index 00000000..e221989e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000005_9cd7d016.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000006_b72c8fd9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000006_b72c8fd9.szar new file mode 100644 index 00000000..0aff6045 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000006_b72c8fd9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000007_f353f891.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000007_f353f891.szar new file mode 100644 index 00000000..9799de64 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000007_f353f891.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000008_c8917a6d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000008_c8917a6d.szar new file mode 100644 index 00000000..0bcc7fe2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000008_c8917a6d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000009_1f385b04.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000009_1f385b04.szar new file mode 100644 index 00000000..2c93a81e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000009_1f385b04.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000010_6e09a6cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000010_6e09a6cc.szar new file mode 100644 index 00000000..2e106d57 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000010_6e09a6cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000011_29f1abc0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000011_29f1abc0.szar new file mode 100644 index 00000000..0c9a49ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000011_29f1abc0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000012_c0ea66e0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000012_c0ea66e0.szar new file mode 100644 index 00000000..600f003b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000012_c0ea66e0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000013_ca3d1dca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000013_ca3d1dca.szar new file mode 100644 index 00000000..ed707ea1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000013_ca3d1dca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000014_8ed77d44.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000014_8ed77d44.szar new file mode 100644 index 00000000..45ab65c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000014_8ed77d44.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000015_4f25e50b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000015_4f25e50b.szar new file mode 100644 index 00000000..5efb70c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000015_4f25e50b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000016_0fa0af87.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000016_0fa0af87.szar new file mode 100644 index 00000000..90fcd714 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000016_0fa0af87.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000017_0b856105.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000017_0b856105.szar new file mode 100644 index 00000000..ca233f4a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000017_0b856105.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000018_b0b4cbc5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000018_b0b4cbc5.szar new file mode 100644 index 00000000..4a02b8b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000018_b0b4cbc5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000019_457716e1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000019_457716e1.szar new file mode 100644 index 00000000..77394f20 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000019_457716e1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000020_d53d7f4e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000020_d53d7f4e.szar new file mode 100644 index 00000000..6799f7e4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000020_d53d7f4e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000021_ed1f10b4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000021_ed1f10b4.szar new file mode 100644 index 00000000..241b845d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000021_ed1f10b4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000022_060e1e49.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000022_060e1e49.szar new file mode 100644 index 00000000..8a61cf58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000022_060e1e49.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000023_1f0596ec.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000023_1f0596ec.szar new file mode 100644 index 00000000..0e74fe33 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000023_1f0596ec.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000024_b9f90daf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000024_b9f90daf.szar new file mode 100644 index 00000000..e17e43a9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000024_b9f90daf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000025_b511408f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000025_b511408f.szar new file mode 100644 index 00000000..db852482 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000025_b511408f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000026_2310b691.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000026_2310b691.szar new file mode 100644 index 00000000..772f6854 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000026_2310b691.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000027_3816ccd7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000027_3816ccd7.szar new file mode 100644 index 00000000..28fcd60b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000027_3816ccd7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000028_5767a5ea.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000028_5767a5ea.szar new file mode 100644 index 00000000..277c9f77 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000028_5767a5ea.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000029_75857842.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000029_75857842.szar new file mode 100644 index 00000000..714b0901 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000029_75857842.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000030_9eddb6ae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000030_9eddb6ae.szar new file mode 100644 index 00000000..4c397e62 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000030_9eddb6ae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000031_9695f2ef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000031_9695f2ef.szar new file mode 100644 index 00000000..ae607a2f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000031_9695f2ef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000032_3acc5f35.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000032_3acc5f35.szar new file mode 100644 index 00000000..bed54f2d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000032_3acc5f35.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000033_d69caa80.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000033_d69caa80.szar new file mode 100644 index 00000000..6a7f7144 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000033_d69caa80.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000034_0da2dc52.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000034_0da2dc52.szar new file mode 100644 index 00000000..4f0fae3d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000034_0da2dc52.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000035_710d83d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000035_710d83d7.szar new file mode 100644 index 00000000..c1530f93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000035_710d83d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000036_fd041cf9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000036_fd041cf9.szar new file mode 100644 index 00000000..bc3bfa6b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000036_fd041cf9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000037_6f053f57.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000037_6f053f57.szar new file mode 100644 index 00000000..f8df97e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000037_6f053f57.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000038_4f1d5740.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000038_4f1d5740.szar new file mode 100644 index 00000000..8e3a2d84 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000038_4f1d5740.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000039_1586fc03.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000039_1586fc03.szar new file mode 100644 index 00000000..869165db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000039_1586fc03.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000040_ab40f2e8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000040_ab40f2e8.szar new file mode 100644 index 00000000..4e0818c9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000040_ab40f2e8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000041_10ec93cd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000041_10ec93cd.szar new file mode 100644 index 00000000..75c8400a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000041_10ec93cd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000042_1ca335bf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000042_1ca335bf.szar new file mode 100644 index 00000000..2c5b3356 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000042_1ca335bf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000043_38a4795a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000043_38a4795a.szar new file mode 100644 index 00000000..f531a710 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000043_38a4795a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000044_78e3cc6d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000044_78e3cc6d.szar new file mode 100644 index 00000000..4a371619 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000044_78e3cc6d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000045_8e8ffb08.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000045_8e8ffb08.szar new file mode 100644 index 00000000..9c9d3534 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000045_8e8ffb08.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000046_081ca0ea.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000046_081ca0ea.szar new file mode 100644 index 00000000..20b2151b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000046_081ca0ea.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000047_bbf6b8db.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000047_bbf6b8db.szar new file mode 100644 index 00000000..e002af8b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000047_bbf6b8db.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000048_69af7e34.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000048_69af7e34.szar new file mode 100644 index 00000000..e09e2e9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000048_69af7e34.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000049_64633ff1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000049_64633ff1.szar new file mode 100644 index 00000000..e30bf75d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000049_64633ff1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000050_5617a9f7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000050_5617a9f7.szar new file mode 100644 index 00000000..7e63e94a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000050_5617a9f7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000051_d3bbdbfe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000051_d3bbdbfe.szar new file mode 100644 index 00000000..fde76737 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000051_d3bbdbfe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000052_60b4dd86.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000052_60b4dd86.szar new file mode 100644 index 00000000..62c6dcb7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000052_60b4dd86.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000053_bf300b72.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000053_bf300b72.szar new file mode 100644 index 00000000..440efd79 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000053_bf300b72.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000054_afae1257.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000054_afae1257.szar new file mode 100644 index 00000000..28cf3e40 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000054_afae1257.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000055_d80cc805.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000055_d80cc805.szar new file mode 100644 index 00000000..aeb18a37 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000055_d80cc805.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000056_e623456c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000056_e623456c.szar new file mode 100644 index 00000000..b550a2ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000056_e623456c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000057_b2b470e2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000057_b2b470e2.szar new file mode 100644 index 00000000..a7303964 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/archive/delta_00000000000000000057_b2b470e2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000001_b3904abd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000001_b3904abd.szcp new file mode 100644 index 00000000..8b29e2e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000001_b3904abd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000002_0c921815.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000002_0c921815.szcp new file mode 100644 index 00000000..21bef280 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000002_0c921815.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000003_2da89bd2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000003_2da89bd2.szcp new file mode 100644 index 00000000..829fbe7e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000003_2da89bd2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000004_b3a4748d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000004_b3a4748d.szcp new file mode 100644 index 00000000..caed6b3b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000004_b3a4748d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000005_1cba8e06.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000005_1cba8e06.szcp new file mode 100644 index 00000000..f6bafdf7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000005_1cba8e06.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000006_380dbe24.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000006_380dbe24.szcp new file mode 100644 index 00000000..f8f15564 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000006_380dbe24.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000007_c87fde62.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000007_c87fde62.szcp new file mode 100644 index 00000000..81ae7992 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000007_c87fde62.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000008_d0ee4c34.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000008_d0ee4c34.szcp new file mode 100644 index 00000000..62757646 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000008_d0ee4c34.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000009_f7f7a29f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000009_f7f7a29f.szcp new file mode 100644 index 00000000..55ee441d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000009_f7f7a29f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000010_7aa303a4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000010_7aa303a4.szcp new file mode 100644 index 00000000..cef9350b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000010_7aa303a4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000011_5bc25f5a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000011_5bc25f5a.szcp new file mode 100644 index 00000000..9aad168f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000011_5bc25f5a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000012_e5bd19dc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000012_e5bd19dc.szcp new file mode 100644 index 00000000..482da560 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000012_e5bd19dc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000013_e47060ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000013_e47060ce.szcp new file mode 100644 index 00000000..15e622ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000013_e47060ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000014_b20a210a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000014_b20a210a.szcp new file mode 100644 index 00000000..4ffc631f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000014_b20a210a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000015_b4fe6128.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000015_b4fe6128.szcp new file mode 100644 index 00000000..af388290 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000015_b4fe6128.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000016_5cfb095c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000016_5cfb095c.szcp new file mode 100644 index 00000000..c34a4b2d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000016_5cfb095c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000017_fcb6f363.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000017_fcb6f363.szcp new file mode 100644 index 00000000..d7ea3f5c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000017_fcb6f363.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000018_90bc6782.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000018_90bc6782.szcp new file mode 100644 index 00000000..6752d4de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000018_90bc6782.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000019_2d5236fa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000019_2d5236fa.szcp new file mode 100644 index 00000000..428b6f3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000019_2d5236fa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000020_d901e76b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000020_d901e76b.szcp new file mode 100644 index 00000000..cc7aeee1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000020_d901e76b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000021_e408518f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000021_e408518f.szcp new file mode 100644 index 00000000..720826bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000021_e408518f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000022_e0b9f08d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000022_e0b9f08d.szcp new file mode 100644 index 00000000..19b9d740 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000022_e0b9f08d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000023_13387c6b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000023_13387c6b.szcp new file mode 100644 index 00000000..1aaea0d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000023_13387c6b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000024_f7d1c41e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000024_f7d1c41e.szcp new file mode 100644 index 00000000..3d0b8470 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000024_f7d1c41e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000025_ae1c41cd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000025_ae1c41cd.szcp new file mode 100644 index 00000000..b39386d0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000025_ae1c41cd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000026_3df458b0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000026_3df458b0.szcp new file mode 100644 index 00000000..13c948c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000026_3df458b0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000027_1a35f44e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000027_1a35f44e.szcp new file mode 100644 index 00000000..d8f9b831 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000027_1a35f44e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000028_bbf99f8f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000028_bbf99f8f.szcp new file mode 100644 index 00000000..5e676864 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000028_bbf99f8f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000029_cb76e5d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000029_cb76e5d7.szcp new file mode 100644 index 00000000..5fb435d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000029_cb76e5d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000030_6df5c740.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000030_6df5c740.szcp new file mode 100644 index 00000000..2fe28ab0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000030_6df5c740.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000031_f0662f2a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000031_f0662f2a.szcp new file mode 100644 index 00000000..7bcc9420 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000031_f0662f2a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000032_bb8a6b33.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000032_bb8a6b33.szcp new file mode 100644 index 00000000..8639fa21 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000032_bb8a6b33.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000033_0d3550d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000033_0d3550d1.szcp new file mode 100644 index 00000000..256017c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000033_0d3550d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000034_910ed1b2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000034_910ed1b2.szcp new file mode 100644 index 00000000..3054a97a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000034_910ed1b2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000035_5ac05109.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000035_5ac05109.szcp new file mode 100644 index 00000000..b0c5a834 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000035_5ac05109.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000036_4b905331.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000036_4b905331.szcp new file mode 100644 index 00000000..f260daf1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000036_4b905331.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000037_1ecf8285.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000037_1ecf8285.szcp new file mode 100644 index 00000000..6c25a08a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000037_1ecf8285.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000038_5a284be7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000038_5a284be7.szcp new file mode 100644 index 00000000..3c099f1e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000038_5a284be7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000039_7a4dec23.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000039_7a4dec23.szcp new file mode 100644 index 00000000..2fc95f4f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000039_7a4dec23.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000040_a5fb731e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000040_a5fb731e.szcp new file mode 100644 index 00000000..c9c2ddaa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000040_a5fb731e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000041_b577b21c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000041_b577b21c.szcp new file mode 100644 index 00000000..b3442a62 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000041_b577b21c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000042_e61a5041.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000042_e61a5041.szcp new file mode 100644 index 00000000..9a2398b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000042_e61a5041.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000043_4aa492a3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000043_4aa492a3.szcp new file mode 100644 index 00000000..80aefab9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000043_4aa492a3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000044_80bebbbb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000044_80bebbbb.szcp new file mode 100644 index 00000000..fc24cb51 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000044_80bebbbb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000045_45f936a1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000045_45f936a1.szcp new file mode 100644 index 00000000..216e7b07 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000045_45f936a1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000046_85125971.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000046_85125971.szcp new file mode 100644 index 00000000..a43192ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000046_85125971.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000047_493919e0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000047_493919e0.szcp new file mode 100644 index 00000000..66c1efa7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000047_493919e0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000048_3ca0ba55.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000048_3ca0ba55.szcp new file mode 100644 index 00000000..1fe2dcb0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000048_3ca0ba55.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000049_5c650196.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000049_5c650196.szcp new file mode 100644 index 00000000..22b09035 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000049_5c650196.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000050_4707c099.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000050_4707c099.szcp new file mode 100644 index 00000000..50c41abe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000050_4707c099.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000051_947eae24.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000051_947eae24.szcp new file mode 100644 index 00000000..ab2e65cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000051_947eae24.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000052_0b9a93f8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000052_0b9a93f8.szcp new file mode 100644 index 00000000..595582b3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000052_0b9a93f8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000053_f8b73d1c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000053_f8b73d1c.szcp new file mode 100644 index 00000000..ac4319fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000053_f8b73d1c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000054_bacc0ee4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000054_bacc0ee4.szcp new file mode 100644 index 00000000..88119d93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000054_bacc0ee4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000055_4ed301c7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000055_4ed301c7.szcp new file mode 100644 index 00000000..cc816910 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000055_4ed301c7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000056_53124cb7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000056_53124cb7.szcp new file mode 100644 index 00000000..f2d53c3b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000056_53124cb7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000057_19f970d6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000057_19f970d6.szcp new file mode 100644 index 00000000..1f7f005d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_018/checkpoints/checkpoint_00000000000000000057_19f970d6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000001_23c239ba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000001_23c239ba.szar new file mode 100644 index 00000000..69d39d76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000001_23c239ba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000002_881ef156.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000002_881ef156.szar new file mode 100644 index 00000000..c259bf3f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000002_881ef156.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000003_ec592e8b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000003_ec592e8b.szar new file mode 100644 index 00000000..e1840193 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000003_ec592e8b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000004_b7c14f9b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000004_b7c14f9b.szar new file mode 100644 index 00000000..4fd07b35 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000004_b7c14f9b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000005_88ab2caa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000005_88ab2caa.szar new file mode 100644 index 00000000..49829fa3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000005_88ab2caa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000006_198b2ad2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000006_198b2ad2.szar new file mode 100644 index 00000000..cdaf2089 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000006_198b2ad2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000007_26df5df8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000007_26df5df8.szar new file mode 100644 index 00000000..c8afb5f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000007_26df5df8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000008_1fd08611.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000008_1fd08611.szar new file mode 100644 index 00000000..0f46980b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000008_1fd08611.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000009_aed13d41.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000009_aed13d41.szar new file mode 100644 index 00000000..c100d612 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000009_aed13d41.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000010_98849b70.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000010_98849b70.szar new file mode 100644 index 00000000..37fd0a6b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000010_98849b70.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000011_24174b11.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000011_24174b11.szar new file mode 100644 index 00000000..d94eee6a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000011_24174b11.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000012_8e3b77d5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000012_8e3b77d5.szar new file mode 100644 index 00000000..fd5a15d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000012_8e3b77d5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000013_bf148245.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000013_bf148245.szar new file mode 100644 index 00000000..54f83fd8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000013_bf148245.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000014_72325016.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000014_72325016.szar new file mode 100644 index 00000000..b8cb8a61 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000014_72325016.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000015_ad9ddf6a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000015_ad9ddf6a.szar new file mode 100644 index 00000000..8afede46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000015_ad9ddf6a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000016_951d6501.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000016_951d6501.szar new file mode 100644 index 00000000..0ac478f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000016_951d6501.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000017_e504ee54.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000017_e504ee54.szar new file mode 100644 index 00000000..3ff24415 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000017_e504ee54.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000018_ea750c06.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000018_ea750c06.szar new file mode 100644 index 00000000..31e27bcb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000018_ea750c06.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000019_867c7806.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000019_867c7806.szar new file mode 100644 index 00000000..60591c56 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000019_867c7806.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000020_fb3849a8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000020_fb3849a8.szar new file mode 100644 index 00000000..6f18048c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000020_fb3849a8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000021_7efa2502.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000021_7efa2502.szar new file mode 100644 index 00000000..fd9a983e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000021_7efa2502.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000022_c1db70d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000022_c1db70d7.szar new file mode 100644 index 00000000..88a58ec8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000022_c1db70d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000023_a543877a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000023_a543877a.szar new file mode 100644 index 00000000..46bf3e82 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000023_a543877a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000024_3844c524.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000024_3844c524.szar new file mode 100644 index 00000000..2922dc41 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000024_3844c524.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000025_2a2bcc8f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000025_2a2bcc8f.szar new file mode 100644 index 00000000..27087e31 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000025_2a2bcc8f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000026_9bccd659.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000026_9bccd659.szar new file mode 100644 index 00000000..b747155a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000026_9bccd659.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000027_941be55a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000027_941be55a.szar new file mode 100644 index 00000000..5696e1c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000027_941be55a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000028_b4aa134a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000028_b4aa134a.szar new file mode 100644 index 00000000..6bdac6ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000028_b4aa134a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000029_b37e6ec8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000029_b37e6ec8.szar new file mode 100644 index 00000000..935b9e16 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000029_b37e6ec8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000030_32c617e0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000030_32c617e0.szar new file mode 100644 index 00000000..3b66acf6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000030_32c617e0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000031_dda73e55.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000031_dda73e55.szar new file mode 100644 index 00000000..8432d286 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000031_dda73e55.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000032_749c5c18.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000032_749c5c18.szar new file mode 100644 index 00000000..fbf9c368 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000032_749c5c18.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000033_cefd79ca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000033_cefd79ca.szar new file mode 100644 index 00000000..1e755586 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000033_cefd79ca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000034_5ce4aca0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000034_5ce4aca0.szar new file mode 100644 index 00000000..4655c79e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000034_5ce4aca0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000035_9af9e323.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000035_9af9e323.szar new file mode 100644 index 00000000..bbe3d04d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000035_9af9e323.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000036_937e0ffd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000036_937e0ffd.szar new file mode 100644 index 00000000..74233bb0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000036_937e0ffd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000037_64b70dce.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000037_64b70dce.szar new file mode 100644 index 00000000..addde994 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000037_64b70dce.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000038_37c56673.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000038_37c56673.szar new file mode 100644 index 00000000..99e5dee3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000038_37c56673.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000039_8d9fa822.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000039_8d9fa822.szar new file mode 100644 index 00000000..c93585b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000039_8d9fa822.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000040_ccc04cb5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000040_ccc04cb5.szar new file mode 100644 index 00000000..bf82827d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000040_ccc04cb5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000041_f356ec02.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000041_f356ec02.szar new file mode 100644 index 00000000..b61027d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000041_f356ec02.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000042_d9bf00eb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000042_d9bf00eb.szar new file mode 100644 index 00000000..24f75e8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000042_d9bf00eb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000043_c0e95047.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000043_c0e95047.szar new file mode 100644 index 00000000..674a3b93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000043_c0e95047.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000044_bcf755bf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000044_bcf755bf.szar new file mode 100644 index 00000000..addc3961 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000044_bcf755bf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000045_ae9abe7a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000045_ae9abe7a.szar new file mode 100644 index 00000000..523a3029 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000045_ae9abe7a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000046_8f3f2bcc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000046_8f3f2bcc.szar new file mode 100644 index 00000000..82f7ec1b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000046_8f3f2bcc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000047_014a404b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000047_014a404b.szar new file mode 100644 index 00000000..1ddb9b14 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000047_014a404b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000048_85e8d9d5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000048_85e8d9d5.szar new file mode 100644 index 00000000..c187be03 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000048_85e8d9d5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000049_8d4eeb69.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000049_8d4eeb69.szar new file mode 100644 index 00000000..56a928f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000049_8d4eeb69.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000050_26237e3d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000050_26237e3d.szar new file mode 100644 index 00000000..5265757a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000050_26237e3d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000051_360c6eef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000051_360c6eef.szar new file mode 100644 index 00000000..bb8f14a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000051_360c6eef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000052_17ecda19.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000052_17ecda19.szar new file mode 100644 index 00000000..3ce8dcd8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000052_17ecda19.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000053_4a2673e9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000053_4a2673e9.szar new file mode 100644 index 00000000..0a0f509d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000053_4a2673e9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000054_d25b844b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000054_d25b844b.szar new file mode 100644 index 00000000..fd08713a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000054_d25b844b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000055_856ea9d4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000055_856ea9d4.szar new file mode 100644 index 00000000..358235e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000055_856ea9d4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000056_c5183eaa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000056_c5183eaa.szar new file mode 100644 index 00000000..a3b1b022 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000056_c5183eaa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000057_324acb35.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000057_324acb35.szar new file mode 100644 index 00000000..258969ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000057_324acb35.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000058_ab44d114.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000058_ab44d114.szar new file mode 100644 index 00000000..f063542a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000058_ab44d114.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000059_ab6f4b45.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000059_ab6f4b45.szar new file mode 100644 index 00000000..67d0d42c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000059_ab6f4b45.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000060_31f92197.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000060_31f92197.szar new file mode 100644 index 00000000..63018701 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000060_31f92197.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000061_342e198b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000061_342e198b.szar new file mode 100644 index 00000000..237fc1ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000061_342e198b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000062_f187bdfe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000062_f187bdfe.szar new file mode 100644 index 00000000..91c87f1b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000062_f187bdfe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000063_dbcb8cd5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000063_dbcb8cd5.szar new file mode 100644 index 00000000..88d1e312 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000063_dbcb8cd5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000064_56071611.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000064_56071611.szar new file mode 100644 index 00000000..7695e997 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000064_56071611.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000065_6bf872b1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000065_6bf872b1.szar new file mode 100644 index 00000000..f2fd8974 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/archive/delta_00000000000000000065_6bf872b1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000001_e6a5d020.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000001_e6a5d020.szcp new file mode 100644 index 00000000..adc29d72 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000001_e6a5d020.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000002_c8fd18a2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000002_c8fd18a2.szcp new file mode 100644 index 00000000..89879120 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000002_c8fd18a2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000003_a461a55a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000003_a461a55a.szcp new file mode 100644 index 00000000..df12fcb6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000003_a461a55a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000004_326bbe9a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000004_326bbe9a.szcp new file mode 100644 index 00000000..ce90611b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000004_326bbe9a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000005_8d74c83c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000005_8d74c83c.szcp new file mode 100644 index 00000000..2b94f7cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000005_8d74c83c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000006_cedb97eb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000006_cedb97eb.szcp new file mode 100644 index 00000000..f8a38e4c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000006_cedb97eb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000007_880a3e7b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000007_880a3e7b.szcp new file mode 100644 index 00000000..e736e562 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000007_880a3e7b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000008_5632a013.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000008_5632a013.szcp new file mode 100644 index 00000000..08f31021 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000008_5632a013.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000009_8a1b7e53.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000009_8a1b7e53.szcp new file mode 100644 index 00000000..15cbe570 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000009_8a1b7e53.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000010_3d1c01c2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000010_3d1c01c2.szcp new file mode 100644 index 00000000..c640eccf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000010_3d1c01c2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000011_1d1d091e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000011_1d1d091e.szcp new file mode 100644 index 00000000..799df3cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000011_1d1d091e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000012_6d982ef9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000012_6d982ef9.szcp new file mode 100644 index 00000000..560af6ae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000012_6d982ef9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000013_c39b4a23.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000013_c39b4a23.szcp new file mode 100644 index 00000000..5cff3dca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000013_c39b4a23.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000014_36618ee8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000014_36618ee8.szcp new file mode 100644 index 00000000..8cf98de5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000014_36618ee8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000015_11a0370d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000015_11a0370d.szcp new file mode 100644 index 00000000..a1efc11a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000015_11a0370d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000016_64c60bc5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000016_64c60bc5.szcp new file mode 100644 index 00000000..fbd40527 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000016_64c60bc5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000017_d2d3dfe8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000017_d2d3dfe8.szcp new file mode 100644 index 00000000..c6d045de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000017_d2d3dfe8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000018_4e0ce767.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000018_4e0ce767.szcp new file mode 100644 index 00000000..5e9a791d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000018_4e0ce767.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000019_3ef9284f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000019_3ef9284f.szcp new file mode 100644 index 00000000..e79b046a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000019_3ef9284f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000020_57890394.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000020_57890394.szcp new file mode 100644 index 00000000..091e97b6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000020_57890394.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000021_6cfe4e15.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000021_6cfe4e15.szcp new file mode 100644 index 00000000..7d744277 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000021_6cfe4e15.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000022_b75691b1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000022_b75691b1.szcp new file mode 100644 index 00000000..ca8bcc91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000022_b75691b1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000023_ad4a3eed.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000023_ad4a3eed.szcp new file mode 100644 index 00000000..5864a8b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000023_ad4a3eed.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000024_07e89cad.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000024_07e89cad.szcp new file mode 100644 index 00000000..7fd7ee32 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000024_07e89cad.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000025_656d7cd2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000025_656d7cd2.szcp new file mode 100644 index 00000000..9a0a956d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000025_656d7cd2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000026_9430835b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000026_9430835b.szcp new file mode 100644 index 00000000..1d8a94ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000026_9430835b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000027_f1534c88.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000027_f1534c88.szcp new file mode 100644 index 00000000..ddd03bff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000027_f1534c88.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000028_d8c9439a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000028_d8c9439a.szcp new file mode 100644 index 00000000..2542ef55 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000028_d8c9439a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000029_15dc5ad2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000029_15dc5ad2.szcp new file mode 100644 index 00000000..ec0c16b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000029_15dc5ad2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000030_1a9fd6a0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000030_1a9fd6a0.szcp new file mode 100644 index 00000000..913387cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000030_1a9fd6a0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000031_470531a7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000031_470531a7.szcp new file mode 100644 index 00000000..a162f122 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000031_470531a7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000032_c9cf02f5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000032_c9cf02f5.szcp new file mode 100644 index 00000000..4a295f72 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000032_c9cf02f5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000033_37e55686.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000033_37e55686.szcp new file mode 100644 index 00000000..7df380ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000033_37e55686.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000034_74f734ba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000034_74f734ba.szcp new file mode 100644 index 00000000..d0685f5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000034_74f734ba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000035_ae0dc657.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000035_ae0dc657.szcp new file mode 100644 index 00000000..4c07d502 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000035_ae0dc657.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000036_ad9f9126.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000036_ad9f9126.szcp new file mode 100644 index 00000000..e4d00675 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000036_ad9f9126.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000037_1bd957ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000037_1bd957ce.szcp new file mode 100644 index 00000000..468659f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000037_1bd957ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000038_45e5bc8b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000038_45e5bc8b.szcp new file mode 100644 index 00000000..2eed66cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000038_45e5bc8b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000039_8e3ae74e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000039_8e3ae74e.szcp new file mode 100644 index 00000000..28afaca0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000039_8e3ae74e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000040_06120e4c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000040_06120e4c.szcp new file mode 100644 index 00000000..eb390de7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000040_06120e4c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000041_c83decfe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000041_c83decfe.szcp new file mode 100644 index 00000000..41ad07d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000041_c83decfe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000042_62a393d2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000042_62a393d2.szcp new file mode 100644 index 00000000..d6086a9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000042_62a393d2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000043_3d2cfbdd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000043_3d2cfbdd.szcp new file mode 100644 index 00000000..e4ac61e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000043_3d2cfbdd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000044_7b377d19.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000044_7b377d19.szcp new file mode 100644 index 00000000..c42550ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000044_7b377d19.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000045_ba15e457.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000045_ba15e457.szcp new file mode 100644 index 00000000..4500267a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000045_ba15e457.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000046_cee6c1a1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000046_cee6c1a1.szcp new file mode 100644 index 00000000..26491b4a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000046_cee6c1a1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000047_a21ea39b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000047_a21ea39b.szcp new file mode 100644 index 00000000..0e3de0b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000047_a21ea39b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000048_596a5677.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000048_596a5677.szcp new file mode 100644 index 00000000..46103925 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000048_596a5677.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000049_a2680dcf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000049_a2680dcf.szcp new file mode 100644 index 00000000..4c9c2858 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000049_a2680dcf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000050_de117a93.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000050_de117a93.szcp new file mode 100644 index 00000000..cb17429c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000050_de117a93.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000051_d958da96.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000051_d958da96.szcp new file mode 100644 index 00000000..144e84d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000051_d958da96.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000052_f24ebf59.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000052_f24ebf59.szcp new file mode 100644 index 00000000..cb6f2318 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000052_f24ebf59.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000053_e4acf2a6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000053_e4acf2a6.szcp new file mode 100644 index 00000000..3860550c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000053_e4acf2a6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000054_2826ec15.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000054_2826ec15.szcp new file mode 100644 index 00000000..7a675b4e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000054_2826ec15.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000055_362e957e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000055_362e957e.szcp new file mode 100644 index 00000000..055e04cb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000055_362e957e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000056_92d3ff80.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000056_92d3ff80.szcp new file mode 100644 index 00000000..87c02f93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000056_92d3ff80.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000057_6f382045.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000057_6f382045.szcp new file mode 100644 index 00000000..9d155b96 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000057_6f382045.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000058_b5f2740d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000058_b5f2740d.szcp new file mode 100644 index 00000000..b896c5db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000058_b5f2740d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000059_2b39a8a7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000059_2b39a8a7.szcp new file mode 100644 index 00000000..22fbe69a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000059_2b39a8a7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000060_70318ce6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000060_70318ce6.szcp new file mode 100644 index 00000000..33580817 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000060_70318ce6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000061_16fa74ca.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000061_16fa74ca.szcp new file mode 100644 index 00000000..eb8b935e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000061_16fa74ca.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000062_94232ea4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000062_94232ea4.szcp new file mode 100644 index 00000000..b9931ca8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000062_94232ea4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000063_2cd9fd63.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000063_2cd9fd63.szcp new file mode 100644 index 00000000..1385ff22 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000063_2cd9fd63.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000064_0d523de6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000064_0d523de6.szcp new file mode 100644 index 00000000..ff9952c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000064_0d523de6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000065_004ebec0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000065_004ebec0.szcp new file mode 100644 index 00000000..fdd7fcce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_019/checkpoints/checkpoint_00000000000000000065_004ebec0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000001_333657a2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000001_333657a2.szar new file mode 100644 index 00000000..26912b90 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000001_333657a2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000002_5bdadfb8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000002_5bdadfb8.szar new file mode 100644 index 00000000..f20bea3d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000002_5bdadfb8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000003_436c091f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000003_436c091f.szar new file mode 100644 index 00000000..14c8e40c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000003_436c091f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000004_1d8f3e4b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000004_1d8f3e4b.szar new file mode 100644 index 00000000..97452c1f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000004_1d8f3e4b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000005_fefa748b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000005_fefa748b.szar new file mode 100644 index 00000000..1155ef00 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000005_fefa748b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000006_45bb4e77.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000006_45bb4e77.szar new file mode 100644 index 00000000..3178be54 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000006_45bb4e77.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000007_659e37bc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000007_659e37bc.szar new file mode 100644 index 00000000..33e1da76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000007_659e37bc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000008_1f87659f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000008_1f87659f.szar new file mode 100644 index 00000000..e6ad55c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000008_1f87659f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000009_e28084ae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000009_e28084ae.szar new file mode 100644 index 00000000..71818462 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000009_e28084ae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000010_281f5cf9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000010_281f5cf9.szar new file mode 100644 index 00000000..82bc6cd2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000010_281f5cf9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000011_15d40064.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000011_15d40064.szar new file mode 100644 index 00000000..9884fe47 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000011_15d40064.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000012_c20685c2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000012_c20685c2.szar new file mode 100644 index 00000000..da09d7ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000012_c20685c2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000013_a7c08570.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000013_a7c08570.szar new file mode 100644 index 00000000..dbd0b2a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000013_a7c08570.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000014_6d37f9e7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000014_6d37f9e7.szar new file mode 100644 index 00000000..5434f246 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000014_6d37f9e7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000015_41c5b2d5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000015_41c5b2d5.szar new file mode 100644 index 00000000..567bd91a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000015_41c5b2d5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000016_cda65b5c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000016_cda65b5c.szar new file mode 100644 index 00000000..dcbe455c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000016_cda65b5c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000017_ff8fa974.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000017_ff8fa974.szar new file mode 100644 index 00000000..8fd0dcef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000017_ff8fa974.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000018_22691b31.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000018_22691b31.szar new file mode 100644 index 00000000..7eef17c9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000018_22691b31.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000019_b6100e7f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000019_b6100e7f.szar new file mode 100644 index 00000000..0aa9d5aa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000019_b6100e7f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000020_61851a8a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000020_61851a8a.szar new file mode 100644 index 00000000..73c58c73 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000020_61851a8a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000021_d5f9e45a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000021_d5f9e45a.szar new file mode 100644 index 00000000..98f24544 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000021_d5f9e45a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000022_72be0753.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000022_72be0753.szar new file mode 100644 index 00000000..38cb24f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000022_72be0753.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000023_e8ea2284.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000023_e8ea2284.szar new file mode 100644 index 00000000..43354887 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000023_e8ea2284.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000024_41a97c13.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000024_41a97c13.szar new file mode 100644 index 00000000..b0918245 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000024_41a97c13.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000025_948e45e3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000025_948e45e3.szar new file mode 100644 index 00000000..6cacf76e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000025_948e45e3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000026_4a8cfdd4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000026_4a8cfdd4.szar new file mode 100644 index 00000000..e1903436 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000026_4a8cfdd4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000027_df21cb0d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000027_df21cb0d.szar new file mode 100644 index 00000000..a06f65b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000027_df21cb0d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000028_1dd93711.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000028_1dd93711.szar new file mode 100644 index 00000000..16f1d4ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000028_1dd93711.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000029_7c99f5bd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000029_7c99f5bd.szar new file mode 100644 index 00000000..357d275a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000029_7c99f5bd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000030_119bc900.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000030_119bc900.szar new file mode 100644 index 00000000..f1e44995 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000030_119bc900.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000031_50f854ad.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000031_50f854ad.szar new file mode 100644 index 00000000..923abe21 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000031_50f854ad.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000032_767e9a3d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000032_767e9a3d.szar new file mode 100644 index 00000000..9cd020a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000032_767e9a3d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000033_1cd4afd9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000033_1cd4afd9.szar new file mode 100644 index 00000000..2eb2e735 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000033_1cd4afd9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000034_fb85f58a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000034_fb85f58a.szar new file mode 100644 index 00000000..270bab0e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000034_fb85f58a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000035_ce2d6300.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000035_ce2d6300.szar new file mode 100644 index 00000000..051c4bf7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000035_ce2d6300.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000036_a417649f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000036_a417649f.szar new file mode 100644 index 00000000..1b725d16 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000036_a417649f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000037_cca1f1c0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000037_cca1f1c0.szar new file mode 100644 index 00000000..f74cf4e9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000037_cca1f1c0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000038_814f75f0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000038_814f75f0.szar new file mode 100644 index 00000000..d628ed5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000038_814f75f0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000039_c5326625.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000039_c5326625.szar new file mode 100644 index 00000000..e1f57296 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000039_c5326625.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000040_2cd37ae4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000040_2cd37ae4.szar new file mode 100644 index 00000000..52266d27 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000040_2cd37ae4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000041_69e9ee88.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000041_69e9ee88.szar new file mode 100644 index 00000000..3b618e5a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000041_69e9ee88.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000042_dd7c8dab.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000042_dd7c8dab.szar new file mode 100644 index 00000000..6bc2e345 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000042_dd7c8dab.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000043_b47ebbdd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000043_b47ebbdd.szar new file mode 100644 index 00000000..aeba08d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000043_b47ebbdd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000044_1f67100f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000044_1f67100f.szar new file mode 100644 index 00000000..86c11d70 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000044_1f67100f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000045_bf8e6b4b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000045_bf8e6b4b.szar new file mode 100644 index 00000000..9816bfbf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000045_bf8e6b4b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000046_a088c30a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000046_a088c30a.szar new file mode 100644 index 00000000..eef23d89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000046_a088c30a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000047_5bacd416.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000047_5bacd416.szar new file mode 100644 index 00000000..dde83472 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000047_5bacd416.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000048_afad0164.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000048_afad0164.szar new file mode 100644 index 00000000..a8016c10 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000048_afad0164.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000049_04b7fe20.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000049_04b7fe20.szar new file mode 100644 index 00000000..b9f6e675 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000049_04b7fe20.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000050_c9bb2df1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000050_c9bb2df1.szar new file mode 100644 index 00000000..f4cec695 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000050_c9bb2df1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000051_b8aab37c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000051_b8aab37c.szar new file mode 100644 index 00000000..65cf1afb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000051_b8aab37c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000052_f3ef9264.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000052_f3ef9264.szar new file mode 100644 index 00000000..61ad8d62 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000052_f3ef9264.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000053_0439bc3b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000053_0439bc3b.szar new file mode 100644 index 00000000..924b25a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000053_0439bc3b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000054_12fccd2e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000054_12fccd2e.szar new file mode 100644 index 00000000..0cc2486c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000054_12fccd2e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000055_2e48e3cd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000055_2e48e3cd.szar new file mode 100644 index 00000000..974136e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000055_2e48e3cd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000056_385d8b61.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000056_385d8b61.szar new file mode 100644 index 00000000..5f35ba64 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000056_385d8b61.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000057_02b13c17.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000057_02b13c17.szar new file mode 100644 index 00000000..7786ad29 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000057_02b13c17.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000058_870eee82.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000058_870eee82.szar new file mode 100644 index 00000000..ee32b1d0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000058_870eee82.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000059_ea031a6d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000059_ea031a6d.szar new file mode 100644 index 00000000..91783a23 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000059_ea031a6d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000060_b9925a4d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000060_b9925a4d.szar new file mode 100644 index 00000000..43890d6c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000060_b9925a4d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000061_00a4acf5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000061_00a4acf5.szar new file mode 100644 index 00000000..7d332bca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000061_00a4acf5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000062_ba0b47a7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000062_ba0b47a7.szar new file mode 100644 index 00000000..7708519d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/archive/delta_00000000000000000062_ba0b47a7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000001_b47bfc7e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000001_b47bfc7e.szcp new file mode 100644 index 00000000..3ad99dc3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000001_b47bfc7e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000002_85702a9b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000002_85702a9b.szcp new file mode 100644 index 00000000..3818c65b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000002_85702a9b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000003_e8a8ce1c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000003_e8a8ce1c.szcp new file mode 100644 index 00000000..7ed1d779 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000003_e8a8ce1c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000004_a833c041.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000004_a833c041.szcp new file mode 100644 index 00000000..6b649f26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000004_a833c041.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000005_0fdfc921.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000005_0fdfc921.szcp new file mode 100644 index 00000000..7ee27950 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000005_0fdfc921.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000006_190ad327.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000006_190ad327.szcp new file mode 100644 index 00000000..f9343ac2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000006_190ad327.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000007_27718e74.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000007_27718e74.szcp new file mode 100644 index 00000000..8ff8c207 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000007_27718e74.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000008_ebe9d780.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000008_ebe9d780.szcp new file mode 100644 index 00000000..9aad99b0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000008_ebe9d780.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000009_4854c7dd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000009_4854c7dd.szcp new file mode 100644 index 00000000..26e36195 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000009_4854c7dd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000010_851e0d5b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000010_851e0d5b.szcp new file mode 100644 index 00000000..c04f66e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000010_851e0d5b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000011_b16140af.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000011_b16140af.szcp new file mode 100644 index 00000000..1c4307ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000011_b16140af.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000012_7dd43ffe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000012_7dd43ffe.szcp new file mode 100644 index 00000000..dd3bd233 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000012_7dd43ffe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000013_748da0f5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000013_748da0f5.szcp new file mode 100644 index 00000000..b9f9c178 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000013_748da0f5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000014_7b9a1c24.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000014_7b9a1c24.szcp new file mode 100644 index 00000000..e7f2588a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000014_7b9a1c24.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000015_0b14e520.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000015_0b14e520.szcp new file mode 100644 index 00000000..718dfeee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000015_0b14e520.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000016_657ea549.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000016_657ea549.szcp new file mode 100644 index 00000000..dc6295f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000016_657ea549.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000017_7543bc29.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000017_7543bc29.szcp new file mode 100644 index 00000000..1cc39634 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000017_7543bc29.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000018_d7189b84.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000018_d7189b84.szcp new file mode 100644 index 00000000..4c11ce97 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000018_d7189b84.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000019_c80d6b59.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000019_c80d6b59.szcp new file mode 100644 index 00000000..74886cc4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000019_c80d6b59.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000020_97ca4754.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000020_97ca4754.szcp new file mode 100644 index 00000000..2aff309b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000020_97ca4754.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000021_5a8df7e0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000021_5a8df7e0.szcp new file mode 100644 index 00000000..685f0b48 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000021_5a8df7e0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000022_df3f9a50.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000022_df3f9a50.szcp new file mode 100644 index 00000000..8fd20b84 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000022_df3f9a50.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000023_c4ffb683.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000023_c4ffb683.szcp new file mode 100644 index 00000000..241677f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000023_c4ffb683.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000024_6377af64.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000024_6377af64.szcp new file mode 100644 index 00000000..654a6ec2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000024_6377af64.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000025_0d665f01.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000025_0d665f01.szcp new file mode 100644 index 00000000..db135bec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000025_0d665f01.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000026_2cfa8fd8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000026_2cfa8fd8.szcp new file mode 100644 index 00000000..46746b0e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000026_2cfa8fd8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000027_580d26f0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000027_580d26f0.szcp new file mode 100644 index 00000000..02f52c52 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000027_580d26f0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000028_666a6857.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000028_666a6857.szcp new file mode 100644 index 00000000..710c61ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000028_666a6857.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000029_7c0384d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000029_7c0384d7.szcp new file mode 100644 index 00000000..1bf2952e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000029_7c0384d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000030_a022838f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000030_a022838f.szcp new file mode 100644 index 00000000..ca6b0418 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000030_a022838f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000031_9476ae4b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000031_9476ae4b.szcp new file mode 100644 index 00000000..4827e36a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000031_9476ae4b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000032_b4345ace.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000032_b4345ace.szcp new file mode 100644 index 00000000..9dc01618 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000032_b4345ace.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000033_0665719d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000033_0665719d.szcp new file mode 100644 index 00000000..0b9c4760 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000033_0665719d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000034_02b2a7d5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000034_02b2a7d5.szcp new file mode 100644 index 00000000..fab8ceae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000034_02b2a7d5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000035_2c1ae092.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000035_2c1ae092.szcp new file mode 100644 index 00000000..327f2d68 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000035_2c1ae092.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000036_122c5828.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000036_122c5828.szcp new file mode 100644 index 00000000..6ea767ba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000036_122c5828.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000037_bc2ac3bf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000037_bc2ac3bf.szcp new file mode 100644 index 00000000..31121e4f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000037_bc2ac3bf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000038_11f174c4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000038_11f174c4.szcp new file mode 100644 index 00000000..e80547f3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000038_11f174c4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000039_17969288.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000039_17969288.szcp new file mode 100644 index 00000000..5f920611 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000039_17969288.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000040_e62b8851.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000040_e62b8851.szcp new file mode 100644 index 00000000..2e26bcce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000040_e62b8851.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000041_c650f375.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000041_c650f375.szcp new file mode 100644 index 00000000..4bb05ed4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000041_c650f375.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000042_ae557b0d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000042_ae557b0d.szcp new file mode 100644 index 00000000..aade040e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000042_ae557b0d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000043_315454d2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000043_315454d2.szcp new file mode 100644 index 00000000..88eab848 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000043_315454d2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000044_b21da743.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000044_b21da743.szcp new file mode 100644 index 00000000..406904ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000044_b21da743.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000045_f301fde2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000045_f301fde2.szcp new file mode 100644 index 00000000..5db4db82 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000045_f301fde2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000046_e46c51be.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000046_e46c51be.szcp new file mode 100644 index 00000000..2bf5a30d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000046_e46c51be.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000047_f9e8a01b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000047_f9e8a01b.szcp new file mode 100644 index 00000000..66bdf428 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000047_f9e8a01b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000048_cab274e8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000048_cab274e8.szcp new file mode 100644 index 00000000..bdf1aebe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000048_cab274e8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000049_13977e62.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000049_13977e62.szcp new file mode 100644 index 00000000..5f2313d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000049_13977e62.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000050_bf70eda6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000050_bf70eda6.szcp new file mode 100644 index 00000000..a8bded0f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000050_bf70eda6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000051_33ef52cf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000051_33ef52cf.szcp new file mode 100644 index 00000000..83062607 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000051_33ef52cf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000052_7ae102ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000052_7ae102ce.szcp new file mode 100644 index 00000000..d4771cfd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000052_7ae102ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000053_b1108727.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000053_b1108727.szcp new file mode 100644 index 00000000..a6032571 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000053_b1108727.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000054_43e6638f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000054_43e6638f.szcp new file mode 100644 index 00000000..8f14a491 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000054_43e6638f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000055_455b4f16.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000055_455b4f16.szcp new file mode 100644 index 00000000..8052d92f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000055_455b4f16.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000056_0291808d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000056_0291808d.szcp new file mode 100644 index 00000000..129555f3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000056_0291808d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000057_c0e5c028.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000057_c0e5c028.szcp new file mode 100644 index 00000000..8d3f4b0c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000057_c0e5c028.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000058_7992ef53.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000058_7992ef53.szcp new file mode 100644 index 00000000..09081522 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000058_7992ef53.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000059_a0f58d08.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000059_a0f58d08.szcp new file mode 100644 index 00000000..6dcaeff7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000059_a0f58d08.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000060_29c3d35d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000060_29c3d35d.szcp new file mode 100644 index 00000000..b260cfd8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000060_29c3d35d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000061_2f70de3a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000061_2f70de3a.szcp new file mode 100644 index 00000000..d918565b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000061_2f70de3a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000062_4f38c801.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000062_4f38c801.szcp new file mode 100644 index 00000000..66b1610d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_020/checkpoints/checkpoint_00000000000000000062_4f38c801.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000001_4106f140.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000001_4106f140.szar new file mode 100644 index 00000000..609c856e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000001_4106f140.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000002_9b82cca5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000002_9b82cca5.szar new file mode 100644 index 00000000..cba032e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000002_9b82cca5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000003_a91a69bf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000003_a91a69bf.szar new file mode 100644 index 00000000..ee5dc60e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000003_a91a69bf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000004_425833aa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000004_425833aa.szar new file mode 100644 index 00000000..4901a088 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000004_425833aa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000005_45786f3f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000005_45786f3f.szar new file mode 100644 index 00000000..3b5746a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000005_45786f3f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000006_7a9bd9e8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000006_7a9bd9e8.szar new file mode 100644 index 00000000..2e248640 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000006_7a9bd9e8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000007_24c44cb5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000007_24c44cb5.szar new file mode 100644 index 00000000..61389dfc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000007_24c44cb5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000008_5c63f691.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000008_5c63f691.szar new file mode 100644 index 00000000..f5e5468d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000008_5c63f691.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000009_7de27a25.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000009_7de27a25.szar new file mode 100644 index 00000000..cee965d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000009_7de27a25.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000010_5dd42c6b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000010_5dd42c6b.szar new file mode 100644 index 00000000..b436fbc1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000010_5dd42c6b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000011_98a911f6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000011_98a911f6.szar new file mode 100644 index 00000000..08b0520e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000011_98a911f6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000012_c21ad6bd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000012_c21ad6bd.szar new file mode 100644 index 00000000..dbd735ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000012_c21ad6bd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000013_9fe510d8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000013_9fe510d8.szar new file mode 100644 index 00000000..4fd598ce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000013_9fe510d8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000014_f0443206.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000014_f0443206.szar new file mode 100644 index 00000000..1a73c94b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000014_f0443206.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000015_dfaf1193.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000015_dfaf1193.szar new file mode 100644 index 00000000..6a33a9ce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000015_dfaf1193.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000016_66277eb4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000016_66277eb4.szar new file mode 100644 index 00000000..f8413fbd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000016_66277eb4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000017_617605f2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000017_617605f2.szar new file mode 100644 index 00000000..389042c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000017_617605f2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000018_2977b58e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000018_2977b58e.szar new file mode 100644 index 00000000..7b42d786 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000018_2977b58e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000019_418a51dd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000019_418a51dd.szar new file mode 100644 index 00000000..3bf367e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000019_418a51dd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000020_f78b1d7d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000020_f78b1d7d.szar new file mode 100644 index 00000000..cedee0ba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000020_f78b1d7d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000021_0d0a85dc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000021_0d0a85dc.szar new file mode 100644 index 00000000..b0bbae87 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000021_0d0a85dc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000022_4b5fd58a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000022_4b5fd58a.szar new file mode 100644 index 00000000..cdaa0e7b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000022_4b5fd58a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000023_1fa3752f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000023_1fa3752f.szar new file mode 100644 index 00000000..8d26e82f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000023_1fa3752f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000024_9a61f6e1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000024_9a61f6e1.szar new file mode 100644 index 00000000..20792a34 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000024_9a61f6e1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000025_82579ded.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000025_82579ded.szar new file mode 100644 index 00000000..54f62878 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000025_82579ded.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000026_29f22bef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000026_29f22bef.szar new file mode 100644 index 00000000..873b70cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000026_29f22bef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000027_d4cc93f2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000027_d4cc93f2.szar new file mode 100644 index 00000000..d1d17b7c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000027_d4cc93f2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000028_0d3039a9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000028_0d3039a9.szar new file mode 100644 index 00000000..7f564268 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000028_0d3039a9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000029_de62c0d2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000029_de62c0d2.szar new file mode 100644 index 00000000..2ac6711c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000029_de62c0d2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000030_84fa3a7c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000030_84fa3a7c.szar new file mode 100644 index 00000000..aad84370 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000030_84fa3a7c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000031_c1ae7b40.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000031_c1ae7b40.szar new file mode 100644 index 00000000..3e4a5224 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000031_c1ae7b40.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000032_eadb9394.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000032_eadb9394.szar new file mode 100644 index 00000000..2c6d6dda Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000032_eadb9394.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000033_f1eb9856.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000033_f1eb9856.szar new file mode 100644 index 00000000..61a6241d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000033_f1eb9856.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000034_08730f33.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000034_08730f33.szar new file mode 100644 index 00000000..145f4a9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000034_08730f33.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000035_6be0c015.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000035_6be0c015.szar new file mode 100644 index 00000000..ced8e7ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000035_6be0c015.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000036_95440a3d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000036_95440a3d.szar new file mode 100644 index 00000000..cff3c5a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000036_95440a3d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000037_4efefc5e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000037_4efefc5e.szar new file mode 100644 index 00000000..a5663db0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000037_4efefc5e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000038_96b758a6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000038_96b758a6.szar new file mode 100644 index 00000000..4a1b0578 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000038_96b758a6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000039_4657ae17.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000039_4657ae17.szar new file mode 100644 index 00000000..1f8add56 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000039_4657ae17.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000040_cf01f37a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000040_cf01f37a.szar new file mode 100644 index 00000000..263210b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000040_cf01f37a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000041_5e01701d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000041_5e01701d.szar new file mode 100644 index 00000000..32cd778a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000041_5e01701d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000042_e63991fa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000042_e63991fa.szar new file mode 100644 index 00000000..29fd1be8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000042_e63991fa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000043_5ed9a86c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000043_5ed9a86c.szar new file mode 100644 index 00000000..b4a48a47 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000043_5ed9a86c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000044_e8ba3a87.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000044_e8ba3a87.szar new file mode 100644 index 00000000..353652a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000044_e8ba3a87.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000045_6fac6800.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000045_6fac6800.szar new file mode 100644 index 00000000..d51d94bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000045_6fac6800.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000046_1074430a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000046_1074430a.szar new file mode 100644 index 00000000..e203e407 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000046_1074430a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000047_9035786f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000047_9035786f.szar new file mode 100644 index 00000000..c5e601a9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000047_9035786f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000048_9298bc0d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000048_9298bc0d.szar new file mode 100644 index 00000000..16dc9dcb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000048_9298bc0d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000049_26e2d620.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000049_26e2d620.szar new file mode 100644 index 00000000..20827173 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000049_26e2d620.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000050_96eeaaf6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000050_96eeaaf6.szar new file mode 100644 index 00000000..f172c4b3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000050_96eeaaf6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000051_26187935.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000051_26187935.szar new file mode 100644 index 00000000..11f2f2d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000051_26187935.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000052_b34a23a0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000052_b34a23a0.szar new file mode 100644 index 00000000..d0e794cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000052_b34a23a0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000053_c1db6387.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000053_c1db6387.szar new file mode 100644 index 00000000..80b39b61 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000053_c1db6387.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000054_d71179f9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000054_d71179f9.szar new file mode 100644 index 00000000..fde93509 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000054_d71179f9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000055_4aa4aeab.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000055_4aa4aeab.szar new file mode 100644 index 00000000..40305356 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000055_4aa4aeab.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000056_59ffb5de.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000056_59ffb5de.szar new file mode 100644 index 00000000..2462d6c8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000056_59ffb5de.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000057_3c52ebe8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000057_3c52ebe8.szar new file mode 100644 index 00000000..9b5cb7a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000057_3c52ebe8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000058_2a347564.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000058_2a347564.szar new file mode 100644 index 00000000..d7baeb84 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000058_2a347564.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000059_c2e78897.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000059_c2e78897.szar new file mode 100644 index 00000000..5c57a724 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000059_c2e78897.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000060_5f901c63.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000060_5f901c63.szar new file mode 100644 index 00000000..61e13dd2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000060_5f901c63.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000061_804b7ab8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000061_804b7ab8.szar new file mode 100644 index 00000000..8282c172 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000061_804b7ab8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000062_d2685e22.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000062_d2685e22.szar new file mode 100644 index 00000000..93da76c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000062_d2685e22.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000063_05662f77.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000063_05662f77.szar new file mode 100644 index 00000000..badf08ce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000063_05662f77.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000064_34069b35.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000064_34069b35.szar new file mode 100644 index 00000000..731105c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000064_34069b35.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000065_2b3d305d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000065_2b3d305d.szar new file mode 100644 index 00000000..bce361fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000065_2b3d305d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000066_ac7cdee0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000066_ac7cdee0.szar new file mode 100644 index 00000000..d9ebf6ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000066_ac7cdee0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000067_315cae31.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000067_315cae31.szar new file mode 100644 index 00000000..636680d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000067_315cae31.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000068_ae0e4062.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000068_ae0e4062.szar new file mode 100644 index 00000000..4409cab0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000068_ae0e4062.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000069_36a5c80d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000069_36a5c80d.szar new file mode 100644 index 00000000..d88b02ce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000069_36a5c80d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000070_0ec2bfd2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000070_0ec2bfd2.szar new file mode 100644 index 00000000..14e23fff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000070_0ec2bfd2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000071_622abb84.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000071_622abb84.szar new file mode 100644 index 00000000..ce6dfb93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000071_622abb84.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000072_c13d626d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000072_c13d626d.szar new file mode 100644 index 00000000..e869c23e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/archive/delta_00000000000000000072_c13d626d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000001_9682d6f3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000001_9682d6f3.szcp new file mode 100644 index 00000000..49e38d8d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000001_9682d6f3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000002_ae6b027f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000002_ae6b027f.szcp new file mode 100644 index 00000000..036ac463 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000002_ae6b027f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000003_82f03757.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000003_82f03757.szcp new file mode 100644 index 00000000..815858bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000003_82f03757.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000004_310380cc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000004_310380cc.szcp new file mode 100644 index 00000000..014d9625 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000004_310380cc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000005_e0c6cf3e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000005_e0c6cf3e.szcp new file mode 100644 index 00000000..e07a3566 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000005_e0c6cf3e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000006_837acdf7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000006_837acdf7.szcp new file mode 100644 index 00000000..05eefe79 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000006_837acdf7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000007_8a658754.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000007_8a658754.szcp new file mode 100644 index 00000000..4e613f3f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000007_8a658754.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000008_ff5c25b2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000008_ff5c25b2.szcp new file mode 100644 index 00000000..6c9adbdc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000008_ff5c25b2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000009_a8d9f22a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000009_a8d9f22a.szcp new file mode 100644 index 00000000..2fede3ac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000009_a8d9f22a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000010_9eabaef0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000010_9eabaef0.szcp new file mode 100644 index 00000000..9b206179 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000010_9eabaef0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000011_337ea94b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000011_337ea94b.szcp new file mode 100644 index 00000000..b85235a9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000011_337ea94b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000012_82722915.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000012_82722915.szcp new file mode 100644 index 00000000..a938ed2e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000012_82722915.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000013_a87a04db.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000013_a87a04db.szcp new file mode 100644 index 00000000..30d8551b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000013_a87a04db.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000014_49a4886f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000014_49a4886f.szcp new file mode 100644 index 00000000..2a0a5cf5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000014_49a4886f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000015_9c50677c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000015_9c50677c.szcp new file mode 100644 index 00000000..5bf508fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000015_9c50677c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000016_161f142c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000016_161f142c.szcp new file mode 100644 index 00000000..2178ed88 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000016_161f142c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000017_1751c82b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000017_1751c82b.szcp new file mode 100644 index 00000000..e99f8b69 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000017_1751c82b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000018_90601a71.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000018_90601a71.szcp new file mode 100644 index 00000000..2dca0eb0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000018_90601a71.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000019_3efcf087.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000019_3efcf087.szcp new file mode 100644 index 00000000..ac520485 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000019_3efcf087.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000020_49f1dbc7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000020_49f1dbc7.szcp new file mode 100644 index 00000000..caa39951 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000020_49f1dbc7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000021_4fb2b17a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000021_4fb2b17a.szcp new file mode 100644 index 00000000..654f2d81 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000021_4fb2b17a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000022_e1980fc0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000022_e1980fc0.szcp new file mode 100644 index 00000000..f17f72f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000022_e1980fc0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000023_735ec0d2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000023_735ec0d2.szcp new file mode 100644 index 00000000..e4e71d35 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000023_735ec0d2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000024_c6fbc288.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000024_c6fbc288.szcp new file mode 100644 index 00000000..65b4723e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000024_c6fbc288.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000025_9641025d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000025_9641025d.szcp new file mode 100644 index 00000000..908ad771 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000025_9641025d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000026_ab25ef61.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000026_ab25ef61.szcp new file mode 100644 index 00000000..620263ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000026_ab25ef61.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000027_98fc8cc9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000027_98fc8cc9.szcp new file mode 100644 index 00000000..1c3ae33d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000027_98fc8cc9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000028_b232701b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000028_b232701b.szcp new file mode 100644 index 00000000..4a3a5acb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000028_b232701b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000029_dcbb42dd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000029_dcbb42dd.szcp new file mode 100644 index 00000000..fe71acb6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000029_dcbb42dd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000030_b9950a6c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000030_b9950a6c.szcp new file mode 100644 index 00000000..6b8622a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000030_b9950a6c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000031_18837125.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000031_18837125.szcp new file mode 100644 index 00000000..7ace9c9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000031_18837125.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000032_b0d65c18.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000032_b0d65c18.szcp new file mode 100644 index 00000000..921c6f1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000032_b0d65c18.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000033_09145a6e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000033_09145a6e.szcp new file mode 100644 index 00000000..868f5f8d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000033_09145a6e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000034_8b528f06.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000034_8b528f06.szcp new file mode 100644 index 00000000..a4630fc2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000034_8b528f06.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000035_1df11f68.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000035_1df11f68.szcp new file mode 100644 index 00000000..b7ec70a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000035_1df11f68.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000036_bcdc8081.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000036_bcdc8081.szcp new file mode 100644 index 00000000..2d25ca5f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000036_bcdc8081.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000037_16d27db3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000037_16d27db3.szcp new file mode 100644 index 00000000..5b242845 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000037_16d27db3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000038_7bec5695.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000038_7bec5695.szcp new file mode 100644 index 00000000..5d1859a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000038_7bec5695.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000039_660daacb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000039_660daacb.szcp new file mode 100644 index 00000000..ab36436a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000039_660daacb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000040_bfdec917.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000040_bfdec917.szcp new file mode 100644 index 00000000..07b71306 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000040_bfdec917.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000041_05ad16d5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000041_05ad16d5.szcp new file mode 100644 index 00000000..1e611140 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000041_05ad16d5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000042_72bb1e75.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000042_72bb1e75.szcp new file mode 100644 index 00000000..e9a18f7f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000042_72bb1e75.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000043_52d73b47.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000043_52d73b47.szcp new file mode 100644 index 00000000..28b807db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000043_52d73b47.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000044_4006845c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000044_4006845c.szcp new file mode 100644 index 00000000..049147c9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000044_4006845c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000045_a0a931f6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000045_a0a931f6.szcp new file mode 100644 index 00000000..7e6e7f0f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000045_a0a931f6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000046_7fd542c6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000046_7fd542c6.szcp new file mode 100644 index 00000000..d8b7080b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000046_7fd542c6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000047_9bce096e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000047_9bce096e.szcp new file mode 100644 index 00000000..a2592022 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000047_9bce096e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000048_40ee942a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000048_40ee942a.szcp new file mode 100644 index 00000000..5024766e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000048_40ee942a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000049_5270e37f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000049_5270e37f.szcp new file mode 100644 index 00000000..8801a040 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000049_5270e37f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000050_20d81806.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000050_20d81806.szcp new file mode 100644 index 00000000..5b397417 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000050_20d81806.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000051_f0a1a6a7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000051_f0a1a6a7.szcp new file mode 100644 index 00000000..0ffcf13f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000051_f0a1a6a7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000052_e172e57e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000052_e172e57e.szcp new file mode 100644 index 00000000..d3dd7bb6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000052_e172e57e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000053_87a8cb7d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000053_87a8cb7d.szcp new file mode 100644 index 00000000..a4b3e0e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000053_87a8cb7d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000054_9316a5a6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000054_9316a5a6.szcp new file mode 100644 index 00000000..cad61a8d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000054_9316a5a6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000055_08bc65fe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000055_08bc65fe.szcp new file mode 100644 index 00000000..71a6a051 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000055_08bc65fe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000056_7171924c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000056_7171924c.szcp new file mode 100644 index 00000000..3899a693 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000056_7171924c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000057_f9f8b226.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000057_f9f8b226.szcp new file mode 100644 index 00000000..0b3025a9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000057_f9f8b226.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000058_400707d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000058_400707d1.szcp new file mode 100644 index 00000000..9302e2e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000058_400707d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000059_677298f0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000059_677298f0.szcp new file mode 100644 index 00000000..2f9140f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000059_677298f0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000060_6fb08fc2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000060_6fb08fc2.szcp new file mode 100644 index 00000000..ba35b248 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000060_6fb08fc2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000061_ae05bd50.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000061_ae05bd50.szcp new file mode 100644 index 00000000..03926335 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000061_ae05bd50.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000062_cd47e86a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000062_cd47e86a.szcp new file mode 100644 index 00000000..8d69530a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000062_cd47e86a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000063_2dca055e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000063_2dca055e.szcp new file mode 100644 index 00000000..944ba5f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000063_2dca055e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000064_5e9ae016.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000064_5e9ae016.szcp new file mode 100644 index 00000000..870b069b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000064_5e9ae016.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000065_617cb1af.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000065_617cb1af.szcp new file mode 100644 index 00000000..f85775f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000065_617cb1af.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000066_3e8498d2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000066_3e8498d2.szcp new file mode 100644 index 00000000..7429dab8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000066_3e8498d2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000067_c97ce42d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000067_c97ce42d.szcp new file mode 100644 index 00000000..73c4e41a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000067_c97ce42d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000068_15797b84.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000068_15797b84.szcp new file mode 100644 index 00000000..f494c55b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000068_15797b84.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000069_f6024dc3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000069_f6024dc3.szcp new file mode 100644 index 00000000..2e895ce4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000069_f6024dc3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000070_b6865546.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000070_b6865546.szcp new file mode 100644 index 00000000..4850df0a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000070_b6865546.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000071_cd9ea87d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000071_cd9ea87d.szcp new file mode 100644 index 00000000..587e7134 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000071_cd9ea87d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000072_9e657f67.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000072_9e657f67.szcp new file mode 100644 index 00000000..393baaf1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_021/checkpoints/checkpoint_00000000000000000072_9e657f67.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000001_5d8e87c7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000001_5d8e87c7.szar new file mode 100644 index 00000000..c470df91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000001_5d8e87c7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000002_acc43480.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000002_acc43480.szar new file mode 100644 index 00000000..2f3ffb7e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000002_acc43480.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000003_d66faaf3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000003_d66faaf3.szar new file mode 100644 index 00000000..89efd5b2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000003_d66faaf3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000004_2d8f03ce.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000004_2d8f03ce.szar new file mode 100644 index 00000000..ca675758 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000004_2d8f03ce.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000005_4d359280.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000005_4d359280.szar new file mode 100644 index 00000000..af5716f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000005_4d359280.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000006_033e0e8a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000006_033e0e8a.szar new file mode 100644 index 00000000..6e831c24 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000006_033e0e8a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000007_94044f06.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000007_94044f06.szar new file mode 100644 index 00000000..b8bc89af Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000007_94044f06.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000008_95fbb7bf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000008_95fbb7bf.szar new file mode 100644 index 00000000..a59ab951 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000008_95fbb7bf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000009_15112336.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000009_15112336.szar new file mode 100644 index 00000000..b3743d35 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000009_15112336.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000010_bc220446.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000010_bc220446.szar new file mode 100644 index 00000000..341ddf80 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000010_bc220446.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000011_1cc63834.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000011_1cc63834.szar new file mode 100644 index 00000000..e9cb8aab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000011_1cc63834.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000012_4f404ec5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000012_4f404ec5.szar new file mode 100644 index 00000000..472b74c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000012_4f404ec5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000013_b9612d7a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000013_b9612d7a.szar new file mode 100644 index 00000000..46f34f28 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000013_b9612d7a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000014_8843a0e0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000014_8843a0e0.szar new file mode 100644 index 00000000..0a30709d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000014_8843a0e0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000015_33cb1d2a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000015_33cb1d2a.szar new file mode 100644 index 00000000..57b5b6f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000015_33cb1d2a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000016_7abf0801.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000016_7abf0801.szar new file mode 100644 index 00000000..1bb5c8c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000016_7abf0801.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000017_c51e3a71.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000017_c51e3a71.szar new file mode 100644 index 00000000..7c3e4d1b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000017_c51e3a71.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000018_d759cda5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000018_d759cda5.szar new file mode 100644 index 00000000..e3f210d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000018_d759cda5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000019_e568eda0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000019_e568eda0.szar new file mode 100644 index 00000000..359380dd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000019_e568eda0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000020_fcdf843b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000020_fcdf843b.szar new file mode 100644 index 00000000..a34f1166 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000020_fcdf843b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000021_fff00b8a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000021_fff00b8a.szar new file mode 100644 index 00000000..97626015 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000021_fff00b8a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000022_b4e18e34.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000022_b4e18e34.szar new file mode 100644 index 00000000..2b8d2340 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000022_b4e18e34.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000023_891c014d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000023_891c014d.szar new file mode 100644 index 00000000..f761ce09 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000023_891c014d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000024_db2685ba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000024_db2685ba.szar new file mode 100644 index 00000000..13f2297b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000024_db2685ba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000025_70e16633.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000025_70e16633.szar new file mode 100644 index 00000000..a063fa0e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000025_70e16633.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000026_4b311e10.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000026_4b311e10.szar new file mode 100644 index 00000000..0193ca71 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000026_4b311e10.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000027_5db7e33b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000027_5db7e33b.szar new file mode 100644 index 00000000..0e66fb8e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000027_5db7e33b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000028_7e21a7a8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000028_7e21a7a8.szar new file mode 100644 index 00000000..d4e1dc21 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000028_7e21a7a8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000029_953b0919.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000029_953b0919.szar new file mode 100644 index 00000000..8f442d99 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000029_953b0919.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000030_5a41ac64.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000030_5a41ac64.szar new file mode 100644 index 00000000..f9cb035d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000030_5a41ac64.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000031_1f8cab3a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000031_1f8cab3a.szar new file mode 100644 index 00000000..c790e764 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000031_1f8cab3a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000032_7fba7c89.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000032_7fba7c89.szar new file mode 100644 index 00000000..76b6aed0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000032_7fba7c89.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000033_c73cfee2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000033_c73cfee2.szar new file mode 100644 index 00000000..b5fa12bf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000033_c73cfee2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000034_4e351bb9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000034_4e351bb9.szar new file mode 100644 index 00000000..2234e7ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000034_4e351bb9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000035_6a18b2a2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000035_6a18b2a2.szar new file mode 100644 index 00000000..f464aa03 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000035_6a18b2a2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000036_5a9ce295.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000036_5a9ce295.szar new file mode 100644 index 00000000..c56456a9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000036_5a9ce295.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000037_acc55928.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000037_acc55928.szar new file mode 100644 index 00000000..3b1b98d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000037_acc55928.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000038_f0c1d377.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000038_f0c1d377.szar new file mode 100644 index 00000000..2ca36e35 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000038_f0c1d377.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000039_76ba4af1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000039_76ba4af1.szar new file mode 100644 index 00000000..3df3b820 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000039_76ba4af1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000040_ea3c89f1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000040_ea3c89f1.szar new file mode 100644 index 00000000..1024effd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000040_ea3c89f1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000041_3faf3d5f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000041_3faf3d5f.szar new file mode 100644 index 00000000..a15f68c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000041_3faf3d5f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000042_b2269e96.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000042_b2269e96.szar new file mode 100644 index 00000000..735c29b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000042_b2269e96.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000043_4bbf43e3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000043_4bbf43e3.szar new file mode 100644 index 00000000..33c5a019 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000043_4bbf43e3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000044_67839cf8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000044_67839cf8.szar new file mode 100644 index 00000000..7bc930ba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000044_67839cf8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000045_9270e003.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000045_9270e003.szar new file mode 100644 index 00000000..36f2187a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000045_9270e003.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000046_8e8a7aca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000046_8e8a7aca.szar new file mode 100644 index 00000000..5916d15c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000046_8e8a7aca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000047_95e6ea9b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000047_95e6ea9b.szar new file mode 100644 index 00000000..9dda60e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000047_95e6ea9b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000048_429577b2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000048_429577b2.szar new file mode 100644 index 00000000..a45c11c1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000048_429577b2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000049_f40bc4d2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000049_f40bc4d2.szar new file mode 100644 index 00000000..984fbd2d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000049_f40bc4d2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000050_17ac549f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000050_17ac549f.szar new file mode 100644 index 00000000..fd4485f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000050_17ac549f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000051_abdd9d4d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000051_abdd9d4d.szar new file mode 100644 index 00000000..823350ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000051_abdd9d4d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000052_6fb649e2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000052_6fb649e2.szar new file mode 100644 index 00000000..0850b87f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000052_6fb649e2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000053_6122bac3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000053_6122bac3.szar new file mode 100644 index 00000000..b3876bbe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000053_6122bac3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000054_ef85c8c1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000054_ef85c8c1.szar new file mode 100644 index 00000000..c9cf8316 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000054_ef85c8c1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000055_e71c180b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000055_e71c180b.szar new file mode 100644 index 00000000..a55b5215 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000055_e71c180b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000056_3cf64f2b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000056_3cf64f2b.szar new file mode 100644 index 00000000..1407760a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000056_3cf64f2b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000057_959d9247.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000057_959d9247.szar new file mode 100644 index 00000000..72147cd7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/archive/delta_00000000000000000057_959d9247.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000001_5af248b0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000001_5af248b0.szcp new file mode 100644 index 00000000..0139f5a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000001_5af248b0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000002_acf56129.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000002_acf56129.szcp new file mode 100644 index 00000000..a600baa4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000002_acf56129.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000003_7281268b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000003_7281268b.szcp new file mode 100644 index 00000000..4f83a8cb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000003_7281268b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000004_d608a9b0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000004_d608a9b0.szcp new file mode 100644 index 00000000..caf65b11 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000004_d608a9b0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000005_6bad996d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000005_6bad996d.szcp new file mode 100644 index 00000000..da992511 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000005_6bad996d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000006_7aac5e67.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000006_7aac5e67.szcp new file mode 100644 index 00000000..cc1b47ba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000006_7aac5e67.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000007_4bb7d8a3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000007_4bb7d8a3.szcp new file mode 100644 index 00000000..513832ac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000007_4bb7d8a3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000008_d58a8b7d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000008_d58a8b7d.szcp new file mode 100644 index 00000000..2afa1400 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000008_d58a8b7d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000009_35a39473.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000009_35a39473.szcp new file mode 100644 index 00000000..e5abff53 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000009_35a39473.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000010_23c30312.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000010_23c30312.szcp new file mode 100644 index 00000000..84caccac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000010_23c30312.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000011_9bee6452.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000011_9bee6452.szcp new file mode 100644 index 00000000..77349635 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000011_9bee6452.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000012_38d22191.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000012_38d22191.szcp new file mode 100644 index 00000000..37097c0c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000012_38d22191.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000013_db393636.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000013_db393636.szcp new file mode 100644 index 00000000..476aa1f3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000013_db393636.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000014_786cd29b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000014_786cd29b.szcp new file mode 100644 index 00000000..de72898a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000014_786cd29b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000015_71c1b171.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000015_71c1b171.szcp new file mode 100644 index 00000000..8d608f9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000015_71c1b171.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000016_f5b35ea7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000016_f5b35ea7.szcp new file mode 100644 index 00000000..f10d1c60 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000016_f5b35ea7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000017_c134b928.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000017_c134b928.szcp new file mode 100644 index 00000000..daf4c639 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000017_c134b928.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000018_5fc2f516.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000018_5fc2f516.szcp new file mode 100644 index 00000000..5783b9d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000018_5fc2f516.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000019_68274ca2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000019_68274ca2.szcp new file mode 100644 index 00000000..04d94081 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000019_68274ca2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000020_bf9354b8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000020_bf9354b8.szcp new file mode 100644 index 00000000..5d03f269 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000020_bf9354b8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000021_1abbc2e2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000021_1abbc2e2.szcp new file mode 100644 index 00000000..0a5b45bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000021_1abbc2e2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000022_fa400232.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000022_fa400232.szcp new file mode 100644 index 00000000..5f0020f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000022_fa400232.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000023_4b821813.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000023_4b821813.szcp new file mode 100644 index 00000000..b32c55f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000023_4b821813.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000024_f1b927e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000024_f1b927e9.szcp new file mode 100644 index 00000000..a2253e8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000024_f1b927e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000025_c8b96276.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000025_c8b96276.szcp new file mode 100644 index 00000000..752680a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000025_c8b96276.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000026_58ce1b0a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000026_58ce1b0a.szcp new file mode 100644 index 00000000..f1205523 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000026_58ce1b0a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000027_3fb923a8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000027_3fb923a8.szcp new file mode 100644 index 00000000..d3125693 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000027_3fb923a8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000028_eb227d74.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000028_eb227d74.szcp new file mode 100644 index 00000000..14188ae0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000028_eb227d74.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000029_8966ac26.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000029_8966ac26.szcp new file mode 100644 index 00000000..b92b1c8f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000029_8966ac26.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000030_e962efec.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000030_e962efec.szcp new file mode 100644 index 00000000..95f4194d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000030_e962efec.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000031_4a9f22b2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000031_4a9f22b2.szcp new file mode 100644 index 00000000..75c7f8dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000031_4a9f22b2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000032_7e755f75.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000032_7e755f75.szcp new file mode 100644 index 00000000..d99caa4d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000032_7e755f75.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000033_84bede3b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000033_84bede3b.szcp new file mode 100644 index 00000000..b182fa9c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000033_84bede3b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000034_000ed18a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000034_000ed18a.szcp new file mode 100644 index 00000000..a5f59f71 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000034_000ed18a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000035_1b10d34a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000035_1b10d34a.szcp new file mode 100644 index 00000000..8c3e98b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000035_1b10d34a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000036_8236034b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000036_8236034b.szcp new file mode 100644 index 00000000..9351fd89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000036_8236034b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000037_9ce1621c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000037_9ce1621c.szcp new file mode 100644 index 00000000..692eaabe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000037_9ce1621c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000038_a68669d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000038_a68669d1.szcp new file mode 100644 index 00000000..75d88951 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000038_a68669d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000039_0cf5eacf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000039_0cf5eacf.szcp new file mode 100644 index 00000000..4e214723 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000039_0cf5eacf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000040_c2e64a81.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000040_c2e64a81.szcp new file mode 100644 index 00000000..3063b070 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000040_c2e64a81.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000041_4382464c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000041_4382464c.szcp new file mode 100644 index 00000000..a278b8bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000041_4382464c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000042_73e0932b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000042_73e0932b.szcp new file mode 100644 index 00000000..f03a0e99 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000042_73e0932b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000043_0c224e08.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000043_0c224e08.szcp new file mode 100644 index 00000000..8977d43e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000043_0c224e08.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000044_0e802cce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000044_0e802cce.szcp new file mode 100644 index 00000000..ad644f4d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000044_0e802cce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000045_d0d813b5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000045_d0d813b5.szcp new file mode 100644 index 00000000..421a81aa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000045_d0d813b5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000046_0d31420b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000046_0d31420b.szcp new file mode 100644 index 00000000..c75c9544 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000046_0d31420b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000047_f995895b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000047_f995895b.szcp new file mode 100644 index 00000000..7a1e5bfb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000047_f995895b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000048_a85d1a3b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000048_a85d1a3b.szcp new file mode 100644 index 00000000..3852aa48 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000048_a85d1a3b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000049_d00c597f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000049_d00c597f.szcp new file mode 100644 index 00000000..2aa86412 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000049_d00c597f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000050_d5df1d74.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000050_d5df1d74.szcp new file mode 100644 index 00000000..58d0df02 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000050_d5df1d74.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000051_2fabffed.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000051_2fabffed.szcp new file mode 100644 index 00000000..06ab20eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000051_2fabffed.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000052_ab1cd68b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000052_ab1cd68b.szcp new file mode 100644 index 00000000..667247ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000052_ab1cd68b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000053_0a0aee89.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000053_0a0aee89.szcp new file mode 100644 index 00000000..b6bef79f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000053_0a0aee89.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000054_b6b12837.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000054_b6b12837.szcp new file mode 100644 index 00000000..181d56a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000054_b6b12837.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000055_8f66102c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000055_8f66102c.szcp new file mode 100644 index 00000000..06f78d30 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000055_8f66102c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000056_0c2ea8bd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000056_0c2ea8bd.szcp new file mode 100644 index 00000000..3483c202 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000056_0c2ea8bd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000057_3858061b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000057_3858061b.szcp new file mode 100644 index 00000000..2ada4398 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_022/checkpoints/checkpoint_00000000000000000057_3858061b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000001_a1427afa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000001_a1427afa.szar new file mode 100644 index 00000000..07cbcb4f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000001_a1427afa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000002_12b3d650.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000002_12b3d650.szar new file mode 100644 index 00000000..dbc8505c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000002_12b3d650.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000003_343acee8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000003_343acee8.szar new file mode 100644 index 00000000..c4108464 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000003_343acee8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000004_dba525e5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000004_dba525e5.szar new file mode 100644 index 00000000..58e9d353 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000004_dba525e5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000005_7659cbd7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000005_7659cbd7.szar new file mode 100644 index 00000000..97d9d28a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000005_7659cbd7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000006_0bcb2c5c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000006_0bcb2c5c.szar new file mode 100644 index 00000000..c480c9f7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000006_0bcb2c5c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000007_07ff0814.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000007_07ff0814.szar new file mode 100644 index 00000000..27084820 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000007_07ff0814.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000008_eb519e64.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000008_eb519e64.szar new file mode 100644 index 00000000..58a68f35 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000008_eb519e64.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000009_9c77cadd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000009_9c77cadd.szar new file mode 100644 index 00000000..143f7753 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000009_9c77cadd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000010_72bd8060.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000010_72bd8060.szar new file mode 100644 index 00000000..462142ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000010_72bd8060.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000011_d39358ba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000011_d39358ba.szar new file mode 100644 index 00000000..90ac58e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000011_d39358ba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000012_304e11b6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000012_304e11b6.szar new file mode 100644 index 00000000..077cd181 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000012_304e11b6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000013_1c22d431.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000013_1c22d431.szar new file mode 100644 index 00000000..faf43ca2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000013_1c22d431.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000014_bfd3e69f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000014_bfd3e69f.szar new file mode 100644 index 00000000..a76d30cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000014_bfd3e69f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000015_0f43c812.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000015_0f43c812.szar new file mode 100644 index 00000000..9b658bba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000015_0f43c812.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000016_1fde8cc0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000016_1fde8cc0.szar new file mode 100644 index 00000000..3c381f62 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000016_1fde8cc0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000017_116f6691.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000017_116f6691.szar new file mode 100644 index 00000000..e8d96d29 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000017_116f6691.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000018_fdf6af77.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000018_fdf6af77.szar new file mode 100644 index 00000000..8fbc348f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000018_fdf6af77.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000019_60c603b6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000019_60c603b6.szar new file mode 100644 index 00000000..4422b040 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000019_60c603b6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000020_7a188856.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000020_7a188856.szar new file mode 100644 index 00000000..7748b280 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000020_7a188856.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000021_8e74b79e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000021_8e74b79e.szar new file mode 100644 index 00000000..881a7639 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000021_8e74b79e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000022_c75301a4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000022_c75301a4.szar new file mode 100644 index 00000000..49f39164 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000022_c75301a4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000023_f086fabc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000023_f086fabc.szar new file mode 100644 index 00000000..5083ec9f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000023_f086fabc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000024_56a3e84f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000024_56a3e84f.szar new file mode 100644 index 00000000..a4fc430b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000024_56a3e84f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000025_bcd57381.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000025_bcd57381.szar new file mode 100644 index 00000000..4ec2f529 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000025_bcd57381.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000026_0c3ef587.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000026_0c3ef587.szar new file mode 100644 index 00000000..7a8ff1eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000026_0c3ef587.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000027_4eadc664.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000027_4eadc664.szar new file mode 100644 index 00000000..a312c81f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000027_4eadc664.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000028_9e84c245.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000028_9e84c245.szar new file mode 100644 index 00000000..4b0624d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000028_9e84c245.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000029_b426382a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000029_b426382a.szar new file mode 100644 index 00000000..aeb2503c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000029_b426382a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000030_3bd51017.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000030_3bd51017.szar new file mode 100644 index 00000000..956dbb29 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000030_3bd51017.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000031_9ca70833.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000031_9ca70833.szar new file mode 100644 index 00000000..a79614f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000031_9ca70833.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000032_8adb12f1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000032_8adb12f1.szar new file mode 100644 index 00000000..8627956e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000032_8adb12f1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000033_9ec762ee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000033_9ec762ee.szar new file mode 100644 index 00000000..78186a85 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000033_9ec762ee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000034_525b1da5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000034_525b1da5.szar new file mode 100644 index 00000000..5a41c78c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000034_525b1da5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000035_60522558.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000035_60522558.szar new file mode 100644 index 00000000..5efcd7b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000035_60522558.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000036_01c62bcc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000036_01c62bcc.szar new file mode 100644 index 00000000..9c37c6d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000036_01c62bcc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000037_5bd14a56.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000037_5bd14a56.szar new file mode 100644 index 00000000..2333a638 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000037_5bd14a56.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000038_4b017241.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000038_4b017241.szar new file mode 100644 index 00000000..deb83968 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000038_4b017241.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000039_bce2b26e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000039_bce2b26e.szar new file mode 100644 index 00000000..e41c6696 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000039_bce2b26e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000040_03f5cf70.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000040_03f5cf70.szar new file mode 100644 index 00000000..9491d6b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000040_03f5cf70.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000041_7679773c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000041_7679773c.szar new file mode 100644 index 00000000..5fa47dc6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000041_7679773c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000042_a7e3d2f2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000042_a7e3d2f2.szar new file mode 100644 index 00000000..11c78bf0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000042_a7e3d2f2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000043_637917ea.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000043_637917ea.szar new file mode 100644 index 00000000..832743d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000043_637917ea.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000044_919ff15c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000044_919ff15c.szar new file mode 100644 index 00000000..b210082d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000044_919ff15c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000045_06e86e8c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000045_06e86e8c.szar new file mode 100644 index 00000000..e9ab58c1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000045_06e86e8c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000046_0381cfbf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000046_0381cfbf.szar new file mode 100644 index 00000000..8f3d3fac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000046_0381cfbf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000047_aa49431f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000047_aa49431f.szar new file mode 100644 index 00000000..f055e02d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000047_aa49431f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000048_d52ea2fc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000048_d52ea2fc.szar new file mode 100644 index 00000000..46c39cda Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000048_d52ea2fc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000049_f6a7d7c8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000049_f6a7d7c8.szar new file mode 100644 index 00000000..2d21144c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000049_f6a7d7c8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000050_4df94596.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000050_4df94596.szar new file mode 100644 index 00000000..70de8d13 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000050_4df94596.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000051_29278d3e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000051_29278d3e.szar new file mode 100644 index 00000000..3ea119f7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000051_29278d3e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000052_6f08ea76.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000052_6f08ea76.szar new file mode 100644 index 00000000..46edab33 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000052_6f08ea76.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000053_151eaf5e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000053_151eaf5e.szar new file mode 100644 index 00000000..f777e35b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000053_151eaf5e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000054_b74a9a14.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000054_b74a9a14.szar new file mode 100644 index 00000000..3f0c8dc4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000054_b74a9a14.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000055_9f34a7f7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000055_9f34a7f7.szar new file mode 100644 index 00000000..bd491686 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000055_9f34a7f7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000056_5b6c6209.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000056_5b6c6209.szar new file mode 100644 index 00000000..cb62c985 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000056_5b6c6209.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000057_e0ef3b08.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000057_e0ef3b08.szar new file mode 100644 index 00000000..0b5490b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000057_e0ef3b08.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000058_a680a0ab.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000058_a680a0ab.szar new file mode 100644 index 00000000..793b8e74 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/archive/delta_00000000000000000058_a680a0ab.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000001_84c863fa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000001_84c863fa.szcp new file mode 100644 index 00000000..66c4fe07 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000001_84c863fa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000002_b4a132e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000002_b4a132e9.szcp new file mode 100644 index 00000000..2a526b02 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000002_b4a132e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000003_ffc81be7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000003_ffc81be7.szcp new file mode 100644 index 00000000..1189d2ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000003_ffc81be7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000004_739d155a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000004_739d155a.szcp new file mode 100644 index 00000000..bac5abe5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000004_739d155a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000005_11162a56.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000005_11162a56.szcp new file mode 100644 index 00000000..fc56a19d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000005_11162a56.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000006_8e108cd4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000006_8e108cd4.szcp new file mode 100644 index 00000000..2d6299eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000006_8e108cd4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000007_f9b71774.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000007_f9b71774.szcp new file mode 100644 index 00000000..bc4a6527 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000007_f9b71774.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000008_6497171c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000008_6497171c.szcp new file mode 100644 index 00000000..61cba9e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000008_6497171c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000009_f09219cc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000009_f09219cc.szcp new file mode 100644 index 00000000..f3bb580d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000009_f09219cc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000010_a343805e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000010_a343805e.szcp new file mode 100644 index 00000000..cafc27b6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000010_a343805e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000011_7a04a197.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000011_7a04a197.szcp new file mode 100644 index 00000000..e7d64058 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000011_7a04a197.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000012_799c26f1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000012_799c26f1.szcp new file mode 100644 index 00000000..27d89b5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000012_799c26f1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000013_04e2bdf8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000013_04e2bdf8.szcp new file mode 100644 index 00000000..14b86ee2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000013_04e2bdf8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000014_975e588e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000014_975e588e.szcp new file mode 100644 index 00000000..2908fbad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000014_975e588e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000015_bad19b95.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000015_bad19b95.szcp new file mode 100644 index 00000000..4b5fcb6a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000015_bad19b95.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000016_c208a0d6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000016_c208a0d6.szcp new file mode 100644 index 00000000..36fac5e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000016_c208a0d6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000017_29ff614e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000017_29ff614e.szcp new file mode 100644 index 00000000..8482fe95 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000017_29ff614e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000018_71db101b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000018_71db101b.szcp new file mode 100644 index 00000000..c17f1a77 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000018_71db101b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000019_11b428e0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000019_11b428e0.szcp new file mode 100644 index 00000000..570f2a07 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000019_11b428e0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000020_dcf36c9d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000020_dcf36c9d.szcp new file mode 100644 index 00000000..81c532e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000020_dcf36c9d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000021_0e055db2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000021_0e055db2.szcp new file mode 100644 index 00000000..ac70c64c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000021_0e055db2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000022_47668a4b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000022_47668a4b.szcp new file mode 100644 index 00000000..c927b44f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000022_47668a4b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000023_d04b8b93.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000023_d04b8b93.szcp new file mode 100644 index 00000000..64f43aeb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000023_d04b8b93.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000024_7ed87daf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000024_7ed87daf.szcp new file mode 100644 index 00000000..be6f2374 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000024_7ed87daf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000025_70722863.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000025_70722863.szcp new file mode 100644 index 00000000..48766f1d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000025_70722863.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000026_9d640e8f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000026_9d640e8f.szcp new file mode 100644 index 00000000..dc1c8e82 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000026_9d640e8f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000027_1dd4e3e5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000027_1dd4e3e5.szcp new file mode 100644 index 00000000..22c29c3d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000027_1dd4e3e5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000028_49c0ef37.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000028_49c0ef37.szcp new file mode 100644 index 00000000..204c5712 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000028_49c0ef37.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000029_e61c96e4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000029_e61c96e4.szcp new file mode 100644 index 00000000..333c676c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000029_e61c96e4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000030_59ad9d6c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000030_59ad9d6c.szcp new file mode 100644 index 00000000..3e0f1d98 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000030_59ad9d6c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000031_e3fb8ef3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000031_e3fb8ef3.szcp new file mode 100644 index 00000000..e22c93db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000031_e3fb8ef3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000032_a4138c3d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000032_a4138c3d.szcp new file mode 100644 index 00000000..8a8c0a54 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000032_a4138c3d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000033_6e6918f4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000033_6e6918f4.szcp new file mode 100644 index 00000000..24a4e558 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000033_6e6918f4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000034_cac211ee.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000034_cac211ee.szcp new file mode 100644 index 00000000..5dbafe05 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000034_cac211ee.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000035_cfa952f9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000035_cfa952f9.szcp new file mode 100644 index 00000000..1dd3e2a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000035_cfa952f9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000036_3e67975f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000036_3e67975f.szcp new file mode 100644 index 00000000..2a5d113d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000036_3e67975f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000037_bbf06117.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000037_bbf06117.szcp new file mode 100644 index 00000000..7b090c2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000037_bbf06117.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000038_f090f49d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000038_f090f49d.szcp new file mode 100644 index 00000000..839cb24f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000038_f090f49d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000039_b3435efd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000039_b3435efd.szcp new file mode 100644 index 00000000..3862928c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000039_b3435efd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000040_769a8988.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000040_769a8988.szcp new file mode 100644 index 00000000..f572aaad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000040_769a8988.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000041_ca3645e6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000041_ca3645e6.szcp new file mode 100644 index 00000000..bc5c9a9d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000041_ca3645e6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000042_41c4473e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000042_41c4473e.szcp new file mode 100644 index 00000000..56f1e017 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000042_41c4473e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000043_3d5b2fed.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000043_3d5b2fed.szcp new file mode 100644 index 00000000..2aa6ae54 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000043_3d5b2fed.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000044_47635b75.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000044_47635b75.szcp new file mode 100644 index 00000000..8d358bae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000044_47635b75.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000045_327709d5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000045_327709d5.szcp new file mode 100644 index 00000000..f1138377 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000045_327709d5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000046_7ba92a2d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000046_7ba92a2d.szcp new file mode 100644 index 00000000..9d3c5d44 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000046_7ba92a2d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000047_51d4f4cb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000047_51d4f4cb.szcp new file mode 100644 index 00000000..ab18de84 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000047_51d4f4cb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000048_613d0948.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000048_613d0948.szcp new file mode 100644 index 00000000..d0c9ed8e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000048_613d0948.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000049_1dbe809a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000049_1dbe809a.szcp new file mode 100644 index 00000000..799bbaf4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000049_1dbe809a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000050_bcb64d28.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000050_bcb64d28.szcp new file mode 100644 index 00000000..db9ee09f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000050_bcb64d28.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000051_cb947a6e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000051_cb947a6e.szcp new file mode 100644 index 00000000..5ea19323 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000051_cb947a6e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000052_9a9f215e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000052_9a9f215e.szcp new file mode 100644 index 00000000..0325f453 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000052_9a9f215e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000053_8b05e652.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000053_8b05e652.szcp new file mode 100644 index 00000000..eb36ac34 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000053_8b05e652.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000054_80db008a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000054_80db008a.szcp new file mode 100644 index 00000000..3c48319b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000054_80db008a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000055_35a6ebc9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000055_35a6ebc9.szcp new file mode 100644 index 00000000..bd784760 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000055_35a6ebc9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000056_a09f2e89.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000056_a09f2e89.szcp new file mode 100644 index 00000000..4398d44b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000056_a09f2e89.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000057_450a4a9b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000057_450a4a9b.szcp new file mode 100644 index 00000000..f29ee770 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000057_450a4a9b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000058_7aabb8e3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000058_7aabb8e3.szcp new file mode 100644 index 00000000..f16a5fb6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_023/checkpoints/checkpoint_00000000000000000058_7aabb8e3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000001_e386abed.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000001_e386abed.szar new file mode 100644 index 00000000..5c8aab2c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000001_e386abed.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000002_a700079c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000002_a700079c.szar new file mode 100644 index 00000000..8e3a326c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000002_a700079c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000003_808f2124.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000003_808f2124.szar new file mode 100644 index 00000000..59ba6ca3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000003_808f2124.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000004_51696e2f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000004_51696e2f.szar new file mode 100644 index 00000000..3badea2b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000004_51696e2f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000005_7e8311ae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000005_7e8311ae.szar new file mode 100644 index 00000000..6fc67bd6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000005_7e8311ae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000006_3cc0ca51.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000006_3cc0ca51.szar new file mode 100644 index 00000000..96efdf90 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000006_3cc0ca51.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000007_700107c5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000007_700107c5.szar new file mode 100644 index 00000000..14bfc663 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000007_700107c5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000008_53c6af97.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000008_53c6af97.szar new file mode 100644 index 00000000..fd43c8cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000008_53c6af97.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000009_ca2ad264.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000009_ca2ad264.szar new file mode 100644 index 00000000..15e5adcb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000009_ca2ad264.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000010_05acaa7d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000010_05acaa7d.szar new file mode 100644 index 00000000..e8d708af Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000010_05acaa7d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000011_19ed723d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000011_19ed723d.szar new file mode 100644 index 00000000..093c9b77 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000011_19ed723d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000012_5e7f79cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000012_5e7f79cc.szar new file mode 100644 index 00000000..76ca567b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000012_5e7f79cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000013_82474c48.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000013_82474c48.szar new file mode 100644 index 00000000..b5df2bda Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000013_82474c48.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000014_45de1f8d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000014_45de1f8d.szar new file mode 100644 index 00000000..fb8566d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000014_45de1f8d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000015_fa3a7c3c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000015_fa3a7c3c.szar new file mode 100644 index 00000000..58ece8e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000015_fa3a7c3c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000016_38448c2c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000016_38448c2c.szar new file mode 100644 index 00000000..c375f48e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000016_38448c2c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000017_4ef3e413.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000017_4ef3e413.szar new file mode 100644 index 00000000..71a4d4b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000017_4ef3e413.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000018_96315ae1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000018_96315ae1.szar new file mode 100644 index 00000000..41174a80 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000018_96315ae1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000019_745b2d83.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000019_745b2d83.szar new file mode 100644 index 00000000..6b23a39c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000019_745b2d83.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000020_cef22aba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000020_cef22aba.szar new file mode 100644 index 00000000..d157eda0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000020_cef22aba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000021_4f8f52b6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000021_4f8f52b6.szar new file mode 100644 index 00000000..621fca2d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000021_4f8f52b6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000022_a5699976.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000022_a5699976.szar new file mode 100644 index 00000000..25d6f34e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000022_a5699976.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000023_626b714c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000023_626b714c.szar new file mode 100644 index 00000000..3dceaba6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000023_626b714c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000024_4d0f4783.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000024_4d0f4783.szar new file mode 100644 index 00000000..5029ca99 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000024_4d0f4783.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000025_1393074c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000025_1393074c.szar new file mode 100644 index 00000000..16222ce3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000025_1393074c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000026_eab727a4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000026_eab727a4.szar new file mode 100644 index 00000000..6e10cb07 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000026_eab727a4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000027_81ef736a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000027_81ef736a.szar new file mode 100644 index 00000000..ac4e6757 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000027_81ef736a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000028_da95337d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000028_da95337d.szar new file mode 100644 index 00000000..6bec3de9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000028_da95337d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000029_d2ff5f79.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000029_d2ff5f79.szar new file mode 100644 index 00000000..12f11ccd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000029_d2ff5f79.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000030_1b02968c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000030_1b02968c.szar new file mode 100644 index 00000000..69af63ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000030_1b02968c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000031_0934b782.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000031_0934b782.szar new file mode 100644 index 00000000..2d5cebb9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000031_0934b782.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000032_eb58f570.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000032_eb58f570.szar new file mode 100644 index 00000000..01ed0623 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000032_eb58f570.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000033_5c51a8af.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000033_5c51a8af.szar new file mode 100644 index 00000000..3c09c7f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000033_5c51a8af.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000034_2f785712.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000034_2f785712.szar new file mode 100644 index 00000000..52720aee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000034_2f785712.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000035_f34a9a6e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000035_f34a9a6e.szar new file mode 100644 index 00000000..d83229c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000035_f34a9a6e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000036_ab02f0c1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000036_ab02f0c1.szar new file mode 100644 index 00000000..f74a159a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000036_ab02f0c1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000037_8f0a924e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000037_8f0a924e.szar new file mode 100644 index 00000000..e3351437 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000037_8f0a924e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000038_7aa50c53.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000038_7aa50c53.szar new file mode 100644 index 00000000..a0eb7252 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000038_7aa50c53.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000039_a555af1f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000039_a555af1f.szar new file mode 100644 index 00000000..ebe33322 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000039_a555af1f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000040_4de2c636.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000040_4de2c636.szar new file mode 100644 index 00000000..ee155e74 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000040_4de2c636.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000041_dbb29724.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000041_dbb29724.szar new file mode 100644 index 00000000..7781398d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000041_dbb29724.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000042_ee8f1818.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000042_ee8f1818.szar new file mode 100644 index 00000000..c43b9c23 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000042_ee8f1818.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000043_7b883bc9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000043_7b883bc9.szar new file mode 100644 index 00000000..5f3b21c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000043_7b883bc9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000044_63e11e06.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000044_63e11e06.szar new file mode 100644 index 00000000..b888ea9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000044_63e11e06.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000045_9b0bdcf2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000045_9b0bdcf2.szar new file mode 100644 index 00000000..1446dde1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000045_9b0bdcf2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000046_28a83723.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000046_28a83723.szar new file mode 100644 index 00000000..002611fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000046_28a83723.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000047_5c5d20e9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000047_5c5d20e9.szar new file mode 100644 index 00000000..6946ccd4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000047_5c5d20e9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000048_64a03a92.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000048_64a03a92.szar new file mode 100644 index 00000000..96bbb580 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000048_64a03a92.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000049_5e87e72a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000049_5e87e72a.szar new file mode 100644 index 00000000..05504532 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000049_5e87e72a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000050_31eed8b2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000050_31eed8b2.szar new file mode 100644 index 00000000..3ca91217 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000050_31eed8b2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000051_d7f79990.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000051_d7f79990.szar new file mode 100644 index 00000000..1eccf4cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000051_d7f79990.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000052_c4cb598b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000052_c4cb598b.szar new file mode 100644 index 00000000..c013975d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000052_c4cb598b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000053_e833d515.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000053_e833d515.szar new file mode 100644 index 00000000..1de88089 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000053_e833d515.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000054_f40cbc20.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000054_f40cbc20.szar new file mode 100644 index 00000000..6694293f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000054_f40cbc20.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000055_51f3e5d1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000055_51f3e5d1.szar new file mode 100644 index 00000000..95893b22 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000055_51f3e5d1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000056_15f27736.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000056_15f27736.szar new file mode 100644 index 00000000..66b6f369 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/archive/delta_00000000000000000056_15f27736.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000001_fc7c3ab1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000001_fc7c3ab1.szcp new file mode 100644 index 00000000..afeeb776 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000001_fc7c3ab1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000002_7f689367.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000002_7f689367.szcp new file mode 100644 index 00000000..fd0919f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000002_7f689367.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000003_82fcf9c7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000003_82fcf9c7.szcp new file mode 100644 index 00000000..3dd5b172 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000003_82fcf9c7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000004_dfbf059c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000004_dfbf059c.szcp new file mode 100644 index 00000000..7630d660 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000004_dfbf059c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000005_11a988a2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000005_11a988a2.szcp new file mode 100644 index 00000000..197e0724 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000005_11a988a2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000006_58134e73.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000006_58134e73.szcp new file mode 100644 index 00000000..df907cf6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000006_58134e73.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000007_afc536dc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000007_afc536dc.szcp new file mode 100644 index 00000000..fcc86791 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000007_afc536dc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000008_95e08cf1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000008_95e08cf1.szcp new file mode 100644 index 00000000..92c78b2c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000008_95e08cf1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000009_6cf15a92.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000009_6cf15a92.szcp new file mode 100644 index 00000000..31535338 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000009_6cf15a92.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000010_8c26abff.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000010_8c26abff.szcp new file mode 100644 index 00000000..65baad94 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000010_8c26abff.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000011_eb2de3be.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000011_eb2de3be.szcp new file mode 100644 index 00000000..803bb10f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000011_eb2de3be.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000012_4c596fa8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000012_4c596fa8.szcp new file mode 100644 index 00000000..bc1130a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000012_4c596fa8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000013_0ec62360.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000013_0ec62360.szcp new file mode 100644 index 00000000..c5cff9f3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000013_0ec62360.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000014_8ed688d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000014_8ed688d1.szcp new file mode 100644 index 00000000..e2c00bde Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000014_8ed688d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000015_86a1ab8b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000015_86a1ab8b.szcp new file mode 100644 index 00000000..7bb8ae47 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000015_86a1ab8b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000016_39c6a535.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000016_39c6a535.szcp new file mode 100644 index 00000000..44a560a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000016_39c6a535.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000017_bdd1ca41.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000017_bdd1ca41.szcp new file mode 100644 index 00000000..78867bdf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000017_bdd1ca41.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000018_82e6c261.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000018_82e6c261.szcp new file mode 100644 index 00000000..a73e5543 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000018_82e6c261.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000019_10756b6c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000019_10756b6c.szcp new file mode 100644 index 00000000..201812b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000019_10756b6c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000020_15a4834c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000020_15a4834c.szcp new file mode 100644 index 00000000..4ee82c81 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000020_15a4834c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000021_469aa74f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000021_469aa74f.szcp new file mode 100644 index 00000000..2ec5dc60 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000021_469aa74f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000022_5905238a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000022_5905238a.szcp new file mode 100644 index 00000000..2ba2e7ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000022_5905238a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000023_2de9db30.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000023_2de9db30.szcp new file mode 100644 index 00000000..07f6af3c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000023_2de9db30.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000024_24863e84.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000024_24863e84.szcp new file mode 100644 index 00000000..f89dc438 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000024_24863e84.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000025_c8652c33.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000025_c8652c33.szcp new file mode 100644 index 00000000..65014c12 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000025_c8652c33.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000026_0fd3a685.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000026_0fd3a685.szcp new file mode 100644 index 00000000..5d1d7c1a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000026_0fd3a685.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000027_67a18dc3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000027_67a18dc3.szcp new file mode 100644 index 00000000..de3aa349 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000027_67a18dc3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000028_541bcf3a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000028_541bcf3a.szcp new file mode 100644 index 00000000..b6e15031 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000028_541bcf3a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000029_99f676b1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000029_99f676b1.szcp new file mode 100644 index 00000000..da93041e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000029_99f676b1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000030_e0531d9a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000030_e0531d9a.szcp new file mode 100644 index 00000000..abb282c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000030_e0531d9a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000031_645962e5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000031_645962e5.szcp new file mode 100644 index 00000000..18a6b6e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000031_645962e5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000032_b6a8b7bf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000032_b6a8b7bf.szcp new file mode 100644 index 00000000..c6edad25 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000032_b6a8b7bf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000033_3c9d60e3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000033_3c9d60e3.szcp new file mode 100644 index 00000000..266a48fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000033_3c9d60e3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000034_7c218661.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000034_7c218661.szcp new file mode 100644 index 00000000..829ef827 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000034_7c218661.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000035_4f5ee28f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000035_4f5ee28f.szcp new file mode 100644 index 00000000..7a43fc9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000035_4f5ee28f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000036_ed8c135b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000036_ed8c135b.szcp new file mode 100644 index 00000000..7b97b2fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000036_ed8c135b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000037_a3af64b8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000037_a3af64b8.szcp new file mode 100644 index 00000000..895b91f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000037_a3af64b8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000038_0d7a0da7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000038_0d7a0da7.szcp new file mode 100644 index 00000000..62983b97 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000038_0d7a0da7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000039_f0f7b5db.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000039_f0f7b5db.szcp new file mode 100644 index 00000000..4adb8261 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000039_f0f7b5db.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000040_dc144b33.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000040_dc144b33.szcp new file mode 100644 index 00000000..87a1c0ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000040_dc144b33.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000041_c673a34d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000041_c673a34d.szcp new file mode 100644 index 00000000..c2f381c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000041_c673a34d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000042_ccb0ac59.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000042_ccb0ac59.szcp new file mode 100644 index 00000000..4571ec43 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000042_ccb0ac59.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000043_52787256.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000043_52787256.szcp new file mode 100644 index 00000000..543fdf8d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000043_52787256.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000044_912f98f1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000044_912f98f1.szcp new file mode 100644 index 00000000..91995d06 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000044_912f98f1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000045_59d62567.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000045_59d62567.szcp new file mode 100644 index 00000000..2e791c30 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000045_59d62567.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000046_130a6b02.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000046_130a6b02.szcp new file mode 100644 index 00000000..5a2cbeb8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000046_130a6b02.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000047_0da6d418.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000047_0da6d418.szcp new file mode 100644 index 00000000..2462da28 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000047_0da6d418.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000048_02ac6c13.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000048_02ac6c13.szcp new file mode 100644 index 00000000..27b20b4c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000048_02ac6c13.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000049_a57ebc7c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000049_a57ebc7c.szcp new file mode 100644 index 00000000..f7cb3e59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000049_a57ebc7c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000050_0d50be58.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000050_0d50be58.szcp new file mode 100644 index 00000000..5d03ccb3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000050_0d50be58.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000051_d7945bdd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000051_d7945bdd.szcp new file mode 100644 index 00000000..222492cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000051_d7945bdd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000052_f79e8fb6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000052_f79e8fb6.szcp new file mode 100644 index 00000000..b13663dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000052_f79e8fb6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000053_a75b2922.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000053_a75b2922.szcp new file mode 100644 index 00000000..8f109b7b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000053_a75b2922.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000054_345ff552.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000054_345ff552.szcp new file mode 100644 index 00000000..773548f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000054_345ff552.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000055_3731c27f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000055_3731c27f.szcp new file mode 100644 index 00000000..4186822a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000055_3731c27f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000056_10c2cae4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000056_10c2cae4.szcp new file mode 100644 index 00000000..04d93195 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_024/checkpoints/checkpoint_00000000000000000056_10c2cae4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000001_5398f9ac.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000001_5398f9ac.szar new file mode 100644 index 00000000..492bb564 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000001_5398f9ac.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000002_1cfec3e6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000002_1cfec3e6.szar new file mode 100644 index 00000000..40316cf0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000002_1cfec3e6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000003_49d29232.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000003_49d29232.szar new file mode 100644 index 00000000..0f8bfb46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000003_49d29232.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000004_7dca35f0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000004_7dca35f0.szar new file mode 100644 index 00000000..d4524546 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000004_7dca35f0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000005_99126e61.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000005_99126e61.szar new file mode 100644 index 00000000..e6173974 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000005_99126e61.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000006_c900472a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000006_c900472a.szar new file mode 100644 index 00000000..195a1e45 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000006_c900472a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000007_29fbd093.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000007_29fbd093.szar new file mode 100644 index 00000000..2fc611ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000007_29fbd093.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000008_be969c2d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000008_be969c2d.szar new file mode 100644 index 00000000..59ce2c4d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000008_be969c2d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000009_c85363b7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000009_c85363b7.szar new file mode 100644 index 00000000..f6f1d07d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000009_c85363b7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000010_fa29873b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000010_fa29873b.szar new file mode 100644 index 00000000..9e1e8049 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000010_fa29873b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000011_e19f9151.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000011_e19f9151.szar new file mode 100644 index 00000000..e8c43eff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000011_e19f9151.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000012_58024f53.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000012_58024f53.szar new file mode 100644 index 00000000..55594511 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000012_58024f53.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000013_c8d63890.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000013_c8d63890.szar new file mode 100644 index 00000000..a8d87d34 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000013_c8d63890.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000014_7ea86298.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000014_7ea86298.szar new file mode 100644 index 00000000..c275bdec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000014_7ea86298.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000015_cc3bae12.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000015_cc3bae12.szar new file mode 100644 index 00000000..39044aea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000015_cc3bae12.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000016_d2ae6c19.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000016_d2ae6c19.szar new file mode 100644 index 00000000..bf495829 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000016_d2ae6c19.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000017_2492bb5e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000017_2492bb5e.szar new file mode 100644 index 00000000..ef5cf57f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000017_2492bb5e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000018_24e2355e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000018_24e2355e.szar new file mode 100644 index 00000000..b7de155a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000018_24e2355e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000019_5749ace3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000019_5749ace3.szar new file mode 100644 index 00000000..f47595bf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000019_5749ace3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000020_34b50adf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000020_34b50adf.szar new file mode 100644 index 00000000..dadc0a7b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000020_34b50adf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000021_69b8e907.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000021_69b8e907.szar new file mode 100644 index 00000000..d61a4aad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000021_69b8e907.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000022_45fe75b4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000022_45fe75b4.szar new file mode 100644 index 00000000..7feaa858 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000022_45fe75b4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000023_df54156b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000023_df54156b.szar new file mode 100644 index 00000000..cb4cab04 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000023_df54156b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000024_a74f8f61.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000024_a74f8f61.szar new file mode 100644 index 00000000..914d7bfd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000024_a74f8f61.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000025_e5ff9fbb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000025_e5ff9fbb.szar new file mode 100644 index 00000000..7d56bc79 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000025_e5ff9fbb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000026_76c49d46.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000026_76c49d46.szar new file mode 100644 index 00000000..00d6a761 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000026_76c49d46.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000027_358295b5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000027_358295b5.szar new file mode 100644 index 00000000..b7137174 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000027_358295b5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000028_99068512.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000028_99068512.szar new file mode 100644 index 00000000..c760902b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000028_99068512.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000029_925dc406.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000029_925dc406.szar new file mode 100644 index 00000000..e3aa3de3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000029_925dc406.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000030_6a797074.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000030_6a797074.szar new file mode 100644 index 00000000..69f91300 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000030_6a797074.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000031_766148b6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000031_766148b6.szar new file mode 100644 index 00000000..0683ee61 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000031_766148b6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000032_b301133c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000032_b301133c.szar new file mode 100644 index 00000000..633f9613 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000032_b301133c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000033_40dbb7e2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000033_40dbb7e2.szar new file mode 100644 index 00000000..4de7f7a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000033_40dbb7e2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000034_64db066b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000034_64db066b.szar new file mode 100644 index 00000000..f53bd4eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000034_64db066b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000035_69bed6b1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000035_69bed6b1.szar new file mode 100644 index 00000000..6cb66e60 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000035_69bed6b1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000036_5e73dc6a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000036_5e73dc6a.szar new file mode 100644 index 00000000..6b05bb33 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000036_5e73dc6a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000037_b468bcb4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000037_b468bcb4.szar new file mode 100644 index 00000000..a4a6f8d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000037_b468bcb4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000038_1d9e304c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000038_1d9e304c.szar new file mode 100644 index 00000000..342cd91e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000038_1d9e304c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000039_3d0b9044.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000039_3d0b9044.szar new file mode 100644 index 00000000..7a7a0f13 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000039_3d0b9044.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000040_d003e4b4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000040_d003e4b4.szar new file mode 100644 index 00000000..e213e48b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000040_d003e4b4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000041_eb06f053.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000041_eb06f053.szar new file mode 100644 index 00000000..8019b59c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000041_eb06f053.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000042_0bee8d11.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000042_0bee8d11.szar new file mode 100644 index 00000000..8a77cf06 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000042_0bee8d11.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000043_94748882.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000043_94748882.szar new file mode 100644 index 00000000..4d3c5f10 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000043_94748882.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000044_e6bd01d1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000044_e6bd01d1.szar new file mode 100644 index 00000000..6a323bb8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000044_e6bd01d1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000045_9861e8a6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000045_9861e8a6.szar new file mode 100644 index 00000000..e35f5637 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000045_9861e8a6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000046_df56e80b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000046_df56e80b.szar new file mode 100644 index 00000000..d65fa491 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000046_df56e80b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000047_3e5a3986.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000047_3e5a3986.szar new file mode 100644 index 00000000..a5018662 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000047_3e5a3986.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000048_c528c1ee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000048_c528c1ee.szar new file mode 100644 index 00000000..4719367f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000048_c528c1ee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000049_8342e880.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000049_8342e880.szar new file mode 100644 index 00000000..f37a9a75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000049_8342e880.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000050_5c34688e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000050_5c34688e.szar new file mode 100644 index 00000000..d8af3247 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000050_5c34688e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000051_c049ad39.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000051_c049ad39.szar new file mode 100644 index 00000000..f74bf734 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000051_c049ad39.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000052_08036182.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000052_08036182.szar new file mode 100644 index 00000000..89ad1836 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000052_08036182.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000053_61ad2035.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000053_61ad2035.szar new file mode 100644 index 00000000..f54656bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000053_61ad2035.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000054_eb99a190.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000054_eb99a190.szar new file mode 100644 index 00000000..8994dd89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000054_eb99a190.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000055_0166602e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000055_0166602e.szar new file mode 100644 index 00000000..e78fbce6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/archive/delta_00000000000000000055_0166602e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000001_6fbb1a6e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000001_6fbb1a6e.szcp new file mode 100644 index 00000000..04f7474d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000001_6fbb1a6e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000002_845ba1e4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000002_845ba1e4.szcp new file mode 100644 index 00000000..4a24418f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000002_845ba1e4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000003_49eeb3f9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000003_49eeb3f9.szcp new file mode 100644 index 00000000..cb09de4d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000003_49eeb3f9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000004_390b2ab0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000004_390b2ab0.szcp new file mode 100644 index 00000000..edd43bb7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000004_390b2ab0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000005_15e307ff.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000005_15e307ff.szcp new file mode 100644 index 00000000..80e3c1f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000005_15e307ff.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000006_02377f3b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000006_02377f3b.szcp new file mode 100644 index 00000000..c1dea0bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000006_02377f3b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000007_1dafba18.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000007_1dafba18.szcp new file mode 100644 index 00000000..0b89316b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000007_1dafba18.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000008_4c930b0b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000008_4c930b0b.szcp new file mode 100644 index 00000000..3c74c9f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000008_4c930b0b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000009_8d4dfdec.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000009_8d4dfdec.szcp new file mode 100644 index 00000000..ac6b5fcc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000009_8d4dfdec.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000010_23fb2843.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000010_23fb2843.szcp new file mode 100644 index 00000000..d3df4e32 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000010_23fb2843.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000011_ad370b59.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000011_ad370b59.szcp new file mode 100644 index 00000000..fd80e389 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000011_ad370b59.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000012_b1465a81.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000012_b1465a81.szcp new file mode 100644 index 00000000..fefac4ae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000012_b1465a81.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000013_83fc7b10.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000013_83fc7b10.szcp new file mode 100644 index 00000000..532309ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000013_83fc7b10.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000014_88a9e024.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000014_88a9e024.szcp new file mode 100644 index 00000000..2b26f632 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000014_88a9e024.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000015_089da437.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000015_089da437.szcp new file mode 100644 index 00000000..1396dc45 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000015_089da437.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000016_1f5a8054.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000016_1f5a8054.szcp new file mode 100644 index 00000000..e85419fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000016_1f5a8054.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000017_463d22d0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000017_463d22d0.szcp new file mode 100644 index 00000000..b98dc855 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000017_463d22d0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000018_0a2e6040.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000018_0a2e6040.szcp new file mode 100644 index 00000000..a2868464 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000018_0a2e6040.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000019_40943471.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000019_40943471.szcp new file mode 100644 index 00000000..82593bcb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000019_40943471.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000020_3ad27900.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000020_3ad27900.szcp new file mode 100644 index 00000000..b84cb516 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000020_3ad27900.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000021_831642d2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000021_831642d2.szcp new file mode 100644 index 00000000..3b58fad5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000021_831642d2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000022_0197fc76.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000022_0197fc76.szcp new file mode 100644 index 00000000..b1ca42c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000022_0197fc76.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000023_4566d975.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000023_4566d975.szcp new file mode 100644 index 00000000..ae2651ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000023_4566d975.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000024_b1e818b8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000024_b1e818b8.szcp new file mode 100644 index 00000000..4be583c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000024_b1e818b8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000025_605a70a5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000025_605a70a5.szcp new file mode 100644 index 00000000..710a7bf3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000025_605a70a5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000026_972237d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000026_972237d1.szcp new file mode 100644 index 00000000..d37b3322 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000026_972237d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000027_1996608d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000027_1996608d.szcp new file mode 100644 index 00000000..a3889d54 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000027_1996608d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000028_9ebcc76e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000028_9ebcc76e.szcp new file mode 100644 index 00000000..59fddfdf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000028_9ebcc76e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000029_8cf962f8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000029_8cf962f8.szcp new file mode 100644 index 00000000..6e713634 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000029_8cf962f8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000030_b3d5cf6a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000030_b3d5cf6a.szcp new file mode 100644 index 00000000..b893ddee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000030_b3d5cf6a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000031_0718e144.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000031_0718e144.szcp new file mode 100644 index 00000000..7e6d923b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000031_0718e144.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000032_6c8aa6c6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000032_6c8aa6c6.szcp new file mode 100644 index 00000000..045dbf9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000032_6c8aa6c6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000033_1d472ae0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000033_1d472ae0.szcp new file mode 100644 index 00000000..d4493986 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000033_1d472ae0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000034_5c20fded.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000034_5c20fded.szcp new file mode 100644 index 00000000..a630ea58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000034_5c20fded.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000035_153b4892.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000035_153b4892.szcp new file mode 100644 index 00000000..ebc7e3ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000035_153b4892.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000036_bf1a9dba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000036_bf1a9dba.szcp new file mode 100644 index 00000000..dd01b9d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000036_bf1a9dba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000037_c45f633f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000037_c45f633f.szcp new file mode 100644 index 00000000..ce469f7b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000037_c45f633f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000038_2606575e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000038_2606575e.szcp new file mode 100644 index 00000000..feb7c8d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000038_2606575e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000039_1df739b8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000039_1df739b8.szcp new file mode 100644 index 00000000..16d6a0f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000039_1df739b8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000040_5a5776f1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000040_5a5776f1.szcp new file mode 100644 index 00000000..0a16ce19 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000040_5a5776f1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000041_7eae32e7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000041_7eae32e7.szcp new file mode 100644 index 00000000..d123eb55 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000041_7eae32e7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000042_df0746ca.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000042_df0746ca.szcp new file mode 100644 index 00000000..21631530 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000042_df0746ca.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000043_85639a40.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000043_85639a40.szcp new file mode 100644 index 00000000..e24feb80 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000043_85639a40.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000044_0af3a082.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000044_0af3a082.szcp new file mode 100644 index 00000000..6bac9f91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000044_0af3a082.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000045_73f04d28.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000045_73f04d28.szcp new file mode 100644 index 00000000..acfda5e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000045_73f04d28.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000046_e93dc5b6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000046_e93dc5b6.szcp new file mode 100644 index 00000000..e4235d45 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000046_e93dc5b6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000047_5d90a677.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000047_5d90a677.szcp new file mode 100644 index 00000000..0b1fe1be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000047_5d90a677.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000048_117261e6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000048_117261e6.szcp new file mode 100644 index 00000000..d467607c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000048_117261e6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000049_25fc751e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000049_25fc751e.szcp new file mode 100644 index 00000000..fae82f4c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000049_25fc751e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000050_29e1efcf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000050_29e1efcf.szcp new file mode 100644 index 00000000..a21c1ee4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000050_29e1efcf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000051_734718f1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000051_734718f1.szcp new file mode 100644 index 00000000..66e29e45 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000051_734718f1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000052_e818b20e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000052_e818b20e.szcp new file mode 100644 index 00000000..e342bbcb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000052_e818b20e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000053_cf96c0b7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000053_cf96c0b7.szcp new file mode 100644 index 00000000..a20c3ff8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000053_cf96c0b7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000054_47b2bf0b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000054_47b2bf0b.szcp new file mode 100644 index 00000000..9e8602c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000054_47b2bf0b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000055_02943c1b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000055_02943c1b.szcp new file mode 100644 index 00000000..74b6c113 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_025/checkpoints/checkpoint_00000000000000000055_02943c1b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000001_36fd61f0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000001_36fd61f0.szar new file mode 100644 index 00000000..a45079ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000001_36fd61f0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000002_43f1a68e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000002_43f1a68e.szar new file mode 100644 index 00000000..33380872 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000002_43f1a68e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000003_6217e425.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000003_6217e425.szar new file mode 100644 index 00000000..9a6c1c7e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000003_6217e425.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000004_a49b541d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000004_a49b541d.szar new file mode 100644 index 00000000..bff93921 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000004_a49b541d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000005_b846590b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000005_b846590b.szar new file mode 100644 index 00000000..3aa4832e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000005_b846590b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000006_b0f90b87.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000006_b0f90b87.szar new file mode 100644 index 00000000..a8c6a70a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000006_b0f90b87.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000007_9f2bf1dd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000007_9f2bf1dd.szar new file mode 100644 index 00000000..d87bf1ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000007_9f2bf1dd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000008_652ce09c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000008_652ce09c.szar new file mode 100644 index 00000000..b126a4fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000008_652ce09c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000009_c0f5b986.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000009_c0f5b986.szar new file mode 100644 index 00000000..066970ae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000009_c0f5b986.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000010_5271b791.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000010_5271b791.szar new file mode 100644 index 00000000..c5664d17 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000010_5271b791.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000011_177643bf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000011_177643bf.szar new file mode 100644 index 00000000..161a297b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000011_177643bf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000012_3ad15f30.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000012_3ad15f30.szar new file mode 100644 index 00000000..040ec298 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000012_3ad15f30.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000013_361e147e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000013_361e147e.szar new file mode 100644 index 00000000..192906bd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000013_361e147e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000014_346f45fa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000014_346f45fa.szar new file mode 100644 index 00000000..783b580e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000014_346f45fa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000015_f8524ed6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000015_f8524ed6.szar new file mode 100644 index 00000000..c6bf0d18 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000015_f8524ed6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000016_8da65788.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000016_8da65788.szar new file mode 100644 index 00000000..cecbc84f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000016_8da65788.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000017_84d76a84.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000017_84d76a84.szar new file mode 100644 index 00000000..8865b827 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000017_84d76a84.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000018_32ad8268.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000018_32ad8268.szar new file mode 100644 index 00000000..a35a2023 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000018_32ad8268.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000019_f95511a9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000019_f95511a9.szar new file mode 100644 index 00000000..20debe25 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000019_f95511a9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000020_fbb30912.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000020_fbb30912.szar new file mode 100644 index 00000000..5f007568 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000020_fbb30912.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000021_6e6caa77.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000021_6e6caa77.szar new file mode 100644 index 00000000..7eb20d26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000021_6e6caa77.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000022_fcc8cc51.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000022_fcc8cc51.szar new file mode 100644 index 00000000..3318b603 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000022_fcc8cc51.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000023_81707f77.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000023_81707f77.szar new file mode 100644 index 00000000..7f68593e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000023_81707f77.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000024_c7e3d8b5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000024_c7e3d8b5.szar new file mode 100644 index 00000000..cc15ab30 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000024_c7e3d8b5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000025_a7366c88.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000025_a7366c88.szar new file mode 100644 index 00000000..8d5806df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000025_a7366c88.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000026_2803616c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000026_2803616c.szar new file mode 100644 index 00000000..04b2379c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000026_2803616c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000027_6c52a3ae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000027_6c52a3ae.szar new file mode 100644 index 00000000..54af92f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000027_6c52a3ae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000028_9cef1743.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000028_9cef1743.szar new file mode 100644 index 00000000..1050c5eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000028_9cef1743.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000029_0446bebe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000029_0446bebe.szar new file mode 100644 index 00000000..ce23e782 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000029_0446bebe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000030_43d3d67b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000030_43d3d67b.szar new file mode 100644 index 00000000..896784a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000030_43d3d67b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000031_d261b793.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000031_d261b793.szar new file mode 100644 index 00000000..4b8e741e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000031_d261b793.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000032_e74bb8f2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000032_e74bb8f2.szar new file mode 100644 index 00000000..5172350c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000032_e74bb8f2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000033_518e1937.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000033_518e1937.szar new file mode 100644 index 00000000..cf415abd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000033_518e1937.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000034_f06eff5e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000034_f06eff5e.szar new file mode 100644 index 00000000..09a85e25 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000034_f06eff5e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000035_47d7bbb8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000035_47d7bbb8.szar new file mode 100644 index 00000000..8eaf7479 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000035_47d7bbb8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000036_07266683.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000036_07266683.szar new file mode 100644 index 00000000..1ad3d3c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000036_07266683.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000037_ab319c43.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000037_ab319c43.szar new file mode 100644 index 00000000..d31dc6b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000037_ab319c43.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000038_8056ab50.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000038_8056ab50.szar new file mode 100644 index 00000000..d2ce1294 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000038_8056ab50.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000039_e88b9de7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000039_e88b9de7.szar new file mode 100644 index 00000000..4ae672b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000039_e88b9de7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000040_93c0eb76.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000040_93c0eb76.szar new file mode 100644 index 00000000..3e7cd757 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000040_93c0eb76.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000041_70a1326f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000041_70a1326f.szar new file mode 100644 index 00000000..46c385f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000041_70a1326f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000042_7b8544b9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000042_7b8544b9.szar new file mode 100644 index 00000000..11737eec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000042_7b8544b9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000043_2ba07c3c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000043_2ba07c3c.szar new file mode 100644 index 00000000..39542aa6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000043_2ba07c3c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000044_dc7d29c8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000044_dc7d29c8.szar new file mode 100644 index 00000000..f0a0523d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000044_dc7d29c8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000045_4286a5a2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000045_4286a5a2.szar new file mode 100644 index 00000000..81f11157 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000045_4286a5a2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000046_d54313ea.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000046_d54313ea.szar new file mode 100644 index 00000000..bef7a254 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000046_d54313ea.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000047_975b9282.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000047_975b9282.szar new file mode 100644 index 00000000..f91f6f56 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000047_975b9282.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000048_8c6a40d1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000048_8c6a40d1.szar new file mode 100644 index 00000000..990e7195 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000048_8c6a40d1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000049_f77d3c09.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000049_f77d3c09.szar new file mode 100644 index 00000000..ae62566d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000049_f77d3c09.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000050_30f7be39.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000050_30f7be39.szar new file mode 100644 index 00000000..6a0e394f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000050_30f7be39.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000051_2f839964.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000051_2f839964.szar new file mode 100644 index 00000000..759798b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/archive/delta_00000000000000000051_2f839964.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000001_f0705675.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000001_f0705675.szcp new file mode 100644 index 00000000..e791b0d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000001_f0705675.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000002_76f813a5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000002_76f813a5.szcp new file mode 100644 index 00000000..026788a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000002_76f813a5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000003_c78f8b4b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000003_c78f8b4b.szcp new file mode 100644 index 00000000..01238331 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000003_c78f8b4b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000004_bef08137.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000004_bef08137.szcp new file mode 100644 index 00000000..5d743bdc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000004_bef08137.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000005_f51109b2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000005_f51109b2.szcp new file mode 100644 index 00000000..d263ea9b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000005_f51109b2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000006_84470cf2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000006_84470cf2.szcp new file mode 100644 index 00000000..a901297d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000006_84470cf2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000007_5590c8de.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000007_5590c8de.szcp new file mode 100644 index 00000000..64b85314 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000007_5590c8de.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000008_d053b9a3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000008_d053b9a3.szcp new file mode 100644 index 00000000..d90b3f63 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000008_d053b9a3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000009_7946ccc7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000009_7946ccc7.szcp new file mode 100644 index 00000000..c3d537a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000009_7946ccc7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000010_4628bad5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000010_4628bad5.szcp new file mode 100644 index 00000000..c11156f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000010_4628bad5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000011_cff9fd98.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000011_cff9fd98.szcp new file mode 100644 index 00000000..181cbce1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000011_cff9fd98.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000012_d77d24de.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000012_d77d24de.szcp new file mode 100644 index 00000000..bc320364 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000012_d77d24de.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000013_04066d1e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000013_04066d1e.szcp new file mode 100644 index 00000000..8868c523 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000013_04066d1e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000014_f8c908c4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000014_f8c908c4.szcp new file mode 100644 index 00000000..add512fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000014_f8c908c4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000015_8a6c43e3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000015_8a6c43e3.szcp new file mode 100644 index 00000000..8ef14a99 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000015_8a6c43e3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000016_7617820b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000016_7617820b.szcp new file mode 100644 index 00000000..509cf564 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000016_7617820b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000017_7c8ec886.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000017_7c8ec886.szcp new file mode 100644 index 00000000..5a6a53a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000017_7c8ec886.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000018_468fe7d4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000018_468fe7d4.szcp new file mode 100644 index 00000000..88002c68 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000018_468fe7d4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000019_a035147f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000019_a035147f.szcp new file mode 100644 index 00000000..074edf40 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000019_a035147f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000020_11573a91.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000020_11573a91.szcp new file mode 100644 index 00000000..9f1e4c3f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000020_11573a91.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000021_c0ad26f2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000021_c0ad26f2.szcp new file mode 100644 index 00000000..5b37fe60 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000021_c0ad26f2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000022_945e60b7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000022_945e60b7.szcp new file mode 100644 index 00000000..ef858260 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000022_945e60b7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000023_a5e9efc2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000023_a5e9efc2.szcp new file mode 100644 index 00000000..001307e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000023_a5e9efc2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000024_79fe4c0a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000024_79fe4c0a.szcp new file mode 100644 index 00000000..924a863c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000024_79fe4c0a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000025_411115d2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000025_411115d2.szcp new file mode 100644 index 00000000..acc39ad6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000025_411115d2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000026_d0dc4b53.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000026_d0dc4b53.szcp new file mode 100644 index 00000000..d1d2d1e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000026_d0dc4b53.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000027_c067997a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000027_c067997a.szcp new file mode 100644 index 00000000..93241a44 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000027_c067997a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000028_f385f5e1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000028_f385f5e1.szcp new file mode 100644 index 00000000..56b3037f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000028_f385f5e1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000029_a8165edf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000029_a8165edf.szcp new file mode 100644 index 00000000..545f7f2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000029_a8165edf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000030_955bb250.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000030_955bb250.szcp new file mode 100644 index 00000000..7fc121a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000030_955bb250.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000031_de083adc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000031_de083adc.szcp new file mode 100644 index 00000000..ff64b600 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000031_de083adc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000032_edcdfa6c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000032_edcdfa6c.szcp new file mode 100644 index 00000000..cb41ac4a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000032_edcdfa6c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000033_937ec498.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000033_937ec498.szcp new file mode 100644 index 00000000..46609efd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000033_937ec498.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000034_3e814dc1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000034_3e814dc1.szcp new file mode 100644 index 00000000..bc77c391 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000034_3e814dc1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000035_8ccad6ee.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000035_8ccad6ee.szcp new file mode 100644 index 00000000..1d54e5c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000035_8ccad6ee.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000036_7c9d4d80.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000036_7c9d4d80.szcp new file mode 100644 index 00000000..94a18e6d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000036_7c9d4d80.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000037_5f906fba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000037_5f906fba.szcp new file mode 100644 index 00000000..629a2bc2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000037_5f906fba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000038_00cbd18d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000038_00cbd18d.szcp new file mode 100644 index 00000000..2376feee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000038_00cbd18d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000039_b2a9b589.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000039_b2a9b589.szcp new file mode 100644 index 00000000..d9667f3f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000039_b2a9b589.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000040_fb60f231.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000040_fb60f231.szcp new file mode 100644 index 00000000..cd34abde Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000040_fb60f231.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000041_cff6ecf6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000041_cff6ecf6.szcp new file mode 100644 index 00000000..bd31b883 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000041_cff6ecf6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000042_c414392d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000042_c414392d.szcp new file mode 100644 index 00000000..1cf39268 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000042_c414392d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000043_e25a009c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000043_e25a009c.szcp new file mode 100644 index 00000000..f8118235 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000043_e25a009c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000044_63058234.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000044_63058234.szcp new file mode 100644 index 00000000..5691ffef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000044_63058234.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000045_0d67ca21.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000045_0d67ca21.szcp new file mode 100644 index 00000000..e48c43a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000045_0d67ca21.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000046_a825de8e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000046_a825de8e.szcp new file mode 100644 index 00000000..66ac52f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000046_a825de8e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000047_95da5426.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000047_95da5426.szcp new file mode 100644 index 00000000..c5b76f77 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000047_95da5426.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000048_0312953b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000048_0312953b.szcp new file mode 100644 index 00000000..0bb6cc84 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000048_0312953b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000049_0a26afd9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000049_0a26afd9.szcp new file mode 100644 index 00000000..d4170362 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000049_0a26afd9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000050_b1bf70e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000050_b1bf70e9.szcp new file mode 100644 index 00000000..9ab3b5c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000050_b1bf70e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000051_cc9082be.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000051_cc9082be.szcp new file mode 100644 index 00000000..14a5e063 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_026/checkpoints/checkpoint_00000000000000000051_cc9082be.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000001_ceef3eee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000001_ceef3eee.szar new file mode 100644 index 00000000..8fe5536b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000001_ceef3eee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000002_93df6453.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000002_93df6453.szar new file mode 100644 index 00000000..f4995c88 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000002_93df6453.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000003_8f2d1102.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000003_8f2d1102.szar new file mode 100644 index 00000000..ac77faaf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000003_8f2d1102.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000004_69d06285.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000004_69d06285.szar new file mode 100644 index 00000000..fd0d8989 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000004_69d06285.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000005_bcf16bbd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000005_bcf16bbd.szar new file mode 100644 index 00000000..4e2845c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000005_bcf16bbd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000006_7f7378cb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000006_7f7378cb.szar new file mode 100644 index 00000000..2e6d0f2d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000006_7f7378cb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000007_bc9566fe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000007_bc9566fe.szar new file mode 100644 index 00000000..a767446b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000007_bc9566fe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000008_afe5daff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000008_afe5daff.szar new file mode 100644 index 00000000..b378c34e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000008_afe5daff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000009_ddcb4a03.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000009_ddcb4a03.szar new file mode 100644 index 00000000..664ed99a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000009_ddcb4a03.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000010_19e8cee7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000010_19e8cee7.szar new file mode 100644 index 00000000..dc55e92e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000010_19e8cee7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000011_7c904885.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000011_7c904885.szar new file mode 100644 index 00000000..d56049e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000011_7c904885.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000012_055bcd67.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000012_055bcd67.szar new file mode 100644 index 00000000..f2e27aaf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000012_055bcd67.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000013_6fef06ff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000013_6fef06ff.szar new file mode 100644 index 00000000..4ab3fe3c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000013_6fef06ff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000014_a28b965f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000014_a28b965f.szar new file mode 100644 index 00000000..302802ba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000014_a28b965f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000015_a8faf8de.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000015_a8faf8de.szar new file mode 100644 index 00000000..b372ab2f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000015_a8faf8de.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000016_6ae61d88.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000016_6ae61d88.szar new file mode 100644 index 00000000..70f4e44d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000016_6ae61d88.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000017_f89256b0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000017_f89256b0.szar new file mode 100644 index 00000000..46ab672c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000017_f89256b0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000018_fad1b29a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000018_fad1b29a.szar new file mode 100644 index 00000000..7f7f1ac4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000018_fad1b29a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000019_01fdc346.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000019_01fdc346.szar new file mode 100644 index 00000000..a6f1fb75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000019_01fdc346.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000020_81bc9884.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000020_81bc9884.szar new file mode 100644 index 00000000..7a4631c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000020_81bc9884.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000021_450ff2e9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000021_450ff2e9.szar new file mode 100644 index 00000000..d54c5ed1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000021_450ff2e9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000022_75a05883.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000022_75a05883.szar new file mode 100644 index 00000000..3de6d9dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000022_75a05883.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000023_49a3ce18.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000023_49a3ce18.szar new file mode 100644 index 00000000..0051391b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000023_49a3ce18.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000024_5d05e8f1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000024_5d05e8f1.szar new file mode 100644 index 00000000..e287a77f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000024_5d05e8f1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000025_436af098.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000025_436af098.szar new file mode 100644 index 00000000..1069a8e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000025_436af098.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000026_94d6590b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000026_94d6590b.szar new file mode 100644 index 00000000..edbe0a68 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000026_94d6590b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000027_545834a7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000027_545834a7.szar new file mode 100644 index 00000000..31e0660f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000027_545834a7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000028_ca9304cf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000028_ca9304cf.szar new file mode 100644 index 00000000..a666fbba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000028_ca9304cf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000029_4f007383.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000029_4f007383.szar new file mode 100644 index 00000000..d7366aad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000029_4f007383.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000030_573ae599.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000030_573ae599.szar new file mode 100644 index 00000000..b3587af5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000030_573ae599.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000031_ed7096df.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000031_ed7096df.szar new file mode 100644 index 00000000..9f143672 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000031_ed7096df.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000032_879aa662.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000032_879aa662.szar new file mode 100644 index 00000000..84b6d418 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000032_879aa662.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000033_0c9a8b64.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000033_0c9a8b64.szar new file mode 100644 index 00000000..f38327e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000033_0c9a8b64.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000034_ffe4bc25.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000034_ffe4bc25.szar new file mode 100644 index 00000000..7faaf3f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000034_ffe4bc25.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000035_8b1c4a4a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000035_8b1c4a4a.szar new file mode 100644 index 00000000..0153a943 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000035_8b1c4a4a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000036_5f4e9664.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000036_5f4e9664.szar new file mode 100644 index 00000000..1f4c941d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000036_5f4e9664.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000037_b051e5d8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000037_b051e5d8.szar new file mode 100644 index 00000000..5fe8a409 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000037_b051e5d8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000038_10376457.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000038_10376457.szar new file mode 100644 index 00000000..040a0672 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000038_10376457.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000039_557e6d61.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000039_557e6d61.szar new file mode 100644 index 00000000..7e6ff94c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000039_557e6d61.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000040_54d0ab1d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000040_54d0ab1d.szar new file mode 100644 index 00000000..558bff9d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000040_54d0ab1d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000041_f907a89e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000041_f907a89e.szar new file mode 100644 index 00000000..0d79801d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000041_f907a89e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000042_ac91702c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000042_ac91702c.szar new file mode 100644 index 00000000..fb3bf801 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000042_ac91702c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000043_a56a845c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000043_a56a845c.szar new file mode 100644 index 00000000..72a44daa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000043_a56a845c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000044_590917a1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000044_590917a1.szar new file mode 100644 index 00000000..385b4f75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000044_590917a1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000045_19f3ff1f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000045_19f3ff1f.szar new file mode 100644 index 00000000..daeda41f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000045_19f3ff1f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000046_048bb5cd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000046_048bb5cd.szar new file mode 100644 index 00000000..9b4fe205 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000046_048bb5cd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000047_224b568b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000047_224b568b.szar new file mode 100644 index 00000000..2eec084a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000047_224b568b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000048_e38a0010.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000048_e38a0010.szar new file mode 100644 index 00000000..dea6ed7c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000048_e38a0010.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000049_7cdfdc1a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000049_7cdfdc1a.szar new file mode 100644 index 00000000..bc9284ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000049_7cdfdc1a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000050_24f08b87.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000050_24f08b87.szar new file mode 100644 index 00000000..0a85da32 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000050_24f08b87.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000051_eda6b1a3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000051_eda6b1a3.szar new file mode 100644 index 00000000..81d27c5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000051_eda6b1a3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000052_31b10536.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000052_31b10536.szar new file mode 100644 index 00000000..b90a1fd5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000052_31b10536.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000053_14687df0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000053_14687df0.szar new file mode 100644 index 00000000..f4bf88de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000053_14687df0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000054_129f5eee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000054_129f5eee.szar new file mode 100644 index 00000000..1de2a9df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000054_129f5eee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000055_71f4218b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000055_71f4218b.szar new file mode 100644 index 00000000..ea9a8ba9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000055_71f4218b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000056_92d74073.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000056_92d74073.szar new file mode 100644 index 00000000..07b78f7d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000056_92d74073.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000057_a4f957d6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000057_a4f957d6.szar new file mode 100644 index 00000000..c54c9a9f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000057_a4f957d6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000058_6d59fb4a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000058_6d59fb4a.szar new file mode 100644 index 00000000..442c2fa3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000058_6d59fb4a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000059_638fd326.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000059_638fd326.szar new file mode 100644 index 00000000..6b2bc182 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000059_638fd326.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000060_d2bc8de4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000060_d2bc8de4.szar new file mode 100644 index 00000000..18683c91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000060_d2bc8de4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000061_317f74f2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000061_317f74f2.szar new file mode 100644 index 00000000..ca550bb3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000061_317f74f2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000062_350996ad.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000062_350996ad.szar new file mode 100644 index 00000000..d4f89357 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000062_350996ad.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000063_28b6cb81.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000063_28b6cb81.szar new file mode 100644 index 00000000..24f11bf4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000063_28b6cb81.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000064_7d2e5d5e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000064_7d2e5d5e.szar new file mode 100644 index 00000000..5e00d9f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000064_7d2e5d5e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000065_c80c51bd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000065_c80c51bd.szar new file mode 100644 index 00000000..09c642f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/archive/delta_00000000000000000065_c80c51bd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000001_b441a37b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000001_b441a37b.szcp new file mode 100644 index 00000000..18e728dd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000001_b441a37b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000002_98c23630.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000002_98c23630.szcp new file mode 100644 index 00000000..542fb09c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000002_98c23630.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000003_42821bed.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000003_42821bed.szcp new file mode 100644 index 00000000..dfba21f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000003_42821bed.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000004_5a847e52.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000004_5a847e52.szcp new file mode 100644 index 00000000..861a72a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000004_5a847e52.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000005_a7cd58b7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000005_a7cd58b7.szcp new file mode 100644 index 00000000..271b902f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000005_a7cd58b7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000006_db8d851e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000006_db8d851e.szcp new file mode 100644 index 00000000..14bbf804 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000006_db8d851e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000007_086fbcd0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000007_086fbcd0.szcp new file mode 100644 index 00000000..a2319bbd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000007_086fbcd0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000008_2d6bfba1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000008_2d6bfba1.szcp new file mode 100644 index 00000000..a66925c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000008_2d6bfba1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000009_c465a5fd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000009_c465a5fd.szcp new file mode 100644 index 00000000..84e6eff7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000009_c465a5fd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000010_2e27934a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000010_2e27934a.szcp new file mode 100644 index 00000000..89580ea2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000010_2e27934a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000011_dba7310d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000011_dba7310d.szcp new file mode 100644 index 00000000..005a26dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000011_dba7310d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000012_a8cddc47.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000012_a8cddc47.szcp new file mode 100644 index 00000000..22f930a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000012_a8cddc47.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000013_53b35a92.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000013_53b35a92.szcp new file mode 100644 index 00000000..a7786c09 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000013_53b35a92.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000014_be12c48e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000014_be12c48e.szcp new file mode 100644 index 00000000..79d65df3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000014_be12c48e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000015_bbff9ef3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000015_bbff9ef3.szcp new file mode 100644 index 00000000..61a3ee3d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000015_bbff9ef3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000016_f5b7e46d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000016_f5b7e46d.szcp new file mode 100644 index 00000000..f66dcdf7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000016_f5b7e46d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000017_94d9832b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000017_94d9832b.szcp new file mode 100644 index 00000000..fe965f26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000017_94d9832b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000018_bf69df78.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000018_bf69df78.szcp new file mode 100644 index 00000000..c485443a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000018_bf69df78.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000019_4f043524.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000019_4f043524.szcp new file mode 100644 index 00000000..82f9a572 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000019_4f043524.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000020_44e04bd9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000020_44e04bd9.szcp new file mode 100644 index 00000000..be410082 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000020_44e04bd9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000021_ece6bb6f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000021_ece6bb6f.szcp new file mode 100644 index 00000000..f18631fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000021_ece6bb6f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000022_aae2b355.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000022_aae2b355.szcp new file mode 100644 index 00000000..c120bed7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000022_aae2b355.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000023_ea1577d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000023_ea1577d7.szcp new file mode 100644 index 00000000..7d5a8981 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000023_ea1577d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000024_bda9b341.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000024_bda9b341.szcp new file mode 100644 index 00000000..dbac81ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000024_bda9b341.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000025_2ffdc4fe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000025_2ffdc4fe.szcp new file mode 100644 index 00000000..2f5b8eb7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000025_2ffdc4fe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000026_66f795e2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000026_66f795e2.szcp new file mode 100644 index 00000000..4395da97 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000026_66f795e2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000027_3aa20417.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000027_3aa20417.szcp new file mode 100644 index 00000000..d770b474 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000027_3aa20417.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000028_acb51b72.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000028_acb51b72.szcp new file mode 100644 index 00000000..f81f4074 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000028_acb51b72.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000029_5f06051c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000029_5f06051c.szcp new file mode 100644 index 00000000..b9099d12 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000029_5f06051c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000030_a65cba0a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000030_a65cba0a.szcp new file mode 100644 index 00000000..8247e321 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000030_a65cba0a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000031_9ffdc60d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000031_9ffdc60d.szcp new file mode 100644 index 00000000..d546b509 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000031_9ffdc60d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000032_d6c38c39.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000032_d6c38c39.szcp new file mode 100644 index 00000000..c99fe90f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000032_d6c38c39.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000033_8973e786.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000033_8973e786.szcp new file mode 100644 index 00000000..8d46e080 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000033_8973e786.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000034_a965aee0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000034_a965aee0.szcp new file mode 100644 index 00000000..5fff9289 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000034_a965aee0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000035_bc05b527.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000035_bc05b527.szcp new file mode 100644 index 00000000..0b961c06 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000035_bc05b527.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000036_f604023b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000036_f604023b.szcp new file mode 100644 index 00000000..7cd87d58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000036_f604023b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000037_55e3d5ac.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000037_55e3d5ac.szcp new file mode 100644 index 00000000..69b7f8a9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000037_55e3d5ac.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000038_c8e70893.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000038_c8e70893.szcp new file mode 100644 index 00000000..af53e5ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000038_c8e70893.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000039_56136b71.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000039_56136b71.szcp new file mode 100644 index 00000000..4be8170d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000039_56136b71.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000040_80f1a2dd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000040_80f1a2dd.szcp new file mode 100644 index 00000000..c45e4b89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000040_80f1a2dd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000041_da2d64f2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000041_da2d64f2.szcp new file mode 100644 index 00000000..f763bc8b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000041_da2d64f2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000042_1a386b6a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000042_1a386b6a.szcp new file mode 100644 index 00000000..465fa6b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000042_1a386b6a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000043_f727b523.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000043_f727b523.szcp new file mode 100644 index 00000000..ea9f5e52 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000043_f727b523.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000044_a97ee978.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000044_a97ee978.szcp new file mode 100644 index 00000000..4b6a08c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000044_a97ee978.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000045_a8caad64.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000045_a8caad64.szcp new file mode 100644 index 00000000..25497905 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000045_a8caad64.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000046_2d05cc83.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000046_2d05cc83.szcp new file mode 100644 index 00000000..882841c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000046_2d05cc83.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000047_e0cbf75f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000047_e0cbf75f.szcp new file mode 100644 index 00000000..f273be39 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000047_e0cbf75f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000048_4c8d1738.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000048_4c8d1738.szcp new file mode 100644 index 00000000..ea1b3afc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000048_4c8d1738.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000049_c51e8af2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000049_c51e8af2.szcp new file mode 100644 index 00000000..10019267 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000049_c51e8af2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000050_9855b46c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000050_9855b46c.szcp new file mode 100644 index 00000000..8354d877 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000050_9855b46c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000051_2090d172.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000051_2090d172.szcp new file mode 100644 index 00000000..1dfb3ce4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000051_2090d172.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000052_63d1bed9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000052_63d1bed9.szcp new file mode 100644 index 00000000..b69295f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000052_63d1bed9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000053_357c3d68.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000053_357c3d68.szcp new file mode 100644 index 00000000..5abe0490 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000053_357c3d68.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000054_36239f8d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000054_36239f8d.szcp new file mode 100644 index 00000000..f530a666 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000054_36239f8d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000055_6bc95b7d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000055_6bc95b7d.szcp new file mode 100644 index 00000000..2bf6acc0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000055_6bc95b7d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000056_2a3d8271.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000056_2a3d8271.szcp new file mode 100644 index 00000000..da8143c9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000056_2a3d8271.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000057_22351253.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000057_22351253.szcp new file mode 100644 index 00000000..e51e58ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000057_22351253.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000058_e6c1b719.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000058_e6c1b719.szcp new file mode 100644 index 00000000..3d96ddb1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000058_e6c1b719.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000059_1ec2dd6b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000059_1ec2dd6b.szcp new file mode 100644 index 00000000..cd27f5d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000059_1ec2dd6b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000060_36adf1db.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000060_36adf1db.szcp new file mode 100644 index 00000000..36a1a12b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000060_36adf1db.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000061_ad9badbe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000061_ad9badbe.szcp new file mode 100644 index 00000000..14d804fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000061_ad9badbe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000062_c5ded551.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000062_c5ded551.szcp new file mode 100644 index 00000000..db5d85a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000062_c5ded551.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000063_fa1abfe6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000063_fa1abfe6.szcp new file mode 100644 index 00000000..2dce91dd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000063_fa1abfe6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000064_03582be3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000064_03582be3.szcp new file mode 100644 index 00000000..6579801c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000064_03582be3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000065_eec72bf0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000065_eec72bf0.szcp new file mode 100644 index 00000000..fad2fe48 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_027/checkpoints/checkpoint_00000000000000000065_eec72bf0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000001_7495f098.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000001_7495f098.szar new file mode 100644 index 00000000..233cfe87 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000001_7495f098.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000002_f5a3d125.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000002_f5a3d125.szar new file mode 100644 index 00000000..49845b67 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000002_f5a3d125.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000003_4c16396a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000003_4c16396a.szar new file mode 100644 index 00000000..b8a93044 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000003_4c16396a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000004_87efc99a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000004_87efc99a.szar new file mode 100644 index 00000000..8751fc72 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000004_87efc99a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000005_003a334c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000005_003a334c.szar new file mode 100644 index 00000000..28e8f569 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000005_003a334c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000006_58f583af.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000006_58f583af.szar new file mode 100644 index 00000000..c6915ed2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000006_58f583af.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000007_a842ddfd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000007_a842ddfd.szar new file mode 100644 index 00000000..e5a9b1fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000007_a842ddfd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000008_739bb64f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000008_739bb64f.szar new file mode 100644 index 00000000..dd8ddbe3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000008_739bb64f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000009_ddcd80ae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000009_ddcd80ae.szar new file mode 100644 index 00000000..54940c89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000009_ddcd80ae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000010_99f40619.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000010_99f40619.szar new file mode 100644 index 00000000..c00d1444 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000010_99f40619.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000011_2653e05c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000011_2653e05c.szar new file mode 100644 index 00000000..5b9c7ae7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000011_2653e05c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000012_3ff12e83.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000012_3ff12e83.szar new file mode 100644 index 00000000..32d1f987 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000012_3ff12e83.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000013_e86efba9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000013_e86efba9.szar new file mode 100644 index 00000000..3a097629 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000013_e86efba9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000014_b6c21988.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000014_b6c21988.szar new file mode 100644 index 00000000..5d256a26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000014_b6c21988.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000015_254d2de5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000015_254d2de5.szar new file mode 100644 index 00000000..141fff71 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000015_254d2de5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000016_9a3ce283.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000016_9a3ce283.szar new file mode 100644 index 00000000..9ce8b99a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000016_9a3ce283.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000017_5b6a9242.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000017_5b6a9242.szar new file mode 100644 index 00000000..051229f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000017_5b6a9242.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000018_c4b6003e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000018_c4b6003e.szar new file mode 100644 index 00000000..d6045e8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000018_c4b6003e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000019_5bb547c1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000019_5bb547c1.szar new file mode 100644 index 00000000..2fbcc0d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000019_5bb547c1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000020_030f53f7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000020_030f53f7.szar new file mode 100644 index 00000000..9664edb6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000020_030f53f7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000021_aa909c01.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000021_aa909c01.szar new file mode 100644 index 00000000..67423af1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000021_aa909c01.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000022_aefb7a4d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000022_aefb7a4d.szar new file mode 100644 index 00000000..7ca5f453 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000022_aefb7a4d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000023_e9300761.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000023_e9300761.szar new file mode 100644 index 00000000..18d18ee5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000023_e9300761.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000024_4fd79464.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000024_4fd79464.szar new file mode 100644 index 00000000..cf1f256a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000024_4fd79464.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000025_4e0d3ba5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000025_4e0d3ba5.szar new file mode 100644 index 00000000..cc3553bd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000025_4e0d3ba5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000026_816a9936.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000026_816a9936.szar new file mode 100644 index 00000000..c6fcefeb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000026_816a9936.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000027_9c98dc6f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000027_9c98dc6f.szar new file mode 100644 index 00000000..4be96bbe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000027_9c98dc6f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000028_d3dd7ae5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000028_d3dd7ae5.szar new file mode 100644 index 00000000..600d803a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000028_d3dd7ae5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000029_56f1685a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000029_56f1685a.szar new file mode 100644 index 00000000..23099ef6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000029_56f1685a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000030_a4e495bb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000030_a4e495bb.szar new file mode 100644 index 00000000..a803307f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000030_a4e495bb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000031_f38e7e0e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000031_f38e7e0e.szar new file mode 100644 index 00000000..d24ec55e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000031_f38e7e0e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000032_58f87c76.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000032_58f87c76.szar new file mode 100644 index 00000000..72d5da5e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000032_58f87c76.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000033_accc9775.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000033_accc9775.szar new file mode 100644 index 00000000..cb1eedd5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000033_accc9775.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000034_02d60b67.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000034_02d60b67.szar new file mode 100644 index 00000000..d527e166 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000034_02d60b67.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000035_58ab7c84.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000035_58ab7c84.szar new file mode 100644 index 00000000..0c67fde5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000035_58ab7c84.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000036_adc398a7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000036_adc398a7.szar new file mode 100644 index 00000000..33ec6e1d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000036_adc398a7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000037_00e16147.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000037_00e16147.szar new file mode 100644 index 00000000..11e0da46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000037_00e16147.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000038_2e35cd44.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000038_2e35cd44.szar new file mode 100644 index 00000000..ac8aa733 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000038_2e35cd44.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000039_bbb82fb3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000039_bbb82fb3.szar new file mode 100644 index 00000000..a4ab4eac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000039_bbb82fb3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000040_264333e3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000040_264333e3.szar new file mode 100644 index 00000000..96e266ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000040_264333e3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000041_8ec4ca03.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000041_8ec4ca03.szar new file mode 100644 index 00000000..b1677916 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000041_8ec4ca03.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000042_6d138c6a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000042_6d138c6a.szar new file mode 100644 index 00000000..265a457e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000042_6d138c6a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000043_f5659a17.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000043_f5659a17.szar new file mode 100644 index 00000000..f1b5f5c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000043_f5659a17.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000044_36d0f13a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000044_36d0f13a.szar new file mode 100644 index 00000000..03bac8f3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000044_36d0f13a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000045_7562a459.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000045_7562a459.szar new file mode 100644 index 00000000..b7fdb3e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000045_7562a459.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000046_97c80145.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000046_97c80145.szar new file mode 100644 index 00000000..b4858bc5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000046_97c80145.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000047_389cb845.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000047_389cb845.szar new file mode 100644 index 00000000..5dd48662 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000047_389cb845.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000048_d388ca33.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000048_d388ca33.szar new file mode 100644 index 00000000..3910b665 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000048_d388ca33.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000049_c855db42.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000049_c855db42.szar new file mode 100644 index 00000000..c3e2ebf2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000049_c855db42.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000050_caa6e966.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000050_caa6e966.szar new file mode 100644 index 00000000..33d3498b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000050_caa6e966.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000051_24b111b9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000051_24b111b9.szar new file mode 100644 index 00000000..5b91810f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000051_24b111b9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000052_4def7f8c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000052_4def7f8c.szar new file mode 100644 index 00000000..82273d3d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000052_4def7f8c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000053_3f299beb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000053_3f299beb.szar new file mode 100644 index 00000000..fb390565 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000053_3f299beb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000054_273c00ce.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000054_273c00ce.szar new file mode 100644 index 00000000..85d63783 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000054_273c00ce.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000055_429d3f63.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000055_429d3f63.szar new file mode 100644 index 00000000..4c54d17b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000055_429d3f63.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000056_709d8d90.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000056_709d8d90.szar new file mode 100644 index 00000000..ad5c5f9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000056_709d8d90.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000057_79e9f2bf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000057_79e9f2bf.szar new file mode 100644 index 00000000..4a4c1ea7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/archive/delta_00000000000000000057_79e9f2bf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000001_3819d446.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000001_3819d446.szcp new file mode 100644 index 00000000..cf3164a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000001_3819d446.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000002_75410744.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000002_75410744.szcp new file mode 100644 index 00000000..079db97e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000002_75410744.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000003_180fd9aa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000003_180fd9aa.szcp new file mode 100644 index 00000000..1b3f33ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000003_180fd9aa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000004_4bce9364.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000004_4bce9364.szcp new file mode 100644 index 00000000..319826d2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000004_4bce9364.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000005_eace1bab.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000005_eace1bab.szcp new file mode 100644 index 00000000..fa655b94 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000005_eace1bab.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000006_355234d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000006_355234d1.szcp new file mode 100644 index 00000000..dc7d656f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000006_355234d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000007_071bc5b0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000007_071bc5b0.szcp new file mode 100644 index 00000000..f9875386 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000007_071bc5b0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000008_7ce54fb6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000008_7ce54fb6.szcp new file mode 100644 index 00000000..0dea1ba3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000008_7ce54fb6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000009_245f17de.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000009_245f17de.szcp new file mode 100644 index 00000000..1d89b88f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000009_245f17de.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000010_5ddaaa71.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000010_5ddaaa71.szcp new file mode 100644 index 00000000..cdd3fd0b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000010_5ddaaa71.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000011_5e1307c5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000011_5e1307c5.szcp new file mode 100644 index 00000000..b6b23010 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000011_5e1307c5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000012_a1dcea52.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000012_a1dcea52.szcp new file mode 100644 index 00000000..fc7a68db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000012_a1dcea52.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000013_9a0d8b57.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000013_9a0d8b57.szcp new file mode 100644 index 00000000..f5eeedf4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000013_9a0d8b57.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000014_4be84141.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000014_4be84141.szcp new file mode 100644 index 00000000..9fc602d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000014_4be84141.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000015_dd1c89a3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000015_dd1c89a3.szcp new file mode 100644 index 00000000..9e042e40 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000015_dd1c89a3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000016_db966d20.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000016_db966d20.szcp new file mode 100644 index 00000000..4f980e89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000016_db966d20.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000017_382b42d5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000017_382b42d5.szcp new file mode 100644 index 00000000..b86135b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000017_382b42d5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000018_a01b0c1e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000018_a01b0c1e.szcp new file mode 100644 index 00000000..26e4a79e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000018_a01b0c1e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000019_5a36a446.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000019_5a36a446.szcp new file mode 100644 index 00000000..300c2ca1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000019_5a36a446.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000020_b8a78e6c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000020_b8a78e6c.szcp new file mode 100644 index 00000000..661fc1ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000020_b8a78e6c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000021_2e81e525.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000021_2e81e525.szcp new file mode 100644 index 00000000..3c233f90 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000021_2e81e525.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000022_e708b1f7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000022_e708b1f7.szcp new file mode 100644 index 00000000..972b4f1a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000022_e708b1f7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000023_e386f91a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000023_e386f91a.szcp new file mode 100644 index 00000000..692a9ad6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000023_e386f91a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000024_48321e5e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000024_48321e5e.szcp new file mode 100644 index 00000000..b10f8fba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000024_48321e5e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000025_06c5094c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000025_06c5094c.szcp new file mode 100644 index 00000000..55254afc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000025_06c5094c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000026_d84b50b1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000026_d84b50b1.szcp new file mode 100644 index 00000000..cf1a87e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000026_d84b50b1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000027_e7232cba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000027_e7232cba.szcp new file mode 100644 index 00000000..b8c2aa4a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000027_e7232cba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000028_7f7ec3af.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000028_7f7ec3af.szcp new file mode 100644 index 00000000..17cd7315 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000028_7f7ec3af.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000029_02bc9ccc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000029_02bc9ccc.szcp new file mode 100644 index 00000000..a7b68449 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000029_02bc9ccc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000030_08189b12.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000030_08189b12.szcp new file mode 100644 index 00000000..2ecd5975 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000030_08189b12.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000031_8533a703.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000031_8533a703.szcp new file mode 100644 index 00000000..58634296 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000031_8533a703.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000032_f176cfc7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000032_f176cfc7.szcp new file mode 100644 index 00000000..bc0d14ae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000032_f176cfc7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000033_dc9d1267.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000033_dc9d1267.szcp new file mode 100644 index 00000000..bab193de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000033_dc9d1267.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000034_f1fa0d4d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000034_f1fa0d4d.szcp new file mode 100644 index 00000000..26680597 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000034_f1fa0d4d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000035_2b20ace2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000035_2b20ace2.szcp new file mode 100644 index 00000000..dadd6ea3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000035_2b20ace2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000036_8136583c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000036_8136583c.szcp new file mode 100644 index 00000000..e364ad65 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000036_8136583c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000037_d812d1ad.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000037_d812d1ad.szcp new file mode 100644 index 00000000..95fe52b0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000037_d812d1ad.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000038_51417d37.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000038_51417d37.szcp new file mode 100644 index 00000000..ba8f2a9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000038_51417d37.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000039_120830da.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000039_120830da.szcp new file mode 100644 index 00000000..5dce56db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000039_120830da.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000040_f85cf17d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000040_f85cf17d.szcp new file mode 100644 index 00000000..29909705 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000040_f85cf17d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000041_aa364201.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000041_aa364201.szcp new file mode 100644 index 00000000..9e469e33 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000041_aa364201.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000042_e7842d89.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000042_e7842d89.szcp new file mode 100644 index 00000000..bad7538d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000042_e7842d89.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000043_fc64e259.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000043_fc64e259.szcp new file mode 100644 index 00000000..6fb23f43 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000043_fc64e259.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000044_be1660da.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000044_be1660da.szcp new file mode 100644 index 00000000..8f4d3702 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000044_be1660da.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000045_94c7d974.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000045_94c7d974.szcp new file mode 100644 index 00000000..7a1c9862 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000045_94c7d974.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000046_d787efc3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000046_d787efc3.szcp new file mode 100644 index 00000000..3dc85d99 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000046_d787efc3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000047_a779f5b0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000047_a779f5b0.szcp new file mode 100644 index 00000000..7d51343a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000047_a779f5b0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000048_36e48708.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000048_36e48708.szcp new file mode 100644 index 00000000..7e1d0a85 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000048_36e48708.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000049_5b05ec18.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000049_5b05ec18.szcp new file mode 100644 index 00000000..c891f06f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000049_5b05ec18.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000050_dac79762.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000050_dac79762.szcp new file mode 100644 index 00000000..a8508b36 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000050_dac79762.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000051_2d677953.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000051_2d677953.szcp new file mode 100644 index 00000000..e955caa7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000051_2d677953.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000052_7ad2e769.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000052_7ad2e769.szcp new file mode 100644 index 00000000..594c9921 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000052_7ad2e769.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000053_3f8eef39.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000053_3f8eef39.szcp new file mode 100644 index 00000000..ea71f824 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000053_3f8eef39.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000054_5c10eebd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000054_5c10eebd.szcp new file mode 100644 index 00000000..2e291239 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000054_5c10eebd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000055_5f57f15d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000055_5f57f15d.szcp new file mode 100644 index 00000000..b1dc8fce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000055_5f57f15d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000056_39d871f6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000056_39d871f6.szcp new file mode 100644 index 00000000..2dc6a0a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000056_39d871f6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000057_8d085177.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000057_8d085177.szcp new file mode 100644 index 00000000..566689b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_028/checkpoints/checkpoint_00000000000000000057_8d085177.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000001_4b136634.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000001_4b136634.szar new file mode 100644 index 00000000..4bc9a3e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000001_4b136634.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000002_9f27b07c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000002_9f27b07c.szar new file mode 100644 index 00000000..8f1b1569 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000002_9f27b07c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000003_ee6d0a18.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000003_ee6d0a18.szar new file mode 100644 index 00000000..2e39645a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000003_ee6d0a18.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000004_a7005ff4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000004_a7005ff4.szar new file mode 100644 index 00000000..642c1471 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000004_a7005ff4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000005_947d869c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000005_947d869c.szar new file mode 100644 index 00000000..d135d2ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000005_947d869c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000006_bd34a449.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000006_bd34a449.szar new file mode 100644 index 00000000..ffc95f58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000006_bd34a449.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000007_78dd9e58.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000007_78dd9e58.szar new file mode 100644 index 00000000..accb5766 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000007_78dd9e58.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000008_06870856.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000008_06870856.szar new file mode 100644 index 00000000..95128451 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000008_06870856.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000009_059347c0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000009_059347c0.szar new file mode 100644 index 00000000..74c0ffb6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000009_059347c0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000010_84021534.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000010_84021534.szar new file mode 100644 index 00000000..83a9c125 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000010_84021534.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000011_0d4b9d43.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000011_0d4b9d43.szar new file mode 100644 index 00000000..7bfd1f66 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000011_0d4b9d43.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000012_b90de4fc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000012_b90de4fc.szar new file mode 100644 index 00000000..e8da8527 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000012_b90de4fc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000013_f15c51d8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000013_f15c51d8.szar new file mode 100644 index 00000000..b6a53cce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000013_f15c51d8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000014_5c242da7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000014_5c242da7.szar new file mode 100644 index 00000000..831677c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000014_5c242da7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000015_f4dc91d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000015_f4dc91d7.szar new file mode 100644 index 00000000..3b4539b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000015_f4dc91d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000016_cdfe61f3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000016_cdfe61f3.szar new file mode 100644 index 00000000..a231f004 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000016_cdfe61f3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000017_0817b76b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000017_0817b76b.szar new file mode 100644 index 00000000..cd30c191 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000017_0817b76b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000018_4c6dfb65.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000018_4c6dfb65.szar new file mode 100644 index 00000000..5c17bd2e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000018_4c6dfb65.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000019_daa39aa8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000019_daa39aa8.szar new file mode 100644 index 00000000..1e7b0879 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000019_daa39aa8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000020_43ca1f35.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000020_43ca1f35.szar new file mode 100644 index 00000000..929b931d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000020_43ca1f35.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000021_cca1e584.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000021_cca1e584.szar new file mode 100644 index 00000000..885cc064 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000021_cca1e584.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000022_1f264ae0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000022_1f264ae0.szar new file mode 100644 index 00000000..62554d97 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000022_1f264ae0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000023_5db40ded.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000023_5db40ded.szar new file mode 100644 index 00000000..7febd6b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000023_5db40ded.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000024_ebd33628.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000024_ebd33628.szar new file mode 100644 index 00000000..3311998a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000024_ebd33628.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000025_2ebc6e5e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000025_2ebc6e5e.szar new file mode 100644 index 00000000..d0197bd4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000025_2ebc6e5e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000026_825f4ffe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000026_825f4ffe.szar new file mode 100644 index 00000000..98e77d84 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000026_825f4ffe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000027_06a3db17.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000027_06a3db17.szar new file mode 100644 index 00000000..cdfa9b68 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000027_06a3db17.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000028_4f5b3af0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000028_4f5b3af0.szar new file mode 100644 index 00000000..87306b1b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000028_4f5b3af0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000029_0b2f397b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000029_0b2f397b.szar new file mode 100644 index 00000000..e45d18a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000029_0b2f397b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000030_ea70cdcf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000030_ea70cdcf.szar new file mode 100644 index 00000000..d75c3756 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000030_ea70cdcf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000031_94e31fbe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000031_94e31fbe.szar new file mode 100644 index 00000000..6549a7f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000031_94e31fbe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000032_88413f72.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000032_88413f72.szar new file mode 100644 index 00000000..daaa10df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000032_88413f72.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000033_72ea53b5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000033_72ea53b5.szar new file mode 100644 index 00000000..59dcac91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000033_72ea53b5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000034_0557989a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000034_0557989a.szar new file mode 100644 index 00000000..c4063352 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000034_0557989a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000035_29e6c1a4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000035_29e6c1a4.szar new file mode 100644 index 00000000..621ece75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000035_29e6c1a4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000036_17a9bfa9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000036_17a9bfa9.szar new file mode 100644 index 00000000..da78471a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000036_17a9bfa9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000037_5700957e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000037_5700957e.szar new file mode 100644 index 00000000..c2188cc9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000037_5700957e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000038_14bfd265.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000038_14bfd265.szar new file mode 100644 index 00000000..4277e04a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000038_14bfd265.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000039_a6039c57.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000039_a6039c57.szar new file mode 100644 index 00000000..3e929e54 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000039_a6039c57.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000040_44bb93db.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000040_44bb93db.szar new file mode 100644 index 00000000..12024bb6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000040_44bb93db.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000041_d493b9d8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000041_d493b9d8.szar new file mode 100644 index 00000000..18c18765 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000041_d493b9d8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000042_35a7cacf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000042_35a7cacf.szar new file mode 100644 index 00000000..dd925654 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000042_35a7cacf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000043_dddc317e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000043_dddc317e.szar new file mode 100644 index 00000000..48dc8c0c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000043_dddc317e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000044_d2b297d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000044_d2b297d7.szar new file mode 100644 index 00000000..26c6d7ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000044_d2b297d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000045_56d917a7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000045_56d917a7.szar new file mode 100644 index 00000000..1c589d76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000045_56d917a7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000046_145e5e21.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000046_145e5e21.szar new file mode 100644 index 00000000..b0f3120e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000046_145e5e21.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000047_767d927d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000047_767d927d.szar new file mode 100644 index 00000000..701445ce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000047_767d927d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000048_d28767ff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000048_d28767ff.szar new file mode 100644 index 00000000..2fc03001 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000048_d28767ff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000049_2170f613.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000049_2170f613.szar new file mode 100644 index 00000000..22ecf9ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000049_2170f613.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000050_c5baed48.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000050_c5baed48.szar new file mode 100644 index 00000000..de389891 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000050_c5baed48.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000051_945c0583.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000051_945c0583.szar new file mode 100644 index 00000000..4263fa5c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000051_945c0583.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000052_8d4cf608.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000052_8d4cf608.szar new file mode 100644 index 00000000..999b507a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000052_8d4cf608.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000053_1ee03bea.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000053_1ee03bea.szar new file mode 100644 index 00000000..aae29e01 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000053_1ee03bea.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000054_ec49dd6b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000054_ec49dd6b.szar new file mode 100644 index 00000000..f6bde20a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000054_ec49dd6b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000055_7298cb14.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000055_7298cb14.szar new file mode 100644 index 00000000..742e9803 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000055_7298cb14.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000056_b339640c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000056_b339640c.szar new file mode 100644 index 00000000..55b1ebe0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000056_b339640c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000057_3d062448.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000057_3d062448.szar new file mode 100644 index 00000000..eed861a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000057_3d062448.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000058_e4bde5bc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000058_e4bde5bc.szar new file mode 100644 index 00000000..bcb625e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000058_e4bde5bc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000059_8a6bf1cb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000059_8a6bf1cb.szar new file mode 100644 index 00000000..a6b3d587 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000059_8a6bf1cb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000060_30ce60fe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000060_30ce60fe.szar new file mode 100644 index 00000000..af49aaf9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000060_30ce60fe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000061_37157d21.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000061_37157d21.szar new file mode 100644 index 00000000..75dcf305 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000061_37157d21.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000062_6722be79.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000062_6722be79.szar new file mode 100644 index 00000000..b857f12a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000062_6722be79.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000063_df180d80.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000063_df180d80.szar new file mode 100644 index 00000000..3bb20eec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000063_df180d80.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000064_2f1af942.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000064_2f1af942.szar new file mode 100644 index 00000000..cacadbff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000064_2f1af942.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000065_29686073.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000065_29686073.szar new file mode 100644 index 00000000..cf36daed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/archive/delta_00000000000000000065_29686073.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000001_176195fb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000001_176195fb.szcp new file mode 100644 index 00000000..35e3703c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000001_176195fb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000002_3c7ef8df.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000002_3c7ef8df.szcp new file mode 100644 index 00000000..af1f4232 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000002_3c7ef8df.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000003_269ac051.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000003_269ac051.szcp new file mode 100644 index 00000000..4594f120 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000003_269ac051.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000004_13e8ffa1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000004_13e8ffa1.szcp new file mode 100644 index 00000000..8f03b913 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000004_13e8ffa1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000005_e7d87507.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000005_e7d87507.szcp new file mode 100644 index 00000000..1c50e6e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000005_e7d87507.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000006_910c86a3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000006_910c86a3.szcp new file mode 100644 index 00000000..b612dfb9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000006_910c86a3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000007_b352d9a9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000007_b352d9a9.szcp new file mode 100644 index 00000000..c53d54ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000007_b352d9a9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000008_41cc1c56.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000008_41cc1c56.szcp new file mode 100644 index 00000000..fe88f9e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000008_41cc1c56.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000009_2d661d23.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000009_2d661d23.szcp new file mode 100644 index 00000000..1ac8079b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000009_2d661d23.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000010_006ed37e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000010_006ed37e.szcp new file mode 100644 index 00000000..d06e9aef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000010_006ed37e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000011_c0b0f34f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000011_c0b0f34f.szcp new file mode 100644 index 00000000..65d305e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000011_c0b0f34f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000012_14498c44.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000012_14498c44.szcp new file mode 100644 index 00000000..f1ed4ddc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000012_14498c44.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000013_54578052.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000013_54578052.szcp new file mode 100644 index 00000000..3aecb4a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000013_54578052.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000014_c52f2dda.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000014_c52f2dda.szcp new file mode 100644 index 00000000..ae40e6f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000014_c52f2dda.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000015_0f05a520.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000015_0f05a520.szcp new file mode 100644 index 00000000..16f1717e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000015_0f05a520.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000016_4431d8bc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000016_4431d8bc.szcp new file mode 100644 index 00000000..896104dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000016_4431d8bc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000017_df633a23.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000017_df633a23.szcp new file mode 100644 index 00000000..39f894a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000017_df633a23.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000018_c70b3a06.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000018_c70b3a06.szcp new file mode 100644 index 00000000..e7d244ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000018_c70b3a06.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000019_496a962c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000019_496a962c.szcp new file mode 100644 index 00000000..ad438af8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000019_496a962c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000020_a1e8d8bd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000020_a1e8d8bd.szcp new file mode 100644 index 00000000..6fca0663 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000020_a1e8d8bd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000021_279e1434.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000021_279e1434.szcp new file mode 100644 index 00000000..a7ed80ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000021_279e1434.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000022_1007dc2b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000022_1007dc2b.szcp new file mode 100644 index 00000000..9a42a3d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000022_1007dc2b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000023_e866a818.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000023_e866a818.szcp new file mode 100644 index 00000000..47734227 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000023_e866a818.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000024_ab50b630.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000024_ab50b630.szcp new file mode 100644 index 00000000..a41ce3fc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000024_ab50b630.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000025_baf2bab0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000025_baf2bab0.szcp new file mode 100644 index 00000000..3ef5d41e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000025_baf2bab0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000026_309fa104.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000026_309fa104.szcp new file mode 100644 index 00000000..f9f0cd78 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000026_309fa104.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000027_f91c3d51.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000027_f91c3d51.szcp new file mode 100644 index 00000000..9ccd9c6c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000027_f91c3d51.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000028_a96a2280.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000028_a96a2280.szcp new file mode 100644 index 00000000..225f45ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000028_a96a2280.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000029_b933fd07.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000029_b933fd07.szcp new file mode 100644 index 00000000..a97fe7a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000029_b933fd07.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000030_8f7ed8d3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000030_8f7ed8d3.szcp new file mode 100644 index 00000000..a8e57044 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000030_8f7ed8d3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000031_20b22a74.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000031_20b22a74.szcp new file mode 100644 index 00000000..1b8365b6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000031_20b22a74.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000032_fd82d10f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000032_fd82d10f.szcp new file mode 100644 index 00000000..69dcc81e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000032_fd82d10f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000033_05971abc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000033_05971abc.szcp new file mode 100644 index 00000000..0696a02b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000033_05971abc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000034_fde68a72.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000034_fde68a72.szcp new file mode 100644 index 00000000..a6b7f7a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000034_fde68a72.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000035_b75388ed.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000035_b75388ed.szcp new file mode 100644 index 00000000..8e79bef2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000035_b75388ed.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000036_05c00df7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000036_05c00df7.szcp new file mode 100644 index 00000000..d61bc4f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000036_05c00df7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000037_d96cbfd0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000037_d96cbfd0.szcp new file mode 100644 index 00000000..88dcb0f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000037_d96cbfd0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000038_3ee9b21b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000038_3ee9b21b.szcp new file mode 100644 index 00000000..7c27ec66 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000038_3ee9b21b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000039_a35040a2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000039_a35040a2.szcp new file mode 100644 index 00000000..cd786344 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000039_a35040a2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000040_0a769ae3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000040_0a769ae3.szcp new file mode 100644 index 00000000..819bfb6f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000040_0a769ae3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000041_265a0997.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000041_265a0997.szcp new file mode 100644 index 00000000..c76721df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000041_265a0997.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000042_d58a6845.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000042_d58a6845.szcp new file mode 100644 index 00000000..102ecbe5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000042_d58a6845.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000043_dc1b694f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000043_dc1b694f.szcp new file mode 100644 index 00000000..6d0d11aa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000043_dc1b694f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000044_b9a13bf9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000044_b9a13bf9.szcp new file mode 100644 index 00000000..b1468afb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000044_b9a13bf9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000045_3d902519.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000045_3d902519.szcp new file mode 100644 index 00000000..17c82892 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000045_3d902519.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000046_080c1af7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000046_080c1af7.szcp new file mode 100644 index 00000000..945c3872 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000046_080c1af7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000047_be21244a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000047_be21244a.szcp new file mode 100644 index 00000000..91718029 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000047_be21244a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000048_a86aa9d2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000048_a86aa9d2.szcp new file mode 100644 index 00000000..19677a2e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000048_a86aa9d2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000049_561c9947.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000049_561c9947.szcp new file mode 100644 index 00000000..2f70ee52 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000049_561c9947.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000050_18168913.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000050_18168913.szcp new file mode 100644 index 00000000..66151522 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000050_18168913.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000051_3abf83a4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000051_3abf83a4.szcp new file mode 100644 index 00000000..3b9d7a10 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000051_3abf83a4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000052_9124921c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000052_9124921c.szcp new file mode 100644 index 00000000..27a04c9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000052_9124921c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000053_bda597da.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000053_bda597da.szcp new file mode 100644 index 00000000..298beb59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000053_bda597da.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000054_922f79a6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000054_922f79a6.szcp new file mode 100644 index 00000000..a3009f14 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000054_922f79a6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000055_f7cdd701.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000055_f7cdd701.szcp new file mode 100644 index 00000000..aab282e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000055_f7cdd701.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000056_c32d984a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000056_c32d984a.szcp new file mode 100644 index 00000000..ae380ca1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000056_c32d984a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000057_17918226.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000057_17918226.szcp new file mode 100644 index 00000000..a49cc004 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000057_17918226.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000058_cf4530d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000058_cf4530d7.szcp new file mode 100644 index 00000000..6f3daf0f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000058_cf4530d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000059_cd827e6f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000059_cd827e6f.szcp new file mode 100644 index 00000000..17c4741e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000059_cd827e6f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000060_5bc9ebc8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000060_5bc9ebc8.szcp new file mode 100644 index 00000000..2cd157cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000060_5bc9ebc8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000061_d360e663.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000061_d360e663.szcp new file mode 100644 index 00000000..adb7fed5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000061_d360e663.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000062_3dd177ae.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000062_3dd177ae.szcp new file mode 100644 index 00000000..b48932ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000062_3dd177ae.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000063_10e8e450.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000063_10e8e450.szcp new file mode 100644 index 00000000..9ef84b76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000063_10e8e450.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000064_c89c7352.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000064_c89c7352.szcp new file mode 100644 index 00000000..241c3b3d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000064_c89c7352.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000065_798bb223.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000065_798bb223.szcp new file mode 100644 index 00000000..1dbe75cb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_029/checkpoints/checkpoint_00000000000000000065_798bb223.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000001_6b412624.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000001_6b412624.szar new file mode 100644 index 00000000..53b71421 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000001_6b412624.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000002_ce42dbd0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000002_ce42dbd0.szar new file mode 100644 index 00000000..5bdea979 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000002_ce42dbd0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000003_f1fc2469.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000003_f1fc2469.szar new file mode 100644 index 00000000..07421711 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000003_f1fc2469.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000004_96b4a33b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000004_96b4a33b.szar new file mode 100644 index 00000000..b9930fea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000004_96b4a33b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000005_e0e3a1b2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000005_e0e3a1b2.szar new file mode 100644 index 00000000..926426da Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000005_e0e3a1b2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000006_42cf0c79.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000006_42cf0c79.szar new file mode 100644 index 00000000..a6c330a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000006_42cf0c79.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000007_477d9d99.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000007_477d9d99.szar new file mode 100644 index 00000000..94953474 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000007_477d9d99.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000008_49e52256.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000008_49e52256.szar new file mode 100644 index 00000000..87f6180c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000008_49e52256.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000009_623aa987.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000009_623aa987.szar new file mode 100644 index 00000000..770e7697 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000009_623aa987.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000010_8fe45ec3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000010_8fe45ec3.szar new file mode 100644 index 00000000..7f4449a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000010_8fe45ec3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000011_a5627b47.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000011_a5627b47.szar new file mode 100644 index 00000000..11b48b0d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000011_a5627b47.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000012_0a62bbb9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000012_0a62bbb9.szar new file mode 100644 index 00000000..327cc183 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000012_0a62bbb9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000013_97e1501e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000013_97e1501e.szar new file mode 100644 index 00000000..81110cb7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000013_97e1501e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000014_d7c05fa9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000014_d7c05fa9.szar new file mode 100644 index 00000000..53ab4f42 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000014_d7c05fa9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000015_e61f8251.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000015_e61f8251.szar new file mode 100644 index 00000000..c405ad10 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000015_e61f8251.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000016_1b39e2d1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000016_1b39e2d1.szar new file mode 100644 index 00000000..7194cfda Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000016_1b39e2d1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000017_2001b471.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000017_2001b471.szar new file mode 100644 index 00000000..fe0cf621 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000017_2001b471.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000018_20b6ebdd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000018_20b6ebdd.szar new file mode 100644 index 00000000..ce0e5f1a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000018_20b6ebdd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000019_329b8147.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000019_329b8147.szar new file mode 100644 index 00000000..455af022 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000019_329b8147.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000020_9d499125.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000020_9d499125.szar new file mode 100644 index 00000000..f08fb436 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000020_9d499125.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000021_af19d6b5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000021_af19d6b5.szar new file mode 100644 index 00000000..d7185575 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000021_af19d6b5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000022_8c304782.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000022_8c304782.szar new file mode 100644 index 00000000..8dd13bfc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000022_8c304782.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000023_e796fab1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000023_e796fab1.szar new file mode 100644 index 00000000..78a588d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000023_e796fab1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000024_a49d65c8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000024_a49d65c8.szar new file mode 100644 index 00000000..c4ecb204 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000024_a49d65c8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000025_3b3f4fe9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000025_3b3f4fe9.szar new file mode 100644 index 00000000..1616c0de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000025_3b3f4fe9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000026_24597f0a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000026_24597f0a.szar new file mode 100644 index 00000000..09bdbd2d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000026_24597f0a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000027_a4802526.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000027_a4802526.szar new file mode 100644 index 00000000..5d437e91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000027_a4802526.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000028_522b1a52.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000028_522b1a52.szar new file mode 100644 index 00000000..0d9f8ebe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000028_522b1a52.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000029_68248cf2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000029_68248cf2.szar new file mode 100644 index 00000000..6cf09e05 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000029_68248cf2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000030_7da3f266.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000030_7da3f266.szar new file mode 100644 index 00000000..6bddca41 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000030_7da3f266.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000031_f109efe5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000031_f109efe5.szar new file mode 100644 index 00000000..746b500e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000031_f109efe5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000032_a193ec72.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000032_a193ec72.szar new file mode 100644 index 00000000..e2cfa5f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000032_a193ec72.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000033_58fc518f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000033_58fc518f.szar new file mode 100644 index 00000000..b1545103 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000033_58fc518f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000034_3ba31c32.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000034_3ba31c32.szar new file mode 100644 index 00000000..c9050ca5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000034_3ba31c32.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000035_74c79232.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000035_74c79232.szar new file mode 100644 index 00000000..3783bd37 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000035_74c79232.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000036_e872081d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000036_e872081d.szar new file mode 100644 index 00000000..313d3743 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000036_e872081d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000037_a1a37e98.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000037_a1a37e98.szar new file mode 100644 index 00000000..8913549b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000037_a1a37e98.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000038_e96fca0c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000038_e96fca0c.szar new file mode 100644 index 00000000..39ecd017 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000038_e96fca0c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000039_ce7df6cd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000039_ce7df6cd.szar new file mode 100644 index 00000000..4cc286cb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000039_ce7df6cd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000040_5d0bf2b2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000040_5d0bf2b2.szar new file mode 100644 index 00000000..d4d59885 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000040_5d0bf2b2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000041_3f95f892.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000041_3f95f892.szar new file mode 100644 index 00000000..10e46570 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000041_3f95f892.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000042_a7b3c60d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000042_a7b3c60d.szar new file mode 100644 index 00000000..9fcf54e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000042_a7b3c60d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000043_8055b878.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000043_8055b878.szar new file mode 100644 index 00000000..fe1605a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000043_8055b878.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000044_acd55591.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000044_acd55591.szar new file mode 100644 index 00000000..3c8f57cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000044_acd55591.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000045_ccfda16c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000045_ccfda16c.szar new file mode 100644 index 00000000..48502f25 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000045_ccfda16c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000046_31b82626.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000046_31b82626.szar new file mode 100644 index 00000000..5f20c82a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000046_31b82626.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000047_c4b4f5e4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000047_c4b4f5e4.szar new file mode 100644 index 00000000..16213fee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000047_c4b4f5e4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000048_d51856df.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000048_d51856df.szar new file mode 100644 index 00000000..60a15e43 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000048_d51856df.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000049_90df0798.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000049_90df0798.szar new file mode 100644 index 00000000..3cc78efe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000049_90df0798.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000050_537bae62.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000050_537bae62.szar new file mode 100644 index 00000000..1c8a14ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000050_537bae62.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000051_e5833a37.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000051_e5833a37.szar new file mode 100644 index 00000000..e0f630e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000051_e5833a37.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000052_67226c91.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000052_67226c91.szar new file mode 100644 index 00000000..6625667f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000052_67226c91.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000053_2e308fd8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000053_2e308fd8.szar new file mode 100644 index 00000000..3e41b2e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000053_2e308fd8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000054_3062e16d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000054_3062e16d.szar new file mode 100644 index 00000000..39bb37b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000054_3062e16d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000055_cd446cea.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000055_cd446cea.szar new file mode 100644 index 00000000..3a1e57a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000055_cd446cea.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000056_80ed0470.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000056_80ed0470.szar new file mode 100644 index 00000000..591b1e30 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000056_80ed0470.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000057_c690ce83.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000057_c690ce83.szar new file mode 100644 index 00000000..61950fb2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000057_c690ce83.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000058_ae741fdd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000058_ae741fdd.szar new file mode 100644 index 00000000..b8a23a95 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000058_ae741fdd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000059_5466e87e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000059_5466e87e.szar new file mode 100644 index 00000000..43bb6c52 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000059_5466e87e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000060_64dbe82e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000060_64dbe82e.szar new file mode 100644 index 00000000..b0159ff7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000060_64dbe82e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000061_eb6bd5e8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000061_eb6bd5e8.szar new file mode 100644 index 00000000..42888eb7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000061_eb6bd5e8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000062_bc599eb8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000062_bc599eb8.szar new file mode 100644 index 00000000..d55597a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000062_bc599eb8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000063_1a2d58e6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000063_1a2d58e6.szar new file mode 100644 index 00000000..913b5b16 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000063_1a2d58e6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000064_fd11a348.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000064_fd11a348.szar new file mode 100644 index 00000000..61feca62 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000064_fd11a348.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000065_3d063a61.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000065_3d063a61.szar new file mode 100644 index 00000000..f116ae01 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000065_3d063a61.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000066_b02437f0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000066_b02437f0.szar new file mode 100644 index 00000000..ccbe034b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000066_b02437f0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000067_32721fe9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000067_32721fe9.szar new file mode 100644 index 00000000..604cc910 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000067_32721fe9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000068_28e76e5a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000068_28e76e5a.szar new file mode 100644 index 00000000..c163eeb6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000068_28e76e5a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000069_61f3ab06.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000069_61f3ab06.szar new file mode 100644 index 00000000..ea633a70 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000069_61f3ab06.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000070_78ffbbbc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000070_78ffbbbc.szar new file mode 100644 index 00000000..4b771ced Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000070_78ffbbbc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000071_0a290801.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000071_0a290801.szar new file mode 100644 index 00000000..8cc837c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000071_0a290801.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000072_7df3bf39.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000072_7df3bf39.szar new file mode 100644 index 00000000..2d354ce0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000072_7df3bf39.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000073_5020dd95.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000073_5020dd95.szar new file mode 100644 index 00000000..77efc5d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000073_5020dd95.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000074_d24214bf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000074_d24214bf.szar new file mode 100644 index 00000000..33b47b7c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/archive/delta_00000000000000000074_d24214bf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000001_1ae9e304.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000001_1ae9e304.szcp new file mode 100644 index 00000000..b288a539 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000001_1ae9e304.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000002_f225117b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000002_f225117b.szcp new file mode 100644 index 00000000..07077eb6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000002_f225117b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000003_09cfa2a7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000003_09cfa2a7.szcp new file mode 100644 index 00000000..037b50ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000003_09cfa2a7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000004_37e36d3e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000004_37e36d3e.szcp new file mode 100644 index 00000000..a33284a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000004_37e36d3e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000005_e79f5186.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000005_e79f5186.szcp new file mode 100644 index 00000000..cc96cb3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000005_e79f5186.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000006_54cfeb93.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000006_54cfeb93.szcp new file mode 100644 index 00000000..aad8541e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000006_54cfeb93.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000007_4337ce65.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000007_4337ce65.szcp new file mode 100644 index 00000000..3eba2a60 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000007_4337ce65.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000008_e1115022.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000008_e1115022.szcp new file mode 100644 index 00000000..bd988dea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000008_e1115022.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000009_6dd0f3d8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000009_6dd0f3d8.szcp new file mode 100644 index 00000000..6edb73e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000009_6dd0f3d8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000010_33e5bdb3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000010_33e5bdb3.szcp new file mode 100644 index 00000000..88148ca8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000010_33e5bdb3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000011_014b5000.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000011_014b5000.szcp new file mode 100644 index 00000000..3dea09a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000011_014b5000.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000012_f9144ea5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000012_f9144ea5.szcp new file mode 100644 index 00000000..148f8273 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000012_f9144ea5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000013_a147dc1c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000013_a147dc1c.szcp new file mode 100644 index 00000000..729cdd44 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000013_a147dc1c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000014_c1202d66.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000014_c1202d66.szcp new file mode 100644 index 00000000..c3b4fa59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000014_c1202d66.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000015_625bf3d5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000015_625bf3d5.szcp new file mode 100644 index 00000000..a15446f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000015_625bf3d5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000016_c8a34555.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000016_c8a34555.szcp new file mode 100644 index 00000000..f2958254 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000016_c8a34555.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000017_2d8ada2e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000017_2d8ada2e.szcp new file mode 100644 index 00000000..73b57394 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000017_2d8ada2e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000018_8b88e410.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000018_8b88e410.szcp new file mode 100644 index 00000000..4e29f19e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000018_8b88e410.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000019_df3f80a6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000019_df3f80a6.szcp new file mode 100644 index 00000000..ca06116e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000019_df3f80a6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000020_44939dc3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000020_44939dc3.szcp new file mode 100644 index 00000000..6bca0403 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000020_44939dc3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000021_d52a58cd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000021_d52a58cd.szcp new file mode 100644 index 00000000..0551e2a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000021_d52a58cd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000022_074fd163.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000022_074fd163.szcp new file mode 100644 index 00000000..4f63934d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000022_074fd163.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000023_d1f99b49.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000023_d1f99b49.szcp new file mode 100644 index 00000000..797f2d8c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000023_d1f99b49.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000024_1c13e23b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000024_1c13e23b.szcp new file mode 100644 index 00000000..6bf1d022 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000024_1c13e23b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000025_dd9df769.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000025_dd9df769.szcp new file mode 100644 index 00000000..6655a6ac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000025_dd9df769.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000026_8989448d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000026_8989448d.szcp new file mode 100644 index 00000000..fd94aae2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000026_8989448d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000027_634fbc25.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000027_634fbc25.szcp new file mode 100644 index 00000000..46a0a6d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000027_634fbc25.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000028_4509a709.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000028_4509a709.szcp new file mode 100644 index 00000000..be911d7a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000028_4509a709.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000029_88124d3a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000029_88124d3a.szcp new file mode 100644 index 00000000..895ed90f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000029_88124d3a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000030_a66f82b9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000030_a66f82b9.szcp new file mode 100644 index 00000000..36280998 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000030_a66f82b9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000031_0fec8982.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000031_0fec8982.szcp new file mode 100644 index 00000000..9a945874 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000031_0fec8982.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000032_62b26a1d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000032_62b26a1d.szcp new file mode 100644 index 00000000..311ee5f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000032_62b26a1d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000033_4c7be0a5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000033_4c7be0a5.szcp new file mode 100644 index 00000000..8b78958c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000033_4c7be0a5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000034_327958f5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000034_327958f5.szcp new file mode 100644 index 00000000..68bfee17 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000034_327958f5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000035_89a74d7f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000035_89a74d7f.szcp new file mode 100644 index 00000000..16b399f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000035_89a74d7f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000036_0cf6be77.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000036_0cf6be77.szcp new file mode 100644 index 00000000..2fda952a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000036_0cf6be77.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000037_e9356b6b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000037_e9356b6b.szcp new file mode 100644 index 00000000..8bb916e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000037_e9356b6b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000038_111e095f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000038_111e095f.szcp new file mode 100644 index 00000000..9cf24387 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000038_111e095f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000039_edc08cb0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000039_edc08cb0.szcp new file mode 100644 index 00000000..39d25ae6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000039_edc08cb0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000040_d89c0397.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000040_d89c0397.szcp new file mode 100644 index 00000000..7b61067c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000040_d89c0397.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000041_60cca792.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000041_60cca792.szcp new file mode 100644 index 00000000..d37d25b3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000041_60cca792.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000042_3181a9c4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000042_3181a9c4.szcp new file mode 100644 index 00000000..4ea58477 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000042_3181a9c4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000043_4d1c2742.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000043_4d1c2742.szcp new file mode 100644 index 00000000..bda63a02 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000043_4d1c2742.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000044_e25292fa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000044_e25292fa.szcp new file mode 100644 index 00000000..28613cbc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000044_e25292fa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000045_6bd69b3f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000045_6bd69b3f.szcp new file mode 100644 index 00000000..a87fcaeb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000045_6bd69b3f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000046_9e233520.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000046_9e233520.szcp new file mode 100644 index 00000000..9f7bbf5f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000046_9e233520.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000047_b6db3913.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000047_b6db3913.szcp new file mode 100644 index 00000000..ec5a11bf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000047_b6db3913.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000048_b0c7ef53.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000048_b0c7ef53.szcp new file mode 100644 index 00000000..a3c6a5cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000048_b0c7ef53.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000049_15e829ea.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000049_15e829ea.szcp new file mode 100644 index 00000000..620bf85f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000049_15e829ea.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000050_b978ef7a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000050_b978ef7a.szcp new file mode 100644 index 00000000..fc6fdd24 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000050_b978ef7a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000051_a8eebc97.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000051_a8eebc97.szcp new file mode 100644 index 00000000..09b8aa96 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000051_a8eebc97.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000052_859fc708.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000052_859fc708.szcp new file mode 100644 index 00000000..4a12447e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000052_859fc708.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000053_b85aaaed.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000053_b85aaaed.szcp new file mode 100644 index 00000000..555f9e7e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000053_b85aaaed.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000054_14316b0b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000054_14316b0b.szcp new file mode 100644 index 00000000..dabc8f89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000054_14316b0b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000055_788b7b81.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000055_788b7b81.szcp new file mode 100644 index 00000000..5e91dba2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000055_788b7b81.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000056_54867b99.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000056_54867b99.szcp new file mode 100644 index 00000000..01d4d472 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000056_54867b99.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000057_4c46a51a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000057_4c46a51a.szcp new file mode 100644 index 00000000..24a3ee7e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000057_4c46a51a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000058_002d5164.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000058_002d5164.szcp new file mode 100644 index 00000000..6cff740f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000058_002d5164.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000059_eac7a456.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000059_eac7a456.szcp new file mode 100644 index 00000000..b969656b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000059_eac7a456.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000060_49652783.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000060_49652783.szcp new file mode 100644 index 00000000..715f2961 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000060_49652783.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000061_efb29f64.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000061_efb29f64.szcp new file mode 100644 index 00000000..671b2eb9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000061_efb29f64.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000062_0db1eff8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000062_0db1eff8.szcp new file mode 100644 index 00000000..897f667d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000062_0db1eff8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000063_cf4ea4c8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000063_cf4ea4c8.szcp new file mode 100644 index 00000000..fd5361bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000063_cf4ea4c8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000064_ea3fa4e4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000064_ea3fa4e4.szcp new file mode 100644 index 00000000..7715d751 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000064_ea3fa4e4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000065_1ef315c0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000065_1ef315c0.szcp new file mode 100644 index 00000000..112a7e4d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000065_1ef315c0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000066_f7f76583.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000066_f7f76583.szcp new file mode 100644 index 00000000..1ad82d68 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000066_f7f76583.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000067_8c6afcb0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000067_8c6afcb0.szcp new file mode 100644 index 00000000..bbe8f54e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000067_8c6afcb0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000068_e91fcecf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000068_e91fcecf.szcp new file mode 100644 index 00000000..dc50f36c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000068_e91fcecf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000069_d9618b98.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000069_d9618b98.szcp new file mode 100644 index 00000000..517631d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000069_d9618b98.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000070_baf1360a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000070_baf1360a.szcp new file mode 100644 index 00000000..aa463908 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000070_baf1360a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000071_ebe19cc6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000071_ebe19cc6.szcp new file mode 100644 index 00000000..b711246d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000071_ebe19cc6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000072_79e1f1bb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000072_79e1f1bb.szcp new file mode 100644 index 00000000..63da0a52 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000072_79e1f1bb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000073_8f52df82.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000073_8f52df82.szcp new file mode 100644 index 00000000..2fb49365 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000073_8f52df82.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000074_b439e7c0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000074_b439e7c0.szcp new file mode 100644 index 00000000..da244ce2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_030/checkpoints/checkpoint_00000000000000000074_b439e7c0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000001_8590fbe1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000001_8590fbe1.szar new file mode 100644 index 00000000..05d2fe58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000001_8590fbe1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000002_9fa55df4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000002_9fa55df4.szar new file mode 100644 index 00000000..5e752e47 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000002_9fa55df4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000003_e5d4d69c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000003_e5d4d69c.szar new file mode 100644 index 00000000..82b5d345 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000003_e5d4d69c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000004_8ddfb99e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000004_8ddfb99e.szar new file mode 100644 index 00000000..69719876 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000004_8ddfb99e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000005_480da3a2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000005_480da3a2.szar new file mode 100644 index 00000000..6f201360 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000005_480da3a2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000006_94c68fcd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000006_94c68fcd.szar new file mode 100644 index 00000000..fccd21c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000006_94c68fcd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000007_6cd4c771.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000007_6cd4c771.szar new file mode 100644 index 00000000..b6c65211 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000007_6cd4c771.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000008_337b0ba8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000008_337b0ba8.szar new file mode 100644 index 00000000..557a92cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000008_337b0ba8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000009_06556548.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000009_06556548.szar new file mode 100644 index 00000000..370c388b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000009_06556548.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000010_26d81971.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000010_26d81971.szar new file mode 100644 index 00000000..c7cdb8cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000010_26d81971.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000011_de66e2f9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000011_de66e2f9.szar new file mode 100644 index 00000000..3e66bf24 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000011_de66e2f9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000012_5ffd2a13.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000012_5ffd2a13.szar new file mode 100644 index 00000000..e3c17c21 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000012_5ffd2a13.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000013_6fde6921.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000013_6fde6921.szar new file mode 100644 index 00000000..c4e3b08e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000013_6fde6921.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000014_a1bef953.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000014_a1bef953.szar new file mode 100644 index 00000000..1adb48dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000014_a1bef953.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000015_c561a4a0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000015_c561a4a0.szar new file mode 100644 index 00000000..29712047 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000015_c561a4a0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000016_f68b03e9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000016_f68b03e9.szar new file mode 100644 index 00000000..22a06af4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000016_f68b03e9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000017_6d8eb307.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000017_6d8eb307.szar new file mode 100644 index 00000000..907dee72 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000017_6d8eb307.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000018_ec390e3d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000018_ec390e3d.szar new file mode 100644 index 00000000..62957dd0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000018_ec390e3d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000019_30e2f160.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000019_30e2f160.szar new file mode 100644 index 00000000..dbcd0a45 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000019_30e2f160.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000020_671b7427.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000020_671b7427.szar new file mode 100644 index 00000000..d32f5af0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000020_671b7427.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000021_4d3d8f31.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000021_4d3d8f31.szar new file mode 100644 index 00000000..0345d26d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000021_4d3d8f31.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000022_6f06160f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000022_6f06160f.szar new file mode 100644 index 00000000..cd3bc2af Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000022_6f06160f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000023_9baf589e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000023_9baf589e.szar new file mode 100644 index 00000000..0e48de76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000023_9baf589e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000024_05303eaf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000024_05303eaf.szar new file mode 100644 index 00000000..13ee47b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000024_05303eaf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000025_6eb4e59f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000025_6eb4e59f.szar new file mode 100644 index 00000000..294c3cae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000025_6eb4e59f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000026_e1f42aef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000026_e1f42aef.szar new file mode 100644 index 00000000..921c5ecb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000026_e1f42aef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000027_a21deeda.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000027_a21deeda.szar new file mode 100644 index 00000000..9dfb2630 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000027_a21deeda.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000028_7abbb085.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000028_7abbb085.szar new file mode 100644 index 00000000..53ffdf40 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000028_7abbb085.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000029_a8cd6540.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000029_a8cd6540.szar new file mode 100644 index 00000000..6f4d1f5c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000029_a8cd6540.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000030_7bfd2691.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000030_7bfd2691.szar new file mode 100644 index 00000000..e99a2f1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000030_7bfd2691.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000031_77bc26d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000031_77bc26d7.szar new file mode 100644 index 00000000..9eed86af Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000031_77bc26d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000032_ce2cffab.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000032_ce2cffab.szar new file mode 100644 index 00000000..e4f33605 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000032_ce2cffab.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000033_33ca4ddd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000033_33ca4ddd.szar new file mode 100644 index 00000000..d8ae10c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000033_33ca4ddd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000034_9e976d09.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000034_9e976d09.szar new file mode 100644 index 00000000..3eca5e0f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000034_9e976d09.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000035_c7c23f52.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000035_c7c23f52.szar new file mode 100644 index 00000000..336a1c2e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000035_c7c23f52.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000036_a2fcb05c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000036_a2fcb05c.szar new file mode 100644 index 00000000..484f46dd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000036_a2fcb05c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000037_8d470665.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000037_8d470665.szar new file mode 100644 index 00000000..533d83fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000037_8d470665.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000038_8d304a03.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000038_8d304a03.szar new file mode 100644 index 00000000..35fc1f06 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000038_8d304a03.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000039_855e1307.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000039_855e1307.szar new file mode 100644 index 00000000..d18bc0b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000039_855e1307.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000040_e4b490d0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000040_e4b490d0.szar new file mode 100644 index 00000000..7adce50c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000040_e4b490d0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000041_af713696.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000041_af713696.szar new file mode 100644 index 00000000..98b011d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000041_af713696.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000042_67833f88.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000042_67833f88.szar new file mode 100644 index 00000000..ef761974 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000042_67833f88.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000043_e8ccbbda.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000043_e8ccbbda.szar new file mode 100644 index 00000000..3a815b52 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000043_e8ccbbda.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000044_3be96015.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000044_3be96015.szar new file mode 100644 index 00000000..a18efcc8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000044_3be96015.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000045_fadf5018.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000045_fadf5018.szar new file mode 100644 index 00000000..e6fbdea1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000045_fadf5018.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000046_f96017ef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000046_f96017ef.szar new file mode 100644 index 00000000..1d0a285e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000046_f96017ef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000047_ed5367bf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000047_ed5367bf.szar new file mode 100644 index 00000000..691e94b0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000047_ed5367bf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000048_86f70de2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000048_86f70de2.szar new file mode 100644 index 00000000..571fbf07 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000048_86f70de2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000049_b9e75450.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000049_b9e75450.szar new file mode 100644 index 00000000..19c82c69 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000049_b9e75450.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000050_db688571.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000050_db688571.szar new file mode 100644 index 00000000..dce1ad60 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000050_db688571.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000051_0abb394e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000051_0abb394e.szar new file mode 100644 index 00000000..0b464f56 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000051_0abb394e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000052_4d1877e6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000052_4d1877e6.szar new file mode 100644 index 00000000..6e0b6805 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000052_4d1877e6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000053_527e4cf0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000053_527e4cf0.szar new file mode 100644 index 00000000..001021d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000053_527e4cf0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000054_1a57f849.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000054_1a57f849.szar new file mode 100644 index 00000000..2867f67c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000054_1a57f849.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000055_efbd9b42.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000055_efbd9b42.szar new file mode 100644 index 00000000..9d7ffcf6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000055_efbd9b42.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000056_0cac388a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000056_0cac388a.szar new file mode 100644 index 00000000..aa0e87e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000056_0cac388a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000057_ba37eed8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000057_ba37eed8.szar new file mode 100644 index 00000000..a268f939 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000057_ba37eed8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000058_9691efda.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000058_9691efda.szar new file mode 100644 index 00000000..3a2449d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000058_9691efda.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000059_1cfb7137.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000059_1cfb7137.szar new file mode 100644 index 00000000..411f8972 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000059_1cfb7137.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000060_33d96aaf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000060_33d96aaf.szar new file mode 100644 index 00000000..6260a9d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000060_33d96aaf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000061_b8aee7f9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000061_b8aee7f9.szar new file mode 100644 index 00000000..35f213dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000061_b8aee7f9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000062_e8eee5b7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000062_e8eee5b7.szar new file mode 100644 index 00000000..0ecaddf8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000062_e8eee5b7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000063_df3960b2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000063_df3960b2.szar new file mode 100644 index 00000000..db0967f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000063_df3960b2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000064_9a490b0e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000064_9a490b0e.szar new file mode 100644 index 00000000..0a69cda2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000064_9a490b0e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000065_8f9bca5d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000065_8f9bca5d.szar new file mode 100644 index 00000000..d827855a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000065_8f9bca5d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000066_324bf2d1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000066_324bf2d1.szar new file mode 100644 index 00000000..e241e1ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000066_324bf2d1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000067_a976f9ca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000067_a976f9ca.szar new file mode 100644 index 00000000..20546adb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000067_a976f9ca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000068_97f8dc02.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000068_97f8dc02.szar new file mode 100644 index 00000000..42aeb2c9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000068_97f8dc02.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000069_e922adae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000069_e922adae.szar new file mode 100644 index 00000000..01c9c5eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000069_e922adae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000070_eee8f475.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000070_eee8f475.szar new file mode 100644 index 00000000..bb61a44c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000070_eee8f475.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000071_bbe1da2b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000071_bbe1da2b.szar new file mode 100644 index 00000000..41f243ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000071_bbe1da2b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000072_f82820bc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000072_f82820bc.szar new file mode 100644 index 00000000..946f9868 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000072_f82820bc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000073_97c9d57f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000073_97c9d57f.szar new file mode 100644 index 00000000..85ccb093 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000073_97c9d57f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000074_64398187.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000074_64398187.szar new file mode 100644 index 00000000..7a052065 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000074_64398187.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000075_16709f94.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000075_16709f94.szar new file mode 100644 index 00000000..14e38206 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000075_16709f94.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000076_5925f562.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000076_5925f562.szar new file mode 100644 index 00000000..ad65172b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000076_5925f562.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000077_657d9d41.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000077_657d9d41.szar new file mode 100644 index 00000000..9ab8919b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000077_657d9d41.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000078_f8428a5b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000078_f8428a5b.szar new file mode 100644 index 00000000..ba282b4a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000078_f8428a5b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000079_1324480f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000079_1324480f.szar new file mode 100644 index 00000000..2458bd47 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000079_1324480f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000080_cb0f95ed.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000080_cb0f95ed.szar new file mode 100644 index 00000000..7ec04e72 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000080_cb0f95ed.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000081_41e47536.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000081_41e47536.szar new file mode 100644 index 00000000..7330c313 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000081_41e47536.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000082_fba920a3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000082_fba920a3.szar new file mode 100644 index 00000000..1c7311f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000082_fba920a3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000083_04c5acd7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000083_04c5acd7.szar new file mode 100644 index 00000000..db661b12 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000083_04c5acd7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000084_049a2936.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000084_049a2936.szar new file mode 100644 index 00000000..9523b12b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000084_049a2936.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000085_81c17155.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000085_81c17155.szar new file mode 100644 index 00000000..0c5b0da5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000085_81c17155.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000086_59dac168.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000086_59dac168.szar new file mode 100644 index 00000000..92051b2c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/archive/delta_00000000000000000086_59dac168.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000001_a2cca1d8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000001_a2cca1d8.szcp new file mode 100644 index 00000000..63caa26e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000001_a2cca1d8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000002_1ea50c97.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000002_1ea50c97.szcp new file mode 100644 index 00000000..d9bc184e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000002_1ea50c97.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000003_b2b5a484.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000003_b2b5a484.szcp new file mode 100644 index 00000000..526e3d97 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000003_b2b5a484.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000004_a24b8da0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000004_a24b8da0.szcp new file mode 100644 index 00000000..f38f6994 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000004_a24b8da0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000005_b3ea2b4a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000005_b3ea2b4a.szcp new file mode 100644 index 00000000..bcd157f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000005_b3ea2b4a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000006_717986b9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000006_717986b9.szcp new file mode 100644 index 00000000..26af6d2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000006_717986b9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000007_a77dd61f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000007_a77dd61f.szcp new file mode 100644 index 00000000..b323f241 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000007_a77dd61f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000008_0ed065c2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000008_0ed065c2.szcp new file mode 100644 index 00000000..965b5b7c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000008_0ed065c2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000009_1da360b6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000009_1da360b6.szcp new file mode 100644 index 00000000..13055c6e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000009_1da360b6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000010_be8a5e7e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000010_be8a5e7e.szcp new file mode 100644 index 00000000..c514774e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000010_be8a5e7e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000011_03843dab.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000011_03843dab.szcp new file mode 100644 index 00000000..8e4c9b13 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000011_03843dab.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000012_b249c62d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000012_b249c62d.szcp new file mode 100644 index 00000000..9a5f8178 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000012_b249c62d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000013_c2b4399d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000013_c2b4399d.szcp new file mode 100644 index 00000000..e105aecc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000013_c2b4399d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000014_d6a10729.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000014_d6a10729.szcp new file mode 100644 index 00000000..7073079b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000014_d6a10729.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000015_f64ba8dc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000015_f64ba8dc.szcp new file mode 100644 index 00000000..54654597 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000015_f64ba8dc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000016_1668dd08.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000016_1668dd08.szcp new file mode 100644 index 00000000..4cba80e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000016_1668dd08.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000017_6354105e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000017_6354105e.szcp new file mode 100644 index 00000000..1030d7c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000017_6354105e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000018_f81df49f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000018_f81df49f.szcp new file mode 100644 index 00000000..6d9e16ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000018_f81df49f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000019_29b0e5d8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000019_29b0e5d8.szcp new file mode 100644 index 00000000..b26a5d99 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000019_29b0e5d8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000020_b999cf79.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000020_b999cf79.szcp new file mode 100644 index 00000000..dcf92bbb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000020_b999cf79.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000021_f4dafa84.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000021_f4dafa84.szcp new file mode 100644 index 00000000..1e70fd73 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000021_f4dafa84.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000022_7b71cbce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000022_7b71cbce.szcp new file mode 100644 index 00000000..1a3ab1cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000022_7b71cbce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000023_d9dc00d0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000023_d9dc00d0.szcp new file mode 100644 index 00000000..afa42d9d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000023_d9dc00d0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000024_2ebe963e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000024_2ebe963e.szcp new file mode 100644 index 00000000..dbed8a8b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000024_2ebe963e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000025_99e3b318.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000025_99e3b318.szcp new file mode 100644 index 00000000..2bb6fecc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000025_99e3b318.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000026_98f7b6eb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000026_98f7b6eb.szcp new file mode 100644 index 00000000..be343757 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000026_98f7b6eb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000027_f8654232.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000027_f8654232.szcp new file mode 100644 index 00000000..1586a542 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000027_f8654232.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000028_2f72853e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000028_2f72853e.szcp new file mode 100644 index 00000000..ce8f8bd2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000028_2f72853e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000029_a715c72a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000029_a715c72a.szcp new file mode 100644 index 00000000..76ba6db0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000029_a715c72a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000030_a0cdf1fb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000030_a0cdf1fb.szcp new file mode 100644 index 00000000..f4f339cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000030_a0cdf1fb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000031_b7789620.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000031_b7789620.szcp new file mode 100644 index 00000000..a63f7d98 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000031_b7789620.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000032_218ba3cb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000032_218ba3cb.szcp new file mode 100644 index 00000000..3d4a4fd7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000032_218ba3cb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000033_10b37602.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000033_10b37602.szcp new file mode 100644 index 00000000..4a920d2c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000033_10b37602.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000034_c8e3975c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000034_c8e3975c.szcp new file mode 100644 index 00000000..40bbf53c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000034_c8e3975c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000035_cd5383d3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000035_cd5383d3.szcp new file mode 100644 index 00000000..267b828f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000035_cd5383d3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000036_a51cc8dd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000036_a51cc8dd.szcp new file mode 100644 index 00000000..32346bde Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000036_a51cc8dd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000037_ef3e4c7a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000037_ef3e4c7a.szcp new file mode 100644 index 00000000..786b7985 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000037_ef3e4c7a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000038_0b9f4dbc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000038_0b9f4dbc.szcp new file mode 100644 index 00000000..32550180 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000038_0b9f4dbc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000039_aa14c9b3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000039_aa14c9b3.szcp new file mode 100644 index 00000000..2b5d408a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000039_aa14c9b3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000040_e06c4c61.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000040_e06c4c61.szcp new file mode 100644 index 00000000..eb9e3c5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000040_e06c4c61.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000041_5624dbed.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000041_5624dbed.szcp new file mode 100644 index 00000000..47942582 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000041_5624dbed.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000042_c4e133d9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000042_c4e133d9.szcp new file mode 100644 index 00000000..d9987945 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000042_c4e133d9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000043_830afcba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000043_830afcba.szcp new file mode 100644 index 00000000..28350ccf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000043_830afcba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000044_60eb22e5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000044_60eb22e5.szcp new file mode 100644 index 00000000..1973a89e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000044_60eb22e5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000045_0561be75.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000045_0561be75.szcp new file mode 100644 index 00000000..f359de05 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000045_0561be75.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000046_e9148eb9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000046_e9148eb9.szcp new file mode 100644 index 00000000..bc7120bf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000046_e9148eb9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000047_3a6dc0aa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000047_3a6dc0aa.szcp new file mode 100644 index 00000000..c12c6f47 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000047_3a6dc0aa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000048_aea99dd3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000048_aea99dd3.szcp new file mode 100644 index 00000000..b4bb6b74 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000048_aea99dd3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000049_0da23b47.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000049_0da23b47.szcp new file mode 100644 index 00000000..111e0f63 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000049_0da23b47.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000050_65fcf833.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000050_65fcf833.szcp new file mode 100644 index 00000000..108b287a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000050_65fcf833.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000051_8ccdc3ad.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000051_8ccdc3ad.szcp new file mode 100644 index 00000000..f15404c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000051_8ccdc3ad.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000052_73f867ae.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000052_73f867ae.szcp new file mode 100644 index 00000000..30f19167 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000052_73f867ae.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000053_35744ec5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000053_35744ec5.szcp new file mode 100644 index 00000000..738e5976 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000053_35744ec5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000054_f261c5e7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000054_f261c5e7.szcp new file mode 100644 index 00000000..4863d696 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000054_f261c5e7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000055_4315b5fe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000055_4315b5fe.szcp new file mode 100644 index 00000000..48b7aa38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000055_4315b5fe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000056_b6ee95db.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000056_b6ee95db.szcp new file mode 100644 index 00000000..1cbde95c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000056_b6ee95db.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000057_eaa71b36.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000057_eaa71b36.szcp new file mode 100644 index 00000000..118cf86f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000057_eaa71b36.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000058_54c80ce4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000058_54c80ce4.szcp new file mode 100644 index 00000000..7f4640c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000058_54c80ce4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000059_85132dd0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000059_85132dd0.szcp new file mode 100644 index 00000000..edb0859f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000059_85132dd0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000060_4f95f781.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000060_4f95f781.szcp new file mode 100644 index 00000000..e881eed5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000060_4f95f781.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000061_c9ce7785.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000061_c9ce7785.szcp new file mode 100644 index 00000000..2164f38f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000061_c9ce7785.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000062_4caf1aa1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000062_4caf1aa1.szcp new file mode 100644 index 00000000..6dbb5430 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000062_4caf1aa1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000063_cf243521.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000063_cf243521.szcp new file mode 100644 index 00000000..5ba0da3c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000063_cf243521.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000064_7554afca.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000064_7554afca.szcp new file mode 100644 index 00000000..7a5ce74f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000064_7554afca.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000065_1096a3d9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000065_1096a3d9.szcp new file mode 100644 index 00000000..71992c26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000065_1096a3d9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000066_803e31dc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000066_803e31dc.szcp new file mode 100644 index 00000000..de263eaf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000066_803e31dc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000067_66330ec5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000067_66330ec5.szcp new file mode 100644 index 00000000..6dc3dfa2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000067_66330ec5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000068_f504fc48.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000068_f504fc48.szcp new file mode 100644 index 00000000..4d414b3d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000068_f504fc48.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000069_acddfac1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000069_acddfac1.szcp new file mode 100644 index 00000000..e7bc3350 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000069_acddfac1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000070_900e34d8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000070_900e34d8.szcp new file mode 100644 index 00000000..127d3f2b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000070_900e34d8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000071_56b221b9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000071_56b221b9.szcp new file mode 100644 index 00000000..86b1abb1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000071_56b221b9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000072_c23b3d5c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000072_c23b3d5c.szcp new file mode 100644 index 00000000..553f682b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000072_c23b3d5c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000073_a2bb89e7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000073_a2bb89e7.szcp new file mode 100644 index 00000000..ebd10912 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000073_a2bb89e7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000074_d6c31dbb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000074_d6c31dbb.szcp new file mode 100644 index 00000000..be2b34be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000074_d6c31dbb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000075_fe5db9a1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000075_fe5db9a1.szcp new file mode 100644 index 00000000..bdbbf8d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000075_fe5db9a1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000076_8d24eb08.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000076_8d24eb08.szcp new file mode 100644 index 00000000..efaf66f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000076_8d24eb08.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000077_1be2d90d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000077_1be2d90d.szcp new file mode 100644 index 00000000..6858f8eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000077_1be2d90d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000078_08da0bbc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000078_08da0bbc.szcp new file mode 100644 index 00000000..586fdbbe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000078_08da0bbc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000079_53ac69ae.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000079_53ac69ae.szcp new file mode 100644 index 00000000..eb1c5a4a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000079_53ac69ae.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000080_879a00d6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000080_879a00d6.szcp new file mode 100644 index 00000000..1357ddbf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000080_879a00d6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000081_dff215a0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000081_dff215a0.szcp new file mode 100644 index 00000000..dc90c07e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000081_dff215a0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000082_030c7f09.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000082_030c7f09.szcp new file mode 100644 index 00000000..d2a5be06 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000082_030c7f09.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000083_bd01b48c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000083_bd01b48c.szcp new file mode 100644 index 00000000..47828c54 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000083_bd01b48c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000084_f5967a8a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000084_f5967a8a.szcp new file mode 100644 index 00000000..eed685e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000084_f5967a8a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000085_aaff5770.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000085_aaff5770.szcp new file mode 100644 index 00000000..765fd360 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000085_aaff5770.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000086_27979de5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000086_27979de5.szcp new file mode 100644 index 00000000..1f61ee92 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000086_27979de5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000087_f6db19ff.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000087_f6db19ff.szcp new file mode 100644 index 00000000..54864441 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_031/checkpoints/checkpoint_00000000000000000087_f6db19ff.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000001_d93a00bc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000001_d93a00bc.szar new file mode 100644 index 00000000..07586dea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000001_d93a00bc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000002_665ab137.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000002_665ab137.szar new file mode 100644 index 00000000..93b4c6e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000002_665ab137.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000003_47853b36.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000003_47853b36.szar new file mode 100644 index 00000000..9f5c1ac0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000003_47853b36.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000004_c41fb120.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000004_c41fb120.szar new file mode 100644 index 00000000..6031c3e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000004_c41fb120.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000005_eb956f11.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000005_eb956f11.szar new file mode 100644 index 00000000..c575e181 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000005_eb956f11.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000006_3e687a17.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000006_3e687a17.szar new file mode 100644 index 00000000..021edcb6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000006_3e687a17.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000007_1b9835f3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000007_1b9835f3.szar new file mode 100644 index 00000000..696cbf9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000007_1b9835f3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000008_3d91ae17.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000008_3d91ae17.szar new file mode 100644 index 00000000..182850f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000008_3d91ae17.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000009_94b82651.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000009_94b82651.szar new file mode 100644 index 00000000..8aa5bbae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000009_94b82651.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000010_eaf06821.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000010_eaf06821.szar new file mode 100644 index 00000000..22c893f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000010_eaf06821.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000011_add62b1b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000011_add62b1b.szar new file mode 100644 index 00000000..53c25ab6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000011_add62b1b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000012_8592d87d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000012_8592d87d.szar new file mode 100644 index 00000000..5e3c277f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000012_8592d87d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000013_ccc2333b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000013_ccc2333b.szar new file mode 100644 index 00000000..c5d49e8c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000013_ccc2333b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000014_9997fd40.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000014_9997fd40.szar new file mode 100644 index 00000000..49b4a2ac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000014_9997fd40.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000015_b4f6f6bc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000015_b4f6f6bc.szar new file mode 100644 index 00000000..4e151100 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000015_b4f6f6bc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000016_b585b599.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000016_b585b599.szar new file mode 100644 index 00000000..d26b621d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000016_b585b599.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000017_f3c4c4d3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000017_f3c4c4d3.szar new file mode 100644 index 00000000..42e7b91e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000017_f3c4c4d3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000018_9d6329b9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000018_9d6329b9.szar new file mode 100644 index 00000000..fb1015d0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000018_9d6329b9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000019_51c3189d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000019_51c3189d.szar new file mode 100644 index 00000000..7c2193ce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000019_51c3189d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000020_80809ecc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000020_80809ecc.szar new file mode 100644 index 00000000..6d6a5020 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000020_80809ecc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000021_320759f5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000021_320759f5.szar new file mode 100644 index 00000000..974abd8c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000021_320759f5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000022_e6ddf2b2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000022_e6ddf2b2.szar new file mode 100644 index 00000000..293d1504 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000022_e6ddf2b2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000023_96bd2cbd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000023_96bd2cbd.szar new file mode 100644 index 00000000..337f1bdb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000023_96bd2cbd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000024_2e719b2c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000024_2e719b2c.szar new file mode 100644 index 00000000..96ec7d91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000024_2e719b2c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000025_f867090d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000025_f867090d.szar new file mode 100644 index 00000000..1a083235 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000025_f867090d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000026_c7726043.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000026_c7726043.szar new file mode 100644 index 00000000..e93f4525 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000026_c7726043.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000027_696d24b7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000027_696d24b7.szar new file mode 100644 index 00000000..6a9b141a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000027_696d24b7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000028_91d8e2a9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000028_91d8e2a9.szar new file mode 100644 index 00000000..4e5ae174 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000028_91d8e2a9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000029_3c4c2617.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000029_3c4c2617.szar new file mode 100644 index 00000000..08dfa98a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000029_3c4c2617.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000030_3c4bff45.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000030_3c4bff45.szar new file mode 100644 index 00000000..67ef33f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000030_3c4bff45.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000031_31c7fc0f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000031_31c7fc0f.szar new file mode 100644 index 00000000..a51d35cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000031_31c7fc0f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000032_499ff015.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000032_499ff015.szar new file mode 100644 index 00000000..e7781fbb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000032_499ff015.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000033_00dd048b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000033_00dd048b.szar new file mode 100644 index 00000000..a4492071 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000033_00dd048b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000034_2529ee1e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000034_2529ee1e.szar new file mode 100644 index 00000000..47e2cd26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000034_2529ee1e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000035_0c26fe1e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000035_0c26fe1e.szar new file mode 100644 index 00000000..9a061789 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000035_0c26fe1e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000036_48899903.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000036_48899903.szar new file mode 100644 index 00000000..077b7bc3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000036_48899903.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000037_c95b7329.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000037_c95b7329.szar new file mode 100644 index 00000000..091b8d9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000037_c95b7329.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000038_1d61cd39.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000038_1d61cd39.szar new file mode 100644 index 00000000..87372868 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000038_1d61cd39.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000039_41dd0738.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000039_41dd0738.szar new file mode 100644 index 00000000..f8ad2b72 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000039_41dd0738.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000040_f61267d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000040_f61267d7.szar new file mode 100644 index 00000000..7a9498d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000040_f61267d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000041_0eabcb9a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000041_0eabcb9a.szar new file mode 100644 index 00000000..dbbe84e4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000041_0eabcb9a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000042_92408dfd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000042_92408dfd.szar new file mode 100644 index 00000000..5b88eb26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000042_92408dfd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000043_0004f48d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000043_0004f48d.szar new file mode 100644 index 00000000..47a202b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000043_0004f48d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000044_ae2c8baf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000044_ae2c8baf.szar new file mode 100644 index 00000000..52ac272e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000044_ae2c8baf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000045_13981559.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000045_13981559.szar new file mode 100644 index 00000000..fce58211 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000045_13981559.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000046_93b78a72.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000046_93b78a72.szar new file mode 100644 index 00000000..689564eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000046_93b78a72.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000047_052997bf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000047_052997bf.szar new file mode 100644 index 00000000..71ead5b0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000047_052997bf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000048_ca41fa53.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000048_ca41fa53.szar new file mode 100644 index 00000000..be71c2e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000048_ca41fa53.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000049_d221379b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000049_d221379b.szar new file mode 100644 index 00000000..713d7908 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000049_d221379b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000050_d21be2e5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000050_d21be2e5.szar new file mode 100644 index 00000000..856b30a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000050_d21be2e5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000051_1c82875d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000051_1c82875d.szar new file mode 100644 index 00000000..a9c2b745 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000051_1c82875d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000052_d6cf86fc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000052_d6cf86fc.szar new file mode 100644 index 00000000..157871e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000052_d6cf86fc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000053_5a50aa45.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000053_5a50aa45.szar new file mode 100644 index 00000000..1519aa37 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000053_5a50aa45.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000054_d1ff698f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000054_d1ff698f.szar new file mode 100644 index 00000000..d3c1f139 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000054_d1ff698f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000055_d2f501d3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000055_d2f501d3.szar new file mode 100644 index 00000000..c290f215 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000055_d2f501d3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000056_d9ed5f9f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000056_d9ed5f9f.szar new file mode 100644 index 00000000..f246c2a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000056_d9ed5f9f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000057_ffe3b972.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000057_ffe3b972.szar new file mode 100644 index 00000000..e58ff8cb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000057_ffe3b972.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000058_fb085491.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000058_fb085491.szar new file mode 100644 index 00000000..e881ef0e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000058_fb085491.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000059_c53bb951.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000059_c53bb951.szar new file mode 100644 index 00000000..656b7c9f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/archive/delta_00000000000000000059_c53bb951.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000001_1e2ac835.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000001_1e2ac835.szcp new file mode 100644 index 00000000..1ef9413a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000001_1e2ac835.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000002_a2585a33.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000002_a2585a33.szcp new file mode 100644 index 00000000..dfdf295e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000002_a2585a33.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000003_f94ea5d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000003_f94ea5d1.szcp new file mode 100644 index 00000000..5ccf978b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000003_f94ea5d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000004_09f02a07.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000004_09f02a07.szcp new file mode 100644 index 00000000..72f350ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000004_09f02a07.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000005_fcb3036c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000005_fcb3036c.szcp new file mode 100644 index 00000000..d1ee95e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000005_fcb3036c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000006_d1e7630d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000006_d1e7630d.szcp new file mode 100644 index 00000000..d3b6396e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000006_d1e7630d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000007_b6ad1863.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000007_b6ad1863.szcp new file mode 100644 index 00000000..cc3652e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000007_b6ad1863.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000008_c2aebde0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000008_c2aebde0.szcp new file mode 100644 index 00000000..cddfd6eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000008_c2aebde0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000009_252b1b52.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000009_252b1b52.szcp new file mode 100644 index 00000000..72198251 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000009_252b1b52.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000010_6da2f36f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000010_6da2f36f.szcp new file mode 100644 index 00000000..f5e8d888 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000010_6da2f36f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000011_835768f9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000011_835768f9.szcp new file mode 100644 index 00000000..509ce9f3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000011_835768f9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000012_9f5a63c8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000012_9f5a63c8.szcp new file mode 100644 index 00000000..42396513 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000012_9f5a63c8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000013_d07ade4e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000013_d07ade4e.szcp new file mode 100644 index 00000000..7e1dfabf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000013_d07ade4e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000014_ff93a8d8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000014_ff93a8d8.szcp new file mode 100644 index 00000000..dc7edc65 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000014_ff93a8d8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000015_09f35c3e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000015_09f35c3e.szcp new file mode 100644 index 00000000..74f59dd6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000015_09f35c3e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000016_cf8dc6c0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000016_cf8dc6c0.szcp new file mode 100644 index 00000000..1afca045 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000016_cf8dc6c0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000017_ea921b39.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000017_ea921b39.szcp new file mode 100644 index 00000000..8efcd228 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000017_ea921b39.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000018_0b3f4303.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000018_0b3f4303.szcp new file mode 100644 index 00000000..050f4bc3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000018_0b3f4303.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000019_78f55700.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000019_78f55700.szcp new file mode 100644 index 00000000..62ad5624 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000019_78f55700.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000020_5e065e99.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000020_5e065e99.szcp new file mode 100644 index 00000000..be335563 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000020_5e065e99.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000021_ada3cfaf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000021_ada3cfaf.szcp new file mode 100644 index 00000000..d96a5c92 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000021_ada3cfaf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000022_627a3642.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000022_627a3642.szcp new file mode 100644 index 00000000..2b15b42a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000022_627a3642.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000023_307a9b7d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000023_307a9b7d.szcp new file mode 100644 index 00000000..d88842ce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000023_307a9b7d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000024_2822741c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000024_2822741c.szcp new file mode 100644 index 00000000..13b6f899 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000024_2822741c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000025_71d5bb81.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000025_71d5bb81.szcp new file mode 100644 index 00000000..b58e035a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000025_71d5bb81.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000026_dec93710.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000026_dec93710.szcp new file mode 100644 index 00000000..715fa892 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000026_dec93710.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000027_2bf8bc43.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000027_2bf8bc43.szcp new file mode 100644 index 00000000..b093cf1b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000027_2bf8bc43.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000028_224f245d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000028_224f245d.szcp new file mode 100644 index 00000000..896233af Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000028_224f245d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000029_8b6e5694.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000029_8b6e5694.szcp new file mode 100644 index 00000000..7ef6e6b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000029_8b6e5694.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000030_7c9a0c61.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000030_7c9a0c61.szcp new file mode 100644 index 00000000..c92f8f00 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000030_7c9a0c61.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000031_68828442.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000031_68828442.szcp new file mode 100644 index 00000000..9bd56644 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000031_68828442.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000032_cc450201.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000032_cc450201.szcp new file mode 100644 index 00000000..4958ca00 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000032_cc450201.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000033_382190b9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000033_382190b9.szcp new file mode 100644 index 00000000..dbe86ca7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000033_382190b9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000034_b1252670.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000034_b1252670.szcp new file mode 100644 index 00000000..f46d5942 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000034_b1252670.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000035_0990fee9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000035_0990fee9.szcp new file mode 100644 index 00000000..60147e2e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000035_0990fee9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000036_f28023a1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000036_f28023a1.szcp new file mode 100644 index 00000000..4e270064 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000036_f28023a1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000037_30598ddc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000037_30598ddc.szcp new file mode 100644 index 00000000..051582ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000037_30598ddc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000038_6984ade8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000038_6984ade8.szcp new file mode 100644 index 00000000..f3b4e2a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000038_6984ade8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000039_21ea9924.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000039_21ea9924.szcp new file mode 100644 index 00000000..a2c40b5a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000039_21ea9924.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000040_11034610.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000040_11034610.szcp new file mode 100644 index 00000000..8d8eb43f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000040_11034610.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000041_b23ccfca.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000041_b23ccfca.szcp new file mode 100644 index 00000000..032361d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000041_b23ccfca.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000042_80d864f4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000042_80d864f4.szcp new file mode 100644 index 00000000..256c8c21 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000042_80d864f4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000043_4097f828.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000043_4097f828.szcp new file mode 100644 index 00000000..40d1ca1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000043_4097f828.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000044_a7f39505.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000044_a7f39505.szcp new file mode 100644 index 00000000..53024b9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000044_a7f39505.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000045_c4f3eb5a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000045_c4f3eb5a.szcp new file mode 100644 index 00000000..21f666ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000045_c4f3eb5a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000046_94c249f8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000046_94c249f8.szcp new file mode 100644 index 00000000..4a29f381 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000046_94c249f8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000047_05b73ea0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000047_05b73ea0.szcp new file mode 100644 index 00000000..b729b5db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000047_05b73ea0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000048_e6868491.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000048_e6868491.szcp new file mode 100644 index 00000000..9f538cd7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000048_e6868491.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000049_ca96a7d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000049_ca96a7d7.szcp new file mode 100644 index 00000000..531d5166 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000049_ca96a7d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000050_81a0fb7d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000050_81a0fb7d.szcp new file mode 100644 index 00000000..5c2de9f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000050_81a0fb7d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000051_361b375f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000051_361b375f.szcp new file mode 100644 index 00000000..b8aa6115 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000051_361b375f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000052_923c7d15.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000052_923c7d15.szcp new file mode 100644 index 00000000..37bca171 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000052_923c7d15.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000053_99e7d270.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000053_99e7d270.szcp new file mode 100644 index 00000000..b90c99a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000053_99e7d270.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000054_ed3dafcb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000054_ed3dafcb.szcp new file mode 100644 index 00000000..fbd560a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000054_ed3dafcb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000055_2fc2af08.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000055_2fc2af08.szcp new file mode 100644 index 00000000..8f997022 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000055_2fc2af08.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000056_0ec38f5c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000056_0ec38f5c.szcp new file mode 100644 index 00000000..67d6d130 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000056_0ec38f5c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000057_a421f153.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000057_a421f153.szcp new file mode 100644 index 00000000..9dc4baea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000057_a421f153.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000058_5c619f8f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000058_5c619f8f.szcp new file mode 100644 index 00000000..33b5bc55 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000058_5c619f8f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000059_87617092.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000059_87617092.szcp new file mode 100644 index 00000000..04383e89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_032/checkpoints/checkpoint_00000000000000000059_87617092.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000001_f290ba96.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000001_f290ba96.szar new file mode 100644 index 00000000..ec932b19 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000001_f290ba96.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000002_c6ab7a7b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000002_c6ab7a7b.szar new file mode 100644 index 00000000..e595d498 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000002_c6ab7a7b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000003_466d1874.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000003_466d1874.szar new file mode 100644 index 00000000..c89bebdb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000003_466d1874.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000004_079166a1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000004_079166a1.szar new file mode 100644 index 00000000..ca987123 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000004_079166a1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000005_1b4f9773.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000005_1b4f9773.szar new file mode 100644 index 00000000..687099ba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000005_1b4f9773.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000006_13308563.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000006_13308563.szar new file mode 100644 index 00000000..a8f1954a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000006_13308563.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000007_43cfcaaa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000007_43cfcaaa.szar new file mode 100644 index 00000000..fecd00b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000007_43cfcaaa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000008_d9dc3a40.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000008_d9dc3a40.szar new file mode 100644 index 00000000..2774c0c1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000008_d9dc3a40.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000009_49bff18f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000009_49bff18f.szar new file mode 100644 index 00000000..712add08 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000009_49bff18f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000010_096de0ff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000010_096de0ff.szar new file mode 100644 index 00000000..cf0e94cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000010_096de0ff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000011_b7ccd48e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000011_b7ccd48e.szar new file mode 100644 index 00000000..0b3616b6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000011_b7ccd48e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000012_2eec7082.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000012_2eec7082.szar new file mode 100644 index 00000000..72e4b23e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000012_2eec7082.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000013_2feaca5b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000013_2feaca5b.szar new file mode 100644 index 00000000..4e71edab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000013_2feaca5b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000014_4d53dbd3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000014_4d53dbd3.szar new file mode 100644 index 00000000..875f34d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000014_4d53dbd3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000015_0f6fc446.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000015_0f6fc446.szar new file mode 100644 index 00000000..e18a95b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000015_0f6fc446.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000016_6709842a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000016_6709842a.szar new file mode 100644 index 00000000..161adc59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000016_6709842a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000017_14482f32.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000017_14482f32.szar new file mode 100644 index 00000000..33e4350a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000017_14482f32.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000018_7e387aea.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000018_7e387aea.szar new file mode 100644 index 00000000..f27b42b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000018_7e387aea.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000019_3bc41d5a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000019_3bc41d5a.szar new file mode 100644 index 00000000..345ded90 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000019_3bc41d5a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000020_21913b43.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000020_21913b43.szar new file mode 100644 index 00000000..3f4b0688 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000020_21913b43.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000021_6ce16136.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000021_6ce16136.szar new file mode 100644 index 00000000..1f41e8bd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000021_6ce16136.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000022_b10f04aa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000022_b10f04aa.szar new file mode 100644 index 00000000..9f949b21 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000022_b10f04aa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000023_2648da3a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000023_2648da3a.szar new file mode 100644 index 00000000..e5a98dbd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000023_2648da3a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000024_083b6a55.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000024_083b6a55.szar new file mode 100644 index 00000000..8a43d265 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000024_083b6a55.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000025_c63b61a0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000025_c63b61a0.szar new file mode 100644 index 00000000..e443ef3f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000025_c63b61a0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000026_536dfa9d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000026_536dfa9d.szar new file mode 100644 index 00000000..16ad37b3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000026_536dfa9d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000027_9c7045e2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000027_9c7045e2.szar new file mode 100644 index 00000000..d07e8b14 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000027_9c7045e2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000028_b59c3800.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000028_b59c3800.szar new file mode 100644 index 00000000..a157a6d0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000028_b59c3800.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000029_32635dd9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000029_32635dd9.szar new file mode 100644 index 00000000..f542b7fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000029_32635dd9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000030_cb5adda4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000030_cb5adda4.szar new file mode 100644 index 00000000..147d5c1d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000030_cb5adda4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000031_55d566e8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000031_55d566e8.szar new file mode 100644 index 00000000..f722dcd1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000031_55d566e8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000032_83c0a898.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000032_83c0a898.szar new file mode 100644 index 00000000..ae103314 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000032_83c0a898.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000033_43289dc5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000033_43289dc5.szar new file mode 100644 index 00000000..33cc40e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000033_43289dc5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000034_6625b09e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000034_6625b09e.szar new file mode 100644 index 00000000..bc6a26e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000034_6625b09e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000035_e2ee8a49.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000035_e2ee8a49.szar new file mode 100644 index 00000000..9287f296 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000035_e2ee8a49.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000036_685ac8ca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000036_685ac8ca.szar new file mode 100644 index 00000000..d46d0421 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000036_685ac8ca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000037_c56ef5cf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000037_c56ef5cf.szar new file mode 100644 index 00000000..e1fc7225 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000037_c56ef5cf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000038_7a6cad2b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000038_7a6cad2b.szar new file mode 100644 index 00000000..dddefcf8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000038_7a6cad2b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000039_bb4244a4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000039_bb4244a4.szar new file mode 100644 index 00000000..d543eea3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000039_bb4244a4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000040_8df19645.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000040_8df19645.szar new file mode 100644 index 00000000..c6e37114 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000040_8df19645.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000041_26804691.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000041_26804691.szar new file mode 100644 index 00000000..2e629ad6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000041_26804691.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000042_9b531807.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000042_9b531807.szar new file mode 100644 index 00000000..e09410c8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000042_9b531807.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000043_58ad56fe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000043_58ad56fe.szar new file mode 100644 index 00000000..f8eca49c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000043_58ad56fe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000044_6a34178c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000044_6a34178c.szar new file mode 100644 index 00000000..4a0e43bd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000044_6a34178c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000045_ea2ccdac.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000045_ea2ccdac.szar new file mode 100644 index 00000000..3bc37a92 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000045_ea2ccdac.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000046_3dbe774e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000046_3dbe774e.szar new file mode 100644 index 00000000..a5b283b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000046_3dbe774e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000047_c0df6190.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000047_c0df6190.szar new file mode 100644 index 00000000..30e2071e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000047_c0df6190.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000048_58c884be.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000048_58c884be.szar new file mode 100644 index 00000000..b84e07a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000048_58c884be.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000049_98f5b3c4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000049_98f5b3c4.szar new file mode 100644 index 00000000..34160267 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000049_98f5b3c4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000050_d6b72179.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000050_d6b72179.szar new file mode 100644 index 00000000..b23b2a58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000050_d6b72179.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000051_a228e208.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000051_a228e208.szar new file mode 100644 index 00000000..3a4da293 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000051_a228e208.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000052_260861b4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000052_260861b4.szar new file mode 100644 index 00000000..0ff2a12e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000052_260861b4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000053_5eed2f8f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000053_5eed2f8f.szar new file mode 100644 index 00000000..a938fd54 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000053_5eed2f8f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000054_f611cc51.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000054_f611cc51.szar new file mode 100644 index 00000000..f952bacd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000054_f611cc51.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000055_c234f413.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000055_c234f413.szar new file mode 100644 index 00000000..9a9e6fdc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000055_c234f413.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000056_8021b595.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000056_8021b595.szar new file mode 100644 index 00000000..aada2a9d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000056_8021b595.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000057_829c0f1e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000057_829c0f1e.szar new file mode 100644 index 00000000..412f9100 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000057_829c0f1e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000058_331cdf0a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000058_331cdf0a.szar new file mode 100644 index 00000000..01381b5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000058_331cdf0a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000059_2b4a28c7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000059_2b4a28c7.szar new file mode 100644 index 00000000..8a3db7d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000059_2b4a28c7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000060_2efe8be5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000060_2efe8be5.szar new file mode 100644 index 00000000..f89faa7c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000060_2efe8be5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000061_9284496b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000061_9284496b.szar new file mode 100644 index 00000000..e2c11c8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000061_9284496b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000062_47729776.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000062_47729776.szar new file mode 100644 index 00000000..21008cb6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000062_47729776.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000063_749e8bcc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000063_749e8bcc.szar new file mode 100644 index 00000000..56337f1e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000063_749e8bcc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000064_d2d11ed4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000064_d2d11ed4.szar new file mode 100644 index 00000000..bcb33bc0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000064_d2d11ed4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000065_de645dd3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000065_de645dd3.szar new file mode 100644 index 00000000..2cfdf05e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000065_de645dd3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000066_3102fc46.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000066_3102fc46.szar new file mode 100644 index 00000000..21a6279e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000066_3102fc46.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000067_503322e0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000067_503322e0.szar new file mode 100644 index 00000000..b020e475 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000067_503322e0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000068_ed1c2ff6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000068_ed1c2ff6.szar new file mode 100644 index 00000000..529f9b57 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000068_ed1c2ff6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000069_f0fad6de.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000069_f0fad6de.szar new file mode 100644 index 00000000..1a78bf34 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000069_f0fad6de.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000070_ba393870.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000070_ba393870.szar new file mode 100644 index 00000000..e3bb99e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000070_ba393870.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000071_d39952d0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000071_d39952d0.szar new file mode 100644 index 00000000..6623678d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000071_d39952d0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000072_3cdb63a9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000072_3cdb63a9.szar new file mode 100644 index 00000000..b4ff35e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000072_3cdb63a9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000073_3be9b809.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000073_3be9b809.szar new file mode 100644 index 00000000..26e5a112 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000073_3be9b809.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000074_8dfb7195.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000074_8dfb7195.szar new file mode 100644 index 00000000..f7d74436 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000074_8dfb7195.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000075_6855327c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000075_6855327c.szar new file mode 100644 index 00000000..18b7da86 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000075_6855327c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000076_f982ae24.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000076_f982ae24.szar new file mode 100644 index 00000000..c01440cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000076_f982ae24.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000077_ebcfa82a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000077_ebcfa82a.szar new file mode 100644 index 00000000..d458d22d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000077_ebcfa82a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000078_0bbdabb3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000078_0bbdabb3.szar new file mode 100644 index 00000000..d3cc9ffe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000078_0bbdabb3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000079_6775be41.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000079_6775be41.szar new file mode 100644 index 00000000..bf93164b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000079_6775be41.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000080_a4c49471.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000080_a4c49471.szar new file mode 100644 index 00000000..dc32a8e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000080_a4c49471.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000081_32b2d7af.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000081_32b2d7af.szar new file mode 100644 index 00000000..dceadc9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000081_32b2d7af.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000082_624eaac2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000082_624eaac2.szar new file mode 100644 index 00000000..ebe9ff40 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000082_624eaac2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000083_174bf3df.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000083_174bf3df.szar new file mode 100644 index 00000000..08c4c821 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000083_174bf3df.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000084_d05a29cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000084_d05a29cc.szar new file mode 100644 index 00000000..91ecc095 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000084_d05a29cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000085_bf97c336.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000085_bf97c336.szar new file mode 100644 index 00000000..f04a0d29 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000085_bf97c336.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000086_34260336.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000086_34260336.szar new file mode 100644 index 00000000..32b209ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/archive/delta_00000000000000000086_34260336.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000001_64d90f9c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000001_64d90f9c.szcp new file mode 100644 index 00000000..8ae02e39 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000001_64d90f9c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000002_f5bab275.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000002_f5bab275.szcp new file mode 100644 index 00000000..02900641 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000002_f5bab275.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000003_8bf141e0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000003_8bf141e0.szcp new file mode 100644 index 00000000..fe822ed3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000003_8bf141e0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000004_69ddae72.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000004_69ddae72.szcp new file mode 100644 index 00000000..3d51ba23 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000004_69ddae72.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000005_1b3048b2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000005_1b3048b2.szcp new file mode 100644 index 00000000..6a5bc36e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000005_1b3048b2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000006_0d799cd5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000006_0d799cd5.szcp new file mode 100644 index 00000000..65e8f34b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000006_0d799cd5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000007_c95d767e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000007_c95d767e.szcp new file mode 100644 index 00000000..a06e9117 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000007_c95d767e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000008_27ee8007.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000008_27ee8007.szcp new file mode 100644 index 00000000..caeaef6b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000008_27ee8007.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000009_99414857.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000009_99414857.szcp new file mode 100644 index 00000000..0930f077 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000009_99414857.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000010_54b9b5dd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000010_54b9b5dd.szcp new file mode 100644 index 00000000..65539d51 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000010_54b9b5dd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000011_d7bb3bdf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000011_d7bb3bdf.szcp new file mode 100644 index 00000000..74505c22 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000011_d7bb3bdf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000012_b167f18d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000012_b167f18d.szcp new file mode 100644 index 00000000..e020f458 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000012_b167f18d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000013_52a2345b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000013_52a2345b.szcp new file mode 100644 index 00000000..3d067bb4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000013_52a2345b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000014_7fdf24d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000014_7fdf24d7.szcp new file mode 100644 index 00000000..db9011c1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000014_7fdf24d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000015_6b9382b0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000015_6b9382b0.szcp new file mode 100644 index 00000000..28439d34 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000015_6b9382b0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000016_b58ac3bc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000016_b58ac3bc.szcp new file mode 100644 index 00000000..1f5a7de3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000016_b58ac3bc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000017_4c53f204.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000017_4c53f204.szcp new file mode 100644 index 00000000..4838a206 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000017_4c53f204.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000018_dd8bda1d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000018_dd8bda1d.szcp new file mode 100644 index 00000000..0f5e5bf5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000018_dd8bda1d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000019_05bdd79c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000019_05bdd79c.szcp new file mode 100644 index 00000000..9cb3d526 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000019_05bdd79c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000020_7a7a475a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000020_7a7a475a.szcp new file mode 100644 index 00000000..290fe153 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000020_7a7a475a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000021_639c89a6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000021_639c89a6.szcp new file mode 100644 index 00000000..be4c6574 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000021_639c89a6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000022_40d11e7a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000022_40d11e7a.szcp new file mode 100644 index 00000000..76155522 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000022_40d11e7a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000023_90f9f48a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000023_90f9f48a.szcp new file mode 100644 index 00000000..6e321157 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000023_90f9f48a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000024_ee63a094.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000024_ee63a094.szcp new file mode 100644 index 00000000..0aaadff7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000024_ee63a094.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000025_ee3192fd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000025_ee3192fd.szcp new file mode 100644 index 00000000..95dc777d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000025_ee3192fd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000026_1d9e6593.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000026_1d9e6593.szcp new file mode 100644 index 00000000..c2528188 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000026_1d9e6593.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000027_96261351.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000027_96261351.szcp new file mode 100644 index 00000000..8f1a4084 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000027_96261351.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000028_8e5153bf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000028_8e5153bf.szcp new file mode 100644 index 00000000..a155dda3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000028_8e5153bf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000029_028f81dd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000029_028f81dd.szcp new file mode 100644 index 00000000..d3d15e20 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000029_028f81dd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000030_2ba76751.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000030_2ba76751.szcp new file mode 100644 index 00000000..640ae7a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000030_2ba76751.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000031_5557b344.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000031_5557b344.szcp new file mode 100644 index 00000000..7e288954 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000031_5557b344.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000032_ffd1bbf0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000032_ffd1bbf0.szcp new file mode 100644 index 00000000..ca88e8bd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000032_ffd1bbf0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000033_8d246cc4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000033_8d246cc4.szcp new file mode 100644 index 00000000..de59c6ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000033_8d246cc4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000034_428b9a47.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000034_428b9a47.szcp new file mode 100644 index 00000000..e3bd408a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000034_428b9a47.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000035_a2988228.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000035_a2988228.szcp new file mode 100644 index 00000000..216b7655 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000035_a2988228.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000036_67071010.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000036_67071010.szcp new file mode 100644 index 00000000..4661df9f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000036_67071010.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000037_4ff4c8cf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000037_4ff4c8cf.szcp new file mode 100644 index 00000000..b0da0949 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000037_4ff4c8cf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000038_85f06057.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000038_85f06057.szcp new file mode 100644 index 00000000..f971ea25 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000038_85f06057.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000039_c511f79f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000039_c511f79f.szcp new file mode 100644 index 00000000..d87ec0a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000039_c511f79f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000040_0041f599.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000040_0041f599.szcp new file mode 100644 index 00000000..2785df43 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000040_0041f599.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000041_76f35784.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000041_76f35784.szcp new file mode 100644 index 00000000..70de21c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000041_76f35784.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000042_af551225.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000042_af551225.szcp new file mode 100644 index 00000000..5fe692b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000042_af551225.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000043_cfce4aa3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000043_cfce4aa3.szcp new file mode 100644 index 00000000..39a64af2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000043_cfce4aa3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000044_f4a48f05.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000044_f4a48f05.szcp new file mode 100644 index 00000000..3a1deb3c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000044_f4a48f05.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000045_7e5e6a5a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000045_7e5e6a5a.szcp new file mode 100644 index 00000000..ea8b6494 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000045_7e5e6a5a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000046_8468a1cc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000046_8468a1cc.szcp new file mode 100644 index 00000000..1419fa49 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000046_8468a1cc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000047_26551793.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000047_26551793.szcp new file mode 100644 index 00000000..df03924f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000047_26551793.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000048_b8e00368.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000048_b8e00368.szcp new file mode 100644 index 00000000..7508be80 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000048_b8e00368.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000049_2d0195f7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000049_2d0195f7.szcp new file mode 100644 index 00000000..b5e4ef2c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000049_2d0195f7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000050_39733f4b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000050_39733f4b.szcp new file mode 100644 index 00000000..14e810db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000050_39733f4b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000051_e736af4e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000051_e736af4e.szcp new file mode 100644 index 00000000..7bc8b03c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000051_e736af4e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000052_0e51ac03.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000052_0e51ac03.szcp new file mode 100644 index 00000000..ecbfb404 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000052_0e51ac03.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000053_83d20631.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000053_83d20631.szcp new file mode 100644 index 00000000..99e14e41 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000053_83d20631.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000054_f1a17a9b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000054_f1a17a9b.szcp new file mode 100644 index 00000000..c8da5cd1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000054_f1a17a9b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000055_fd152ab9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000055_fd152ab9.szcp new file mode 100644 index 00000000..305c4ca3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000055_fd152ab9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000056_6a83e9e2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000056_6a83e9e2.szcp new file mode 100644 index 00000000..87c01c51 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000056_6a83e9e2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000057_94b56f14.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000057_94b56f14.szcp new file mode 100644 index 00000000..dbd787d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000057_94b56f14.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000058_a72ac58f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000058_a72ac58f.szcp new file mode 100644 index 00000000..3dfa22aa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000058_a72ac58f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000059_81a27810.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000059_81a27810.szcp new file mode 100644 index 00000000..8a6aff3e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000059_81a27810.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000060_0ddc98aa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000060_0ddc98aa.szcp new file mode 100644 index 00000000..1f04a605 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000060_0ddc98aa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000061_09aa3e89.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000061_09aa3e89.szcp new file mode 100644 index 00000000..9d8d9d9c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000061_09aa3e89.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000062_85dd616c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000062_85dd616c.szcp new file mode 100644 index 00000000..4c1545db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000062_85dd616c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000063_887e79cb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000063_887e79cb.szcp new file mode 100644 index 00000000..8e4ce0e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000063_887e79cb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000064_9633fb77.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000064_9633fb77.szcp new file mode 100644 index 00000000..5114e7df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000064_9633fb77.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000065_edfa10c8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000065_edfa10c8.szcp new file mode 100644 index 00000000..607cdc99 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000065_edfa10c8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000066_fda817f0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000066_fda817f0.szcp new file mode 100644 index 00000000..ad6a5435 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000066_fda817f0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000067_3fe6448a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000067_3fe6448a.szcp new file mode 100644 index 00000000..4f2b756e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000067_3fe6448a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000068_bbd47ea7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000068_bbd47ea7.szcp new file mode 100644 index 00000000..e9f073db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000068_bbd47ea7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000069_852aa3de.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000069_852aa3de.szcp new file mode 100644 index 00000000..e20da8a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000069_852aa3de.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000070_f50ccd39.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000070_f50ccd39.szcp new file mode 100644 index 00000000..6e82e84b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000070_f50ccd39.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000071_d49e10b8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000071_d49e10b8.szcp new file mode 100644 index 00000000..4a07285b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000071_d49e10b8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000072_70809c21.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000072_70809c21.szcp new file mode 100644 index 00000000..5c485932 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000072_70809c21.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000073_9a3ed5d3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000073_9a3ed5d3.szcp new file mode 100644 index 00000000..17fba7b0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000073_9a3ed5d3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000074_4de86f73.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000074_4de86f73.szcp new file mode 100644 index 00000000..3e0aecb4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000074_4de86f73.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000075_b15fc6bb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000075_b15fc6bb.szcp new file mode 100644 index 00000000..80649b83 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000075_b15fc6bb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000076_19029171.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000076_19029171.szcp new file mode 100644 index 00000000..53de3e11 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000076_19029171.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000077_9bb65fa9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000077_9bb65fa9.szcp new file mode 100644 index 00000000..6dfe2e18 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000077_9bb65fa9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000078_f2e78ab0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000078_f2e78ab0.szcp new file mode 100644 index 00000000..7e625b17 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000078_f2e78ab0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000079_5f4e7add.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000079_5f4e7add.szcp new file mode 100644 index 00000000..23f725aa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000079_5f4e7add.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000080_c78f6d07.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000080_c78f6d07.szcp new file mode 100644 index 00000000..0bb96d69 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000080_c78f6d07.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000081_66ebaa4b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000081_66ebaa4b.szcp new file mode 100644 index 00000000..89041867 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000081_66ebaa4b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000082_3388f889.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000082_3388f889.szcp new file mode 100644 index 00000000..a9a78275 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000082_3388f889.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000083_7babdb71.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000083_7babdb71.szcp new file mode 100644 index 00000000..f72da02b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000083_7babdb71.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000084_789595d6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000084_789595d6.szcp new file mode 100644 index 00000000..d51438ae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000084_789595d6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000085_0308b29e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000085_0308b29e.szcp new file mode 100644 index 00000000..f8585080 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000085_0308b29e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000086_ca0297ec.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000086_ca0297ec.szcp new file mode 100644 index 00000000..50c4bec2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_033/checkpoints/checkpoint_00000000000000000086_ca0297ec.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000001_af0e0990.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000001_af0e0990.szar new file mode 100644 index 00000000..bd3e4c7d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000001_af0e0990.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000002_cccae470.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000002_cccae470.szar new file mode 100644 index 00000000..e966a221 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000002_cccae470.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000003_50cac914.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000003_50cac914.szar new file mode 100644 index 00000000..02493131 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000003_50cac914.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000004_0502b4d3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000004_0502b4d3.szar new file mode 100644 index 00000000..b787e4f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000004_0502b4d3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000005_61384978.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000005_61384978.szar new file mode 100644 index 00000000..f276cdaf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000005_61384978.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000006_9e4c28bf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000006_9e4c28bf.szar new file mode 100644 index 00000000..1bb2cd33 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000006_9e4c28bf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000007_008722a1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000007_008722a1.szar new file mode 100644 index 00000000..1d777d08 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000007_008722a1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000008_2e363423.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000008_2e363423.szar new file mode 100644 index 00000000..1e771bca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000008_2e363423.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000009_3544f4b2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000009_3544f4b2.szar new file mode 100644 index 00000000..991dca43 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000009_3544f4b2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000010_7830f5ec.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000010_7830f5ec.szar new file mode 100644 index 00000000..b9990728 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000010_7830f5ec.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000011_f6e0e888.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000011_f6e0e888.szar new file mode 100644 index 00000000..6d781b59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000011_f6e0e888.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000012_a66f54ad.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000012_a66f54ad.szar new file mode 100644 index 00000000..4d0de481 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000012_a66f54ad.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000013_148acf99.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000013_148acf99.szar new file mode 100644 index 00000000..622ebbe7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000013_148acf99.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000014_9cff79b5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000014_9cff79b5.szar new file mode 100644 index 00000000..45eed9c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000014_9cff79b5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000015_f7857971.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000015_f7857971.szar new file mode 100644 index 00000000..d7fa773a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000015_f7857971.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000016_81586f8e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000016_81586f8e.szar new file mode 100644 index 00000000..1eac218a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000016_81586f8e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000017_45097435.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000017_45097435.szar new file mode 100644 index 00000000..b62fb656 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000017_45097435.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000018_f9ef7bbd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000018_f9ef7bbd.szar new file mode 100644 index 00000000..3e7946ba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000018_f9ef7bbd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000019_a6836e8f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000019_a6836e8f.szar new file mode 100644 index 00000000..f255d7ac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000019_a6836e8f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000020_1647f9e9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000020_1647f9e9.szar new file mode 100644 index 00000000..d9fb27ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000020_1647f9e9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000021_da04a4b0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000021_da04a4b0.szar new file mode 100644 index 00000000..ef3fa900 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000021_da04a4b0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000022_e3e16231.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000022_e3e16231.szar new file mode 100644 index 00000000..6e3b0d77 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000022_e3e16231.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000023_70c58a48.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000023_70c58a48.szar new file mode 100644 index 00000000..c94814cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000023_70c58a48.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000024_784a12c6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000024_784a12c6.szar new file mode 100644 index 00000000..944e79fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000024_784a12c6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000025_27f6143e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000025_27f6143e.szar new file mode 100644 index 00000000..f79c1f19 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000025_27f6143e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000026_218e7bd3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000026_218e7bd3.szar new file mode 100644 index 00000000..9b2e4875 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000026_218e7bd3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000027_fba753dd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000027_fba753dd.szar new file mode 100644 index 00000000..e53ae064 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000027_fba753dd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000028_97e325a9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000028_97e325a9.szar new file mode 100644 index 00000000..2795d71c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000028_97e325a9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000029_71d85feb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000029_71d85feb.szar new file mode 100644 index 00000000..758006b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000029_71d85feb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000030_7aceb1c6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000030_7aceb1c6.szar new file mode 100644 index 00000000..cef4bf40 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000030_7aceb1c6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000031_36ad512a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000031_36ad512a.szar new file mode 100644 index 00000000..32e8a14f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000031_36ad512a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000032_d9469bf7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000032_d9469bf7.szar new file mode 100644 index 00000000..e5d1b3c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000032_d9469bf7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000033_1a7d1fbc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000033_1a7d1fbc.szar new file mode 100644 index 00000000..ff96bdeb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000033_1a7d1fbc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000034_5d1d2040.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000034_5d1d2040.szar new file mode 100644 index 00000000..decf88bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000034_5d1d2040.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000035_90366dda.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000035_90366dda.szar new file mode 100644 index 00000000..42c35591 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000035_90366dda.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000036_de50311a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000036_de50311a.szar new file mode 100644 index 00000000..d25e6389 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000036_de50311a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000037_3fe7b700.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000037_3fe7b700.szar new file mode 100644 index 00000000..b9887f5f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000037_3fe7b700.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000038_c9bf3fd0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000038_c9bf3fd0.szar new file mode 100644 index 00000000..ecbd333d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000038_c9bf3fd0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000039_31a48902.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000039_31a48902.szar new file mode 100644 index 00000000..14192dcc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000039_31a48902.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000040_d2ef7999.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000040_d2ef7999.szar new file mode 100644 index 00000000..b34bfa00 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000040_d2ef7999.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000041_4cffc655.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000041_4cffc655.szar new file mode 100644 index 00000000..288ee0f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000041_4cffc655.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000042_0f4fa28d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000042_0f4fa28d.szar new file mode 100644 index 00000000..540dfe8f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000042_0f4fa28d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000043_96450b62.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000043_96450b62.szar new file mode 100644 index 00000000..c79bff50 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000043_96450b62.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000044_298e3610.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000044_298e3610.szar new file mode 100644 index 00000000..50f4c6be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000044_298e3610.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000045_b49e01fe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000045_b49e01fe.szar new file mode 100644 index 00000000..8d875c5e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000045_b49e01fe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000046_24670c79.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000046_24670c79.szar new file mode 100644 index 00000000..b0dd2463 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000046_24670c79.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000047_4a4527d0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000047_4a4527d0.szar new file mode 100644 index 00000000..9945992a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000047_4a4527d0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000048_d3659782.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000048_d3659782.szar new file mode 100644 index 00000000..3e44a799 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000048_d3659782.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000049_5cb0687b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000049_5cb0687b.szar new file mode 100644 index 00000000..5ff136e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000049_5cb0687b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000050_8023ba54.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000050_8023ba54.szar new file mode 100644 index 00000000..f8468b90 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000050_8023ba54.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000051_4355d866.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000051_4355d866.szar new file mode 100644 index 00000000..70d8a528 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000051_4355d866.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000052_3770b3f8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000052_3770b3f8.szar new file mode 100644 index 00000000..6309b233 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000052_3770b3f8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000053_732b9683.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000053_732b9683.szar new file mode 100644 index 00000000..fc14aa6c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000053_732b9683.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000054_74450b6e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000054_74450b6e.szar new file mode 100644 index 00000000..527f762f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/archive/delta_00000000000000000054_74450b6e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000001_4bf36dac.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000001_4bf36dac.szcp new file mode 100644 index 00000000..0bac4d31 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000001_4bf36dac.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000002_41a47eca.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000002_41a47eca.szcp new file mode 100644 index 00000000..765dc433 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000002_41a47eca.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000003_eb3fd4f5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000003_eb3fd4f5.szcp new file mode 100644 index 00000000..71f5a789 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000003_eb3fd4f5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000004_9d255384.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000004_9d255384.szcp new file mode 100644 index 00000000..d31cd432 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000004_9d255384.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000005_abb31575.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000005_abb31575.szcp new file mode 100644 index 00000000..bfad909d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000005_abb31575.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000006_da7b2627.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000006_da7b2627.szcp new file mode 100644 index 00000000..c86a59c1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000006_da7b2627.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000007_89959f9a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000007_89959f9a.szcp new file mode 100644 index 00000000..482d1304 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000007_89959f9a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000008_07610607.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000008_07610607.szcp new file mode 100644 index 00000000..4ca97b6b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000008_07610607.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000009_6a71f9e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000009_6a71f9e9.szcp new file mode 100644 index 00000000..a1e6062b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000009_6a71f9e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000010_179d8cd1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000010_179d8cd1.szcp new file mode 100644 index 00000000..348315fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000010_179d8cd1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000011_076c3294.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000011_076c3294.szcp new file mode 100644 index 00000000..7f48bcc0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000011_076c3294.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000012_79b33539.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000012_79b33539.szcp new file mode 100644 index 00000000..103f1b1f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000012_79b33539.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000013_bf31e781.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000013_bf31e781.szcp new file mode 100644 index 00000000..67e4091b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000013_bf31e781.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000014_94d1c83f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000014_94d1c83f.szcp new file mode 100644 index 00000000..720a4a91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000014_94d1c83f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000015_123c17ed.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000015_123c17ed.szcp new file mode 100644 index 00000000..00a53689 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000015_123c17ed.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000016_5b163581.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000016_5b163581.szcp new file mode 100644 index 00000000..e3caf66c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000016_5b163581.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000017_b34cd384.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000017_b34cd384.szcp new file mode 100644 index 00000000..14221902 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000017_b34cd384.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000018_8f989f08.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000018_8f989f08.szcp new file mode 100644 index 00000000..2a1691c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000018_8f989f08.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000019_c5ca160c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000019_c5ca160c.szcp new file mode 100644 index 00000000..be1a1d28 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000019_c5ca160c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000020_adbc19e0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000020_adbc19e0.szcp new file mode 100644 index 00000000..7f6be137 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000020_adbc19e0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000021_da67d83c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000021_da67d83c.szcp new file mode 100644 index 00000000..df8f858a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000021_da67d83c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000022_7fbfe620.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000022_7fbfe620.szcp new file mode 100644 index 00000000..0865f792 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000022_7fbfe620.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000023_d55aa01c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000023_d55aa01c.szcp new file mode 100644 index 00000000..2f865f24 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000023_d55aa01c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000024_0d31e1a4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000024_0d31e1a4.szcp new file mode 100644 index 00000000..d0a461ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000024_0d31e1a4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000025_44bf17d5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000025_44bf17d5.szcp new file mode 100644 index 00000000..31004521 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000025_44bf17d5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000026_da777b12.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000026_da777b12.szcp new file mode 100644 index 00000000..88bab8e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000026_da777b12.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000027_d77b9229.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000027_d77b9229.szcp new file mode 100644 index 00000000..b1358f3e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000027_d77b9229.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000028_eaf1aa48.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000028_eaf1aa48.szcp new file mode 100644 index 00000000..2e71702b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000028_eaf1aa48.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000029_d2ecc0c3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000029_d2ecc0c3.szcp new file mode 100644 index 00000000..f5df5425 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000029_d2ecc0c3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000030_b8fb354d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000030_b8fb354d.szcp new file mode 100644 index 00000000..ad0b9218 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000030_b8fb354d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000031_d7794b29.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000031_d7794b29.szcp new file mode 100644 index 00000000..f90f0648 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000031_d7794b29.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000032_9febde76.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000032_9febde76.szcp new file mode 100644 index 00000000..4c4529dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000032_9febde76.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000033_2e58ec47.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000033_2e58ec47.szcp new file mode 100644 index 00000000..659d956b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000033_2e58ec47.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000034_a82da9cc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000034_a82da9cc.szcp new file mode 100644 index 00000000..32456510 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000034_a82da9cc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000035_6580608e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000035_6580608e.szcp new file mode 100644 index 00000000..f58f1200 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000035_6580608e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000036_d6b73803.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000036_d6b73803.szcp new file mode 100644 index 00000000..427c23ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000036_d6b73803.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000037_81a8b053.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000037_81a8b053.szcp new file mode 100644 index 00000000..f000f43d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000037_81a8b053.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000038_fbcc978c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000038_fbcc978c.szcp new file mode 100644 index 00000000..93a2c3c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000038_fbcc978c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000039_bb31e4f6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000039_bb31e4f6.szcp new file mode 100644 index 00000000..d5e76ebb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000039_bb31e4f6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000040_6d75d36f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000040_6d75d36f.szcp new file mode 100644 index 00000000..4cb10617 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000040_6d75d36f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000041_fec86be0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000041_fec86be0.szcp new file mode 100644 index 00000000..7c5f5c27 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000041_fec86be0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000042_f70fe517.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000042_f70fe517.szcp new file mode 100644 index 00000000..732ea8dd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000042_f70fe517.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000043_7d0e7b7a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000043_7d0e7b7a.szcp new file mode 100644 index 00000000..c20e0ded Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000043_7d0e7b7a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000044_75eefbba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000044_75eefbba.szcp new file mode 100644 index 00000000..dfd192b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000044_75eefbba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000045_4f654ea4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000045_4f654ea4.szcp new file mode 100644 index 00000000..59763006 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000045_4f654ea4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000046_0bfa7fe2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000046_0bfa7fe2.szcp new file mode 100644 index 00000000..4a8f374b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000046_0bfa7fe2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000047_a2f3783b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000047_a2f3783b.szcp new file mode 100644 index 00000000..bb5956d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000047_a2f3783b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000048_b2dd7644.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000048_b2dd7644.szcp new file mode 100644 index 00000000..3ff4f5da Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000048_b2dd7644.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000049_25b2cb22.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000049_25b2cb22.szcp new file mode 100644 index 00000000..38c5357d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000049_25b2cb22.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000050_7fa74125.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000050_7fa74125.szcp new file mode 100644 index 00000000..e148f32e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000050_7fa74125.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000051_a7fc89b5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000051_a7fc89b5.szcp new file mode 100644 index 00000000..1deb9390 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000051_a7fc89b5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000052_ccaa193b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000052_ccaa193b.szcp new file mode 100644 index 00000000..571d64e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000052_ccaa193b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000053_3fab0b50.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000053_3fab0b50.szcp new file mode 100644 index 00000000..946db9d2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000053_3fab0b50.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000054_1039c4e3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000054_1039c4e3.szcp new file mode 100644 index 00000000..99c72c5c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_034/checkpoints/checkpoint_00000000000000000054_1039c4e3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000001_baba7b11.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000001_baba7b11.szar new file mode 100644 index 00000000..49657a6f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000001_baba7b11.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000002_ead61ec7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000002_ead61ec7.szar new file mode 100644 index 00000000..4a9e7cdb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000002_ead61ec7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000003_a9e176df.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000003_a9e176df.szar new file mode 100644 index 00000000..234cbc75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000003_a9e176df.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000004_430e77e0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000004_430e77e0.szar new file mode 100644 index 00000000..85d683f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000004_430e77e0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000005_f3666a9b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000005_f3666a9b.szar new file mode 100644 index 00000000..c12f26f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000005_f3666a9b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000006_edf9d264.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000006_edf9d264.szar new file mode 100644 index 00000000..ac939dc7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000006_edf9d264.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000007_75000d8f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000007_75000d8f.szar new file mode 100644 index 00000000..b8c0354c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000007_75000d8f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000008_6b015ff7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000008_6b015ff7.szar new file mode 100644 index 00000000..e9ba2c46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000008_6b015ff7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000009_7e1e5c6d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000009_7e1e5c6d.szar new file mode 100644 index 00000000..fdb5ea4b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000009_7e1e5c6d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000010_02e079b8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000010_02e079b8.szar new file mode 100644 index 00000000..d250299b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000010_02e079b8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000011_f92581d9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000011_f92581d9.szar new file mode 100644 index 00000000..1c88ccfd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000011_f92581d9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000012_d6817a22.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000012_d6817a22.szar new file mode 100644 index 00000000..7c8f3372 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000012_d6817a22.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000013_87577371.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000013_87577371.szar new file mode 100644 index 00000000..dc4e6233 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000013_87577371.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000014_dbdbd74c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000014_dbdbd74c.szar new file mode 100644 index 00000000..f9c06a84 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000014_dbdbd74c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000015_e9b0ed23.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000015_e9b0ed23.szar new file mode 100644 index 00000000..00a042ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000015_e9b0ed23.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000016_6e883b2e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000016_6e883b2e.szar new file mode 100644 index 00000000..a537814e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000016_6e883b2e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000017_938a9b72.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000017_938a9b72.szar new file mode 100644 index 00000000..0676dce9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000017_938a9b72.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000018_8c2c3d10.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000018_8c2c3d10.szar new file mode 100644 index 00000000..89e0b95f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000018_8c2c3d10.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000019_4c893e5c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000019_4c893e5c.szar new file mode 100644 index 00000000..b60fb9fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000019_4c893e5c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000020_997e63cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000020_997e63cc.szar new file mode 100644 index 00000000..9df7580a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000020_997e63cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000021_4655c3ee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000021_4655c3ee.szar new file mode 100644 index 00000000..62cc9034 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000021_4655c3ee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000022_2bcac044.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000022_2bcac044.szar new file mode 100644 index 00000000..4e67e22b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000022_2bcac044.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000023_1ed37657.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000023_1ed37657.szar new file mode 100644 index 00000000..126caf46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000023_1ed37657.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000024_78d9f836.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000024_78d9f836.szar new file mode 100644 index 00000000..40ed5074 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000024_78d9f836.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000025_38518442.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000025_38518442.szar new file mode 100644 index 00000000..721d92bf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000025_38518442.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000026_14b836e9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000026_14b836e9.szar new file mode 100644 index 00000000..529b7629 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000026_14b836e9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000027_c77aa8ec.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000027_c77aa8ec.szar new file mode 100644 index 00000000..6f4561d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000027_c77aa8ec.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000028_0be7c15b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000028_0be7c15b.szar new file mode 100644 index 00000000..150d05ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000028_0be7c15b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000029_b2e969c1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000029_b2e969c1.szar new file mode 100644 index 00000000..301cb7f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000029_b2e969c1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000030_cff724dc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000030_cff724dc.szar new file mode 100644 index 00000000..ed5f8906 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000030_cff724dc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000031_8da74d9d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000031_8da74d9d.szar new file mode 100644 index 00000000..a68c37e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000031_8da74d9d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000032_ded82a52.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000032_ded82a52.szar new file mode 100644 index 00000000..d5985c2d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000032_ded82a52.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000033_0675faf1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000033_0675faf1.szar new file mode 100644 index 00000000..421ff15f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000033_0675faf1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000034_bd8d3afa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000034_bd8d3afa.szar new file mode 100644 index 00000000..c6e7d506 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000034_bd8d3afa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000035_438bf419.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000035_438bf419.szar new file mode 100644 index 00000000..2e0b968d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000035_438bf419.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000036_ef7901f6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000036_ef7901f6.szar new file mode 100644 index 00000000..319a00b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000036_ef7901f6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000037_21f932eb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000037_21f932eb.szar new file mode 100644 index 00000000..aff9e383 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000037_21f932eb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000038_77f7bb6d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000038_77f7bb6d.szar new file mode 100644 index 00000000..25b40bd5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000038_77f7bb6d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000039_87f1bf71.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000039_87f1bf71.szar new file mode 100644 index 00000000..e4f94d8b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000039_87f1bf71.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000040_4edb1004.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000040_4edb1004.szar new file mode 100644 index 00000000..73500ac3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000040_4edb1004.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000041_8c919708.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000041_8c919708.szar new file mode 100644 index 00000000..d15303d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000041_8c919708.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000042_bc24b37a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000042_bc24b37a.szar new file mode 100644 index 00000000..9bba8e84 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000042_bc24b37a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000043_a1110ed5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000043_a1110ed5.szar new file mode 100644 index 00000000..ee26cc9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000043_a1110ed5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000044_226d3bf9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000044_226d3bf9.szar new file mode 100644 index 00000000..cc030919 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000044_226d3bf9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000045_96e88fd1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000045_96e88fd1.szar new file mode 100644 index 00000000..1594ee6a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000045_96e88fd1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000046_2e405262.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000046_2e405262.szar new file mode 100644 index 00000000..2fea768a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000046_2e405262.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000047_1fa5abdc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000047_1fa5abdc.szar new file mode 100644 index 00000000..5c6c6571 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000047_1fa5abdc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000048_989b848c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000048_989b848c.szar new file mode 100644 index 00000000..d497e4c8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000048_989b848c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000049_920e0e77.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000049_920e0e77.szar new file mode 100644 index 00000000..9b9592f7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000049_920e0e77.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000050_9d725938.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000050_9d725938.szar new file mode 100644 index 00000000..6153022e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000050_9d725938.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000051_564d4a23.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000051_564d4a23.szar new file mode 100644 index 00000000..14fa0b32 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000051_564d4a23.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000052_b04dfbca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000052_b04dfbca.szar new file mode 100644 index 00000000..6abf716f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000052_b04dfbca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000053_194809d5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000053_194809d5.szar new file mode 100644 index 00000000..235fc1fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000053_194809d5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000054_dadd87cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000054_dadd87cc.szar new file mode 100644 index 00000000..e2fcd20a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000054_dadd87cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000055_47f46a42.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000055_47f46a42.szar new file mode 100644 index 00000000..16c7725f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000055_47f46a42.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000056_2f12df8e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000056_2f12df8e.szar new file mode 100644 index 00000000..2f656a0d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000056_2f12df8e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000057_b43175fc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000057_b43175fc.szar new file mode 100644 index 00000000..0b40ae59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000057_b43175fc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000058_1a0ff5da.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000058_1a0ff5da.szar new file mode 100644 index 00000000..a27ed1e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000058_1a0ff5da.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000059_0749834c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000059_0749834c.szar new file mode 100644 index 00000000..b36dd6b3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000059_0749834c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000060_75df2a7e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000060_75df2a7e.szar new file mode 100644 index 00000000..98b0cb3f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000060_75df2a7e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000061_c4ab7bce.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000061_c4ab7bce.szar new file mode 100644 index 00000000..c09fabdc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000061_c4ab7bce.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000062_9ff69c5b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000062_9ff69c5b.szar new file mode 100644 index 00000000..21cd691e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000062_9ff69c5b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000063_2888cf58.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000063_2888cf58.szar new file mode 100644 index 00000000..7b0d2081 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000063_2888cf58.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000064_8dab49c2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000064_8dab49c2.szar new file mode 100644 index 00000000..7212631a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000064_8dab49c2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000065_ba2a162f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000065_ba2a162f.szar new file mode 100644 index 00000000..da37905c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000065_ba2a162f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000066_377d28ee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000066_377d28ee.szar new file mode 100644 index 00000000..082db311 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000066_377d28ee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000067_2b58cfc6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000067_2b58cfc6.szar new file mode 100644 index 00000000..68fdcc33 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/archive/delta_00000000000000000067_2b58cfc6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000001_34cadffa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000001_34cadffa.szcp new file mode 100644 index 00000000..5a829572 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000001_34cadffa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000002_3c3aa0b5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000002_3c3aa0b5.szcp new file mode 100644 index 00000000..79e87cd5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000002_3c3aa0b5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000003_80e4f174.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000003_80e4f174.szcp new file mode 100644 index 00000000..4bb7c468 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000003_80e4f174.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000004_075211be.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000004_075211be.szcp new file mode 100644 index 00000000..d7f9b4a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000004_075211be.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000005_84c94400.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000005_84c94400.szcp new file mode 100644 index 00000000..38fecaaa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000005_84c94400.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000006_689b6c50.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000006_689b6c50.szcp new file mode 100644 index 00000000..470ed097 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000006_689b6c50.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000007_9a708d20.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000007_9a708d20.szcp new file mode 100644 index 00000000..435a1705 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000007_9a708d20.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000008_7e8025df.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000008_7e8025df.szcp new file mode 100644 index 00000000..52630936 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000008_7e8025df.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000009_4ca70c17.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000009_4ca70c17.szcp new file mode 100644 index 00000000..2ae2422b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000009_4ca70c17.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000010_6e8f3bf4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000010_6e8f3bf4.szcp new file mode 100644 index 00000000..d0e60865 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000010_6e8f3bf4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000011_23fb2ff7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000011_23fb2ff7.szcp new file mode 100644 index 00000000..acebca0c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000011_23fb2ff7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000012_b6de23d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000012_b6de23d1.szcp new file mode 100644 index 00000000..6bf74d7c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000012_b6de23d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000013_8f5ea58e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000013_8f5ea58e.szcp new file mode 100644 index 00000000..8bd921b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000013_8f5ea58e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000014_fd3b2908.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000014_fd3b2908.szcp new file mode 100644 index 00000000..c5c06072 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000014_fd3b2908.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000015_4bb0032a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000015_4bb0032a.szcp new file mode 100644 index 00000000..47ff3dc2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000015_4bb0032a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000016_e72f3db2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000016_e72f3db2.szcp new file mode 100644 index 00000000..1ee20834 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000016_e72f3db2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000017_68367a27.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000017_68367a27.szcp new file mode 100644 index 00000000..b295abd4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000017_68367a27.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000018_df1980fe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000018_df1980fe.szcp new file mode 100644 index 00000000..83101813 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000018_df1980fe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000019_cad09f30.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000019_cad09f30.szcp new file mode 100644 index 00000000..a1159a9d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000019_cad09f30.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000020_0aab5702.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000020_0aab5702.szcp new file mode 100644 index 00000000..9b48cb16 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000020_0aab5702.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000021_d88d7208.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000021_d88d7208.szcp new file mode 100644 index 00000000..8b4acb92 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000021_d88d7208.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000022_185129a0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000022_185129a0.szcp new file mode 100644 index 00000000..aecf947c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000022_185129a0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000023_8bbcf7c4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000023_8bbcf7c4.szcp new file mode 100644 index 00000000..7da67334 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000023_8bbcf7c4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000024_29fbd9e3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000024_29fbd9e3.szcp new file mode 100644 index 00000000..306d1332 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000024_29fbd9e3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000025_17c5ccc8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000025_17c5ccc8.szcp new file mode 100644 index 00000000..8a533cd3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000025_17c5ccc8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000026_dba3ca8a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000026_dba3ca8a.szcp new file mode 100644 index 00000000..ad890574 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000026_dba3ca8a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000027_c631b306.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000027_c631b306.szcp new file mode 100644 index 00000000..25de5b94 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000027_c631b306.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000028_9fc4be78.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000028_9fc4be78.szcp new file mode 100644 index 00000000..8223930b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000028_9fc4be78.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000029_e32d069d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000029_e32d069d.szcp new file mode 100644 index 00000000..80e46d53 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000029_e32d069d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000030_c0f42cae.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000030_c0f42cae.szcp new file mode 100644 index 00000000..451ccf83 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000030_c0f42cae.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000031_361df39c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000031_361df39c.szcp new file mode 100644 index 00000000..29010c3b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000031_361df39c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000032_921ce1e5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000032_921ce1e5.szcp new file mode 100644 index 00000000..d19f3372 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000032_921ce1e5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000033_8d361485.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000033_8d361485.szcp new file mode 100644 index 00000000..e231cb99 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000033_8d361485.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000034_01990aa3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000034_01990aa3.szcp new file mode 100644 index 00000000..035bc2d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000034_01990aa3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000035_f06c2140.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000035_f06c2140.szcp new file mode 100644 index 00000000..58b6878a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000035_f06c2140.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000036_41363875.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000036_41363875.szcp new file mode 100644 index 00000000..5e917557 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000036_41363875.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000037_91ab6e68.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000037_91ab6e68.szcp new file mode 100644 index 00000000..72efe24d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000037_91ab6e68.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000038_30f006f8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000038_30f006f8.szcp new file mode 100644 index 00000000..34a2c3e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000038_30f006f8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000039_88789e4f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000039_88789e4f.szcp new file mode 100644 index 00000000..3e01c541 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000039_88789e4f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000040_d478389e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000040_d478389e.szcp new file mode 100644 index 00000000..30b06061 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000040_d478389e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000041_db05ead5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000041_db05ead5.szcp new file mode 100644 index 00000000..db75f730 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000041_db05ead5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000042_43cc4903.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000042_43cc4903.szcp new file mode 100644 index 00000000..814bbf73 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000042_43cc4903.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000043_f54e50ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000043_f54e50ce.szcp new file mode 100644 index 00000000..15e17dd0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000043_f54e50ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000044_e257a834.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000044_e257a834.szcp new file mode 100644 index 00000000..02662b59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000044_e257a834.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000045_62d9b2da.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000045_62d9b2da.szcp new file mode 100644 index 00000000..30ec6fef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000045_62d9b2da.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000046_b2d61460.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000046_b2d61460.szcp new file mode 100644 index 00000000..4cb42301 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000046_b2d61460.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000047_737aa94f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000047_737aa94f.szcp new file mode 100644 index 00000000..a2c03aa0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000047_737aa94f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000048_38c441cc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000048_38c441cc.szcp new file mode 100644 index 00000000..6927d805 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000048_38c441cc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000049_75b932e8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000049_75b932e8.szcp new file mode 100644 index 00000000..84974634 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000049_75b932e8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000050_0a748fe8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000050_0a748fe8.szcp new file mode 100644 index 00000000..8ae3ee4d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000050_0a748fe8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000051_5fd3a1d8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000051_5fd3a1d8.szcp new file mode 100644 index 00000000..27a00922 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000051_5fd3a1d8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000052_2c65ef17.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000052_2c65ef17.szcp new file mode 100644 index 00000000..036ad312 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000052_2c65ef17.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000053_ca7f30b7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000053_ca7f30b7.szcp new file mode 100644 index 00000000..8663e8ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000053_ca7f30b7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000054_25c08a38.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000054_25c08a38.szcp new file mode 100644 index 00000000..ad12d5ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000054_25c08a38.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000055_a1d55d90.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000055_a1d55d90.szcp new file mode 100644 index 00000000..dbbbf3c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000055_a1d55d90.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000056_1844b11e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000056_1844b11e.szcp new file mode 100644 index 00000000..091dc659 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000056_1844b11e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000057_3d4aa9d6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000057_3d4aa9d6.szcp new file mode 100644 index 00000000..2940a93b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000057_3d4aa9d6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000058_61170f64.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000058_61170f64.szcp new file mode 100644 index 00000000..cca2cfb8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000058_61170f64.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000059_5a8cfb0b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000059_5a8cfb0b.szcp new file mode 100644 index 00000000..c21ef794 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000059_5a8cfb0b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000060_1721a106.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000060_1721a106.szcp new file mode 100644 index 00000000..224c10c9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000060_1721a106.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000061_8305d767.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000061_8305d767.szcp new file mode 100644 index 00000000..1b1ae70a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000061_8305d767.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000062_2a02a19f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000062_2a02a19f.szcp new file mode 100644 index 00000000..32f830f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000062_2a02a19f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000063_df8dca87.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000063_df8dca87.szcp new file mode 100644 index 00000000..ca682c56 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000063_df8dca87.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000064_6d62e5ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000064_6d62e5ce.szcp new file mode 100644 index 00000000..99b58428 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000064_6d62e5ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000065_fcbe8c40.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000065_fcbe8c40.szcp new file mode 100644 index 00000000..acde3e59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000065_fcbe8c40.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000066_d27f2115.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000066_d27f2115.szcp new file mode 100644 index 00000000..cd39ef10 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000066_d27f2115.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000067_942ed114.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000067_942ed114.szcp new file mode 100644 index 00000000..1b41f8a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_035/checkpoints/checkpoint_00000000000000000067_942ed114.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000001_09088a1d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000001_09088a1d.szar new file mode 100644 index 00000000..4f25e95e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000001_09088a1d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000002_fb7c22fd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000002_fb7c22fd.szar new file mode 100644 index 00000000..cc7dcbcd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000002_fb7c22fd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000003_75736799.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000003_75736799.szar new file mode 100644 index 00000000..e7e84f9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000003_75736799.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000004_0349f097.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000004_0349f097.szar new file mode 100644 index 00000000..7b35fb12 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000004_0349f097.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000005_e4f7a221.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000005_e4f7a221.szar new file mode 100644 index 00000000..5437f3d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000005_e4f7a221.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000006_0154618b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000006_0154618b.szar new file mode 100644 index 00000000..998b6f97 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000006_0154618b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000007_24353f13.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000007_24353f13.szar new file mode 100644 index 00000000..eeb383af Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000007_24353f13.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000008_29276a81.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000008_29276a81.szar new file mode 100644 index 00000000..f9478c6e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000008_29276a81.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000009_5f73335b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000009_5f73335b.szar new file mode 100644 index 00000000..06f83471 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000009_5f73335b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000010_4ac8c248.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000010_4ac8c248.szar new file mode 100644 index 00000000..5e9be7a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000010_4ac8c248.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000011_a206a7ef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000011_a206a7ef.szar new file mode 100644 index 00000000..f858b6f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000011_a206a7ef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000012_741c8140.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000012_741c8140.szar new file mode 100644 index 00000000..7387c79a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000012_741c8140.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000013_643048ef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000013_643048ef.szar new file mode 100644 index 00000000..5057a797 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000013_643048ef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000014_802daa45.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000014_802daa45.szar new file mode 100644 index 00000000..1d0298cb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000014_802daa45.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000015_768c044f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000015_768c044f.szar new file mode 100644 index 00000000..3a5ad5e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000015_768c044f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000016_6a4077be.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000016_6a4077be.szar new file mode 100644 index 00000000..06eceb53 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000016_6a4077be.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000017_e300c9cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000017_e300c9cc.szar new file mode 100644 index 00000000..9021ff4c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000017_e300c9cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000018_54bedbd9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000018_54bedbd9.szar new file mode 100644 index 00000000..2b8eea1d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000018_54bedbd9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000019_d46bf984.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000019_d46bf984.szar new file mode 100644 index 00000000..d6a19cf5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000019_d46bf984.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000020_f9463550.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000020_f9463550.szar new file mode 100644 index 00000000..9794dee0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000020_f9463550.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000021_1c3f81ed.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000021_1c3f81ed.szar new file mode 100644 index 00000000..e05dc8d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000021_1c3f81ed.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000022_3cef23ba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000022_3cef23ba.szar new file mode 100644 index 00000000..7d28e951 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000022_3cef23ba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000023_8910cef9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000023_8910cef9.szar new file mode 100644 index 00000000..951fc2f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000023_8910cef9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000024_cecb87d0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000024_cecb87d0.szar new file mode 100644 index 00000000..c831e990 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000024_cecb87d0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000025_3c71e3bd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000025_3c71e3bd.szar new file mode 100644 index 00000000..7d162c52 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000025_3c71e3bd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000026_98f4b5a3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000026_98f4b5a3.szar new file mode 100644 index 00000000..bcfac64e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000026_98f4b5a3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000027_225982fb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000027_225982fb.szar new file mode 100644 index 00000000..6566ee4c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000027_225982fb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000028_c5eaa62f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000028_c5eaa62f.szar new file mode 100644 index 00000000..b3ecbd80 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000028_c5eaa62f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000029_cf528f4a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000029_cf528f4a.szar new file mode 100644 index 00000000..354d6e8c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000029_cf528f4a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000030_aad2396d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000030_aad2396d.szar new file mode 100644 index 00000000..f0d207b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000030_aad2396d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000031_0b23fd04.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000031_0b23fd04.szar new file mode 100644 index 00000000..9bc87e57 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000031_0b23fd04.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000032_7d0f09f9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000032_7d0f09f9.szar new file mode 100644 index 00000000..b9eb0745 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000032_7d0f09f9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000033_2584673a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000033_2584673a.szar new file mode 100644 index 00000000..62a2b4c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000033_2584673a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000034_8d9b56ee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000034_8d9b56ee.szar new file mode 100644 index 00000000..88aea448 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000034_8d9b56ee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000035_d26203ca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000035_d26203ca.szar new file mode 100644 index 00000000..29a07830 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000035_d26203ca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000036_8b0029ce.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000036_8b0029ce.szar new file mode 100644 index 00000000..632fafb9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000036_8b0029ce.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000037_02a65071.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000037_02a65071.szar new file mode 100644 index 00000000..a99d2178 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000037_02a65071.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000038_571326d0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000038_571326d0.szar new file mode 100644 index 00000000..5124f7e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000038_571326d0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000039_344d4e86.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000039_344d4e86.szar new file mode 100644 index 00000000..c68e02a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000039_344d4e86.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000040_c35dc336.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000040_c35dc336.szar new file mode 100644 index 00000000..810685cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000040_c35dc336.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000041_f3409bba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000041_f3409bba.szar new file mode 100644 index 00000000..7b5e323d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000041_f3409bba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000042_19321c8b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000042_19321c8b.szar new file mode 100644 index 00000000..b15bf230 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000042_19321c8b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000043_f889f7bd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000043_f889f7bd.szar new file mode 100644 index 00000000..3f5e6439 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000043_f889f7bd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000044_dea5fb5b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000044_dea5fb5b.szar new file mode 100644 index 00000000..1d2a1314 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000044_dea5fb5b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000045_6cc71214.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000045_6cc71214.szar new file mode 100644 index 00000000..7ba8bb1a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000045_6cc71214.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000046_896d2c58.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000046_896d2c58.szar new file mode 100644 index 00000000..b415dd5a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000046_896d2c58.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000047_0cc64c5c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000047_0cc64c5c.szar new file mode 100644 index 00000000..568cf520 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000047_0cc64c5c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000048_db8460d8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000048_db8460d8.szar new file mode 100644 index 00000000..84cef8d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000048_db8460d8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000049_d1f08f21.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000049_d1f08f21.szar new file mode 100644 index 00000000..2f5cab50 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000049_d1f08f21.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000050_04433c56.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000050_04433c56.szar new file mode 100644 index 00000000..dbfaeb88 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000050_04433c56.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000051_108f22f1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000051_108f22f1.szar new file mode 100644 index 00000000..123c134e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000051_108f22f1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000052_e3cf0bac.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000052_e3cf0bac.szar new file mode 100644 index 00000000..4f70cc8e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000052_e3cf0bac.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000053_479085af.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000053_479085af.szar new file mode 100644 index 00000000..ec5ceedb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000053_479085af.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000054_cb3ead62.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000054_cb3ead62.szar new file mode 100644 index 00000000..144d66ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000054_cb3ead62.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000055_35f9efe3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000055_35f9efe3.szar new file mode 100644 index 00000000..b0a35ee9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000055_35f9efe3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000056_319f5291.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000056_319f5291.szar new file mode 100644 index 00000000..41b8eba1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000056_319f5291.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000057_ef6c46fe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000057_ef6c46fe.szar new file mode 100644 index 00000000..a16df603 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000057_ef6c46fe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000058_eb4e5fc3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000058_eb4e5fc3.szar new file mode 100644 index 00000000..eec1b131 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000058_eb4e5fc3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000059_356b5539.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000059_356b5539.szar new file mode 100644 index 00000000..63433cd0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/archive/delta_00000000000000000059_356b5539.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000001_c1d5b874.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000001_c1d5b874.szcp new file mode 100644 index 00000000..efd6cd7c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000001_c1d5b874.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000002_c5cdac3a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000002_c5cdac3a.szcp new file mode 100644 index 00000000..cd266794 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000002_c5cdac3a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000003_31a737e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000003_31a737e9.szcp new file mode 100644 index 00000000..60201d7a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000003_31a737e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000004_b4d8a7fa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000004_b4d8a7fa.szcp new file mode 100644 index 00000000..36668685 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000004_b4d8a7fa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000005_cb5c68c6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000005_cb5c68c6.szcp new file mode 100644 index 00000000..af5da34e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000005_cb5c68c6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000006_fea51eb5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000006_fea51eb5.szcp new file mode 100644 index 00000000..3cf97e76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000006_fea51eb5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000007_e86d9ab7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000007_e86d9ab7.szcp new file mode 100644 index 00000000..2ac3d682 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000007_e86d9ab7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000008_a5f03208.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000008_a5f03208.szcp new file mode 100644 index 00000000..91caac62 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000008_a5f03208.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000009_a4a61dd4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000009_a4a61dd4.szcp new file mode 100644 index 00000000..80f0c126 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000009_a4a61dd4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000010_7c67b9bf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000010_7c67b9bf.szcp new file mode 100644 index 00000000..c0e7494d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000010_7c67b9bf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000011_564cc344.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000011_564cc344.szcp new file mode 100644 index 00000000..d3c2b18a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000011_564cc344.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000012_7fb25d6e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000012_7fb25d6e.szcp new file mode 100644 index 00000000..f6196dc7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000012_7fb25d6e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000013_6042b1ca.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000013_6042b1ca.szcp new file mode 100644 index 00000000..4dead7cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000013_6042b1ca.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000014_6da7bd9c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000014_6da7bd9c.szcp new file mode 100644 index 00000000..ad557304 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000014_6da7bd9c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000015_18d12329.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000015_18d12329.szcp new file mode 100644 index 00000000..8da801d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000015_18d12329.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000016_956377d8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000016_956377d8.szcp new file mode 100644 index 00000000..279980e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000016_956377d8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000017_fb814333.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000017_fb814333.szcp new file mode 100644 index 00000000..9e5d3772 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000017_fb814333.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000018_8603938d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000018_8603938d.szcp new file mode 100644 index 00000000..13d10cd9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000018_8603938d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000019_8d312d36.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000019_8d312d36.szcp new file mode 100644 index 00000000..70f167d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000019_8d312d36.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000020_e7c00994.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000020_e7c00994.szcp new file mode 100644 index 00000000..7dae5448 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000020_e7c00994.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000021_16aaa996.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000021_16aaa996.szcp new file mode 100644 index 00000000..97421934 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000021_16aaa996.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000022_9db0d6e6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000022_9db0d6e6.szcp new file mode 100644 index 00000000..ba183782 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000022_9db0d6e6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000023_e4ac1e52.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000023_e4ac1e52.szcp new file mode 100644 index 00000000..c251c304 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000023_e4ac1e52.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000024_e6530306.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000024_e6530306.szcp new file mode 100644 index 00000000..f99dddea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000024_e6530306.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000025_33e3e6bd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000025_33e3e6bd.szcp new file mode 100644 index 00000000..6c0de841 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000025_33e3e6bd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000026_d1f66dcd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000026_d1f66dcd.szcp new file mode 100644 index 00000000..56376047 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000026_d1f66dcd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000027_7637756f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000027_7637756f.szcp new file mode 100644 index 00000000..6529d113 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000027_7637756f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000028_f997cc22.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000028_f997cc22.szcp new file mode 100644 index 00000000..18012e9c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000028_f997cc22.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000029_4fadd9c2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000029_4fadd9c2.szcp new file mode 100644 index 00000000..de8efe91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000029_4fadd9c2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000030_ecd7293a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000030_ecd7293a.szcp new file mode 100644 index 00000000..77aeb59c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000030_ecd7293a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000031_2f0c29cb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000031_2f0c29cb.szcp new file mode 100644 index 00000000..e2e44af9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000031_2f0c29cb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000032_9fc215fb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000032_9fc215fb.szcp new file mode 100644 index 00000000..b63bcb34 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000032_9fc215fb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000033_2d2a2299.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000033_2d2a2299.szcp new file mode 100644 index 00000000..b5e98ef2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000033_2d2a2299.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000034_c0e2be8e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000034_c0e2be8e.szcp new file mode 100644 index 00000000..cd83f0cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000034_c0e2be8e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000035_27e06247.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000035_27e06247.szcp new file mode 100644 index 00000000..f67a04a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000035_27e06247.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000036_802dbccb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000036_802dbccb.szcp new file mode 100644 index 00000000..25aad9c8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000036_802dbccb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000037_637146d0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000037_637146d0.szcp new file mode 100644 index 00000000..32283126 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000037_637146d0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000038_70bf4ee4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000038_70bf4ee4.szcp new file mode 100644 index 00000000..cbc81b01 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000038_70bf4ee4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000039_e0fb5af2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000039_e0fb5af2.szcp new file mode 100644 index 00000000..7236d27c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000039_e0fb5af2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000040_96741c35.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000040_96741c35.szcp new file mode 100644 index 00000000..97f49bc7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000040_96741c35.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000041_2830eb3c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000041_2830eb3c.szcp new file mode 100644 index 00000000..c1d8c60e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000041_2830eb3c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000042_0c32a7d9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000042_0c32a7d9.szcp new file mode 100644 index 00000000..4606f4f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000042_0c32a7d9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000043_25d5a50b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000043_25d5a50b.szcp new file mode 100644 index 00000000..401d21b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000043_25d5a50b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000044_41b93998.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000044_41b93998.szcp new file mode 100644 index 00000000..0cb45dd5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000044_41b93998.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000045_6ca274a5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000045_6ca274a5.szcp new file mode 100644 index 00000000..17b5982e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000045_6ca274a5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000046_243772b1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000046_243772b1.szcp new file mode 100644 index 00000000..442e96e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000046_243772b1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000047_77cdf399.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000047_77cdf399.szcp new file mode 100644 index 00000000..94e86929 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000047_77cdf399.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000048_2fc8b7d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000048_2fc8b7d7.szcp new file mode 100644 index 00000000..6261be6b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000048_2fc8b7d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000049_d97d7441.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000049_d97d7441.szcp new file mode 100644 index 00000000..65fef30a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000049_d97d7441.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000050_250819a5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000050_250819a5.szcp new file mode 100644 index 00000000..1a537d2f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000050_250819a5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000051_5f092b6c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000051_5f092b6c.szcp new file mode 100644 index 00000000..7970c03e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000051_5f092b6c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000052_eeddfe4d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000052_eeddfe4d.szcp new file mode 100644 index 00000000..8042176f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000052_eeddfe4d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000053_33359287.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000053_33359287.szcp new file mode 100644 index 00000000..4d0e895e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000053_33359287.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000054_5855ee6a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000054_5855ee6a.szcp new file mode 100644 index 00000000..973bbe1b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000054_5855ee6a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000055_3333a94b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000055_3333a94b.szcp new file mode 100644 index 00000000..4fae298b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000055_3333a94b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000056_853d09e7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000056_853d09e7.szcp new file mode 100644 index 00000000..5898d661 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000056_853d09e7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000057_c3eac7df.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000057_c3eac7df.szcp new file mode 100644 index 00000000..70499429 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000057_c3eac7df.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000058_c2f3fa6b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000058_c2f3fa6b.szcp new file mode 100644 index 00000000..b8343d60 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000058_c2f3fa6b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000059_7a194663.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000059_7a194663.szcp new file mode 100644 index 00000000..ce9b2dd8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_036/checkpoints/checkpoint_00000000000000000059_7a194663.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000001_8e313614.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000001_8e313614.szar new file mode 100644 index 00000000..5f9b8261 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000001_8e313614.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000002_b99535bf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000002_b99535bf.szar new file mode 100644 index 00000000..796b7c09 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000002_b99535bf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000003_3a3c8bcc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000003_3a3c8bcc.szar new file mode 100644 index 00000000..78359d2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000003_3a3c8bcc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000004_49d130f2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000004_49d130f2.szar new file mode 100644 index 00000000..032c83af Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000004_49d130f2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000005_59140c7e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000005_59140c7e.szar new file mode 100644 index 00000000..b0b569e9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000005_59140c7e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000006_b3284f15.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000006_b3284f15.szar new file mode 100644 index 00000000..62cdd0dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000006_b3284f15.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000007_6561c263.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000007_6561c263.szar new file mode 100644 index 00000000..3b01b8f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000007_6561c263.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000008_ffafc07f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000008_ffafc07f.szar new file mode 100644 index 00000000..34fbf779 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000008_ffafc07f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000009_964761f9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000009_964761f9.szar new file mode 100644 index 00000000..81486e67 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000009_964761f9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000010_8d8acda4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000010_8d8acda4.szar new file mode 100644 index 00000000..c46245cb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000010_8d8acda4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000011_9f8a6e0f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000011_9f8a6e0f.szar new file mode 100644 index 00000000..d6c71711 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000011_9f8a6e0f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000012_dfa6ca4a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000012_dfa6ca4a.szar new file mode 100644 index 00000000..7bda625b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000012_dfa6ca4a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000013_44f2ca91.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000013_44f2ca91.szar new file mode 100644 index 00000000..a19d6a1e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000013_44f2ca91.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000014_0bf869c5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000014_0bf869c5.szar new file mode 100644 index 00000000..68d2cbbc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000014_0bf869c5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000015_a05286c3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000015_a05286c3.szar new file mode 100644 index 00000000..84fcf578 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000015_a05286c3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000016_79dbf1b4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000016_79dbf1b4.szar new file mode 100644 index 00000000..d8738b74 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000016_79dbf1b4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000017_810e5356.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000017_810e5356.szar new file mode 100644 index 00000000..8b0072d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000017_810e5356.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000018_5abb5d70.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000018_5abb5d70.szar new file mode 100644 index 00000000..f9ae27fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000018_5abb5d70.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000019_b6628635.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000019_b6628635.szar new file mode 100644 index 00000000..bfd5aba7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000019_b6628635.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000020_fab6f8f8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000020_fab6f8f8.szar new file mode 100644 index 00000000..73e6aaa7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000020_fab6f8f8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000021_02d7bfd5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000021_02d7bfd5.szar new file mode 100644 index 00000000..85931e4a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000021_02d7bfd5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000022_558b8249.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000022_558b8249.szar new file mode 100644 index 00000000..874d924f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000022_558b8249.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000023_2584612c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000023_2584612c.szar new file mode 100644 index 00000000..605b2170 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000023_2584612c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000024_29e59017.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000024_29e59017.szar new file mode 100644 index 00000000..1a1bfe5c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000024_29e59017.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000025_6d0e5082.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000025_6d0e5082.szar new file mode 100644 index 00000000..0c3010a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000025_6d0e5082.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000026_932c6a5b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000026_932c6a5b.szar new file mode 100644 index 00000000..4c3adc1f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000026_932c6a5b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000027_ad341e09.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000027_ad341e09.szar new file mode 100644 index 00000000..ede91fed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000027_ad341e09.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000028_c6843f0c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000028_c6843f0c.szar new file mode 100644 index 00000000..14c53694 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000028_c6843f0c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000029_224cf249.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000029_224cf249.szar new file mode 100644 index 00000000..e6951652 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000029_224cf249.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000030_90d85097.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000030_90d85097.szar new file mode 100644 index 00000000..a626b6ac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000030_90d85097.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000031_f40ce725.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000031_f40ce725.szar new file mode 100644 index 00000000..eaef7017 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000031_f40ce725.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000032_faef367e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000032_faef367e.szar new file mode 100644 index 00000000..f43e2b68 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000032_faef367e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000033_ad92ff8e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000033_ad92ff8e.szar new file mode 100644 index 00000000..8d9d94c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000033_ad92ff8e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000034_729250e1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000034_729250e1.szar new file mode 100644 index 00000000..6bd99d64 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000034_729250e1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000035_367b40f9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000035_367b40f9.szar new file mode 100644 index 00000000..f2d8c880 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000035_367b40f9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000036_635469f3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000036_635469f3.szar new file mode 100644 index 00000000..5f4b5f07 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000036_635469f3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000037_d5b35d5f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000037_d5b35d5f.szar new file mode 100644 index 00000000..a39380b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000037_d5b35d5f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000038_a97c0e9c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000038_a97c0e9c.szar new file mode 100644 index 00000000..ce117ef6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000038_a97c0e9c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000039_a4f113ff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000039_a4f113ff.szar new file mode 100644 index 00000000..4088edc0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000039_a4f113ff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000040_7c364237.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000040_7c364237.szar new file mode 100644 index 00000000..d3ffb0b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000040_7c364237.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000041_f663af94.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000041_f663af94.szar new file mode 100644 index 00000000..8f5e853d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000041_f663af94.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000042_ec37879b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000042_ec37879b.szar new file mode 100644 index 00000000..963c8ad7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000042_ec37879b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000043_6a77fe63.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000043_6a77fe63.szar new file mode 100644 index 00000000..8851684e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000043_6a77fe63.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000044_3600a3a1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000044_3600a3a1.szar new file mode 100644 index 00000000..8efbf040 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000044_3600a3a1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000045_b72971fd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000045_b72971fd.szar new file mode 100644 index 00000000..f28eeb0c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000045_b72971fd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000046_2c79d647.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000046_2c79d647.szar new file mode 100644 index 00000000..a3ff6752 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000046_2c79d647.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000047_fdf0d8b0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000047_fdf0d8b0.szar new file mode 100644 index 00000000..851ae5b6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000047_fdf0d8b0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000048_9f301eeb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000048_9f301eeb.szar new file mode 100644 index 00000000..196d5555 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000048_9f301eeb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000049_6d172838.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000049_6d172838.szar new file mode 100644 index 00000000..9c406646 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000049_6d172838.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000050_b47cf517.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000050_b47cf517.szar new file mode 100644 index 00000000..c09ea70d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000050_b47cf517.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000051_babcc17d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000051_babcc17d.szar new file mode 100644 index 00000000..8800895f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000051_babcc17d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000052_cc457bcc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000052_cc457bcc.szar new file mode 100644 index 00000000..cf463dbb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000052_cc457bcc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000053_92e86afd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000053_92e86afd.szar new file mode 100644 index 00000000..4ea75db6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000053_92e86afd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000054_c9b63495.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000054_c9b63495.szar new file mode 100644 index 00000000..00c788a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000054_c9b63495.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000055_6d18c718.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000055_6d18c718.szar new file mode 100644 index 00000000..a3b8c72d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000055_6d18c718.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000056_48a4357b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000056_48a4357b.szar new file mode 100644 index 00000000..51fdbd57 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000056_48a4357b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000057_120704d8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000057_120704d8.szar new file mode 100644 index 00000000..f88eaf4c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000057_120704d8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000058_8382d13b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000058_8382d13b.szar new file mode 100644 index 00000000..221a56c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000058_8382d13b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000059_02595844.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000059_02595844.szar new file mode 100644 index 00000000..0296d61f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000059_02595844.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000060_6ead6912.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000060_6ead6912.szar new file mode 100644 index 00000000..914342f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000060_6ead6912.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000061_9775c78c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000061_9775c78c.szar new file mode 100644 index 00000000..47a715a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000061_9775c78c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000062_6c71bbaa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000062_6c71bbaa.szar new file mode 100644 index 00000000..4f69e85c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000062_6c71bbaa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000063_4d4bccd4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000063_4d4bccd4.szar new file mode 100644 index 00000000..67d53a20 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000063_4d4bccd4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000064_34c9c41c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000064_34c9c41c.szar new file mode 100644 index 00000000..00e99da9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000064_34c9c41c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000065_31bfb4b8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000065_31bfb4b8.szar new file mode 100644 index 00000000..d544074a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/archive/delta_00000000000000000065_31bfb4b8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000001_f3e78f11.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000001_f3e78f11.szcp new file mode 100644 index 00000000..9dddec6c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000001_f3e78f11.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000002_871658d8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000002_871658d8.szcp new file mode 100644 index 00000000..0c611c22 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000002_871658d8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000003_051e1980.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000003_051e1980.szcp new file mode 100644 index 00000000..5e8d7164 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000003_051e1980.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000004_85b3b046.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000004_85b3b046.szcp new file mode 100644 index 00000000..2b43021a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000004_85b3b046.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000005_56abc675.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000005_56abc675.szcp new file mode 100644 index 00000000..7c0ee3ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000005_56abc675.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000006_6a86b89f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000006_6a86b89f.szcp new file mode 100644 index 00000000..41885846 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000006_6a86b89f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000007_59984190.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000007_59984190.szcp new file mode 100644 index 00000000..d3d3a000 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000007_59984190.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000008_db58c4a3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000008_db58c4a3.szcp new file mode 100644 index 00000000..83c94d9b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000008_db58c4a3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000009_beed627a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000009_beed627a.szcp new file mode 100644 index 00000000..75af7faf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000009_beed627a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000010_2a7af375.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000010_2a7af375.szcp new file mode 100644 index 00000000..00321485 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000010_2a7af375.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000011_c250d2ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000011_c250d2ce.szcp new file mode 100644 index 00000000..f02a5d8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000011_c250d2ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000012_9043123f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000012_9043123f.szcp new file mode 100644 index 00000000..94275a15 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000012_9043123f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000013_9592c7ee.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000013_9592c7ee.szcp new file mode 100644 index 00000000..7dc619b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000013_9592c7ee.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000014_2fd5f388.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000014_2fd5f388.szcp new file mode 100644 index 00000000..34eba151 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000014_2fd5f388.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000015_59f5f753.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000015_59f5f753.szcp new file mode 100644 index 00000000..31e119d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000015_59f5f753.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000016_8cad3f0c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000016_8cad3f0c.szcp new file mode 100644 index 00000000..51817a13 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000016_8cad3f0c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000017_748e9929.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000017_748e9929.szcp new file mode 100644 index 00000000..2b9e49a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000017_748e9929.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000018_290bdf77.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000018_290bdf77.szcp new file mode 100644 index 00000000..91fb4fce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000018_290bdf77.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000019_21b00fdc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000019_21b00fdc.szcp new file mode 100644 index 00000000..871e4164 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000019_21b00fdc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000020_2bb0a8f1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000020_2bb0a8f1.szcp new file mode 100644 index 00000000..e2365a48 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000020_2bb0a8f1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000021_f1cc04c0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000021_f1cc04c0.szcp new file mode 100644 index 00000000..48b30cb5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000021_f1cc04c0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000022_d1753a20.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000022_d1753a20.szcp new file mode 100644 index 00000000..f0c6b0c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000022_d1753a20.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000023_ae4e1945.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000023_ae4e1945.szcp new file mode 100644 index 00000000..114785d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000023_ae4e1945.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000024_8996f573.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000024_8996f573.szcp new file mode 100644 index 00000000..2a1773ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000024_8996f573.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000025_d6ee8222.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000025_d6ee8222.szcp new file mode 100644 index 00000000..3ed39e18 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000025_d6ee8222.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000026_df0bdb83.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000026_df0bdb83.szcp new file mode 100644 index 00000000..4bc41a33 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000026_df0bdb83.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000027_69e36818.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000027_69e36818.szcp new file mode 100644 index 00000000..b65ffe46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000027_69e36818.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000028_38d0c06d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000028_38d0c06d.szcp new file mode 100644 index 00000000..8f5fcd20 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000028_38d0c06d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000029_c0997ca2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000029_c0997ca2.szcp new file mode 100644 index 00000000..888a8b43 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000029_c0997ca2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000030_7ec5205c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000030_7ec5205c.szcp new file mode 100644 index 00000000..17e6df32 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000030_7ec5205c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000031_99ca0145.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000031_99ca0145.szcp new file mode 100644 index 00000000..45f610cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000031_99ca0145.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000032_c42f6f23.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000032_c42f6f23.szcp new file mode 100644 index 00000000..be798ef7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000032_c42f6f23.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000033_26d49b44.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000033_26d49b44.szcp new file mode 100644 index 00000000..2ce7e155 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000033_26d49b44.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000034_0688f021.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000034_0688f021.szcp new file mode 100644 index 00000000..5b1c87dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000034_0688f021.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000035_025c0d7b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000035_025c0d7b.szcp new file mode 100644 index 00000000..afc82835 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000035_025c0d7b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000036_b6608738.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000036_b6608738.szcp new file mode 100644 index 00000000..cef8c0f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000036_b6608738.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000037_1fb0e88c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000037_1fb0e88c.szcp new file mode 100644 index 00000000..8373f304 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000037_1fb0e88c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000038_e778db69.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000038_e778db69.szcp new file mode 100644 index 00000000..c525f106 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000038_e778db69.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000039_dc415c61.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000039_dc415c61.szcp new file mode 100644 index 00000000..7c72c0bd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000039_dc415c61.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000040_4d8a44dc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000040_4d8a44dc.szcp new file mode 100644 index 00000000..49fb505d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000040_4d8a44dc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000041_c0d4acdb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000041_c0d4acdb.szcp new file mode 100644 index 00000000..2b7cc892 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000041_c0d4acdb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000042_c840a4c7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000042_c840a4c7.szcp new file mode 100644 index 00000000..99e496e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000042_c840a4c7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000043_ac957fe8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000043_ac957fe8.szcp new file mode 100644 index 00000000..295ce195 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000043_ac957fe8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000044_c12515a6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000044_c12515a6.szcp new file mode 100644 index 00000000..7238dbe0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000044_c12515a6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000045_aa289eb5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000045_aa289eb5.szcp new file mode 100644 index 00000000..b4c4b690 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000045_aa289eb5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000046_747d6922.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000046_747d6922.szcp new file mode 100644 index 00000000..d6c94be1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000046_747d6922.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000047_19f40fe3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000047_19f40fe3.szcp new file mode 100644 index 00000000..5ce176fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000047_19f40fe3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000048_62bfaf14.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000048_62bfaf14.szcp new file mode 100644 index 00000000..45ac7273 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000048_62bfaf14.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000049_c50be84f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000049_c50be84f.szcp new file mode 100644 index 00000000..87bb6b23 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000049_c50be84f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000050_1633b662.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000050_1633b662.szcp new file mode 100644 index 00000000..9c61302f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000050_1633b662.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000051_bb12a114.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000051_bb12a114.szcp new file mode 100644 index 00000000..a8922222 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000051_bb12a114.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000052_3735029c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000052_3735029c.szcp new file mode 100644 index 00000000..cd02793f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000052_3735029c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000053_c1586c6f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000053_c1586c6f.szcp new file mode 100644 index 00000000..8262eb92 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000053_c1586c6f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000054_75c03992.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000054_75c03992.szcp new file mode 100644 index 00000000..5d592025 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000054_75c03992.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000055_42c6f5bb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000055_42c6f5bb.szcp new file mode 100644 index 00000000..bdc7dff6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000055_42c6f5bb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000056_78777e8c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000056_78777e8c.szcp new file mode 100644 index 00000000..4189fecf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000056_78777e8c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000057_f92dd287.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000057_f92dd287.szcp new file mode 100644 index 00000000..963ced88 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000057_f92dd287.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000058_0f4fafb3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000058_0f4fafb3.szcp new file mode 100644 index 00000000..f88aacea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000058_0f4fafb3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000059_b2286098.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000059_b2286098.szcp new file mode 100644 index 00000000..ef7cae29 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000059_b2286098.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000060_12b616a0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000060_12b616a0.szcp new file mode 100644 index 00000000..99d1ed6b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000060_12b616a0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000061_5b7af0f5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000061_5b7af0f5.szcp new file mode 100644 index 00000000..452a8bb6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000061_5b7af0f5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000062_02c37784.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000062_02c37784.szcp new file mode 100644 index 00000000..df21d711 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000062_02c37784.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000063_f617f343.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000063_f617f343.szcp new file mode 100644 index 00000000..22d1a632 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000063_f617f343.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000064_dd1a0c00.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000064_dd1a0c00.szcp new file mode 100644 index 00000000..addb0059 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000064_dd1a0c00.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000065_f36b70df.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000065_f36b70df.szcp new file mode 100644 index 00000000..9fbc13c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_037/checkpoints/checkpoint_00000000000000000065_f36b70df.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000001_bd9197fe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000001_bd9197fe.szar new file mode 100644 index 00000000..ec01e8e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000001_bd9197fe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000002_54d13ae0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000002_54d13ae0.szar new file mode 100644 index 00000000..0a46f1d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000002_54d13ae0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000003_cc911b16.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000003_cc911b16.szar new file mode 100644 index 00000000..158645ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000003_cc911b16.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000004_80d5de5e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000004_80d5de5e.szar new file mode 100644 index 00000000..9814eb7c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000004_80d5de5e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000005_ea255068.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000005_ea255068.szar new file mode 100644 index 00000000..0c244fdd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000005_ea255068.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000006_8bed6b27.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000006_8bed6b27.szar new file mode 100644 index 00000000..39332a81 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000006_8bed6b27.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000007_d023eae1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000007_d023eae1.szar new file mode 100644 index 00000000..774a05b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000007_d023eae1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000008_2561c291.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000008_2561c291.szar new file mode 100644 index 00000000..919a91d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000008_2561c291.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000009_f2515e14.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000009_f2515e14.szar new file mode 100644 index 00000000..b7040479 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000009_f2515e14.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000010_b73e4f48.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000010_b73e4f48.szar new file mode 100644 index 00000000..d6b2cd24 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000010_b73e4f48.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000011_5ac8aa95.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000011_5ac8aa95.szar new file mode 100644 index 00000000..97254b3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000011_5ac8aa95.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000012_bafb456f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000012_bafb456f.szar new file mode 100644 index 00000000..5ff50a2b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000012_bafb456f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000013_be4cf8e4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000013_be4cf8e4.szar new file mode 100644 index 00000000..5bcd6dfc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000013_be4cf8e4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000014_fa6a1865.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000014_fa6a1865.szar new file mode 100644 index 00000000..9d59a248 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000014_fa6a1865.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000015_9a6d5eb7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000015_9a6d5eb7.szar new file mode 100644 index 00000000..a1964922 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000015_9a6d5eb7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000016_be206de9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000016_be206de9.szar new file mode 100644 index 00000000..4d3ee0c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000016_be206de9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000017_5eb43651.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000017_5eb43651.szar new file mode 100644 index 00000000..aeba8bfc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000017_5eb43651.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000018_a72fa80d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000018_a72fa80d.szar new file mode 100644 index 00000000..7d2bf6c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000018_a72fa80d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000019_f78a2232.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000019_f78a2232.szar new file mode 100644 index 00000000..4b22c9a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000019_f78a2232.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000020_fe3aec42.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000020_fe3aec42.szar new file mode 100644 index 00000000..c8e0c21c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000020_fe3aec42.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000021_57ef9c57.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000021_57ef9c57.szar new file mode 100644 index 00000000..d6ec4c80 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000021_57ef9c57.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000022_a0ac3f79.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000022_a0ac3f79.szar new file mode 100644 index 00000000..578019de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000022_a0ac3f79.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000023_3ebcea17.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000023_3ebcea17.szar new file mode 100644 index 00000000..26d50e91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000023_3ebcea17.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000024_749ebaf5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000024_749ebaf5.szar new file mode 100644 index 00000000..96bc54b3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000024_749ebaf5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000025_0584a7b5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000025_0584a7b5.szar new file mode 100644 index 00000000..db835c99 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000025_0584a7b5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000026_8ef1b0fb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000026_8ef1b0fb.szar new file mode 100644 index 00000000..b7edcd63 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000026_8ef1b0fb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000027_1e1af486.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000027_1e1af486.szar new file mode 100644 index 00000000..cca2553b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000027_1e1af486.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000028_27f3ff5a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000028_27f3ff5a.szar new file mode 100644 index 00000000..0becd1a9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000028_27f3ff5a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000029_a31e909b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000029_a31e909b.szar new file mode 100644 index 00000000..a189e390 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000029_a31e909b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000030_7a51ce5c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000030_7a51ce5c.szar new file mode 100644 index 00000000..d7f6d98c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000030_7a51ce5c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000031_85a782b8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000031_85a782b8.szar new file mode 100644 index 00000000..1316ab73 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000031_85a782b8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000032_47153e17.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000032_47153e17.szar new file mode 100644 index 00000000..dc5c519d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000032_47153e17.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000033_26422c57.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000033_26422c57.szar new file mode 100644 index 00000000..7857f88b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000033_26422c57.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000034_a075aa32.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000034_a075aa32.szar new file mode 100644 index 00000000..f9200e48 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000034_a075aa32.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000035_d0960fe1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000035_d0960fe1.szar new file mode 100644 index 00000000..256a00ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000035_d0960fe1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000036_2afa3fe9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000036_2afa3fe9.szar new file mode 100644 index 00000000..fcb7c43d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000036_2afa3fe9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000037_55333a01.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000037_55333a01.szar new file mode 100644 index 00000000..8491db0b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000037_55333a01.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000038_a54e43bd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000038_a54e43bd.szar new file mode 100644 index 00000000..5340c235 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000038_a54e43bd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000039_0b9769e7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000039_0b9769e7.szar new file mode 100644 index 00000000..e9862f0a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000039_0b9769e7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000040_2cdc5047.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000040_2cdc5047.szar new file mode 100644 index 00000000..3c5bdb97 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000040_2cdc5047.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000041_706b2636.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000041_706b2636.szar new file mode 100644 index 00000000..a5f29613 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000041_706b2636.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000042_655f5430.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000042_655f5430.szar new file mode 100644 index 00000000..a45bde51 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000042_655f5430.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000043_94b0c8df.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000043_94b0c8df.szar new file mode 100644 index 00000000..f0c4ecdb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000043_94b0c8df.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000044_ec657112.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000044_ec657112.szar new file mode 100644 index 00000000..cac85657 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000044_ec657112.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000045_1f55ce17.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000045_1f55ce17.szar new file mode 100644 index 00000000..fecc1290 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000045_1f55ce17.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000046_d8a18232.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000046_d8a18232.szar new file mode 100644 index 00000000..9099a1a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000046_d8a18232.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000047_78c8b935.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000047_78c8b935.szar new file mode 100644 index 00000000..57b834eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000047_78c8b935.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000048_778c83c0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000048_778c83c0.szar new file mode 100644 index 00000000..3366efc3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000048_778c83c0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000049_7ff3fc77.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000049_7ff3fc77.szar new file mode 100644 index 00000000..018d46fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000049_7ff3fc77.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000050_77b46b74.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000050_77b46b74.szar new file mode 100644 index 00000000..bb144898 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000050_77b46b74.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000051_69c253a2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000051_69c253a2.szar new file mode 100644 index 00000000..44dd9c8e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000051_69c253a2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000052_9d24a8c2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000052_9d24a8c2.szar new file mode 100644 index 00000000..40d2f7c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000052_9d24a8c2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000053_11f9a507.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000053_11f9a507.szar new file mode 100644 index 00000000..e8f4515e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000053_11f9a507.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000054_2b7015c4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000054_2b7015c4.szar new file mode 100644 index 00000000..1bdfa46a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000054_2b7015c4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000055_4cd55de0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000055_4cd55de0.szar new file mode 100644 index 00000000..8d41b025 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000055_4cd55de0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000056_34c8ce6c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000056_34c8ce6c.szar new file mode 100644 index 00000000..af42798c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000056_34c8ce6c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000057_7f3ed17a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000057_7f3ed17a.szar new file mode 100644 index 00000000..cd2b622b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000057_7f3ed17a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000058_68b2a401.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000058_68b2a401.szar new file mode 100644 index 00000000..e7d5823d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000058_68b2a401.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000059_bc9a784a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000059_bc9a784a.szar new file mode 100644 index 00000000..dacaf790 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000059_bc9a784a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000060_f6431469.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000060_f6431469.szar new file mode 100644 index 00000000..845dda71 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000060_f6431469.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000061_984f6c19.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000061_984f6c19.szar new file mode 100644 index 00000000..0d2bfe4c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/archive/delta_00000000000000000061_984f6c19.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000001_78c3cebe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000001_78c3cebe.szcp new file mode 100644 index 00000000..d4beca53 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000001_78c3cebe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000002_34012b88.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000002_34012b88.szcp new file mode 100644 index 00000000..240adc1b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000002_34012b88.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000003_7d7b9fe1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000003_7d7b9fe1.szcp new file mode 100644 index 00000000..b6865a2f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000003_7d7b9fe1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000004_046a3dce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000004_046a3dce.szcp new file mode 100644 index 00000000..59bbd84b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000004_046a3dce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000005_ec365ab9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000005_ec365ab9.szcp new file mode 100644 index 00000000..c7941cd6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000005_ec365ab9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000006_418a1f8b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000006_418a1f8b.szcp new file mode 100644 index 00000000..3a7ead7d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000006_418a1f8b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000007_f7385661.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000007_f7385661.szcp new file mode 100644 index 00000000..7c8d6f2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000007_f7385661.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000008_06630527.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000008_06630527.szcp new file mode 100644 index 00000000..09e72186 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000008_06630527.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000009_5552d5e2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000009_5552d5e2.szcp new file mode 100644 index 00000000..e5983e36 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000009_5552d5e2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000010_5d15211a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000010_5d15211a.szcp new file mode 100644 index 00000000..375ff2fc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000010_5d15211a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000011_425b3e8a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000011_425b3e8a.szcp new file mode 100644 index 00000000..2959f2a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000011_425b3e8a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000012_01f4ad14.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000012_01f4ad14.szcp new file mode 100644 index 00000000..a5ef2679 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000012_01f4ad14.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000013_91f88726.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000013_91f88726.szcp new file mode 100644 index 00000000..250df8d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000013_91f88726.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000014_a02fc53b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000014_a02fc53b.szcp new file mode 100644 index 00000000..2d3cf751 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000014_a02fc53b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000015_e6d3209d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000015_e6d3209d.szcp new file mode 100644 index 00000000..05c66c85 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000015_e6d3209d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000016_be892c26.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000016_be892c26.szcp new file mode 100644 index 00000000..f2839630 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000016_be892c26.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000017_8ccdb8fc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000017_8ccdb8fc.szcp new file mode 100644 index 00000000..59526597 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000017_8ccdb8fc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000018_fad4483a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000018_fad4483a.szcp new file mode 100644 index 00000000..fce909aa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000018_fad4483a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000019_1b5ba5d9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000019_1b5ba5d9.szcp new file mode 100644 index 00000000..8574ad4b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000019_1b5ba5d9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000020_7c2ae052.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000020_7c2ae052.szcp new file mode 100644 index 00000000..2a54261d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000020_7c2ae052.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000021_80627244.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000021_80627244.szcp new file mode 100644 index 00000000..bd2fb18c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000021_80627244.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000022_8b641b61.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000022_8b641b61.szcp new file mode 100644 index 00000000..5ed56e8c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000022_8b641b61.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000023_fda3aeca.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000023_fda3aeca.szcp new file mode 100644 index 00000000..5ac4fdcf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000023_fda3aeca.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000024_f2317a94.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000024_f2317a94.szcp new file mode 100644 index 00000000..ff89b8bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000024_f2317a94.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000025_c99b8eec.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000025_c99b8eec.szcp new file mode 100644 index 00000000..3137183c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000025_c99b8eec.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000026_6dde2527.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000026_6dde2527.szcp new file mode 100644 index 00000000..d62b30e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000026_6dde2527.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000027_93126128.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000027_93126128.szcp new file mode 100644 index 00000000..1058c9d0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000027_93126128.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000028_d8e10618.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000028_d8e10618.szcp new file mode 100644 index 00000000..3b454184 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000028_d8e10618.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000029_0ad82b87.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000029_0ad82b87.szcp new file mode 100644 index 00000000..0d263106 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000029_0ad82b87.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000030_c3aad2d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000030_c3aad2d7.szcp new file mode 100644 index 00000000..95a02de7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000030_c3aad2d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000031_46906126.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000031_46906126.szcp new file mode 100644 index 00000000..a60ee801 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000031_46906126.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000032_23cc0ae6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000032_23cc0ae6.szcp new file mode 100644 index 00000000..47918408 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000032_23cc0ae6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000033_6abf195c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000033_6abf195c.szcp new file mode 100644 index 00000000..408594a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000033_6abf195c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000034_69780533.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000034_69780533.szcp new file mode 100644 index 00000000..8746ac0a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000034_69780533.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000035_68df2bcb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000035_68df2bcb.szcp new file mode 100644 index 00000000..e5c9b5dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000035_68df2bcb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000036_d180e9c1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000036_d180e9c1.szcp new file mode 100644 index 00000000..fb1810f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000036_d180e9c1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000037_3abcd1f3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000037_3abcd1f3.szcp new file mode 100644 index 00000000..e4b9e839 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000037_3abcd1f3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000038_01cf0d39.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000038_01cf0d39.szcp new file mode 100644 index 00000000..25565197 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000038_01cf0d39.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000039_d51e1122.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000039_d51e1122.szcp new file mode 100644 index 00000000..9c45902b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000039_d51e1122.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000040_647cc725.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000040_647cc725.szcp new file mode 100644 index 00000000..78e3bbc4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000040_647cc725.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000041_71d56a59.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000041_71d56a59.szcp new file mode 100644 index 00000000..7ed66f90 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000041_71d56a59.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000042_74eb2222.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000042_74eb2222.szcp new file mode 100644 index 00000000..146175a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000042_74eb2222.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000043_6db9b42e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000043_6db9b42e.szcp new file mode 100644 index 00000000..2198af94 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000043_6db9b42e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000044_1fcdcd18.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000044_1fcdcd18.szcp new file mode 100644 index 00000000..e6bb4ce4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000044_1fcdcd18.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000045_0d319ac9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000045_0d319ac9.szcp new file mode 100644 index 00000000..7d99a0ac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000045_0d319ac9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000046_479da82d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000046_479da82d.szcp new file mode 100644 index 00000000..de9d6636 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000046_479da82d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000047_ade71232.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000047_ade71232.szcp new file mode 100644 index 00000000..5f4377d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000047_ade71232.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000048_f3b5690b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000048_f3b5690b.szcp new file mode 100644 index 00000000..9ffd7b59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000048_f3b5690b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000049_a39e68b9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000049_a39e68b9.szcp new file mode 100644 index 00000000..f1ff6553 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000049_a39e68b9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000050_ad63073e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000050_ad63073e.szcp new file mode 100644 index 00000000..95559455 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000050_ad63073e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000051_f2c66873.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000051_f2c66873.szcp new file mode 100644 index 00000000..a8747b4f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000051_f2c66873.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000052_f218cafc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000052_f218cafc.szcp new file mode 100644 index 00000000..1c7c5894 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000052_f218cafc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000053_adb321a9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000053_adb321a9.szcp new file mode 100644 index 00000000..420cd304 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000053_adb321a9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000054_9f2bd7a7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000054_9f2bd7a7.szcp new file mode 100644 index 00000000..662433cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000054_9f2bd7a7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000055_2d0b4122.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000055_2d0b4122.szcp new file mode 100644 index 00000000..ce181a55 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000055_2d0b4122.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000056_9039fb41.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000056_9039fb41.szcp new file mode 100644 index 00000000..55ee75a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000056_9039fb41.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000057_393a9cac.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000057_393a9cac.szcp new file mode 100644 index 00000000..635ffc5c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000057_393a9cac.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000058_1fecd44d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000058_1fecd44d.szcp new file mode 100644 index 00000000..f0e6ac50 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000058_1fecd44d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000059_99f61446.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000059_99f61446.szcp new file mode 100644 index 00000000..110c3cf7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000059_99f61446.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000060_567c1e1a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000060_567c1e1a.szcp new file mode 100644 index 00000000..3d998536 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000060_567c1e1a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000061_adb5732b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000061_adb5732b.szcp new file mode 100644 index 00000000..0ef61e3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_038/checkpoints/checkpoint_00000000000000000061_adb5732b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000001_c6f77c48.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000001_c6f77c48.szar new file mode 100644 index 00000000..7c38e80b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000001_c6f77c48.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000002_114defe1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000002_114defe1.szar new file mode 100644 index 00000000..14785169 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000002_114defe1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000003_163cb354.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000003_163cb354.szar new file mode 100644 index 00000000..0f9933f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000003_163cb354.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000004_4662f948.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000004_4662f948.szar new file mode 100644 index 00000000..58e0ca62 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000004_4662f948.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000005_72c91515.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000005_72c91515.szar new file mode 100644 index 00000000..1794482b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000005_72c91515.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000006_938daa60.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000006_938daa60.szar new file mode 100644 index 00000000..108e6dc8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000006_938daa60.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000007_dfb2cd4c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000007_dfb2cd4c.szar new file mode 100644 index 00000000..9134a884 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000007_dfb2cd4c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000008_fb2a451c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000008_fb2a451c.szar new file mode 100644 index 00000000..c292e139 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000008_fb2a451c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000009_fe5552b9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000009_fe5552b9.szar new file mode 100644 index 00000000..cd758ed7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000009_fe5552b9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000010_580dd341.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000010_580dd341.szar new file mode 100644 index 00000000..5e06bc95 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000010_580dd341.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000011_ec37f714.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000011_ec37f714.szar new file mode 100644 index 00000000..4b12909d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000011_ec37f714.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000012_81fd427a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000012_81fd427a.szar new file mode 100644 index 00000000..fe2515b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000012_81fd427a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000013_09909680.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000013_09909680.szar new file mode 100644 index 00000000..0c7ec3d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000013_09909680.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000014_f903540e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000014_f903540e.szar new file mode 100644 index 00000000..a8b3d704 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000014_f903540e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000015_135d1921.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000015_135d1921.szar new file mode 100644 index 00000000..e70848fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000015_135d1921.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000016_d06a9687.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000016_d06a9687.szar new file mode 100644 index 00000000..682114ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000016_d06a9687.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000017_fb771457.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000017_fb771457.szar new file mode 100644 index 00000000..2f51bade Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000017_fb771457.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000018_37b36e01.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000018_37b36e01.szar new file mode 100644 index 00000000..f3e8f882 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000018_37b36e01.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000019_330f27d1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000019_330f27d1.szar new file mode 100644 index 00000000..6871b2c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000019_330f27d1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000020_8feaab39.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000020_8feaab39.szar new file mode 100644 index 00000000..154b224c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000020_8feaab39.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000021_baf9b70b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000021_baf9b70b.szar new file mode 100644 index 00000000..9a4496d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000021_baf9b70b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000022_becfeab4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000022_becfeab4.szar new file mode 100644 index 00000000..2a586364 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000022_becfeab4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000023_7c6fb793.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000023_7c6fb793.szar new file mode 100644 index 00000000..e87c19e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000023_7c6fb793.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000024_ab6e7e55.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000024_ab6e7e55.szar new file mode 100644 index 00000000..fa973696 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000024_ab6e7e55.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000025_55cd8f5f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000025_55cd8f5f.szar new file mode 100644 index 00000000..16294fa2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000025_55cd8f5f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000026_b31458b4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000026_b31458b4.szar new file mode 100644 index 00000000..636e0f7f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000026_b31458b4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000027_5a53e4f5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000027_5a53e4f5.szar new file mode 100644 index 00000000..d5a62ea5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000027_5a53e4f5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000028_ece4067c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000028_ece4067c.szar new file mode 100644 index 00000000..0fdd5d82 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000028_ece4067c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000029_f9cdc3a0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000029_f9cdc3a0.szar new file mode 100644 index 00000000..bbd2eb99 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000029_f9cdc3a0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000030_dceed10f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000030_dceed10f.szar new file mode 100644 index 00000000..41896457 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000030_dceed10f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000031_1a524876.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000031_1a524876.szar new file mode 100644 index 00000000..ed2a4558 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000031_1a524876.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000032_5fbbb338.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000032_5fbbb338.szar new file mode 100644 index 00000000..9db2a1dd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000032_5fbbb338.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000033_237f4e05.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000033_237f4e05.szar new file mode 100644 index 00000000..36942aaf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000033_237f4e05.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000034_0ab174af.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000034_0ab174af.szar new file mode 100644 index 00000000..d8e58328 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000034_0ab174af.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000035_4c39b51f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000035_4c39b51f.szar new file mode 100644 index 00000000..6008c7fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000035_4c39b51f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000036_a72cc424.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000036_a72cc424.szar new file mode 100644 index 00000000..58aee1a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000036_a72cc424.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000037_c17566a4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000037_c17566a4.szar new file mode 100644 index 00000000..cbb7f3cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000037_c17566a4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000038_eca0bbbe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000038_eca0bbbe.szar new file mode 100644 index 00000000..882e1b63 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000038_eca0bbbe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000039_53368558.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000039_53368558.szar new file mode 100644 index 00000000..416b0b22 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000039_53368558.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000040_f7cdd5a0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000040_f7cdd5a0.szar new file mode 100644 index 00000000..c39be3f7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000040_f7cdd5a0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000041_d33ac9e7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000041_d33ac9e7.szar new file mode 100644 index 00000000..6ee7d1a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000041_d33ac9e7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000042_8df480b5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000042_8df480b5.szar new file mode 100644 index 00000000..ceccc9c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000042_8df480b5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000043_a1930c36.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000043_a1930c36.szar new file mode 100644 index 00000000..095daddd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000043_a1930c36.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000044_b91326c8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000044_b91326c8.szar new file mode 100644 index 00000000..78618780 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000044_b91326c8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000045_0064cf32.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000045_0064cf32.szar new file mode 100644 index 00000000..9da71f3f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000045_0064cf32.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000046_198c6fe0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000046_198c6fe0.szar new file mode 100644 index 00000000..9b239784 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000046_198c6fe0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000047_a6dfa8e2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000047_a6dfa8e2.szar new file mode 100644 index 00000000..77de7063 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000047_a6dfa8e2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000048_39939fef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000048_39939fef.szar new file mode 100644 index 00000000..fb1f4ac4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000048_39939fef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000049_a1fcfb0a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000049_a1fcfb0a.szar new file mode 100644 index 00000000..9ce39a31 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000049_a1fcfb0a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000050_da048a34.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000050_da048a34.szar new file mode 100644 index 00000000..1a803789 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000050_da048a34.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000051_48f67dbf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000051_48f67dbf.szar new file mode 100644 index 00000000..b08ed550 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000051_48f67dbf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000052_0009d288.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000052_0009d288.szar new file mode 100644 index 00000000..386e4dc4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000052_0009d288.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000053_e2af370a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000053_e2af370a.szar new file mode 100644 index 00000000..9fed4c63 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000053_e2af370a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000054_64aeb624.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000054_64aeb624.szar new file mode 100644 index 00000000..c01a5e0e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000054_64aeb624.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000055_1384c7ec.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000055_1384c7ec.szar new file mode 100644 index 00000000..7dbb3b4b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000055_1384c7ec.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000056_5064e33d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000056_5064e33d.szar new file mode 100644 index 00000000..86707f3e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000056_5064e33d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000057_d86ca803.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000057_d86ca803.szar new file mode 100644 index 00000000..284624c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000057_d86ca803.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000058_5dc6dbb2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000058_5dc6dbb2.szar new file mode 100644 index 00000000..a4708a92 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000058_5dc6dbb2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000059_2f7e7ff3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000059_2f7e7ff3.szar new file mode 100644 index 00000000..2008c4d2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000059_2f7e7ff3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000060_c55c8306.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000060_c55c8306.szar new file mode 100644 index 00000000..6ff748ce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000060_c55c8306.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000061_91dea41b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000061_91dea41b.szar new file mode 100644 index 00000000..6e26d641 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000061_91dea41b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000062_1fde1d35.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000062_1fde1d35.szar new file mode 100644 index 00000000..abd71215 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000062_1fde1d35.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000063_70e93892.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000063_70e93892.szar new file mode 100644 index 00000000..7560acc6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000063_70e93892.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000064_067d8b6b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000064_067d8b6b.szar new file mode 100644 index 00000000..2db1977d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000064_067d8b6b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000065_4c3459dc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000065_4c3459dc.szar new file mode 100644 index 00000000..323bc0ba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000065_4c3459dc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000066_b359626c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000066_b359626c.szar new file mode 100644 index 00000000..d3376c24 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000066_b359626c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000067_d38928b6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000067_d38928b6.szar new file mode 100644 index 00000000..b308ec5c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000067_d38928b6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000068_316e10b6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000068_316e10b6.szar new file mode 100644 index 00000000..45a0c1e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000068_316e10b6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000069_f3671264.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000069_f3671264.szar new file mode 100644 index 00000000..106fdd0b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000069_f3671264.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000070_d903a9ea.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000070_d903a9ea.szar new file mode 100644 index 00000000..d03ca608 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000070_d903a9ea.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000071_fb3d8707.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000071_fb3d8707.szar new file mode 100644 index 00000000..d366b163 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000071_fb3d8707.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000072_d0be8206.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000072_d0be8206.szar new file mode 100644 index 00000000..ed6080db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/archive/delta_00000000000000000072_d0be8206.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000001_02f27a98.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000001_02f27a98.szcp new file mode 100644 index 00000000..7937f8d0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000001_02f27a98.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000002_95f30fad.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000002_95f30fad.szcp new file mode 100644 index 00000000..01e75dba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000002_95f30fad.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000003_e0131ace.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000003_e0131ace.szcp new file mode 100644 index 00000000..0aa03d94 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000003_e0131ace.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000004_28e1740b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000004_28e1740b.szcp new file mode 100644 index 00000000..36c1dfa0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000004_28e1740b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000005_81a1c28c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000005_81a1c28c.szcp new file mode 100644 index 00000000..2b2a2d2e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000005_81a1c28c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000006_66961d56.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000006_66961d56.szcp new file mode 100644 index 00000000..a2436b8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000006_66961d56.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000007_c3c0faff.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000007_c3c0faff.szcp new file mode 100644 index 00000000..b0739500 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000007_c3c0faff.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000008_72875381.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000008_72875381.szcp new file mode 100644 index 00000000..46a0f4c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000008_72875381.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000009_1fa74c2b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000009_1fa74c2b.szcp new file mode 100644 index 00000000..d4cd9e9c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000009_1fa74c2b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000010_a85ab06b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000010_a85ab06b.szcp new file mode 100644 index 00000000..1133bc2b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000010_a85ab06b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000011_6ebc1df9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000011_6ebc1df9.szcp new file mode 100644 index 00000000..8670f565 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000011_6ebc1df9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000012_57d375bc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000012_57d375bc.szcp new file mode 100644 index 00000000..a65a2d63 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000012_57d375bc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000013_34f548b7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000013_34f548b7.szcp new file mode 100644 index 00000000..751dbcf4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000013_34f548b7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000014_73c256b4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000014_73c256b4.szcp new file mode 100644 index 00000000..d25df020 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000014_73c256b4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000015_a905773f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000015_a905773f.szcp new file mode 100644 index 00000000..a405c711 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000015_a905773f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000016_f97026a3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000016_f97026a3.szcp new file mode 100644 index 00000000..ae2ff3d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000016_f97026a3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000017_84361231.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000017_84361231.szcp new file mode 100644 index 00000000..e7374ebd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000017_84361231.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000018_58c1fa17.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000018_58c1fa17.szcp new file mode 100644 index 00000000..5355c9ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000018_58c1fa17.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000019_8fc5c87a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000019_8fc5c87a.szcp new file mode 100644 index 00000000..3b247c24 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000019_8fc5c87a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000020_a92633b5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000020_a92633b5.szcp new file mode 100644 index 00000000..46274bf2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000020_a92633b5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000021_c9df8744.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000021_c9df8744.szcp new file mode 100644 index 00000000..6c609f32 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000021_c9df8744.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000022_427d5dd5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000022_427d5dd5.szcp new file mode 100644 index 00000000..1284a78c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000022_427d5dd5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000023_012d8f9f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000023_012d8f9f.szcp new file mode 100644 index 00000000..5d904818 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000023_012d8f9f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000024_1316a74a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000024_1316a74a.szcp new file mode 100644 index 00000000..7029f858 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000024_1316a74a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000025_cf644c5d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000025_cf644c5d.szcp new file mode 100644 index 00000000..c1cfae2d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000025_cf644c5d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000026_017af255.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000026_017af255.szcp new file mode 100644 index 00000000..1319452c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000026_017af255.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000027_8bafa3a6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000027_8bafa3a6.szcp new file mode 100644 index 00000000..f15eb8e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000027_8bafa3a6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000028_414021e8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000028_414021e8.szcp new file mode 100644 index 00000000..e232ec8b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000028_414021e8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000029_2cb0c23c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000029_2cb0c23c.szcp new file mode 100644 index 00000000..b869559a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000029_2cb0c23c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000030_276a2fcd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000030_276a2fcd.szcp new file mode 100644 index 00000000..ff6fb010 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000030_276a2fcd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000031_06356684.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000031_06356684.szcp new file mode 100644 index 00000000..7c7225a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000031_06356684.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000032_04632fc4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000032_04632fc4.szcp new file mode 100644 index 00000000..1a142421 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000032_04632fc4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000033_37ce637e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000033_37ce637e.szcp new file mode 100644 index 00000000..fccee5de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000033_37ce637e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000034_7660f30d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000034_7660f30d.szcp new file mode 100644 index 00000000..0136ba76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000034_7660f30d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000035_328d2aa6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000035_328d2aa6.szcp new file mode 100644 index 00000000..2cfa8457 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000035_328d2aa6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000036_1ef5c143.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000036_1ef5c143.szcp new file mode 100644 index 00000000..0e68aea3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000036_1ef5c143.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000037_602d90b2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000037_602d90b2.szcp new file mode 100644 index 00000000..c784930f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000037_602d90b2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000038_0a4f9fb4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000038_0a4f9fb4.szcp new file mode 100644 index 00000000..59b8be6d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000038_0a4f9fb4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000039_db80371f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000039_db80371f.szcp new file mode 100644 index 00000000..34f4d8d2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000039_db80371f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000040_d5bd6239.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000040_d5bd6239.szcp new file mode 100644 index 00000000..21edc629 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000040_d5bd6239.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000041_5d8e3503.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000041_5d8e3503.szcp new file mode 100644 index 00000000..0846f9b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000041_5d8e3503.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000042_5425fe1a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000042_5425fe1a.szcp new file mode 100644 index 00000000..2415a2d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000042_5425fe1a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000043_c6b27636.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000043_c6b27636.szcp new file mode 100644 index 00000000..77b3e608 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000043_c6b27636.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000044_ffc649d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000044_ffc649d1.szcp new file mode 100644 index 00000000..c146cdd6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000044_ffc649d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000045_bd35dbfe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000045_bd35dbfe.szcp new file mode 100644 index 00000000..4cea0946 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000045_bd35dbfe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000046_588a5cc1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000046_588a5cc1.szcp new file mode 100644 index 00000000..738494cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000046_588a5cc1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000047_05ebf016.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000047_05ebf016.szcp new file mode 100644 index 00000000..4abffeac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000047_05ebf016.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000048_3680ada4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000048_3680ada4.szcp new file mode 100644 index 00000000..55369964 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000048_3680ada4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000049_3207556a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000049_3207556a.szcp new file mode 100644 index 00000000..4520ec74 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000049_3207556a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000050_a49d3f43.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000050_a49d3f43.szcp new file mode 100644 index 00000000..0ee2cd05 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000050_a49d3f43.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000051_bce7ec07.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000051_bce7ec07.szcp new file mode 100644 index 00000000..d274bc15 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000051_bce7ec07.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000052_11041b2f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000052_11041b2f.szcp new file mode 100644 index 00000000..5e947b75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000052_11041b2f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000053_fa09821e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000053_fa09821e.szcp new file mode 100644 index 00000000..b5bc18c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000053_fa09821e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000054_c9551126.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000054_c9551126.szcp new file mode 100644 index 00000000..2633a75b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000054_c9551126.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000055_54d61990.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000055_54d61990.szcp new file mode 100644 index 00000000..40633564 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000055_54d61990.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000056_dccf9400.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000056_dccf9400.szcp new file mode 100644 index 00000000..5e9af439 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000056_dccf9400.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000057_94968748.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000057_94968748.szcp new file mode 100644 index 00000000..c6d27c43 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000057_94968748.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000058_49a933f0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000058_49a933f0.szcp new file mode 100644 index 00000000..6229cbe5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000058_49a933f0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000059_291f2469.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000059_291f2469.szcp new file mode 100644 index 00000000..79fa061b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000059_291f2469.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000060_92a7a577.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000060_92a7a577.szcp new file mode 100644 index 00000000..e29c0a31 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000060_92a7a577.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000061_0c7e7964.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000061_0c7e7964.szcp new file mode 100644 index 00000000..c6ed9c26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000061_0c7e7964.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000062_e58024a7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000062_e58024a7.szcp new file mode 100644 index 00000000..47fd3a96 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000062_e58024a7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000063_3ef7fdf3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000063_3ef7fdf3.szcp new file mode 100644 index 00000000..2c10538c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000063_3ef7fdf3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000064_c57737e4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000064_c57737e4.szcp new file mode 100644 index 00000000..97dea022 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000064_c57737e4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000065_b2ddc382.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000065_b2ddc382.szcp new file mode 100644 index 00000000..36f26140 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000065_b2ddc382.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000066_dab66e03.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000066_dab66e03.szcp new file mode 100644 index 00000000..f93cf15f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000066_dab66e03.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000067_ec801ff1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000067_ec801ff1.szcp new file mode 100644 index 00000000..045f605a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000067_ec801ff1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000068_5c6dbb22.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000068_5c6dbb22.szcp new file mode 100644 index 00000000..c916b864 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000068_5c6dbb22.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000069_d0afac9f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000069_d0afac9f.szcp new file mode 100644 index 00000000..94fb882f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000069_d0afac9f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000070_f86b4dec.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000070_f86b4dec.szcp new file mode 100644 index 00000000..3e958131 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000070_f86b4dec.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000071_a34d9f57.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000071_a34d9f57.szcp new file mode 100644 index 00000000..3b2a0c71 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000071_a34d9f57.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000072_89ecb56c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000072_89ecb56c.szcp new file mode 100644 index 00000000..6faded2d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_039/checkpoints/checkpoint_00000000000000000072_89ecb56c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000001_b9abfcae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000001_b9abfcae.szar new file mode 100644 index 00000000..a4e206fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000001_b9abfcae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000002_41169d20.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000002_41169d20.szar new file mode 100644 index 00000000..405ddf73 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000002_41169d20.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000003_2530aeca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000003_2530aeca.szar new file mode 100644 index 00000000..c0226812 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000003_2530aeca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000004_6bc4ed81.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000004_6bc4ed81.szar new file mode 100644 index 00000000..d3eb0b9d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000004_6bc4ed81.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000005_193b3bdb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000005_193b3bdb.szar new file mode 100644 index 00000000..694b6543 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000005_193b3bdb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000006_888f23b6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000006_888f23b6.szar new file mode 100644 index 00000000..3bf2f3a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000006_888f23b6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000007_0fd91018.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000007_0fd91018.szar new file mode 100644 index 00000000..e72c7240 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000007_0fd91018.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000008_a9101d3e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000008_a9101d3e.szar new file mode 100644 index 00000000..8dc5e7bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000008_a9101d3e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000009_65a8b71b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000009_65a8b71b.szar new file mode 100644 index 00000000..51f80364 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000009_65a8b71b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000010_659a84be.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000010_659a84be.szar new file mode 100644 index 00000000..650699be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000010_659a84be.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000011_ae19b3eb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000011_ae19b3eb.szar new file mode 100644 index 00000000..edd4e656 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000011_ae19b3eb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000012_5ffd859c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000012_5ffd859c.szar new file mode 100644 index 00000000..0c966783 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000012_5ffd859c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000013_6058a851.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000013_6058a851.szar new file mode 100644 index 00000000..5bb524d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000013_6058a851.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000014_1afc854f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000014_1afc854f.szar new file mode 100644 index 00000000..0fd4f650 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000014_1afc854f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000015_6cb10e06.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000015_6cb10e06.szar new file mode 100644 index 00000000..3db22d0b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000015_6cb10e06.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000016_eb55f6b6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000016_eb55f6b6.szar new file mode 100644 index 00000000..7f84c9a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000016_eb55f6b6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000017_e6648b4c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000017_e6648b4c.szar new file mode 100644 index 00000000..f8adf86a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000017_e6648b4c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000018_767f5926.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000018_767f5926.szar new file mode 100644 index 00000000..fa88cb27 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000018_767f5926.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000019_79a9fd25.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000019_79a9fd25.szar new file mode 100644 index 00000000..a8d68f26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000019_79a9fd25.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000020_6844e3fd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000020_6844e3fd.szar new file mode 100644 index 00000000..18f56d50 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000020_6844e3fd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000021_34dd4703.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000021_34dd4703.szar new file mode 100644 index 00000000..a7cf4c53 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000021_34dd4703.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000022_924c2618.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000022_924c2618.szar new file mode 100644 index 00000000..7188988a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000022_924c2618.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000023_f5193c8d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000023_f5193c8d.szar new file mode 100644 index 00000000..05a2cf3d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000023_f5193c8d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000024_8aeb9007.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000024_8aeb9007.szar new file mode 100644 index 00000000..179f3be2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000024_8aeb9007.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000025_ba5cd114.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000025_ba5cd114.szar new file mode 100644 index 00000000..13249471 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000025_ba5cd114.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000026_448534fe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000026_448534fe.szar new file mode 100644 index 00000000..c7c0e8f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000026_448534fe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000027_577a2c4c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000027_577a2c4c.szar new file mode 100644 index 00000000..7a5452f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000027_577a2c4c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000028_a4906240.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000028_a4906240.szar new file mode 100644 index 00000000..1ad4f7d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000028_a4906240.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000029_be9d2bc5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000029_be9d2bc5.szar new file mode 100644 index 00000000..f7369314 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000029_be9d2bc5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000030_b2cf7f4e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000030_b2cf7f4e.szar new file mode 100644 index 00000000..907bac72 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000030_b2cf7f4e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000031_e33756c2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000031_e33756c2.szar new file mode 100644 index 00000000..e852dee6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000031_e33756c2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000032_b0eebed7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000032_b0eebed7.szar new file mode 100644 index 00000000..8c6db333 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000032_b0eebed7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000033_1994805f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000033_1994805f.szar new file mode 100644 index 00000000..351c8f54 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000033_1994805f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000034_df6bfa25.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000034_df6bfa25.szar new file mode 100644 index 00000000..310d565f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000034_df6bfa25.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000035_5113c746.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000035_5113c746.szar new file mode 100644 index 00000000..1b32713c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000035_5113c746.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000036_961ee875.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000036_961ee875.szar new file mode 100644 index 00000000..4ab29147 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000036_961ee875.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000037_6658d6b3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000037_6658d6b3.szar new file mode 100644 index 00000000..9526342f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000037_6658d6b3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000038_ae4402e1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000038_ae4402e1.szar new file mode 100644 index 00000000..ae1670e4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000038_ae4402e1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000039_d021e585.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000039_d021e585.szar new file mode 100644 index 00000000..1ff8fa12 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000039_d021e585.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000040_e2f8e820.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000040_e2f8e820.szar new file mode 100644 index 00000000..8b38ad41 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000040_e2f8e820.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000041_221f9aa6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000041_221f9aa6.szar new file mode 100644 index 00000000..8b51dba7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000041_221f9aa6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000042_380a4102.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000042_380a4102.szar new file mode 100644 index 00000000..25664bee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000042_380a4102.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000043_1e87dab2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000043_1e87dab2.szar new file mode 100644 index 00000000..d7a762dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000043_1e87dab2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000044_4e932832.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000044_4e932832.szar new file mode 100644 index 00000000..8dbb7887 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000044_4e932832.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000045_0fdbb7a8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000045_0fdbb7a8.szar new file mode 100644 index 00000000..602122bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000045_0fdbb7a8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000046_bbdd15b9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000046_bbdd15b9.szar new file mode 100644 index 00000000..9015e46e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000046_bbdd15b9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000047_62809fef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000047_62809fef.szar new file mode 100644 index 00000000..4324afe9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000047_62809fef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000048_b010fa7d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000048_b010fa7d.szar new file mode 100644 index 00000000..3a0eca5a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000048_b010fa7d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000049_cc262305.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000049_cc262305.szar new file mode 100644 index 00000000..66dbab34 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000049_cc262305.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000050_199928ff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000050_199928ff.szar new file mode 100644 index 00000000..2e7f00ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000050_199928ff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000051_36c8d527.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000051_36c8d527.szar new file mode 100644 index 00000000..bab2d3c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000051_36c8d527.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000052_4e4e5463.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000052_4e4e5463.szar new file mode 100644 index 00000000..1d5aeaf2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000052_4e4e5463.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000053_409bb691.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000053_409bb691.szar new file mode 100644 index 00000000..6c755a7c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000053_409bb691.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000054_d2f36be5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000054_d2f36be5.szar new file mode 100644 index 00000000..d5cf3cb2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000054_d2f36be5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000055_66511157.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000055_66511157.szar new file mode 100644 index 00000000..2ee1d993 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000055_66511157.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000056_f4d25533.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000056_f4d25533.szar new file mode 100644 index 00000000..2fef5cbd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000056_f4d25533.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000057_a686f2ed.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000057_a686f2ed.szar new file mode 100644 index 00000000..08293dac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000057_a686f2ed.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000058_e9b21496.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000058_e9b21496.szar new file mode 100644 index 00000000..86e625b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000058_e9b21496.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000059_da5a7554.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000059_da5a7554.szar new file mode 100644 index 00000000..2d14a62b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000059_da5a7554.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000060_626e43f3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000060_626e43f3.szar new file mode 100644 index 00000000..6910ca0b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000060_626e43f3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000061_721b6c0a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000061_721b6c0a.szar new file mode 100644 index 00000000..1083b769 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000061_721b6c0a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000062_f83e8eb4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000062_f83e8eb4.szar new file mode 100644 index 00000000..aec52ec0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000062_f83e8eb4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000063_80d92b30.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000063_80d92b30.szar new file mode 100644 index 00000000..dba41911 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/archive/delta_00000000000000000063_80d92b30.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000001_e08e2910.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000001_e08e2910.szcp new file mode 100644 index 00000000..819cd328 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000001_e08e2910.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000002_81458f2a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000002_81458f2a.szcp new file mode 100644 index 00000000..607b7767 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000002_81458f2a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000003_5821f34c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000003_5821f34c.szcp new file mode 100644 index 00000000..28e07600 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000003_5821f34c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000004_afa4094a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000004_afa4094a.szcp new file mode 100644 index 00000000..856c8494 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000004_afa4094a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000005_0c3bfd2c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000005_0c3bfd2c.szcp new file mode 100644 index 00000000..420b2b04 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000005_0c3bfd2c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000006_533075a2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000006_533075a2.szcp new file mode 100644 index 00000000..d4f04474 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000006_533075a2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000007_e0d3018e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000007_e0d3018e.szcp new file mode 100644 index 00000000..df07ac6a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000007_e0d3018e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000008_ac40b495.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000008_ac40b495.szcp new file mode 100644 index 00000000..762a217b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000008_ac40b495.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000009_55da509a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000009_55da509a.szcp new file mode 100644 index 00000000..7738e4b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000009_55da509a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000010_003771b1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000010_003771b1.szcp new file mode 100644 index 00000000..659998dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000010_003771b1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000011_0690c795.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000011_0690c795.szcp new file mode 100644 index 00000000..02c60427 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000011_0690c795.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000012_73676f47.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000012_73676f47.szcp new file mode 100644 index 00000000..778af2ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000012_73676f47.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000013_f7ad5ea5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000013_f7ad5ea5.szcp new file mode 100644 index 00000000..5ebd16cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000013_f7ad5ea5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000014_d4f2e1a3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000014_d4f2e1a3.szcp new file mode 100644 index 00000000..23b195d0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000014_d4f2e1a3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000015_3639d0e1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000015_3639d0e1.szcp new file mode 100644 index 00000000..9271d296 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000015_3639d0e1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000016_8479218e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000016_8479218e.szcp new file mode 100644 index 00000000..8a6f558f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000016_8479218e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000017_d39f58d3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000017_d39f58d3.szcp new file mode 100644 index 00000000..9c31b49b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000017_d39f58d3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000018_2b842bb9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000018_2b842bb9.szcp new file mode 100644 index 00000000..4dfe79aa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000018_2b842bb9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000019_1b5f492d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000019_1b5f492d.szcp new file mode 100644 index 00000000..9d82314c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000019_1b5f492d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000020_5e4a940e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000020_5e4a940e.szcp new file mode 100644 index 00000000..f67dc877 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000020_5e4a940e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000021_fd7ca338.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000021_fd7ca338.szcp new file mode 100644 index 00000000..c4b6894f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000021_fd7ca338.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000022_e72e9b9b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000022_e72e9b9b.szcp new file mode 100644 index 00000000..819741d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000022_e72e9b9b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000023_21680e15.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000023_21680e15.szcp new file mode 100644 index 00000000..7f014bb4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000023_21680e15.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000024_c974d7e0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000024_c974d7e0.szcp new file mode 100644 index 00000000..e4174fdc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000024_c974d7e0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000025_9b878ef7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000025_9b878ef7.szcp new file mode 100644 index 00000000..be2b5a61 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000025_9b878ef7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000026_c8b63f2c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000026_c8b63f2c.szcp new file mode 100644 index 00000000..153cb328 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000026_c8b63f2c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000027_11d39f15.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000027_11d39f15.szcp new file mode 100644 index 00000000..e9db0713 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000027_11d39f15.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000028_19359db4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000028_19359db4.szcp new file mode 100644 index 00000000..a6a35f7d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000028_19359db4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000029_87ccbb11.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000029_87ccbb11.szcp new file mode 100644 index 00000000..0d90adcc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000029_87ccbb11.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000030_fbadd87b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000030_fbadd87b.szcp new file mode 100644 index 00000000..04e3bd59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000030_fbadd87b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000031_f0fa8c15.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000031_f0fa8c15.szcp new file mode 100644 index 00000000..dfd754da Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000031_f0fa8c15.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000032_2fae33a1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000032_2fae33a1.szcp new file mode 100644 index 00000000..d1ecca15 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000032_2fae33a1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000033_c65065dc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000033_c65065dc.szcp new file mode 100644 index 00000000..39eb90e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000033_c65065dc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000034_b93085d5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000034_b93085d5.szcp new file mode 100644 index 00000000..8ee2ff7a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000034_b93085d5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000035_4791579c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000035_4791579c.szcp new file mode 100644 index 00000000..c41d7ae1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000035_4791579c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000036_47d0edc9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000036_47d0edc9.szcp new file mode 100644 index 00000000..2fb135c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000036_47d0edc9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000037_12c7bfb1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000037_12c7bfb1.szcp new file mode 100644 index 00000000..3c8986f7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000037_12c7bfb1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000038_90d52987.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000038_90d52987.szcp new file mode 100644 index 00000000..3c22eded Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000038_90d52987.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000039_c59ccb0b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000039_c59ccb0b.szcp new file mode 100644 index 00000000..8371f80c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000039_c59ccb0b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000040_49251361.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000040_49251361.szcp new file mode 100644 index 00000000..504d9951 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000040_49251361.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000041_bdc2c3ab.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000041_bdc2c3ab.szcp new file mode 100644 index 00000000..aaba1592 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000041_bdc2c3ab.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000042_b401ae6c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000042_b401ae6c.szcp new file mode 100644 index 00000000..cccc3644 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000042_b401ae6c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000043_6c7b677d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000043_6c7b677d.szcp new file mode 100644 index 00000000..ddb38489 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000043_6c7b677d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000044_6c0773d3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000044_6c0773d3.szcp new file mode 100644 index 00000000..605218df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000044_6c0773d3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000045_f1604500.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000045_f1604500.szcp new file mode 100644 index 00000000..7ef2c65f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000045_f1604500.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000046_87defba2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000046_87defba2.szcp new file mode 100644 index 00000000..ce95cb69 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000046_87defba2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000047_f21ee7cc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000047_f21ee7cc.szcp new file mode 100644 index 00000000..056b6e8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000047_f21ee7cc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000048_b834cb08.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000048_b834cb08.szcp new file mode 100644 index 00000000..5a85f6c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000048_b834cb08.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000049_8f5968c7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000049_8f5968c7.szcp new file mode 100644 index 00000000..8a7abc2b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000049_8f5968c7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000050_a50311fc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000050_a50311fc.szcp new file mode 100644 index 00000000..4e77cd72 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000050_a50311fc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000051_b089d169.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000051_b089d169.szcp new file mode 100644 index 00000000..976c261a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000051_b089d169.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000052_fae8eb16.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000052_fae8eb16.szcp new file mode 100644 index 00000000..51decf9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000052_fae8eb16.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000053_0fbc9fac.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000053_0fbc9fac.szcp new file mode 100644 index 00000000..8043ed09 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000053_0fbc9fac.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000054_bf952c45.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000054_bf952c45.szcp new file mode 100644 index 00000000..95df6709 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000054_bf952c45.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000055_b047a858.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000055_b047a858.szcp new file mode 100644 index 00000000..3f4c5679 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000055_b047a858.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000056_4f137d2c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000056_4f137d2c.szcp new file mode 100644 index 00000000..765a9887 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000056_4f137d2c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000057_ffc22687.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000057_ffc22687.szcp new file mode 100644 index 00000000..ef939c47 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000057_ffc22687.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000058_7d4c4419.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000058_7d4c4419.szcp new file mode 100644 index 00000000..84890b38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000058_7d4c4419.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000059_7b62a55e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000059_7b62a55e.szcp new file mode 100644 index 00000000..fb05b056 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000059_7b62a55e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000060_cbd079b8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000060_cbd079b8.szcp new file mode 100644 index 00000000..fd9f7140 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000060_cbd079b8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000061_1de805bb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000061_1de805bb.szcp new file mode 100644 index 00000000..f408e57f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000061_1de805bb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000062_a05daacb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000062_a05daacb.szcp new file mode 100644 index 00000000..0ce980b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000062_a05daacb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000063_789d5f45.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000063_789d5f45.szcp new file mode 100644 index 00000000..9a6ffc46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_040/checkpoints/checkpoint_00000000000000000063_789d5f45.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000001_1fa93fe4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000001_1fa93fe4.szar new file mode 100644 index 00000000..77f63b1b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000001_1fa93fe4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000002_a0b9e910.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000002_a0b9e910.szar new file mode 100644 index 00000000..e034b049 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000002_a0b9e910.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000003_e7191c0f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000003_e7191c0f.szar new file mode 100644 index 00000000..84f3666d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000003_e7191c0f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000004_7e353158.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000004_7e353158.szar new file mode 100644 index 00000000..0986cb22 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000004_7e353158.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000005_78ab6a88.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000005_78ab6a88.szar new file mode 100644 index 00000000..8159d92e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000005_78ab6a88.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000006_7190d7e8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000006_7190d7e8.szar new file mode 100644 index 00000000..a688d59d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000006_7190d7e8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000007_c5d92d7e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000007_c5d92d7e.szar new file mode 100644 index 00000000..b3ec5300 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000007_c5d92d7e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000008_c254d18f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000008_c254d18f.szar new file mode 100644 index 00000000..a89392f7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000008_c254d18f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000009_8040d6ea.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000009_8040d6ea.szar new file mode 100644 index 00000000..cac47da7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000009_8040d6ea.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000010_7024ad82.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000010_7024ad82.szar new file mode 100644 index 00000000..db0a4f24 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000010_7024ad82.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000011_7245f9c7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000011_7245f9c7.szar new file mode 100644 index 00000000..8c086614 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000011_7245f9c7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000012_e547c8a5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000012_e547c8a5.szar new file mode 100644 index 00000000..b93db094 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000012_e547c8a5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000013_1265b820.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000013_1265b820.szar new file mode 100644 index 00000000..d7f31071 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000013_1265b820.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000014_b8b904ba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000014_b8b904ba.szar new file mode 100644 index 00000000..4d59881d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000014_b8b904ba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000015_1539fe33.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000015_1539fe33.szar new file mode 100644 index 00000000..3c985698 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000015_1539fe33.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000016_6c23ae79.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000016_6c23ae79.szar new file mode 100644 index 00000000..79fcf74e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000016_6c23ae79.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000017_a929cf6b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000017_a929cf6b.szar new file mode 100644 index 00000000..a896e712 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000017_a929cf6b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000018_c3ca09e8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000018_c3ca09e8.szar new file mode 100644 index 00000000..762edbec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000018_c3ca09e8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000019_006d5f38.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000019_006d5f38.szar new file mode 100644 index 00000000..4a027e03 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000019_006d5f38.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000020_35334c75.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000020_35334c75.szar new file mode 100644 index 00000000..c242e2e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000020_35334c75.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000021_a38e3ae3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000021_a38e3ae3.szar new file mode 100644 index 00000000..33cddc83 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000021_a38e3ae3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000022_afa38c35.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000022_afa38c35.szar new file mode 100644 index 00000000..8da1c927 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000022_afa38c35.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000023_327f2dfa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000023_327f2dfa.szar new file mode 100644 index 00000000..a12930ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000023_327f2dfa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000024_19e5ea40.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000024_19e5ea40.szar new file mode 100644 index 00000000..eff507d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000024_19e5ea40.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000025_0da0f50a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000025_0da0f50a.szar new file mode 100644 index 00000000..bc23db69 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000025_0da0f50a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000026_9fadabb3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000026_9fadabb3.szar new file mode 100644 index 00000000..eaec7b9b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000026_9fadabb3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000027_45ec404c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000027_45ec404c.szar new file mode 100644 index 00000000..3f1a7601 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000027_45ec404c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000028_a87cc5c5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000028_a87cc5c5.szar new file mode 100644 index 00000000..c6b9c3d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000028_a87cc5c5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000029_43454f25.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000029_43454f25.szar new file mode 100644 index 00000000..530ce51c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000029_43454f25.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000030_2b3b3dfa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000030_2b3b3dfa.szar new file mode 100644 index 00000000..573e13d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000030_2b3b3dfa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000031_76200902.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000031_76200902.szar new file mode 100644 index 00000000..71d757d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000031_76200902.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000032_b81909f4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000032_b81909f4.szar new file mode 100644 index 00000000..677ffeaf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000032_b81909f4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000033_02c3e495.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000033_02c3e495.szar new file mode 100644 index 00000000..206c5858 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000033_02c3e495.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000034_66bc93af.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000034_66bc93af.szar new file mode 100644 index 00000000..b08cb57d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000034_66bc93af.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000035_6fb5a475.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000035_6fb5a475.szar new file mode 100644 index 00000000..9130bf2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000035_6fb5a475.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000036_19c99a26.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000036_19c99a26.szar new file mode 100644 index 00000000..1b59ab6c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000036_19c99a26.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000037_17233b16.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000037_17233b16.szar new file mode 100644 index 00000000..8dd540d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000037_17233b16.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000038_78185b2f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000038_78185b2f.szar new file mode 100644 index 00000000..bebb8586 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000038_78185b2f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000039_d75f30a0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000039_d75f30a0.szar new file mode 100644 index 00000000..dd54d29e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000039_d75f30a0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000040_e43cad07.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000040_e43cad07.szar new file mode 100644 index 00000000..def74a06 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000040_e43cad07.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000041_dbf9bdfb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000041_dbf9bdfb.szar new file mode 100644 index 00000000..fe7e5c93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000041_dbf9bdfb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000042_e8c0ea4b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000042_e8c0ea4b.szar new file mode 100644 index 00000000..b1372993 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000042_e8c0ea4b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000043_9f3a0768.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000043_9f3a0768.szar new file mode 100644 index 00000000..f77eb473 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000043_9f3a0768.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000044_4efe3063.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000044_4efe3063.szar new file mode 100644 index 00000000..612c37c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000044_4efe3063.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000045_cbcf4cdc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000045_cbcf4cdc.szar new file mode 100644 index 00000000..e4cc0726 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000045_cbcf4cdc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000046_ae2edb2b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000046_ae2edb2b.szar new file mode 100644 index 00000000..d75b4969 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000046_ae2edb2b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000047_cd7f1117.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000047_cd7f1117.szar new file mode 100644 index 00000000..0880e7e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000047_cd7f1117.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000048_da867a68.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000048_da867a68.szar new file mode 100644 index 00000000..10216b02 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000048_da867a68.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000049_17f93d2a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000049_17f93d2a.szar new file mode 100644 index 00000000..477d8605 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000049_17f93d2a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000050_22393e1f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000050_22393e1f.szar new file mode 100644 index 00000000..bd123509 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000050_22393e1f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000051_74fae83a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000051_74fae83a.szar new file mode 100644 index 00000000..29852e4f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000051_74fae83a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000052_65328aab.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000052_65328aab.szar new file mode 100644 index 00000000..626eb416 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000052_65328aab.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000053_0285f086.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000053_0285f086.szar new file mode 100644 index 00000000..5f9325cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000053_0285f086.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000054_775ba76f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000054_775ba76f.szar new file mode 100644 index 00000000..def09808 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000054_775ba76f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000055_d806d8e6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000055_d806d8e6.szar new file mode 100644 index 00000000..4886489f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000055_d806d8e6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000056_8c3dd3cd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000056_8c3dd3cd.szar new file mode 100644 index 00000000..96e87a57 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000056_8c3dd3cd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000057_0c2abf87.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000057_0c2abf87.szar new file mode 100644 index 00000000..d47192b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000057_0c2abf87.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000058_f4b8cbcf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000058_f4b8cbcf.szar new file mode 100644 index 00000000..c591c33d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000058_f4b8cbcf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000059_3a400692.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000059_3a400692.szar new file mode 100644 index 00000000..76fdbec2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000059_3a400692.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000060_b9b4659e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000060_b9b4659e.szar new file mode 100644 index 00000000..589def38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000060_b9b4659e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000061_6851b7fa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000061_6851b7fa.szar new file mode 100644 index 00000000..1766035f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000061_6851b7fa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000062_7433c70e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000062_7433c70e.szar new file mode 100644 index 00000000..68022903 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000062_7433c70e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000063_557b634e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000063_557b634e.szar new file mode 100644 index 00000000..2f6561a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000063_557b634e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000064_2e0c741e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000064_2e0c741e.szar new file mode 100644 index 00000000..669bfd50 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000064_2e0c741e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000065_18fc98da.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000065_18fc98da.szar new file mode 100644 index 00000000..d4aee845 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/archive/delta_00000000000000000065_18fc98da.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000001_2a4351d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000001_2a4351d1.szcp new file mode 100644 index 00000000..47d1cca9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000001_2a4351d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000002_66670787.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000002_66670787.szcp new file mode 100644 index 00000000..0f622093 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000002_66670787.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000003_2160a1db.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000003_2160a1db.szcp new file mode 100644 index 00000000..024b5aca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000003_2160a1db.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000004_306c717d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000004_306c717d.szcp new file mode 100644 index 00000000..ac9803e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000004_306c717d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000005_41516fd7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000005_41516fd7.szcp new file mode 100644 index 00000000..59c66735 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000005_41516fd7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000006_2a7974e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000006_2a7974e9.szcp new file mode 100644 index 00000000..7aad3b16 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000006_2a7974e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000007_332cfe16.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000007_332cfe16.szcp new file mode 100644 index 00000000..8d424b7d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000007_332cfe16.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000008_f892d7f3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000008_f892d7f3.szcp new file mode 100644 index 00000000..a2d1cacf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000008_f892d7f3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000009_392991bb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000009_392991bb.szcp new file mode 100644 index 00000000..f39dba9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000009_392991bb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000010_180a4d6c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000010_180a4d6c.szcp new file mode 100644 index 00000000..cc84fba8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000010_180a4d6c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000011_9a87eb6a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000011_9a87eb6a.szcp new file mode 100644 index 00000000..3de65320 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000011_9a87eb6a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000012_efe99a93.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000012_efe99a93.szcp new file mode 100644 index 00000000..735f2d4a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000012_efe99a93.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000013_57cc3440.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000013_57cc3440.szcp new file mode 100644 index 00000000..87670e18 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000013_57cc3440.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000014_4850c4fe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000014_4850c4fe.szcp new file mode 100644 index 00000000..e65a8865 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000014_4850c4fe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000015_a326d3b0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000015_a326d3b0.szcp new file mode 100644 index 00000000..29236b84 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000015_a326d3b0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000016_4e5291f1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000016_4e5291f1.szcp new file mode 100644 index 00000000..59404679 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000016_4e5291f1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000017_274a1c72.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000017_274a1c72.szcp new file mode 100644 index 00000000..79fd5dbe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000017_274a1c72.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000018_d9dc085e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000018_d9dc085e.szcp new file mode 100644 index 00000000..91abd0d2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000018_d9dc085e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000019_6918d9c9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000019_6918d9c9.szcp new file mode 100644 index 00000000..98e53953 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000019_6918d9c9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000020_b8256386.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000020_b8256386.szcp new file mode 100644 index 00000000..216a6b0d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000020_b8256386.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000021_4afd9dd2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000021_4afd9dd2.szcp new file mode 100644 index 00000000..933f7284 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000021_4afd9dd2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000022_d76ae68a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000022_d76ae68a.szcp new file mode 100644 index 00000000..d78ef207 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000022_d76ae68a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000023_6b89db57.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000023_6b89db57.szcp new file mode 100644 index 00000000..97d9a8a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000023_6b89db57.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000024_4a16ac85.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000024_4a16ac85.szcp new file mode 100644 index 00000000..12465326 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000024_4a16ac85.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000025_7d3aefb6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000025_7d3aefb6.szcp new file mode 100644 index 00000000..4b16409d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000025_7d3aefb6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000026_16a5622f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000026_16a5622f.szcp new file mode 100644 index 00000000..587729b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000026_16a5622f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000027_91eaeab9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000027_91eaeab9.szcp new file mode 100644 index 00000000..80f6e8a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000027_91eaeab9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000028_4db28be9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000028_4db28be9.szcp new file mode 100644 index 00000000..87c5dec0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000028_4db28be9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000029_5ace080a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000029_5ace080a.szcp new file mode 100644 index 00000000..40404462 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000029_5ace080a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000030_50f889e2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000030_50f889e2.szcp new file mode 100644 index 00000000..13466251 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000030_50f889e2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000031_b383ba60.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000031_b383ba60.szcp new file mode 100644 index 00000000..7447ffdb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000031_b383ba60.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000032_98ec41ba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000032_98ec41ba.szcp new file mode 100644 index 00000000..8efb5081 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000032_98ec41ba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000033_e92c48ee.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000033_e92c48ee.szcp new file mode 100644 index 00000000..37d70ffa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000033_e92c48ee.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000034_0bc89ef0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000034_0bc89ef0.szcp new file mode 100644 index 00000000..4ab4c8d0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000034_0bc89ef0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000035_0c589444.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000035_0c589444.szcp new file mode 100644 index 00000000..51ef26cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000035_0c589444.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000036_69f5e666.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000036_69f5e666.szcp new file mode 100644 index 00000000..9b5592a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000036_69f5e666.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000037_8aea5a9f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000037_8aea5a9f.szcp new file mode 100644 index 00000000..7388d24c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000037_8aea5a9f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000038_fe41abbc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000038_fe41abbc.szcp new file mode 100644 index 00000000..015cf626 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000038_fe41abbc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000039_3388cf57.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000039_3388cf57.szcp new file mode 100644 index 00000000..66bca6be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000039_3388cf57.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000040_1ee75952.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000040_1ee75952.szcp new file mode 100644 index 00000000..e9ba406f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000040_1ee75952.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000041_529689ac.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000041_529689ac.szcp new file mode 100644 index 00000000..411db9c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000041_529689ac.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000042_1412e36a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000042_1412e36a.szcp new file mode 100644 index 00000000..21500ba1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000042_1412e36a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000043_efd399fa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000043_efd399fa.szcp new file mode 100644 index 00000000..ddef1ca9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000043_efd399fa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000044_990e833b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000044_990e833b.szcp new file mode 100644 index 00000000..85f8dd1b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000044_990e833b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000045_312b723a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000045_312b723a.szcp new file mode 100644 index 00000000..9ca394e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000045_312b723a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000046_36e3321e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000046_36e3321e.szcp new file mode 100644 index 00000000..1b4e6009 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000046_36e3321e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000047_cf44cffe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000047_cf44cffe.szcp new file mode 100644 index 00000000..ed842777 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000047_cf44cffe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000048_0a80fb25.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000048_0a80fb25.szcp new file mode 100644 index 00000000..4d2392b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000048_0a80fb25.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000049_a6f49978.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000049_a6f49978.szcp new file mode 100644 index 00000000..47add213 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000049_a6f49978.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000050_49370b53.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000050_49370b53.szcp new file mode 100644 index 00000000..7668614c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000050_49370b53.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000051_16146754.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000051_16146754.szcp new file mode 100644 index 00000000..7575f0d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000051_16146754.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000052_06ca6963.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000052_06ca6963.szcp new file mode 100644 index 00000000..30d68dbe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000052_06ca6963.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000053_6388028d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000053_6388028d.szcp new file mode 100644 index 00000000..2169f64b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000053_6388028d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000054_a26cc86b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000054_a26cc86b.szcp new file mode 100644 index 00000000..860e2821 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000054_a26cc86b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000055_fcb01c3d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000055_fcb01c3d.szcp new file mode 100644 index 00000000..b4cb749f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000055_fcb01c3d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000056_ab878e63.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000056_ab878e63.szcp new file mode 100644 index 00000000..ed9c9ea3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000056_ab878e63.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000057_688dedf3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000057_688dedf3.szcp new file mode 100644 index 00000000..46782d97 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000057_688dedf3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000058_bf9c95e3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000058_bf9c95e3.szcp new file mode 100644 index 00000000..26743c9f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000058_bf9c95e3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000059_6c1040cb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000059_6c1040cb.szcp new file mode 100644 index 00000000..98ded521 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000059_6c1040cb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000060_eb2c0927.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000060_eb2c0927.szcp new file mode 100644 index 00000000..9cf086cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000060_eb2c0927.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000061_acd38534.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000061_acd38534.szcp new file mode 100644 index 00000000..f3de3290 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000061_acd38534.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000062_1a034ab4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000062_1a034ab4.szcp new file mode 100644 index 00000000..e7d15235 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000062_1a034ab4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000063_a43d0464.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000063_a43d0464.szcp new file mode 100644 index 00000000..bc56cb7d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000063_a43d0464.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000064_4ad6f102.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000064_4ad6f102.szcp new file mode 100644 index 00000000..46ea0789 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000064_4ad6f102.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000065_4612c0ba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000065_4612c0ba.szcp new file mode 100644 index 00000000..17d0d536 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_041/checkpoints/checkpoint_00000000000000000065_4612c0ba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000001_a9de71e4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000001_a9de71e4.szar new file mode 100644 index 00000000..a4a38cb3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000001_a9de71e4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000002_26e849c7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000002_26e849c7.szar new file mode 100644 index 00000000..873a95d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000002_26e849c7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000003_413bcbb9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000003_413bcbb9.szar new file mode 100644 index 00000000..bb80379f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000003_413bcbb9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000004_0f79b6e5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000004_0f79b6e5.szar new file mode 100644 index 00000000..8726a860 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000004_0f79b6e5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000005_d2f5cdc2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000005_d2f5cdc2.szar new file mode 100644 index 00000000..981123b2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000005_d2f5cdc2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000006_9e6620a9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000006_9e6620a9.szar new file mode 100644 index 00000000..9db2d00a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000006_9e6620a9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000007_c9a4ab9a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000007_c9a4ab9a.szar new file mode 100644 index 00000000..e5bafc15 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000007_c9a4ab9a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000008_549a3d6b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000008_549a3d6b.szar new file mode 100644 index 00000000..c7e51e28 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000008_549a3d6b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000009_4ef3d067.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000009_4ef3d067.szar new file mode 100644 index 00000000..8bdf0f86 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000009_4ef3d067.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000010_67b03411.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000010_67b03411.szar new file mode 100644 index 00000000..b00829ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000010_67b03411.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000011_ba80fff3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000011_ba80fff3.szar new file mode 100644 index 00000000..fea2b7f7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000011_ba80fff3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000012_e35ff8e2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000012_e35ff8e2.szar new file mode 100644 index 00000000..4076740e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000012_e35ff8e2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000013_339fb6a1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000013_339fb6a1.szar new file mode 100644 index 00000000..bf59c6ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000013_339fb6a1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000014_a87dbd99.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000014_a87dbd99.szar new file mode 100644 index 00000000..cb6f047d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000014_a87dbd99.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000015_91d7ba96.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000015_91d7ba96.szar new file mode 100644 index 00000000..79f38933 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000015_91d7ba96.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000016_02f5b04f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000016_02f5b04f.szar new file mode 100644 index 00000000..c64c1c46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000016_02f5b04f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000017_470476b4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000017_470476b4.szar new file mode 100644 index 00000000..fddf913d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000017_470476b4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000018_94f04322.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000018_94f04322.szar new file mode 100644 index 00000000..f93543c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000018_94f04322.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000019_424b33c1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000019_424b33c1.szar new file mode 100644 index 00000000..1161d578 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000019_424b33c1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000020_d7258a5c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000020_d7258a5c.szar new file mode 100644 index 00000000..d168c62a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000020_d7258a5c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000021_98566b06.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000021_98566b06.szar new file mode 100644 index 00000000..5a2183e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000021_98566b06.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000022_8befd9ca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000022_8befd9ca.szar new file mode 100644 index 00000000..fd918eeb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000022_8befd9ca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000023_808d9a93.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000023_808d9a93.szar new file mode 100644 index 00000000..b25f6385 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000023_808d9a93.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000024_f744385d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000024_f744385d.szar new file mode 100644 index 00000000..81783c81 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000024_f744385d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000025_6844fd0e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000025_6844fd0e.szar new file mode 100644 index 00000000..73089fe2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000025_6844fd0e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000026_6fe7b700.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000026_6fe7b700.szar new file mode 100644 index 00000000..1c652464 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000026_6fe7b700.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000027_a57bab33.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000027_a57bab33.szar new file mode 100644 index 00000000..c24f663e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000027_a57bab33.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000028_fbb6e6f7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000028_fbb6e6f7.szar new file mode 100644 index 00000000..87f81981 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000028_fbb6e6f7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000029_8fa1c342.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000029_8fa1c342.szar new file mode 100644 index 00000000..ca6c2bca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000029_8fa1c342.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000030_f1555f18.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000030_f1555f18.szar new file mode 100644 index 00000000..efd5c147 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000030_f1555f18.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000031_489ce3d1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000031_489ce3d1.szar new file mode 100644 index 00000000..1eb74c0a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000031_489ce3d1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000032_184477c5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000032_184477c5.szar new file mode 100644 index 00000000..484ddb24 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000032_184477c5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000033_1fb40ea5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000033_1fb40ea5.szar new file mode 100644 index 00000000..ff88c4a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000033_1fb40ea5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000034_3b2addfe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000034_3b2addfe.szar new file mode 100644 index 00000000..d219358e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000034_3b2addfe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000035_9cc15b6c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000035_9cc15b6c.szar new file mode 100644 index 00000000..5acda95a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000035_9cc15b6c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000036_4f337e59.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000036_4f337e59.szar new file mode 100644 index 00000000..c144eea6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000036_4f337e59.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000037_3f91bf86.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000037_3f91bf86.szar new file mode 100644 index 00000000..709d2f08 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000037_3f91bf86.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000038_18275b00.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000038_18275b00.szar new file mode 100644 index 00000000..e50d3049 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000038_18275b00.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000039_fc5cf53b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000039_fc5cf53b.szar new file mode 100644 index 00000000..8ae30316 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000039_fc5cf53b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000040_2c48bb6f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000040_2c48bb6f.szar new file mode 100644 index 00000000..08b1f3fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000040_2c48bb6f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000041_72a378aa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000041_72a378aa.szar new file mode 100644 index 00000000..68241335 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000041_72a378aa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000042_0b816992.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000042_0b816992.szar new file mode 100644 index 00000000..a6cc08e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000042_0b816992.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000043_33e2c357.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000043_33e2c357.szar new file mode 100644 index 00000000..669e7575 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000043_33e2c357.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000044_dc4c6f7d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000044_dc4c6f7d.szar new file mode 100644 index 00000000..f89ca6a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000044_dc4c6f7d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000045_73cde051.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000045_73cde051.szar new file mode 100644 index 00000000..853f43eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000045_73cde051.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000046_18aebfe1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000046_18aebfe1.szar new file mode 100644 index 00000000..f34037d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000046_18aebfe1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000047_58cda94b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000047_58cda94b.szar new file mode 100644 index 00000000..5e0ece22 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000047_58cda94b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000048_0928b221.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000048_0928b221.szar new file mode 100644 index 00000000..e9786453 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000048_0928b221.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000049_a01c950b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000049_a01c950b.szar new file mode 100644 index 00000000..1ab19f50 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000049_a01c950b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000050_b9a2a5d9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000050_b9a2a5d9.szar new file mode 100644 index 00000000..99b0115a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000050_b9a2a5d9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000051_e8ac6f92.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000051_e8ac6f92.szar new file mode 100644 index 00000000..b31ae9a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000051_e8ac6f92.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000052_54f2daad.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000052_54f2daad.szar new file mode 100644 index 00000000..54bc0e05 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000052_54f2daad.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000053_1f3a25f9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000053_1f3a25f9.szar new file mode 100644 index 00000000..1b9507f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000053_1f3a25f9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000054_b41db9e3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000054_b41db9e3.szar new file mode 100644 index 00000000..f4264497 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000054_b41db9e3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000055_1093020d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000055_1093020d.szar new file mode 100644 index 00000000..33d98ba7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000055_1093020d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000056_8a117b72.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000056_8a117b72.szar new file mode 100644 index 00000000..ba41ca5a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000056_8a117b72.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000057_c1d98623.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000057_c1d98623.szar new file mode 100644 index 00000000..f183abb2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000057_c1d98623.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000058_34853208.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000058_34853208.szar new file mode 100644 index 00000000..b8e5c08c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000058_34853208.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000059_c8fa9bb1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000059_c8fa9bb1.szar new file mode 100644 index 00000000..4d163125 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000059_c8fa9bb1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000060_7d516e16.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000060_7d516e16.szar new file mode 100644 index 00000000..3e84f331 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000060_7d516e16.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000061_8ee51660.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000061_8ee51660.szar new file mode 100644 index 00000000..003dee23 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000061_8ee51660.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000062_2d525020.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000062_2d525020.szar new file mode 100644 index 00000000..da5808a9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000062_2d525020.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000063_54eff5aa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000063_54eff5aa.szar new file mode 100644 index 00000000..b2533bf2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000063_54eff5aa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000064_700618e7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000064_700618e7.szar new file mode 100644 index 00000000..9590b4e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000064_700618e7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000065_9dec9d75.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000065_9dec9d75.szar new file mode 100644 index 00000000..4fb43675 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000065_9dec9d75.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000066_fe31370e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000066_fe31370e.szar new file mode 100644 index 00000000..3b2850f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000066_fe31370e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000067_356da461.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000067_356da461.szar new file mode 100644 index 00000000..2d09ba38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000067_356da461.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000068_5fe8a234.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000068_5fe8a234.szar new file mode 100644 index 00000000..e78bee60 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000068_5fe8a234.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000069_aa7e0e2c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000069_aa7e0e2c.szar new file mode 100644 index 00000000..098e4c8d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000069_aa7e0e2c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000070_c45f28c5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000070_c45f28c5.szar new file mode 100644 index 00000000..9d96fc49 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000070_c45f28c5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000071_7444f01f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000071_7444f01f.szar new file mode 100644 index 00000000..c0285d46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000071_7444f01f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000072_51497728.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000072_51497728.szar new file mode 100644 index 00000000..2226f294 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/archive/delta_00000000000000000072_51497728.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000001_8893af16.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000001_8893af16.szcp new file mode 100644 index 00000000..963966fc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000001_8893af16.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000002_d38cc981.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000002_d38cc981.szcp new file mode 100644 index 00000000..516463ea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000002_d38cc981.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000003_5d7d7eac.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000003_5d7d7eac.szcp new file mode 100644 index 00000000..04d103dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000003_5d7d7eac.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000004_178279e0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000004_178279e0.szcp new file mode 100644 index 00000000..368db9a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000004_178279e0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000005_847046d8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000005_847046d8.szcp new file mode 100644 index 00000000..c16acf66 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000005_847046d8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000006_f17829de.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000006_f17829de.szcp new file mode 100644 index 00000000..36aa70d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000006_f17829de.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000007_b2cd623e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000007_b2cd623e.szcp new file mode 100644 index 00000000..d7fb8847 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000007_b2cd623e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000008_88a5083b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000008_88a5083b.szcp new file mode 100644 index 00000000..11ff2ea0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000008_88a5083b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000009_137a859b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000009_137a859b.szcp new file mode 100644 index 00000000..6d0fad93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000009_137a859b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000010_824ec2a7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000010_824ec2a7.szcp new file mode 100644 index 00000000..37ddcb18 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000010_824ec2a7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000011_2073dc8f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000011_2073dc8f.szcp new file mode 100644 index 00000000..1bcf155a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000011_2073dc8f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000012_91233fe3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000012_91233fe3.szcp new file mode 100644 index 00000000..0fadebae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000012_91233fe3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000013_9a3cd289.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000013_9a3cd289.szcp new file mode 100644 index 00000000..edb0fe68 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000013_9a3cd289.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000014_3ce8753f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000014_3ce8753f.szcp new file mode 100644 index 00000000..7d8542a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000014_3ce8753f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000015_1c357c34.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000015_1c357c34.szcp new file mode 100644 index 00000000..6c41a0b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000015_1c357c34.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000016_f4d77654.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000016_f4d77654.szcp new file mode 100644 index 00000000..774b53e4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000016_f4d77654.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000017_513f9159.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000017_513f9159.szcp new file mode 100644 index 00000000..874b3f28 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000017_513f9159.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000018_1bdacd60.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000018_1bdacd60.szcp new file mode 100644 index 00000000..1f07b234 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000018_1bdacd60.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000019_3c368177.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000019_3c368177.szcp new file mode 100644 index 00000000..0681be0a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000019_3c368177.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000020_2eae869b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000020_2eae869b.szcp new file mode 100644 index 00000000..b9625220 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000020_2eae869b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000021_01b47b6d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000021_01b47b6d.szcp new file mode 100644 index 00000000..1da43ebc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000021_01b47b6d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000022_8f1cfd28.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000022_8f1cfd28.szcp new file mode 100644 index 00000000..63fa7913 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000022_8f1cfd28.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000023_c50e5893.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000023_c50e5893.szcp new file mode 100644 index 00000000..83110a5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000023_c50e5893.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000024_2ed905f1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000024_2ed905f1.szcp new file mode 100644 index 00000000..3080fbf0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000024_2ed905f1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000025_75457059.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000025_75457059.szcp new file mode 100644 index 00000000..9b014e9b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000025_75457059.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000026_b4c0756a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000026_b4c0756a.szcp new file mode 100644 index 00000000..c222469a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000026_b4c0756a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000027_55158b74.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000027_55158b74.szcp new file mode 100644 index 00000000..33eac78d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000027_55158b74.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000028_eda8c24c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000028_eda8c24c.szcp new file mode 100644 index 00000000..1587a765 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000028_eda8c24c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000029_aca63472.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000029_aca63472.szcp new file mode 100644 index 00000000..b41c7e4f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000029_aca63472.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000030_a303ced1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000030_a303ced1.szcp new file mode 100644 index 00000000..742fff30 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000030_a303ced1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000031_0684c818.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000031_0684c818.szcp new file mode 100644 index 00000000..7e09056b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000031_0684c818.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000032_1aae4632.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000032_1aae4632.szcp new file mode 100644 index 00000000..3b5bd086 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000032_1aae4632.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000033_d531bedb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000033_d531bedb.szcp new file mode 100644 index 00000000..e0362a7a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000033_d531bedb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000034_595121c6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000034_595121c6.szcp new file mode 100644 index 00000000..6debf74d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000034_595121c6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000035_85cff7a8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000035_85cff7a8.szcp new file mode 100644 index 00000000..4ab152a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000035_85cff7a8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000036_f0c8307b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000036_f0c8307b.szcp new file mode 100644 index 00000000..edf325ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000036_f0c8307b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000037_e15dc27e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000037_e15dc27e.szcp new file mode 100644 index 00000000..ed917795 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000037_e15dc27e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000038_647e0b5b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000038_647e0b5b.szcp new file mode 100644 index 00000000..d58b4a4e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000038_647e0b5b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000039_b8197ed2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000039_b8197ed2.szcp new file mode 100644 index 00000000..e7428375 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000039_b8197ed2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000040_3dba2011.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000040_3dba2011.szcp new file mode 100644 index 00000000..fc07bce6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000040_3dba2011.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000041_7bdb90f1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000041_7bdb90f1.szcp new file mode 100644 index 00000000..c8dc8ae0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000041_7bdb90f1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000042_048a294e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000042_048a294e.szcp new file mode 100644 index 00000000..f0fd2824 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000042_048a294e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000043_1d1ec0bd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000043_1d1ec0bd.szcp new file mode 100644 index 00000000..5f00c2d2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000043_1d1ec0bd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000044_9819e40c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000044_9819e40c.szcp new file mode 100644 index 00000000..83355db2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000044_9819e40c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000045_1368c64c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000045_1368c64c.szcp new file mode 100644 index 00000000..b1d123cb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000045_1368c64c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000046_773f3351.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000046_773f3351.szcp new file mode 100644 index 00000000..bdad4603 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000046_773f3351.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000047_1811707e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000047_1811707e.szcp new file mode 100644 index 00000000..7cf68211 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000047_1811707e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000048_98274cc3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000048_98274cc3.szcp new file mode 100644 index 00000000..da75dc41 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000048_98274cc3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000049_5a0cfce1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000049_5a0cfce1.szcp new file mode 100644 index 00000000..ce03f843 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000049_5a0cfce1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000050_0b06c776.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000050_0b06c776.szcp new file mode 100644 index 00000000..ff47a3dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000050_0b06c776.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000051_34b3f67a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000051_34b3f67a.szcp new file mode 100644 index 00000000..26814df5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000051_34b3f67a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000052_efeb74fd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000052_efeb74fd.szcp new file mode 100644 index 00000000..74f47daf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000052_efeb74fd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000053_8791d98f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000053_8791d98f.szcp new file mode 100644 index 00000000..a00ffc0b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000053_8791d98f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000054_c078de81.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000054_c078de81.szcp new file mode 100644 index 00000000..4d802949 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000054_c078de81.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000055_09e1bb3b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000055_09e1bb3b.szcp new file mode 100644 index 00000000..b15af9fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000055_09e1bb3b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000056_baa15ecc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000056_baa15ecc.szcp new file mode 100644 index 00000000..0bced312 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000056_baa15ecc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000057_19075d7d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000057_19075d7d.szcp new file mode 100644 index 00000000..8fe4a171 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000057_19075d7d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000058_9e7d0411.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000058_9e7d0411.szcp new file mode 100644 index 00000000..e7a1cd71 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000058_9e7d0411.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000059_c1482da7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000059_c1482da7.szcp new file mode 100644 index 00000000..e63b559e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000059_c1482da7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000060_56c36525.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000060_56c36525.szcp new file mode 100644 index 00000000..3ca0f524 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000060_56c36525.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000061_ddb47bf9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000061_ddb47bf9.szcp new file mode 100644 index 00000000..1e6036a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000061_ddb47bf9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000062_433a5a1d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000062_433a5a1d.szcp new file mode 100644 index 00000000..94136e64 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000062_433a5a1d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000063_8718ace0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000063_8718ace0.szcp new file mode 100644 index 00000000..ddd3c69b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000063_8718ace0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000064_636191b2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000064_636191b2.szcp new file mode 100644 index 00000000..b779e6a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000064_636191b2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000065_6d7a1279.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000065_6d7a1279.szcp new file mode 100644 index 00000000..f4043227 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000065_6d7a1279.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000066_443043f8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000066_443043f8.szcp new file mode 100644 index 00000000..5915e803 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000066_443043f8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000067_d4b774b2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000067_d4b774b2.szcp new file mode 100644 index 00000000..2fb2c430 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000067_d4b774b2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000068_cc1c0b43.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000068_cc1c0b43.szcp new file mode 100644 index 00000000..ed5067c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000068_cc1c0b43.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000069_f6458a20.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000069_f6458a20.szcp new file mode 100644 index 00000000..0a555bb7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000069_f6458a20.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000070_92d0ca0d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000070_92d0ca0d.szcp new file mode 100644 index 00000000..9d8dfe49 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000070_92d0ca0d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000071_5a6fd427.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000071_5a6fd427.szcp new file mode 100644 index 00000000..712711e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000071_5a6fd427.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000072_5448ec3c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000072_5448ec3c.szcp new file mode 100644 index 00000000..c10f2b20 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_042/checkpoints/checkpoint_00000000000000000072_5448ec3c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000001_3e68b9ee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000001_3e68b9ee.szar new file mode 100644 index 00000000..0eb00dab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000001_3e68b9ee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000002_da63fbcb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000002_da63fbcb.szar new file mode 100644 index 00000000..80b790a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000002_da63fbcb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000003_f1b6cceb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000003_f1b6cceb.szar new file mode 100644 index 00000000..2f8aa8ae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000003_f1b6cceb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000004_c256dbe8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000004_c256dbe8.szar new file mode 100644 index 00000000..c527428f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000004_c256dbe8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000005_d37421f6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000005_d37421f6.szar new file mode 100644 index 00000000..c4ab764d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000005_d37421f6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000006_a069ff65.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000006_a069ff65.szar new file mode 100644 index 00000000..8c30ecdf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000006_a069ff65.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000007_06fbf3e7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000007_06fbf3e7.szar new file mode 100644 index 00000000..9d4504e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000007_06fbf3e7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000008_5a19cdaa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000008_5a19cdaa.szar new file mode 100644 index 00000000..4f78d9c8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000008_5a19cdaa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000009_5d4e1c0f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000009_5d4e1c0f.szar new file mode 100644 index 00000000..b78a42ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000009_5d4e1c0f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000010_a0db700f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000010_a0db700f.szar new file mode 100644 index 00000000..d68a90ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000010_a0db700f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000011_a98b1a5e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000011_a98b1a5e.szar new file mode 100644 index 00000000..3dd49224 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000011_a98b1a5e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000012_702f227e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000012_702f227e.szar new file mode 100644 index 00000000..e41b0e2f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000012_702f227e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000013_81832e76.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000013_81832e76.szar new file mode 100644 index 00000000..95b01222 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000013_81832e76.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000014_05253408.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000014_05253408.szar new file mode 100644 index 00000000..3a649d7a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000014_05253408.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000015_95d4d740.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000015_95d4d740.szar new file mode 100644 index 00000000..4ca15f58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000015_95d4d740.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000016_e92abf3a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000016_e92abf3a.szar new file mode 100644 index 00000000..e12fa092 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000016_e92abf3a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000017_7aef7115.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000017_7aef7115.szar new file mode 100644 index 00000000..5ea58149 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000017_7aef7115.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000018_8708ae6a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000018_8708ae6a.szar new file mode 100644 index 00000000..70c107c1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000018_8708ae6a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000019_84e9dea0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000019_84e9dea0.szar new file mode 100644 index 00000000..3761716b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000019_84e9dea0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000020_5eae113a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000020_5eae113a.szar new file mode 100644 index 00000000..1cd75b54 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000020_5eae113a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000021_33e1bdf9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000021_33e1bdf9.szar new file mode 100644 index 00000000..97d491f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000021_33e1bdf9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000022_62d11f48.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000022_62d11f48.szar new file mode 100644 index 00000000..118a2972 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000022_62d11f48.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000023_3af51c7a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000023_3af51c7a.szar new file mode 100644 index 00000000..78e56b52 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000023_3af51c7a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000024_9701748b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000024_9701748b.szar new file mode 100644 index 00000000..e607f5f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000024_9701748b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000025_cfb93729.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000025_cfb93729.szar new file mode 100644 index 00000000..3f5b49b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000025_cfb93729.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000026_34bf31c3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000026_34bf31c3.szar new file mode 100644 index 00000000..ded573d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000026_34bf31c3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000027_53ebd3b7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000027_53ebd3b7.szar new file mode 100644 index 00000000..a45497f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000027_53ebd3b7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000028_780b55cf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000028_780b55cf.szar new file mode 100644 index 00000000..cc6bc717 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000028_780b55cf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000029_a223c308.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000029_a223c308.szar new file mode 100644 index 00000000..4a0024d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000029_a223c308.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000030_e97d5dea.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000030_e97d5dea.szar new file mode 100644 index 00000000..27dcbcec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000030_e97d5dea.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000031_0050d6f1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000031_0050d6f1.szar new file mode 100644 index 00000000..045d2956 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000031_0050d6f1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000032_09517ef1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000032_09517ef1.szar new file mode 100644 index 00000000..76e458bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000032_09517ef1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000033_ab0c0cae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000033_ab0c0cae.szar new file mode 100644 index 00000000..13d80ba5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000033_ab0c0cae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000034_aad17731.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000034_aad17731.szar new file mode 100644 index 00000000..0a7ca263 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000034_aad17731.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000035_5e953843.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000035_5e953843.szar new file mode 100644 index 00000000..4b12f451 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000035_5e953843.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000036_7ad91b47.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000036_7ad91b47.szar new file mode 100644 index 00000000..060ab76e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000036_7ad91b47.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000037_df9b346c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000037_df9b346c.szar new file mode 100644 index 00000000..26455cc6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000037_df9b346c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000038_c2dbaa7f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000038_c2dbaa7f.szar new file mode 100644 index 00000000..1c8d7af6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000038_c2dbaa7f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000039_2949bb08.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000039_2949bb08.szar new file mode 100644 index 00000000..c5e4e533 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000039_2949bb08.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000040_a12e3299.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000040_a12e3299.szar new file mode 100644 index 00000000..7776e60c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000040_a12e3299.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000041_a8e28d1e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000041_a8e28d1e.szar new file mode 100644 index 00000000..1b0f5e43 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000041_a8e28d1e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000042_8bdf2d2d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000042_8bdf2d2d.szar new file mode 100644 index 00000000..2942f9f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000042_8bdf2d2d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000043_aca4a7fb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000043_aca4a7fb.szar new file mode 100644 index 00000000..06914b07 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000043_aca4a7fb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000044_23acbbeb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000044_23acbbeb.szar new file mode 100644 index 00000000..9250c4ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000044_23acbbeb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000045_df3844e0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000045_df3844e0.szar new file mode 100644 index 00000000..90377351 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000045_df3844e0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000046_4cad54ad.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000046_4cad54ad.szar new file mode 100644 index 00000000..082a7c06 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000046_4cad54ad.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000047_efcefbcb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000047_efcefbcb.szar new file mode 100644 index 00000000..eeea9982 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000047_efcefbcb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000048_549fab87.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000048_549fab87.szar new file mode 100644 index 00000000..f4760a38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000048_549fab87.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000049_3e78e0b0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000049_3e78e0b0.szar new file mode 100644 index 00000000..77ce06f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000049_3e78e0b0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000050_8696b319.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000050_8696b319.szar new file mode 100644 index 00000000..5ab4d777 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000050_8696b319.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000051_0ada224a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000051_0ada224a.szar new file mode 100644 index 00000000..3ccfa981 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000051_0ada224a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000052_ffb5e54d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000052_ffb5e54d.szar new file mode 100644 index 00000000..6e775cad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000052_ffb5e54d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000053_4b929dd9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000053_4b929dd9.szar new file mode 100644 index 00000000..300b739a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000053_4b929dd9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000054_45dc6435.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000054_45dc6435.szar new file mode 100644 index 00000000..2b21f314 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000054_45dc6435.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000055_30e28972.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000055_30e28972.szar new file mode 100644 index 00000000..1468cc4b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000055_30e28972.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000056_59b7ad5d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000056_59b7ad5d.szar new file mode 100644 index 00000000..a8b1fa59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000056_59b7ad5d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000057_7f9cfa49.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000057_7f9cfa49.szar new file mode 100644 index 00000000..4b3aff59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000057_7f9cfa49.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000058_19fab835.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000058_19fab835.szar new file mode 100644 index 00000000..19e79d33 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000058_19fab835.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000059_b54c09d5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000059_b54c09d5.szar new file mode 100644 index 00000000..c6376d0a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000059_b54c09d5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000060_a739a32e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000060_a739a32e.szar new file mode 100644 index 00000000..8d46fdfe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000060_a739a32e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000061_ad6acf90.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000061_ad6acf90.szar new file mode 100644 index 00000000..3d92bb6c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000061_ad6acf90.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000062_8f62370d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000062_8f62370d.szar new file mode 100644 index 00000000..d7c2aba0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000062_8f62370d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000063_df76aafa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000063_df76aafa.szar new file mode 100644 index 00000000..b5d7729e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000063_df76aafa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000064_303682a9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000064_303682a9.szar new file mode 100644 index 00000000..3eabcceb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000064_303682a9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000065_06b90d3a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000065_06b90d3a.szar new file mode 100644 index 00000000..a211d437 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000065_06b90d3a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000066_bf553b84.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000066_bf553b84.szar new file mode 100644 index 00000000..a7dddc29 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/archive/delta_00000000000000000066_bf553b84.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000001_91baf425.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000001_91baf425.szcp new file mode 100644 index 00000000..892ecf76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000001_91baf425.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000002_d389b031.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000002_d389b031.szcp new file mode 100644 index 00000000..85183812 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000002_d389b031.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000003_987d5b1c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000003_987d5b1c.szcp new file mode 100644 index 00000000..7b4b458d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000003_987d5b1c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000004_b67d9e21.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000004_b67d9e21.szcp new file mode 100644 index 00000000..a48a7533 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000004_b67d9e21.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000005_189e3001.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000005_189e3001.szcp new file mode 100644 index 00000000..fa2cf4da Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000005_189e3001.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000006_746ba20b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000006_746ba20b.szcp new file mode 100644 index 00000000..3ba59b39 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000006_746ba20b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000007_9ea7b80d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000007_9ea7b80d.szcp new file mode 100644 index 00000000..bd37fcd4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000007_9ea7b80d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000008_b07c927d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000008_b07c927d.szcp new file mode 100644 index 00000000..e0e49c35 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000008_b07c927d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000009_845c7583.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000009_845c7583.szcp new file mode 100644 index 00000000..ec8b8c0b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000009_845c7583.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000010_84928e5e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000010_84928e5e.szcp new file mode 100644 index 00000000..51a8ac8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000010_84928e5e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000011_2ea380cf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000011_2ea380cf.szcp new file mode 100644 index 00000000..1d84b87b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000011_2ea380cf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000012_161dca93.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000012_161dca93.szcp new file mode 100644 index 00000000..2669fd3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000012_161dca93.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000013_295546f8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000013_295546f8.szcp new file mode 100644 index 00000000..e380245b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000013_295546f8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000014_4d76b043.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000014_4d76b043.szcp new file mode 100644 index 00000000..3295b769 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000014_4d76b043.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000015_f1fa202e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000015_f1fa202e.szcp new file mode 100644 index 00000000..77174ae6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000015_f1fa202e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000016_1c172f33.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000016_1c172f33.szcp new file mode 100644 index 00000000..34c89df4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000016_1c172f33.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000017_4f3c4807.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000017_4f3c4807.szcp new file mode 100644 index 00000000..3157685c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000017_4f3c4807.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000018_69e5535e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000018_69e5535e.szcp new file mode 100644 index 00000000..845bcc89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000018_69e5535e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000019_da150162.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000019_da150162.szcp new file mode 100644 index 00000000..df794e01 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000019_da150162.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000020_6a15dfa8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000020_6a15dfa8.szcp new file mode 100644 index 00000000..819890f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000020_6a15dfa8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000021_5e0d457a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000021_5e0d457a.szcp new file mode 100644 index 00000000..af26311d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000021_5e0d457a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000022_e0705399.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000022_e0705399.szcp new file mode 100644 index 00000000..c1437fb9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000022_e0705399.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000023_f13ef15f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000023_f13ef15f.szcp new file mode 100644 index 00000000..82f5facd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000023_f13ef15f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000024_65389dc6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000024_65389dc6.szcp new file mode 100644 index 00000000..fbc26fb4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000024_65389dc6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000025_41484337.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000025_41484337.szcp new file mode 100644 index 00000000..5effdc28 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000025_41484337.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000026_453fc67a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000026_453fc67a.szcp new file mode 100644 index 00000000..46d1493d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000026_453fc67a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000027_feda159f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000027_feda159f.szcp new file mode 100644 index 00000000..eb9aff17 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000027_feda159f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000028_994d09d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000028_994d09d1.szcp new file mode 100644 index 00000000..b2b535bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000028_994d09d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000029_f4912890.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000029_f4912890.szcp new file mode 100644 index 00000000..8f46458e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000029_f4912890.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000030_d66f9b26.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000030_d66f9b26.szcp new file mode 100644 index 00000000..db7d0642 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000030_d66f9b26.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000031_55e1a610.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000031_55e1a610.szcp new file mode 100644 index 00000000..8c78555a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000031_55e1a610.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000032_59e4b901.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000032_59e4b901.szcp new file mode 100644 index 00000000..a2fce7c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000032_59e4b901.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000033_752b11ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000033_752b11ce.szcp new file mode 100644 index 00000000..d2445065 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000033_752b11ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000034_528c0195.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000034_528c0195.szcp new file mode 100644 index 00000000..aedc777d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000034_528c0195.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000035_7eb7dd31.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000035_7eb7dd31.szcp new file mode 100644 index 00000000..6c54643c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000035_7eb7dd31.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000036_dd86298a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000036_dd86298a.szcp new file mode 100644 index 00000000..cff5f525 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000036_dd86298a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000037_6e84629f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000037_6e84629f.szcp new file mode 100644 index 00000000..1b2c8b9f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000037_6e84629f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000038_88ce15e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000038_88ce15e9.szcp new file mode 100644 index 00000000..e542cf35 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000038_88ce15e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000039_63f92424.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000039_63f92424.szcp new file mode 100644 index 00000000..9e016209 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000039_63f92424.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000040_65f61e79.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000040_65f61e79.szcp new file mode 100644 index 00000000..9b0c76ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000040_65f61e79.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000041_041ec766.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000041_041ec766.szcp new file mode 100644 index 00000000..c0e1f923 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000041_041ec766.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000042_cf8adcab.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000042_cf8adcab.szcp new file mode 100644 index 00000000..ffef1f4b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000042_cf8adcab.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000043_12d44be4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000043_12d44be4.szcp new file mode 100644 index 00000000..1ff39789 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000043_12d44be4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000044_f226c104.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000044_f226c104.szcp new file mode 100644 index 00000000..3caac6f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000044_f226c104.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000045_ac2a3e06.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000045_ac2a3e06.szcp new file mode 100644 index 00000000..6708febd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000045_ac2a3e06.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000046_4028f58b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000046_4028f58b.szcp new file mode 100644 index 00000000..13c4774b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000046_4028f58b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000047_2a1cb5b6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000047_2a1cb5b6.szcp new file mode 100644 index 00000000..b030e154 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000047_2a1cb5b6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000048_b3c1bd2f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000048_b3c1bd2f.szcp new file mode 100644 index 00000000..7da4c1a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000048_b3c1bd2f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000049_6f1126d3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000049_6f1126d3.szcp new file mode 100644 index 00000000..e3b00034 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000049_6f1126d3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000050_6bd73aba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000050_6bd73aba.szcp new file mode 100644 index 00000000..ceee9890 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000050_6bd73aba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000051_4e6079cd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000051_4e6079cd.szcp new file mode 100644 index 00000000..44d382bd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000051_4e6079cd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000052_86cfe3b1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000052_86cfe3b1.szcp new file mode 100644 index 00000000..78c46986 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000052_86cfe3b1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000053_e5e162c7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000053_e5e162c7.szcp new file mode 100644 index 00000000..e269e790 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000053_e5e162c7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000054_fc4cfa0c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000054_fc4cfa0c.szcp new file mode 100644 index 00000000..4437cd38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000054_fc4cfa0c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000055_7a5a7d46.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000055_7a5a7d46.szcp new file mode 100644 index 00000000..5dfaeddc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000055_7a5a7d46.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000056_8a3b0fa3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000056_8a3b0fa3.szcp new file mode 100644 index 00000000..59bd0417 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000056_8a3b0fa3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000057_381b4a2d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000057_381b4a2d.szcp new file mode 100644 index 00000000..f11da377 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000057_381b4a2d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000058_7402483d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000058_7402483d.szcp new file mode 100644 index 00000000..c7b5defb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000058_7402483d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000059_a3c4eeaf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000059_a3c4eeaf.szcp new file mode 100644 index 00000000..2b3a8cad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000059_a3c4eeaf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000060_d33940df.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000060_d33940df.szcp new file mode 100644 index 00000000..7a7c300e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000060_d33940df.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000061_f4446ab8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000061_f4446ab8.szcp new file mode 100644 index 00000000..00224bb1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000061_f4446ab8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000062_e4e99779.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000062_e4e99779.szcp new file mode 100644 index 00000000..95a0b6be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000062_e4e99779.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000063_9484b754.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000063_9484b754.szcp new file mode 100644 index 00000000..ae08f87e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000063_9484b754.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000064_d4836527.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000064_d4836527.szcp new file mode 100644 index 00000000..524328ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000064_d4836527.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000065_2defcc69.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000065_2defcc69.szcp new file mode 100644 index 00000000..d3defd89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000065_2defcc69.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000066_059e83af.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000066_059e83af.szcp new file mode 100644 index 00000000..e76e9743 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_043/checkpoints/checkpoint_00000000000000000066_059e83af.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000001_288b5bf9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000001_288b5bf9.szar new file mode 100644 index 00000000..8292fcfe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000001_288b5bf9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000002_3f914992.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000002_3f914992.szar new file mode 100644 index 00000000..e957645c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000002_3f914992.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000003_3f00a6d5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000003_3f00a6d5.szar new file mode 100644 index 00000000..0c989afb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000003_3f00a6d5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000004_95d14c2d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000004_95d14c2d.szar new file mode 100644 index 00000000..4bf8bd72 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000004_95d14c2d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000005_60712c98.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000005_60712c98.szar new file mode 100644 index 00000000..936e3f6a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000005_60712c98.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000006_0bce67d6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000006_0bce67d6.szar new file mode 100644 index 00000000..66957509 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000006_0bce67d6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000007_2591741f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000007_2591741f.szar new file mode 100644 index 00000000..3958f0f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000007_2591741f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000008_61d099db.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000008_61d099db.szar new file mode 100644 index 00000000..75dac5a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000008_61d099db.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000009_c7eff790.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000009_c7eff790.szar new file mode 100644 index 00000000..3fdca5c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000009_c7eff790.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000010_5d5a42ba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000010_5d5a42ba.szar new file mode 100644 index 00000000..6c26343f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000010_5d5a42ba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000011_40bc1218.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000011_40bc1218.szar new file mode 100644 index 00000000..d0071d2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000011_40bc1218.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000012_2f1d9085.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000012_2f1d9085.szar new file mode 100644 index 00000000..3a4756ce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000012_2f1d9085.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000013_def7748e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000013_def7748e.szar new file mode 100644 index 00000000..f0f19328 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000013_def7748e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000014_dc920f98.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000014_dc920f98.szar new file mode 100644 index 00000000..ab6338f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000014_dc920f98.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000015_5c01389c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000015_5c01389c.szar new file mode 100644 index 00000000..4027cc73 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000015_5c01389c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000016_52c7d91e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000016_52c7d91e.szar new file mode 100644 index 00000000..44e02440 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000016_52c7d91e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000017_b7c95ee5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000017_b7c95ee5.szar new file mode 100644 index 00000000..2a1c6b60 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000017_b7c95ee5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000018_524aa8ee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000018_524aa8ee.szar new file mode 100644 index 00000000..2bd43fd3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000018_524aa8ee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000019_6f27d293.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000019_6f27d293.szar new file mode 100644 index 00000000..36d9930d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000019_6f27d293.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000020_47da3aac.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000020_47da3aac.szar new file mode 100644 index 00000000..211a5719 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000020_47da3aac.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000021_7cdec69e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000021_7cdec69e.szar new file mode 100644 index 00000000..5cdc700b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000021_7cdec69e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000022_86642f5b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000022_86642f5b.szar new file mode 100644 index 00000000..39ab84e9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000022_86642f5b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000023_d66fac80.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000023_d66fac80.szar new file mode 100644 index 00000000..eeb12fa7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000023_d66fac80.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000024_ad9a53bb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000024_ad9a53bb.szar new file mode 100644 index 00000000..e1319316 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000024_ad9a53bb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000025_1d7abd8f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000025_1d7abd8f.szar new file mode 100644 index 00000000..148c745e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000025_1d7abd8f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000026_f73f8588.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000026_f73f8588.szar new file mode 100644 index 00000000..12313e32 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000026_f73f8588.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000027_d1dd9d16.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000027_d1dd9d16.szar new file mode 100644 index 00000000..eab88d55 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000027_d1dd9d16.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000028_1dcd7a91.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000028_1dcd7a91.szar new file mode 100644 index 00000000..3f753683 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000028_1dcd7a91.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000029_4606d201.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000029_4606d201.szar new file mode 100644 index 00000000..b6c67580 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000029_4606d201.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000030_c7dfb217.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000030_c7dfb217.szar new file mode 100644 index 00000000..fdcda99e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000030_c7dfb217.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000031_079acd6b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000031_079acd6b.szar new file mode 100644 index 00000000..97d94c3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000031_079acd6b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000032_12a6cc2b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000032_12a6cc2b.szar new file mode 100644 index 00000000..4a0a98ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000032_12a6cc2b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000033_caf48bf9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000033_caf48bf9.szar new file mode 100644 index 00000000..72b19662 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000033_caf48bf9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000034_9a8ce4c2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000034_9a8ce4c2.szar new file mode 100644 index 00000000..37af0081 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000034_9a8ce4c2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000035_ccf72506.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000035_ccf72506.szar new file mode 100644 index 00000000..de4d0836 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000035_ccf72506.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000036_0e547377.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000036_0e547377.szar new file mode 100644 index 00000000..627e3089 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000036_0e547377.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000037_94f9437e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000037_94f9437e.szar new file mode 100644 index 00000000..28dc95c9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000037_94f9437e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000038_e9f78fd6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000038_e9f78fd6.szar new file mode 100644 index 00000000..01dd6965 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000038_e9f78fd6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000039_e3540b47.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000039_e3540b47.szar new file mode 100644 index 00000000..3673448c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000039_e3540b47.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000040_a37a4fd6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000040_a37a4fd6.szar new file mode 100644 index 00000000..e6460f8f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000040_a37a4fd6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000041_43e6c755.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000041_43e6c755.szar new file mode 100644 index 00000000..b8ab0f0d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000041_43e6c755.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000042_effbd746.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000042_effbd746.szar new file mode 100644 index 00000000..13b306bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000042_effbd746.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000043_c165e18e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000043_c165e18e.szar new file mode 100644 index 00000000..29c7c8c8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000043_c165e18e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000044_2f81a16b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000044_2f81a16b.szar new file mode 100644 index 00000000..dde4c6ac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000044_2f81a16b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000045_cd27a0c9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000045_cd27a0c9.szar new file mode 100644 index 00000000..b5a6ea2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000045_cd27a0c9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000046_3bb7f07a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000046_3bb7f07a.szar new file mode 100644 index 00000000..80556a36 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000046_3bb7f07a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000047_57ce6ec4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000047_57ce6ec4.szar new file mode 100644 index 00000000..7424577b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000047_57ce6ec4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000048_d47c9696.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000048_d47c9696.szar new file mode 100644 index 00000000..b3b49854 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000048_d47c9696.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000049_9f51ba14.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000049_9f51ba14.szar new file mode 100644 index 00000000..4847b168 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000049_9f51ba14.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000050_39aa6a93.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000050_39aa6a93.szar new file mode 100644 index 00000000..8a8b652d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000050_39aa6a93.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000051_dead1fbf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000051_dead1fbf.szar new file mode 100644 index 00000000..1511a3da Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000051_dead1fbf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000052_cd0c3118.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000052_cd0c3118.szar new file mode 100644 index 00000000..f77382f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000052_cd0c3118.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000053_cd0220ff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000053_cd0220ff.szar new file mode 100644 index 00000000..f9247c91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000053_cd0220ff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000054_ef9a1454.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000054_ef9a1454.szar new file mode 100644 index 00000000..82e04413 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000054_ef9a1454.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000055_21792230.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000055_21792230.szar new file mode 100644 index 00000000..5f17e957 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000055_21792230.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000056_1a62c897.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000056_1a62c897.szar new file mode 100644 index 00000000..c0863783 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000056_1a62c897.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000057_7763bd78.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000057_7763bd78.szar new file mode 100644 index 00000000..27ee179f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000057_7763bd78.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000058_1576981b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000058_1576981b.szar new file mode 100644 index 00000000..c80dfd11 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000058_1576981b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000059_132db493.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000059_132db493.szar new file mode 100644 index 00000000..d9f02d3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000059_132db493.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000060_8b77b22f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000060_8b77b22f.szar new file mode 100644 index 00000000..317f9357 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000060_8b77b22f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000061_bf46dd82.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000061_bf46dd82.szar new file mode 100644 index 00000000..71969438 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000061_bf46dd82.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000062_6a9d6371.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000062_6a9d6371.szar new file mode 100644 index 00000000..1ccb81a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000062_6a9d6371.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000063_1ebd885e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000063_1ebd885e.szar new file mode 100644 index 00000000..088323d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000063_1ebd885e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000064_c53738ab.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000064_c53738ab.szar new file mode 100644 index 00000000..fd692f32 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000064_c53738ab.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000065_ae884a6c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000065_ae884a6c.szar new file mode 100644 index 00000000..9827cc8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000065_ae884a6c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000066_0ebbdb03.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000066_0ebbdb03.szar new file mode 100644 index 00000000..c0db3e1d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000066_0ebbdb03.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000067_5d644f1e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000067_5d644f1e.szar new file mode 100644 index 00000000..d2a5f624 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000067_5d644f1e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000068_33f39e53.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000068_33f39e53.szar new file mode 100644 index 00000000..e830aeba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000068_33f39e53.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000069_b10852c3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000069_b10852c3.szar new file mode 100644 index 00000000..8437e99f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000069_b10852c3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000070_1aee2c8b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000070_1aee2c8b.szar new file mode 100644 index 00000000..7527cc58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000070_1aee2c8b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000071_a31a3e7e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000071_a31a3e7e.szar new file mode 100644 index 00000000..fb629398 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000071_a31a3e7e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000072_269e81cb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000072_269e81cb.szar new file mode 100644 index 00000000..7bb05312 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000072_269e81cb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000073_dd7f6cf6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000073_dd7f6cf6.szar new file mode 100644 index 00000000..1117bac6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000073_dd7f6cf6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000074_d4f9261f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000074_d4f9261f.szar new file mode 100644 index 00000000..75018bff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000074_d4f9261f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000075_111f10b9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000075_111f10b9.szar new file mode 100644 index 00000000..aef06e82 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000075_111f10b9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000076_18c9f869.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000076_18c9f869.szar new file mode 100644 index 00000000..e00eec8e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000076_18c9f869.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000077_627239fa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000077_627239fa.szar new file mode 100644 index 00000000..b54867c1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000077_627239fa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000078_b002aba1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000078_b002aba1.szar new file mode 100644 index 00000000..88318f1f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000078_b002aba1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000079_928abb56.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000079_928abb56.szar new file mode 100644 index 00000000..1a8e4c23 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000079_928abb56.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000080_1fe86df0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000080_1fe86df0.szar new file mode 100644 index 00000000..e54076ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000080_1fe86df0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000081_5f97b4b9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000081_5f97b4b9.szar new file mode 100644 index 00000000..9892d2c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000081_5f97b4b9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000082_b3ae33a6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000082_b3ae33a6.szar new file mode 100644 index 00000000..223734cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000082_b3ae33a6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000083_0b3fead2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000083_0b3fead2.szar new file mode 100644 index 00000000..de95b7d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000083_0b3fead2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000084_317e7ab4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000084_317e7ab4.szar new file mode 100644 index 00000000..f8bd204e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/archive/delta_00000000000000000084_317e7ab4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000001_8f55dfc7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000001_8f55dfc7.szcp new file mode 100644 index 00000000..9125c174 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000001_8f55dfc7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000002_65c130fe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000002_65c130fe.szcp new file mode 100644 index 00000000..402a717c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000002_65c130fe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000003_d9388398.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000003_d9388398.szcp new file mode 100644 index 00000000..fab34eb4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000003_d9388398.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000004_5646c79b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000004_5646c79b.szcp new file mode 100644 index 00000000..f76ded5c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000004_5646c79b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000005_1108ede9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000005_1108ede9.szcp new file mode 100644 index 00000000..5a33e380 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000005_1108ede9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000006_84a30ea1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000006_84a30ea1.szcp new file mode 100644 index 00000000..e0702691 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000006_84a30ea1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000007_2df70b24.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000007_2df70b24.szcp new file mode 100644 index 00000000..40617893 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000007_2df70b24.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000008_646e65b0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000008_646e65b0.szcp new file mode 100644 index 00000000..c8521e93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000008_646e65b0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000009_a2500c86.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000009_a2500c86.szcp new file mode 100644 index 00000000..3f6aa81b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000009_a2500c86.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000010_7b624b59.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000010_7b624b59.szcp new file mode 100644 index 00000000..56b181a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000010_7b624b59.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000011_fd0b2ed9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000011_fd0b2ed9.szcp new file mode 100644 index 00000000..e4398064 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000011_fd0b2ed9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000012_ae617c2a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000012_ae617c2a.szcp new file mode 100644 index 00000000..c5cc38d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000012_ae617c2a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000013_517ad920.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000013_517ad920.szcp new file mode 100644 index 00000000..965611e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000013_517ad920.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000014_0b750af3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000014_0b750af3.szcp new file mode 100644 index 00000000..bc44273e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000014_0b750af3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000015_659a21bc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000015_659a21bc.szcp new file mode 100644 index 00000000..4423f0bd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000015_659a21bc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000016_eae9141a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000016_eae9141a.szcp new file mode 100644 index 00000000..728f1533 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000016_eae9141a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000017_6950b05d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000017_6950b05d.szcp new file mode 100644 index 00000000..ad7447b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000017_6950b05d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000018_007db16a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000018_007db16a.szcp new file mode 100644 index 00000000..a2b970ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000018_007db16a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000019_87179507.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000019_87179507.szcp new file mode 100644 index 00000000..c0d78c45 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000019_87179507.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000020_4df59221.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000020_4df59221.szcp new file mode 100644 index 00000000..de7f57b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000020_4df59221.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000021_7af81d99.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000021_7af81d99.szcp new file mode 100644 index 00000000..406e5035 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000021_7af81d99.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000022_06d94e0c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000022_06d94e0c.szcp new file mode 100644 index 00000000..3d92c263 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000022_06d94e0c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000023_edbf035e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000023_edbf035e.szcp new file mode 100644 index 00000000..da294aab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000023_edbf035e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000024_e39a2688.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000024_e39a2688.szcp new file mode 100644 index 00000000..f0b4e3cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000024_e39a2688.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000025_0681ba10.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000025_0681ba10.szcp new file mode 100644 index 00000000..7049a42c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000025_0681ba10.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000026_b52918a9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000026_b52918a9.szcp new file mode 100644 index 00000000..d2f4a8ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000026_b52918a9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000027_4d71c6cf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000027_4d71c6cf.szcp new file mode 100644 index 00000000..37870992 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000027_4d71c6cf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000028_088ff554.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000028_088ff554.szcp new file mode 100644 index 00000000..a58cde5e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000028_088ff554.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000029_09813804.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000029_09813804.szcp new file mode 100644 index 00000000..2ea1ea35 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000029_09813804.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000030_d653568c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000030_d653568c.szcp new file mode 100644 index 00000000..41c16414 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000030_d653568c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000031_c4e51279.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000031_c4e51279.szcp new file mode 100644 index 00000000..a574a147 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000031_c4e51279.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000032_629c08c6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000032_629c08c6.szcp new file mode 100644 index 00000000..7f35d0ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000032_629c08c6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000033_097c1afd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000033_097c1afd.szcp new file mode 100644 index 00000000..db818f04 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000033_097c1afd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000034_32e14ee9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000034_32e14ee9.szcp new file mode 100644 index 00000000..8f770c6b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000034_32e14ee9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000035_92839191.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000035_92839191.szcp new file mode 100644 index 00000000..22152a21 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000035_92839191.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000036_6258726d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000036_6258726d.szcp new file mode 100644 index 00000000..5bae3b00 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000036_6258726d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000037_a1b6d3a3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000037_a1b6d3a3.szcp new file mode 100644 index 00000000..2c0e3c6d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000037_a1b6d3a3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000038_20ef1891.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000038_20ef1891.szcp new file mode 100644 index 00000000..ea963adb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000038_20ef1891.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000039_0a7def34.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000039_0a7def34.szcp new file mode 100644 index 00000000..d7084068 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000039_0a7def34.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000040_4e2dfff2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000040_4e2dfff2.szcp new file mode 100644 index 00000000..78131fc2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000040_4e2dfff2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000041_1b698280.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000041_1b698280.szcp new file mode 100644 index 00000000..26dad20d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000041_1b698280.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000042_b187a4a8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000042_b187a4a8.szcp new file mode 100644 index 00000000..8e5fb27b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000042_b187a4a8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000043_3a175f49.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000043_3a175f49.szcp new file mode 100644 index 00000000..14724f3f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000043_3a175f49.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000044_62101a60.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000044_62101a60.szcp new file mode 100644 index 00000000..f707d684 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000044_62101a60.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000045_1d141544.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000045_1d141544.szcp new file mode 100644 index 00000000..abfd3446 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000045_1d141544.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000046_f641307b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000046_f641307b.szcp new file mode 100644 index 00000000..18d6b0d2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000046_f641307b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000047_924f3353.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000047_924f3353.szcp new file mode 100644 index 00000000..537a032a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000047_924f3353.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000048_097b8cd9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000048_097b8cd9.szcp new file mode 100644 index 00000000..ee127818 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000048_097b8cd9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000049_1a35e15d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000049_1a35e15d.szcp new file mode 100644 index 00000000..7508439b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000049_1a35e15d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000050_6651d893.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000050_6651d893.szcp new file mode 100644 index 00000000..80cf7c80 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000050_6651d893.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000051_988e322b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000051_988e322b.szcp new file mode 100644 index 00000000..ea997fec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000051_988e322b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000052_b0b55a8f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000052_b0b55a8f.szcp new file mode 100644 index 00000000..c3828577 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000052_b0b55a8f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000053_8a9933c8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000053_8a9933c8.szcp new file mode 100644 index 00000000..ed2ae9b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000053_8a9933c8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000054_26fefa8d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000054_26fefa8d.szcp new file mode 100644 index 00000000..b143089f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000054_26fefa8d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000055_2f7a5fc2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000055_2f7a5fc2.szcp new file mode 100644 index 00000000..f528c552 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000055_2f7a5fc2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000056_af9ea351.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000056_af9ea351.szcp new file mode 100644 index 00000000..fd63d45f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000056_af9ea351.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000057_30ab267e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000057_30ab267e.szcp new file mode 100644 index 00000000..558e2687 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000057_30ab267e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000058_f7328c07.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000058_f7328c07.szcp new file mode 100644 index 00000000..8672798b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000058_f7328c07.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000059_e789d93f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000059_e789d93f.szcp new file mode 100644 index 00000000..12e089d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000059_e789d93f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000060_ceec9de5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000060_ceec9de5.szcp new file mode 100644 index 00000000..0083ceeb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000060_ceec9de5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000061_92e2f804.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000061_92e2f804.szcp new file mode 100644 index 00000000..19b0531b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000061_92e2f804.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000062_a2226eee.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000062_a2226eee.szcp new file mode 100644 index 00000000..2bf5d200 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000062_a2226eee.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000063_df1c3548.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000063_df1c3548.szcp new file mode 100644 index 00000000..ac14037e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000063_df1c3548.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000064_6f2f6aa7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000064_6f2f6aa7.szcp new file mode 100644 index 00000000..959415a9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000064_6f2f6aa7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000065_7bfbab44.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000065_7bfbab44.szcp new file mode 100644 index 00000000..034e425b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000065_7bfbab44.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000066_df1acc2c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000066_df1acc2c.szcp new file mode 100644 index 00000000..6a9eedbe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000066_df1acc2c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000067_8f51e0a8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000067_8f51e0a8.szcp new file mode 100644 index 00000000..2ec85c8c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000067_8f51e0a8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000068_c147febe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000068_c147febe.szcp new file mode 100644 index 00000000..28aa3b9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000068_c147febe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000069_fe55f679.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000069_fe55f679.szcp new file mode 100644 index 00000000..3effbaf7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000069_fe55f679.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000070_0a64448d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000070_0a64448d.szcp new file mode 100644 index 00000000..677f3d1e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000070_0a64448d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000071_ead7ba9f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000071_ead7ba9f.szcp new file mode 100644 index 00000000..0040f435 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000071_ead7ba9f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000072_def92ba6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000072_def92ba6.szcp new file mode 100644 index 00000000..ae93bdeb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000072_def92ba6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000073_fc2df527.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000073_fc2df527.szcp new file mode 100644 index 00000000..3f4465d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000073_fc2df527.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000074_82bfb23b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000074_82bfb23b.szcp new file mode 100644 index 00000000..3c3c2f00 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000074_82bfb23b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000075_52c65119.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000075_52c65119.szcp new file mode 100644 index 00000000..b0f1b291 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000075_52c65119.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000076_0898beb0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000076_0898beb0.szcp new file mode 100644 index 00000000..3954f73e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000076_0898beb0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000077_42d11886.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000077_42d11886.szcp new file mode 100644 index 00000000..9febcdc6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000077_42d11886.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000078_17e6c378.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000078_17e6c378.szcp new file mode 100644 index 00000000..f400f6fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000078_17e6c378.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000079_0654a808.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000079_0654a808.szcp new file mode 100644 index 00000000..9e247098 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000079_0654a808.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000080_798030fc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000080_798030fc.szcp new file mode 100644 index 00000000..60dff094 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000080_798030fc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000081_42437279.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000081_42437279.szcp new file mode 100644 index 00000000..3da168cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000081_42437279.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000082_ea2c721a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000082_ea2c721a.szcp new file mode 100644 index 00000000..2620b182 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000082_ea2c721a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000083_c36c243e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000083_c36c243e.szcp new file mode 100644 index 00000000..6c3bb84d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000083_c36c243e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000084_97ea97d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000084_97ea97d7.szcp new file mode 100644 index 00000000..49bd2eec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_044/checkpoints/checkpoint_00000000000000000084_97ea97d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000001_29fd8cf3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000001_29fd8cf3.szar new file mode 100644 index 00000000..26847416 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000001_29fd8cf3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000002_833d2dac.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000002_833d2dac.szar new file mode 100644 index 00000000..16dcba2f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000002_833d2dac.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000003_d286caa0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000003_d286caa0.szar new file mode 100644 index 00000000..296545c1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000003_d286caa0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000004_d50c94dd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000004_d50c94dd.szar new file mode 100644 index 00000000..308bb46a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000004_d50c94dd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000005_fa9ec8b8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000005_fa9ec8b8.szar new file mode 100644 index 00000000..d53588a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000005_fa9ec8b8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000006_0a92737a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000006_0a92737a.szar new file mode 100644 index 00000000..23f3b79d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000006_0a92737a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000007_46a31258.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000007_46a31258.szar new file mode 100644 index 00000000..2ec156e4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000007_46a31258.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000008_858d8ed5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000008_858d8ed5.szar new file mode 100644 index 00000000..6f8ab0b3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000008_858d8ed5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000009_092c2567.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000009_092c2567.szar new file mode 100644 index 00000000..82e1d8e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000009_092c2567.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000010_809c2fe0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000010_809c2fe0.szar new file mode 100644 index 00000000..d021e527 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000010_809c2fe0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000011_343f6e6d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000011_343f6e6d.szar new file mode 100644 index 00000000..8bc115c9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000011_343f6e6d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000012_43b9300d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000012_43b9300d.szar new file mode 100644 index 00000000..d1f00baa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000012_43b9300d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000013_cd65d6de.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000013_cd65d6de.szar new file mode 100644 index 00000000..589f19c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000013_cd65d6de.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000014_1bffa362.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000014_1bffa362.szar new file mode 100644 index 00000000..96eaf0a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000014_1bffa362.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000015_9ec1d2cf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000015_9ec1d2cf.szar new file mode 100644 index 00000000..59827bb1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000015_9ec1d2cf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000016_3e02ebc7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000016_3e02ebc7.szar new file mode 100644 index 00000000..e0333f6c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000016_3e02ebc7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000017_68b41fb6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000017_68b41fb6.szar new file mode 100644 index 00000000..7b397eba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000017_68b41fb6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000018_b8921781.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000018_b8921781.szar new file mode 100644 index 00000000..1f243926 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000018_b8921781.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000019_506b8589.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000019_506b8589.szar new file mode 100644 index 00000000..53b0f875 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000019_506b8589.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000020_f4d454da.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000020_f4d454da.szar new file mode 100644 index 00000000..f829d117 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000020_f4d454da.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000021_5e7aada2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000021_5e7aada2.szar new file mode 100644 index 00000000..03caa9ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000021_5e7aada2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000022_24fd60b0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000022_24fd60b0.szar new file mode 100644 index 00000000..afc1625f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000022_24fd60b0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000023_97577e38.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000023_97577e38.szar new file mode 100644 index 00000000..c7122a4f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000023_97577e38.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000024_4aacded3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000024_4aacded3.szar new file mode 100644 index 00000000..d2a1d3ac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000024_4aacded3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000025_dbba09d9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000025_dbba09d9.szar new file mode 100644 index 00000000..fa2680bd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000025_dbba09d9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000026_d7363543.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000026_d7363543.szar new file mode 100644 index 00000000..ca77dfeb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000026_d7363543.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000027_5e9045dd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000027_5e9045dd.szar new file mode 100644 index 00000000..60b33022 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000027_5e9045dd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000028_97592a15.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000028_97592a15.szar new file mode 100644 index 00000000..f03bc737 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000028_97592a15.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000029_1525b647.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000029_1525b647.szar new file mode 100644 index 00000000..1c7a6b72 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000029_1525b647.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000030_56c603c5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000030_56c603c5.szar new file mode 100644 index 00000000..6341af12 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000030_56c603c5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000031_f058b938.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000031_f058b938.szar new file mode 100644 index 00000000..93379d8f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000031_f058b938.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000032_2c05cffe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000032_2c05cffe.szar new file mode 100644 index 00000000..1b2b22e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000032_2c05cffe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000033_e78ba509.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000033_e78ba509.szar new file mode 100644 index 00000000..2ae24922 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000033_e78ba509.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000034_6f82b9d3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000034_6f82b9d3.szar new file mode 100644 index 00000000..aa0f8931 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000034_6f82b9d3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000035_944e92d5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000035_944e92d5.szar new file mode 100644 index 00000000..9e143cf7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000035_944e92d5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000036_cf5910df.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000036_cf5910df.szar new file mode 100644 index 00000000..56ac8452 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000036_cf5910df.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000037_543dec04.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000037_543dec04.szar new file mode 100644 index 00000000..b44d4674 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000037_543dec04.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000038_334ca5ba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000038_334ca5ba.szar new file mode 100644 index 00000000..ed5382d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000038_334ca5ba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000039_9c06438d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000039_9c06438d.szar new file mode 100644 index 00000000..0d48925a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000039_9c06438d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000040_aea789a8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000040_aea789a8.szar new file mode 100644 index 00000000..17b57191 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000040_aea789a8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000041_b990b7ff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000041_b990b7ff.szar new file mode 100644 index 00000000..a3df7e2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000041_b990b7ff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000042_7115fa0f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000042_7115fa0f.szar new file mode 100644 index 00000000..195263c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000042_7115fa0f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000043_e66052c8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000043_e66052c8.szar new file mode 100644 index 00000000..a1feb817 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000043_e66052c8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000044_cb9d86ce.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000044_cb9d86ce.szar new file mode 100644 index 00000000..8e01f841 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000044_cb9d86ce.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000045_28725943.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000045_28725943.szar new file mode 100644 index 00000000..6e470c3d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000045_28725943.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000046_b052cfd3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000046_b052cfd3.szar new file mode 100644 index 00000000..06a0604e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000046_b052cfd3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000047_e2e69a14.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000047_e2e69a14.szar new file mode 100644 index 00000000..c382777d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000047_e2e69a14.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000048_3916f164.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000048_3916f164.szar new file mode 100644 index 00000000..581c794d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000048_3916f164.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000049_e024e7db.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000049_e024e7db.szar new file mode 100644 index 00000000..109c65a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000049_e024e7db.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000050_8a1f1b4a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000050_8a1f1b4a.szar new file mode 100644 index 00000000..5aca0312 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000050_8a1f1b4a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000051_7c49db95.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000051_7c49db95.szar new file mode 100644 index 00000000..01c38c9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000051_7c49db95.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000052_817594b9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000052_817594b9.szar new file mode 100644 index 00000000..9a7bb2fc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000052_817594b9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000053_7513bfc0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000053_7513bfc0.szar new file mode 100644 index 00000000..2cd06881 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000053_7513bfc0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000054_39d7f2a0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000054_39d7f2a0.szar new file mode 100644 index 00000000..58b1d34e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000054_39d7f2a0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000055_624c7c3d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000055_624c7c3d.szar new file mode 100644 index 00000000..5b5d3b14 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000055_624c7c3d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000056_8ba7654b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000056_8ba7654b.szar new file mode 100644 index 00000000..ef464e85 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000056_8ba7654b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000057_a21e75f5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000057_a21e75f5.szar new file mode 100644 index 00000000..41c7c703 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000057_a21e75f5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000058_481349c9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000058_481349c9.szar new file mode 100644 index 00000000..3c5ddd4a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000058_481349c9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000059_b040383c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000059_b040383c.szar new file mode 100644 index 00000000..bc3d5e87 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000059_b040383c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000060_8e89080b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000060_8e89080b.szar new file mode 100644 index 00000000..609731f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000060_8e89080b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000061_563b831a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000061_563b831a.szar new file mode 100644 index 00000000..3bcda282 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000061_563b831a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000062_fde4275e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000062_fde4275e.szar new file mode 100644 index 00000000..ab1aa4fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000062_fde4275e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000063_c1da53b3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000063_c1da53b3.szar new file mode 100644 index 00000000..bb562dff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000063_c1da53b3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000064_e28e1b04.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000064_e28e1b04.szar new file mode 100644 index 00000000..f259e63d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000064_e28e1b04.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000065_682e7ccd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000065_682e7ccd.szar new file mode 100644 index 00000000..b013cd36 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000065_682e7ccd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000066_479718be.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000066_479718be.szar new file mode 100644 index 00000000..a989eb75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000066_479718be.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000067_118562b9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000067_118562b9.szar new file mode 100644 index 00000000..2a4e7100 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000067_118562b9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000068_91ef3ad3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000068_91ef3ad3.szar new file mode 100644 index 00000000..cbcd68b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000068_91ef3ad3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000069_aa12585a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000069_aa12585a.szar new file mode 100644 index 00000000..daf9ec12 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000069_aa12585a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000070_102e0e33.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000070_102e0e33.szar new file mode 100644 index 00000000..5757ffbd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000070_102e0e33.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000071_67f3ef13.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000071_67f3ef13.szar new file mode 100644 index 00000000..b237d389 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000071_67f3ef13.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000072_1bc51ccf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000072_1bc51ccf.szar new file mode 100644 index 00000000..c52ea72c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000072_1bc51ccf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000073_d6fc34b9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000073_d6fc34b9.szar new file mode 100644 index 00000000..5d277ce8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000073_d6fc34b9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000074_c597593c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000074_c597593c.szar new file mode 100644 index 00000000..e1e4f3a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000074_c597593c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000075_d60d941d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000075_d60d941d.szar new file mode 100644 index 00000000..46e26609 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000075_d60d941d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000076_e67a8ce6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000076_e67a8ce6.szar new file mode 100644 index 00000000..92d6965d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000076_e67a8ce6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000077_3c39e8c2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000077_3c39e8c2.szar new file mode 100644 index 00000000..65f1c96b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000077_3c39e8c2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000078_0fd182a6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000078_0fd182a6.szar new file mode 100644 index 00000000..7666d484 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000078_0fd182a6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000079_7981dd9a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000079_7981dd9a.szar new file mode 100644 index 00000000..ca7b550a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000079_7981dd9a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000080_a11d813b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000080_a11d813b.szar new file mode 100644 index 00000000..44f12906 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000080_a11d813b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000081_d2c5849a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000081_d2c5849a.szar new file mode 100644 index 00000000..ac19e7bd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000081_d2c5849a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000082_3834b2d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000082_3834b2d7.szar new file mode 100644 index 00000000..30df1ef7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000082_3834b2d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000083_2f59c709.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000083_2f59c709.szar new file mode 100644 index 00000000..4a4742da Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000083_2f59c709.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000084_79555b18.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000084_79555b18.szar new file mode 100644 index 00000000..3d6f1e3f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000084_79555b18.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000085_99d36f1f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000085_99d36f1f.szar new file mode 100644 index 00000000..61302871 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/archive/delta_00000000000000000085_99d36f1f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000001_616a0a72.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000001_616a0a72.szcp new file mode 100644 index 00000000..7dd877a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000001_616a0a72.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000002_90308e0b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000002_90308e0b.szcp new file mode 100644 index 00000000..be4642c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000002_90308e0b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000003_f147fbfe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000003_f147fbfe.szcp new file mode 100644 index 00000000..a84469cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000003_f147fbfe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000004_7c804e81.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000004_7c804e81.szcp new file mode 100644 index 00000000..e86c9077 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000004_7c804e81.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000005_565acfec.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000005_565acfec.szcp new file mode 100644 index 00000000..81aca414 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000005_565acfec.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000006_05a575fc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000006_05a575fc.szcp new file mode 100644 index 00000000..1af71ae5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000006_05a575fc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000007_6fe579af.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000007_6fe579af.szcp new file mode 100644 index 00000000..0468a748 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000007_6fe579af.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000008_a390962b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000008_a390962b.szcp new file mode 100644 index 00000000..3f40939c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000008_a390962b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000009_197f5c36.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000009_197f5c36.szcp new file mode 100644 index 00000000..fe98f431 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000009_197f5c36.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000010_7294685b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000010_7294685b.szcp new file mode 100644 index 00000000..fb7c941f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000010_7294685b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000011_433045dc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000011_433045dc.szcp new file mode 100644 index 00000000..b95e4afd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000011_433045dc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000012_ef65706a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000012_ef65706a.szcp new file mode 100644 index 00000000..5b62bdcc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000012_ef65706a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000013_a6cd17f3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000013_a6cd17f3.szcp new file mode 100644 index 00000000..77e5356b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000013_a6cd17f3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000014_2137f045.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000014_2137f045.szcp new file mode 100644 index 00000000..de907f8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000014_2137f045.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000015_27f86979.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000015_27f86979.szcp new file mode 100644 index 00000000..c902de76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000015_27f86979.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000016_4f7bb8b6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000016_4f7bb8b6.szcp new file mode 100644 index 00000000..1531ae10 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000016_4f7bb8b6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000017_9e4cf8a0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000017_9e4cf8a0.szcp new file mode 100644 index 00000000..bf4a9e2d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000017_9e4cf8a0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000018_48365f47.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000018_48365f47.szcp new file mode 100644 index 00000000..63075048 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000018_48365f47.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000019_eb9e41b7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000019_eb9e41b7.szcp new file mode 100644 index 00000000..fb274d24 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000019_eb9e41b7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000020_c83196c5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000020_c83196c5.szcp new file mode 100644 index 00000000..321560da Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000020_c83196c5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000021_bfed7af1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000021_bfed7af1.szcp new file mode 100644 index 00000000..5a0576b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000021_bfed7af1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000022_ba699353.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000022_ba699353.szcp new file mode 100644 index 00000000..240e1b62 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000022_ba699353.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000023_a29939fb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000023_a29939fb.szcp new file mode 100644 index 00000000..17e04d18 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000023_a29939fb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000024_9d5794cd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000024_9d5794cd.szcp new file mode 100644 index 00000000..382fa339 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000024_9d5794cd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000025_f5c4b2d4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000025_f5c4b2d4.szcp new file mode 100644 index 00000000..f84d9a33 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000025_f5c4b2d4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000026_366f2ee8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000026_366f2ee8.szcp new file mode 100644 index 00000000..74acbf84 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000026_366f2ee8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000027_9df74085.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000027_9df74085.szcp new file mode 100644 index 00000000..3e075c81 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000027_9df74085.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000028_631e5d1f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000028_631e5d1f.szcp new file mode 100644 index 00000000..7fa0cca5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000028_631e5d1f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000029_16b9c15e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000029_16b9c15e.szcp new file mode 100644 index 00000000..0049bfa9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000029_16b9c15e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000030_9f1d2b4d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000030_9f1d2b4d.szcp new file mode 100644 index 00000000..7c974692 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000030_9f1d2b4d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000031_e59c760e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000031_e59c760e.szcp new file mode 100644 index 00000000..67fc4e5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000031_e59c760e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000032_b1195058.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000032_b1195058.szcp new file mode 100644 index 00000000..15dadca5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000032_b1195058.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000033_83005345.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000033_83005345.szcp new file mode 100644 index 00000000..f6e17d89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000033_83005345.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000034_71d5be60.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000034_71d5be60.szcp new file mode 100644 index 00000000..721c3988 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000034_71d5be60.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000035_d84f2633.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000035_d84f2633.szcp new file mode 100644 index 00000000..871cb5f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000035_d84f2633.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000036_366fcda1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000036_366fcda1.szcp new file mode 100644 index 00000000..8fb63ab1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000036_366fcda1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000037_0d6467ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000037_0d6467ce.szcp new file mode 100644 index 00000000..9b31bc91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000037_0d6467ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000038_144fe28a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000038_144fe28a.szcp new file mode 100644 index 00000000..d15b7672 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000038_144fe28a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000039_8ad0716f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000039_8ad0716f.szcp new file mode 100644 index 00000000..8b4b1bae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000039_8ad0716f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000040_0a81c9ba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000040_0a81c9ba.szcp new file mode 100644 index 00000000..22a93fa3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000040_0a81c9ba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000041_b5eb2438.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000041_b5eb2438.szcp new file mode 100644 index 00000000..87c7e9e4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000041_b5eb2438.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000042_53d4d17f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000042_53d4d17f.szcp new file mode 100644 index 00000000..d66965de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000042_53d4d17f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000043_90e3a533.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000043_90e3a533.szcp new file mode 100644 index 00000000..411e3ef5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000043_90e3a533.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000044_5f1d5cda.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000044_5f1d5cda.szcp new file mode 100644 index 00000000..dbebf7f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000044_5f1d5cda.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000045_4da23af6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000045_4da23af6.szcp new file mode 100644 index 00000000..ecd613d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000045_4da23af6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000046_71e04a06.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000046_71e04a06.szcp new file mode 100644 index 00000000..326455e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000046_71e04a06.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000047_148dd3df.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000047_148dd3df.szcp new file mode 100644 index 00000000..054920ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000047_148dd3df.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000048_afa51890.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000048_afa51890.szcp new file mode 100644 index 00000000..c7316146 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000048_afa51890.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000049_e8d5e4c7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000049_e8d5e4c7.szcp new file mode 100644 index 00000000..42ccaba6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000049_e8d5e4c7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000050_fa89d38a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000050_fa89d38a.szcp new file mode 100644 index 00000000..ff3c10d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000050_fa89d38a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000051_0ba74176.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000051_0ba74176.szcp new file mode 100644 index 00000000..404327b3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000051_0ba74176.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000052_478c90cb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000052_478c90cb.szcp new file mode 100644 index 00000000..92746a65 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000052_478c90cb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000053_e1caada2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000053_e1caada2.szcp new file mode 100644 index 00000000..df1eb90f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000053_e1caada2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000054_c3656001.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000054_c3656001.szcp new file mode 100644 index 00000000..2a9f2e20 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000054_c3656001.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000055_f5541059.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000055_f5541059.szcp new file mode 100644 index 00000000..3db477ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000055_f5541059.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000056_27ed304d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000056_27ed304d.szcp new file mode 100644 index 00000000..ef534060 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000056_27ed304d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000057_0e2e5631.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000057_0e2e5631.szcp new file mode 100644 index 00000000..3f5c6f83 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000057_0e2e5631.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000058_c7aec50e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000058_c7aec50e.szcp new file mode 100644 index 00000000..71cfbcc1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000058_c7aec50e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000059_6ed0ff8c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000059_6ed0ff8c.szcp new file mode 100644 index 00000000..b2e80426 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000059_6ed0ff8c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000060_cf4884f8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000060_cf4884f8.szcp new file mode 100644 index 00000000..0451cb58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000060_cf4884f8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000061_85eff695.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000061_85eff695.szcp new file mode 100644 index 00000000..b3140b26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000061_85eff695.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000062_327f7c0e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000062_327f7c0e.szcp new file mode 100644 index 00000000..92fcd8bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000062_327f7c0e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000063_a7e4f85b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000063_a7e4f85b.szcp new file mode 100644 index 00000000..e13a60ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000063_a7e4f85b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000064_9679fead.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000064_9679fead.szcp new file mode 100644 index 00000000..599b9e73 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000064_9679fead.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000065_9a439ebb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000065_9a439ebb.szcp new file mode 100644 index 00000000..c0c3e061 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000065_9a439ebb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000066_8fe5e560.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000066_8fe5e560.szcp new file mode 100644 index 00000000..affc65b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000066_8fe5e560.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000067_ea81100d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000067_ea81100d.szcp new file mode 100644 index 00000000..66561fd4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000067_ea81100d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000068_b759a95c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000068_b759a95c.szcp new file mode 100644 index 00000000..9755b3e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000068_b759a95c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000069_4e75c33c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000069_4e75c33c.szcp new file mode 100644 index 00000000..bf5d86e4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000069_4e75c33c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000070_ba68832d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000070_ba68832d.szcp new file mode 100644 index 00000000..2d4a31df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000070_ba68832d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000071_3cc8d9ea.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000071_3cc8d9ea.szcp new file mode 100644 index 00000000..f8c0a6cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000071_3cc8d9ea.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000072_6c271c55.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000072_6c271c55.szcp new file mode 100644 index 00000000..8366cbd7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000072_6c271c55.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000073_69bcc71c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000073_69bcc71c.szcp new file mode 100644 index 00000000..6db22fd9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000073_69bcc71c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000074_3663e685.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000074_3663e685.szcp new file mode 100644 index 00000000..08cf5a78 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000074_3663e685.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000075_6f740a5b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000075_6f740a5b.szcp new file mode 100644 index 00000000..3d250850 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000075_6f740a5b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000076_64697dbd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000076_64697dbd.szcp new file mode 100644 index 00000000..20a76609 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000076_64697dbd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000077_a4c98ee5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000077_a4c98ee5.szcp new file mode 100644 index 00000000..ebf69f27 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000077_a4c98ee5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000078_cc2aedf7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000078_cc2aedf7.szcp new file mode 100644 index 00000000..c05c73d0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000078_cc2aedf7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000079_5790047e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000079_5790047e.szcp new file mode 100644 index 00000000..7c199b65 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000079_5790047e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000080_37f2156d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000080_37f2156d.szcp new file mode 100644 index 00000000..8cd7bf1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000080_37f2156d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000081_a5a6dd48.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000081_a5a6dd48.szcp new file mode 100644 index 00000000..1e5ff4b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000081_a5a6dd48.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000082_bb3cd0db.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000082_bb3cd0db.szcp new file mode 100644 index 00000000..c4901b88 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000082_bb3cd0db.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000083_d2675e45.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000083_d2675e45.szcp new file mode 100644 index 00000000..bd6b1292 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000083_d2675e45.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000084_9f6a48a1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000084_9f6a48a1.szcp new file mode 100644 index 00000000..7375a595 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000084_9f6a48a1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000085_2930c5f2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000085_2930c5f2.szcp new file mode 100644 index 00000000..0b6425f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_045/checkpoints/checkpoint_00000000000000000085_2930c5f2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000001_7c8fc395.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000001_7c8fc395.szar new file mode 100644 index 00000000..a883221e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000001_7c8fc395.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000002_6915d1c8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000002_6915d1c8.szar new file mode 100644 index 00000000..843f038f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000002_6915d1c8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000003_c69f3caa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000003_c69f3caa.szar new file mode 100644 index 00000000..87dc2c8f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000003_c69f3caa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000004_586163a0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000004_586163a0.szar new file mode 100644 index 00000000..f721328f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000004_586163a0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000005_370a20ad.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000005_370a20ad.szar new file mode 100644 index 00000000..9d7d032e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000005_370a20ad.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000006_a8210d9d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000006_a8210d9d.szar new file mode 100644 index 00000000..69273983 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000006_a8210d9d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000007_6409f9c1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000007_6409f9c1.szar new file mode 100644 index 00000000..69dbabc0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000007_6409f9c1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000008_27e03481.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000008_27e03481.szar new file mode 100644 index 00000000..fdbb53fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000008_27e03481.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000009_f6489617.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000009_f6489617.szar new file mode 100644 index 00000000..0b5443a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000009_f6489617.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000010_0949f0fb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000010_0949f0fb.szar new file mode 100644 index 00000000..ff372dbd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000010_0949f0fb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000011_2ad45bfd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000011_2ad45bfd.szar new file mode 100644 index 00000000..bb5fa29c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000011_2ad45bfd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000012_297c6b0a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000012_297c6b0a.szar new file mode 100644 index 00000000..8274ba9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000012_297c6b0a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000013_0b550629.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000013_0b550629.szar new file mode 100644 index 00000000..8c9ea694 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000013_0b550629.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000014_1986022c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000014_1986022c.szar new file mode 100644 index 00000000..73d610b6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000014_1986022c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000015_9f582fcf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000015_9f582fcf.szar new file mode 100644 index 00000000..d6cd8f76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000015_9f582fcf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000016_32f75086.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000016_32f75086.szar new file mode 100644 index 00000000..fb81153f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000016_32f75086.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000017_3b3535ae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000017_3b3535ae.szar new file mode 100644 index 00000000..eeec4859 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000017_3b3535ae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000018_3454a02c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000018_3454a02c.szar new file mode 100644 index 00000000..94891a9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000018_3454a02c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000019_014c7141.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000019_014c7141.szar new file mode 100644 index 00000000..6de26bc9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000019_014c7141.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000020_8ca9b118.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000020_8ca9b118.szar new file mode 100644 index 00000000..cb34b51a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000020_8ca9b118.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000021_4e902dd9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000021_4e902dd9.szar new file mode 100644 index 00000000..cb4973c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000021_4e902dd9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000022_210a03dc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000022_210a03dc.szar new file mode 100644 index 00000000..e30a2a14 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000022_210a03dc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000023_b292d591.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000023_b292d591.szar new file mode 100644 index 00000000..a7fe7a0b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000023_b292d591.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000024_5bb85cd3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000024_5bb85cd3.szar new file mode 100644 index 00000000..41a1fc7a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000024_5bb85cd3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000025_8ba8d52c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000025_8ba8d52c.szar new file mode 100644 index 00000000..15ac995f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000025_8ba8d52c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000026_899aa09b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000026_899aa09b.szar new file mode 100644 index 00000000..991d45cb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000026_899aa09b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000027_6d09a413.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000027_6d09a413.szar new file mode 100644 index 00000000..89817565 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000027_6d09a413.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000028_0a15a686.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000028_0a15a686.szar new file mode 100644 index 00000000..b3a359d2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000028_0a15a686.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000029_cd33720d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000029_cd33720d.szar new file mode 100644 index 00000000..fe343f8e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000029_cd33720d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000030_51a9af2f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000030_51a9af2f.szar new file mode 100644 index 00000000..60558a4b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000030_51a9af2f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000031_45f3b227.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000031_45f3b227.szar new file mode 100644 index 00000000..48465738 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000031_45f3b227.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000032_249fa25e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000032_249fa25e.szar new file mode 100644 index 00000000..9414612a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000032_249fa25e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000033_6cd9205c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000033_6cd9205c.szar new file mode 100644 index 00000000..0dbb5e83 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000033_6cd9205c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000034_433d79db.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000034_433d79db.szar new file mode 100644 index 00000000..6bda74b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000034_433d79db.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000035_6d1df38c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000035_6d1df38c.szar new file mode 100644 index 00000000..95d1e166 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000035_6d1df38c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000036_b1f5074a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000036_b1f5074a.szar new file mode 100644 index 00000000..5b1bffaf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000036_b1f5074a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000037_903d7214.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000037_903d7214.szar new file mode 100644 index 00000000..4140db86 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000037_903d7214.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000038_29e4b83e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000038_29e4b83e.szar new file mode 100644 index 00000000..780d594d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000038_29e4b83e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000039_d05a53c8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000039_d05a53c8.szar new file mode 100644 index 00000000..16a02472 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000039_d05a53c8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000040_ed478135.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000040_ed478135.szar new file mode 100644 index 00000000..b6a00b0f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000040_ed478135.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000041_31ce8779.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000041_31ce8779.szar new file mode 100644 index 00000000..1c91ffd5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000041_31ce8779.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000042_c8881a18.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000042_c8881a18.szar new file mode 100644 index 00000000..1edf76fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000042_c8881a18.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000043_c2c5f262.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000043_c2c5f262.szar new file mode 100644 index 00000000..b633634c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000043_c2c5f262.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000044_090da19c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000044_090da19c.szar new file mode 100644 index 00000000..67d53f82 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000044_090da19c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000045_a0fe8d34.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000045_a0fe8d34.szar new file mode 100644 index 00000000..3db21030 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000045_a0fe8d34.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000046_89b43064.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000046_89b43064.szar new file mode 100644 index 00000000..269bd6a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000046_89b43064.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000047_53366cc0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000047_53366cc0.szar new file mode 100644 index 00000000..06ee844c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000047_53366cc0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000048_5ca313c1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000048_5ca313c1.szar new file mode 100644 index 00000000..13e2ebca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000048_5ca313c1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000049_47275ff2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000049_47275ff2.szar new file mode 100644 index 00000000..5e233e66 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000049_47275ff2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000050_ac3007ae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000050_ac3007ae.szar new file mode 100644 index 00000000..b7590032 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000050_ac3007ae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000051_8870f3f4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000051_8870f3f4.szar new file mode 100644 index 00000000..69bb41d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000051_8870f3f4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000052_870ce904.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000052_870ce904.szar new file mode 100644 index 00000000..7f4cf8fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000052_870ce904.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000053_501b3b0d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000053_501b3b0d.szar new file mode 100644 index 00000000..5ede4e2e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000053_501b3b0d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000054_bc7fbbe4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000054_bc7fbbe4.szar new file mode 100644 index 00000000..04c40f95 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000054_bc7fbbe4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000055_c315894e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000055_c315894e.szar new file mode 100644 index 00000000..96301fce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000055_c315894e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000056_b7f0fe34.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000056_b7f0fe34.szar new file mode 100644 index 00000000..5ed1284f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000056_b7f0fe34.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000057_908c55ac.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000057_908c55ac.szar new file mode 100644 index 00000000..cef4cc46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000057_908c55ac.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000058_ac1426fc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000058_ac1426fc.szar new file mode 100644 index 00000000..b43f93e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/archive/delta_00000000000000000058_ac1426fc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000001_cb29d12b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000001_cb29d12b.szcp new file mode 100644 index 00000000..b4c88502 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000001_cb29d12b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000002_89f816f7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000002_89f816f7.szcp new file mode 100644 index 00000000..3f88c2ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000002_89f816f7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000003_fb1af3e7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000003_fb1af3e7.szcp new file mode 100644 index 00000000..241ca08b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000003_fb1af3e7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000004_a077a210.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000004_a077a210.szcp new file mode 100644 index 00000000..8c81c9ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000004_a077a210.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000005_bc8d11b0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000005_bc8d11b0.szcp new file mode 100644 index 00000000..9f132e69 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000005_bc8d11b0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000006_b2ee42ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000006_b2ee42ce.szcp new file mode 100644 index 00000000..4e325796 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000006_b2ee42ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000007_5c9746be.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000007_5c9746be.szcp new file mode 100644 index 00000000..cc0ee573 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000007_5c9746be.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000008_e5f96dd6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000008_e5f96dd6.szcp new file mode 100644 index 00000000..4c97580e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000008_e5f96dd6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000009_3c7f0160.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000009_3c7f0160.szcp new file mode 100644 index 00000000..abe9791c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000009_3c7f0160.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000010_e3a56e6f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000010_e3a56e6f.szcp new file mode 100644 index 00000000..7bbab783 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000010_e3a56e6f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000011_cc40cb9d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000011_cc40cb9d.szcp new file mode 100644 index 00000000..e702c009 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000011_cc40cb9d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000012_0ef3c475.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000012_0ef3c475.szcp new file mode 100644 index 00000000..424076d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000012_0ef3c475.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000013_25147671.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000013_25147671.szcp new file mode 100644 index 00000000..33c249a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000013_25147671.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000014_be9db914.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000014_be9db914.szcp new file mode 100644 index 00000000..d1e7c794 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000014_be9db914.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000015_474274d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000015_474274d1.szcp new file mode 100644 index 00000000..4c16ed6a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000015_474274d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000016_f8b2abb3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000016_f8b2abb3.szcp new file mode 100644 index 00000000..11f8614a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000016_f8b2abb3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000017_f936cd9c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000017_f936cd9c.szcp new file mode 100644 index 00000000..4ecde311 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000017_f936cd9c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000018_e507a181.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000018_e507a181.szcp new file mode 100644 index 00000000..c7b32939 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000018_e507a181.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000019_0b50453e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000019_0b50453e.szcp new file mode 100644 index 00000000..62f08fac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000019_0b50453e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000020_0943e92e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000020_0943e92e.szcp new file mode 100644 index 00000000..a95a970d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000020_0943e92e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000021_27a0fd42.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000021_27a0fd42.szcp new file mode 100644 index 00000000..9a6557b6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000021_27a0fd42.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000022_532b686b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000022_532b686b.szcp new file mode 100644 index 00000000..51fd180b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000022_532b686b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000023_e23860af.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000023_e23860af.szcp new file mode 100644 index 00000000..308eb560 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000023_e23860af.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000024_62600bfb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000024_62600bfb.szcp new file mode 100644 index 00000000..aa01bfe2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000024_62600bfb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000025_45fc62d4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000025_45fc62d4.szcp new file mode 100644 index 00000000..707c48df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000025_45fc62d4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000026_187d0f60.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000026_187d0f60.szcp new file mode 100644 index 00000000..dbd995d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000026_187d0f60.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000027_84eadb58.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000027_84eadb58.szcp new file mode 100644 index 00000000..a5e31c8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000027_84eadb58.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000028_5e9fc6e6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000028_5e9fc6e6.szcp new file mode 100644 index 00000000..57e75884 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000028_5e9fc6e6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000029_c10fda9e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000029_c10fda9e.szcp new file mode 100644 index 00000000..e53746aa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000029_c10fda9e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000030_ace9aaf3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000030_ace9aaf3.szcp new file mode 100644 index 00000000..4b59ceb6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000030_ace9aaf3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000031_4b43a5c9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000031_4b43a5c9.szcp new file mode 100644 index 00000000..1affe574 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000031_4b43a5c9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000032_9ba4884a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000032_9ba4884a.szcp new file mode 100644 index 00000000..cd95c1a9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000032_9ba4884a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000033_16df3370.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000033_16df3370.szcp new file mode 100644 index 00000000..9f61c4c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000033_16df3370.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000034_9387d266.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000034_9387d266.szcp new file mode 100644 index 00000000..ee717857 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000034_9387d266.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000035_867dbed9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000035_867dbed9.szcp new file mode 100644 index 00000000..0ba3d0b6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000035_867dbed9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000036_e10671d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000036_e10671d1.szcp new file mode 100644 index 00000000..eaddfea7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000036_e10671d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000037_28fb7c49.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000037_28fb7c49.szcp new file mode 100644 index 00000000..04058fe3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000037_28fb7c49.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000038_74fad15c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000038_74fad15c.szcp new file mode 100644 index 00000000..0b2bc045 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000038_74fad15c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000039_fc2f7bf1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000039_fc2f7bf1.szcp new file mode 100644 index 00000000..a34a0142 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000039_fc2f7bf1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000040_94ab9c3e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000040_94ab9c3e.szcp new file mode 100644 index 00000000..89db3f6f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000040_94ab9c3e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000041_1315ebca.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000041_1315ebca.szcp new file mode 100644 index 00000000..fb338640 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000041_1315ebca.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000042_3433d58c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000042_3433d58c.szcp new file mode 100644 index 00000000..0bc98330 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000042_3433d58c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000043_8f0d737c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000043_8f0d737c.szcp new file mode 100644 index 00000000..a59dd1c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000043_8f0d737c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000044_b7c80b99.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000044_b7c80b99.szcp new file mode 100644 index 00000000..16f8fd4e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000044_b7c80b99.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000045_357054cd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000045_357054cd.szcp new file mode 100644 index 00000000..9b961a7e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000045_357054cd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000046_51d72c19.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000046_51d72c19.szcp new file mode 100644 index 00000000..fa6375ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000046_51d72c19.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000047_ed245251.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000047_ed245251.szcp new file mode 100644 index 00000000..97c89c7b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000047_ed245251.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000048_70dcb3bc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000048_70dcb3bc.szcp new file mode 100644 index 00000000..ee1c0e7d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000048_70dcb3bc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000049_09138cda.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000049_09138cda.szcp new file mode 100644 index 00000000..2ae3e20c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000049_09138cda.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000050_134c1af5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000050_134c1af5.szcp new file mode 100644 index 00000000..876f7c5e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000050_134c1af5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000051_fbc13e7b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000051_fbc13e7b.szcp new file mode 100644 index 00000000..b533ab33 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000051_fbc13e7b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000052_15a5abeb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000052_15a5abeb.szcp new file mode 100644 index 00000000..a1bb5674 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000052_15a5abeb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000053_06d514ab.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000053_06d514ab.szcp new file mode 100644 index 00000000..9b896ebf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000053_06d514ab.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000054_6eca8645.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000054_6eca8645.szcp new file mode 100644 index 00000000..999f8503 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000054_6eca8645.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000055_9f48d06b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000055_9f48d06b.szcp new file mode 100644 index 00000000..47ffccd8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000055_9f48d06b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000056_c46ea58c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000056_c46ea58c.szcp new file mode 100644 index 00000000..d2e176e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000056_c46ea58c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000057_dded15ff.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000057_dded15ff.szcp new file mode 100644 index 00000000..3a6c76c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000057_dded15ff.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000058_ca6a5a52.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000058_ca6a5a52.szcp new file mode 100644 index 00000000..f5090750 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_046/checkpoints/checkpoint_00000000000000000058_ca6a5a52.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000001_332eece1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000001_332eece1.szar new file mode 100644 index 00000000..09c099d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000001_332eece1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000002_e16a59a5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000002_e16a59a5.szar new file mode 100644 index 00000000..917f7037 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000002_e16a59a5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000003_98876d22.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000003_98876d22.szar new file mode 100644 index 00000000..1d165d5a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000003_98876d22.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000004_7171a7ee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000004_7171a7ee.szar new file mode 100644 index 00000000..4423b0f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000004_7171a7ee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000005_2ff490b4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000005_2ff490b4.szar new file mode 100644 index 00000000..03c89e1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000005_2ff490b4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000006_a94dc65e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000006_a94dc65e.szar new file mode 100644 index 00000000..dc50d27b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000006_a94dc65e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000007_702f6331.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000007_702f6331.szar new file mode 100644 index 00000000..d8a30916 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000007_702f6331.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000008_3e24d477.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000008_3e24d477.szar new file mode 100644 index 00000000..2e151033 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000008_3e24d477.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000009_a37cc47a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000009_a37cc47a.szar new file mode 100644 index 00000000..85cebf4b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000009_a37cc47a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000010_cea76691.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000010_cea76691.szar new file mode 100644 index 00000000..3fff19a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000010_cea76691.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000011_7dc646bd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000011_7dc646bd.szar new file mode 100644 index 00000000..aec1c2fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000011_7dc646bd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000012_2a35aba4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000012_2a35aba4.szar new file mode 100644 index 00000000..3fe0ed40 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000012_2a35aba4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000013_91ea67ee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000013_91ea67ee.szar new file mode 100644 index 00000000..b4bdc316 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000013_91ea67ee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000014_00438542.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000014_00438542.szar new file mode 100644 index 00000000..33143996 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000014_00438542.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000015_6adf48b0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000015_6adf48b0.szar new file mode 100644 index 00000000..c267744d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000015_6adf48b0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000016_307bd605.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000016_307bd605.szar new file mode 100644 index 00000000..1556499b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000016_307bd605.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000017_a5a5623e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000017_a5a5623e.szar new file mode 100644 index 00000000..b1d0c79c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000017_a5a5623e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000018_b1e4ce7a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000018_b1e4ce7a.szar new file mode 100644 index 00000000..c675c51e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000018_b1e4ce7a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000019_e104697b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000019_e104697b.szar new file mode 100644 index 00000000..b41bb5a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000019_e104697b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000020_d0409e48.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000020_d0409e48.szar new file mode 100644 index 00000000..dc8936d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000020_d0409e48.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000021_704ac9c5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000021_704ac9c5.szar new file mode 100644 index 00000000..03b24c2e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000021_704ac9c5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000022_21fa53d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000022_21fa53d7.szar new file mode 100644 index 00000000..488c9993 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000022_21fa53d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000023_2d188f1a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000023_2d188f1a.szar new file mode 100644 index 00000000..0f83f2f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000023_2d188f1a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000024_a73658fd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000024_a73658fd.szar new file mode 100644 index 00000000..b250860d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000024_a73658fd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000025_0c520e48.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000025_0c520e48.szar new file mode 100644 index 00000000..b4589403 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000025_0c520e48.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000026_a95bf0c9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000026_a95bf0c9.szar new file mode 100644 index 00000000..8ac865d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000026_a95bf0c9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000027_3f2c3b03.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000027_3f2c3b03.szar new file mode 100644 index 00000000..9845ce48 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000027_3f2c3b03.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000028_d7b89027.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000028_d7b89027.szar new file mode 100644 index 00000000..7e248876 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000028_d7b89027.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000029_20e2f69f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000029_20e2f69f.szar new file mode 100644 index 00000000..9f05c468 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000029_20e2f69f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000030_31cc0018.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000030_31cc0018.szar new file mode 100644 index 00000000..4393b5ae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000030_31cc0018.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000031_35dbe856.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000031_35dbe856.szar new file mode 100644 index 00000000..978bf223 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000031_35dbe856.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000032_f92c9eb3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000032_f92c9eb3.szar new file mode 100644 index 00000000..3f2e53c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000032_f92c9eb3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000033_0f878189.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000033_0f878189.szar new file mode 100644 index 00000000..7db5eb9c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000033_0f878189.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000034_1ec89a8f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000034_1ec89a8f.szar new file mode 100644 index 00000000..b80d7094 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000034_1ec89a8f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000035_cb783b87.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000035_cb783b87.szar new file mode 100644 index 00000000..cbe2fc1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000035_cb783b87.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000036_a5b3e8cf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000036_a5b3e8cf.szar new file mode 100644 index 00000000..1d61b665 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000036_a5b3e8cf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000037_babddd06.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000037_babddd06.szar new file mode 100644 index 00000000..52dd38c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000037_babddd06.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000038_af99d994.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000038_af99d994.szar new file mode 100644 index 00000000..10d07abd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000038_af99d994.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000039_7a89642f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000039_7a89642f.szar new file mode 100644 index 00000000..0aa7d1e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000039_7a89642f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000040_87b55199.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000040_87b55199.szar new file mode 100644 index 00000000..7eca1ce2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000040_87b55199.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000041_b040cd8f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000041_b040cd8f.szar new file mode 100644 index 00000000..0153a3aa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000041_b040cd8f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000042_66f7f2dd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000042_66f7f2dd.szar new file mode 100644 index 00000000..5a54d97e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000042_66f7f2dd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000043_feccec0a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000043_feccec0a.szar new file mode 100644 index 00000000..fbc50e81 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000043_feccec0a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000044_21e9c736.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000044_21e9c736.szar new file mode 100644 index 00000000..b104f623 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000044_21e9c736.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000045_e3035819.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000045_e3035819.szar new file mode 100644 index 00000000..860c0d8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000045_e3035819.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000046_c47510e8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000046_c47510e8.szar new file mode 100644 index 00000000..b19cac37 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000046_c47510e8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000047_53cf3673.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000047_53cf3673.szar new file mode 100644 index 00000000..7a2d4049 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000047_53cf3673.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000048_5e8d9862.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000048_5e8d9862.szar new file mode 100644 index 00000000..bbf104d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000048_5e8d9862.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000049_d3772239.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000049_d3772239.szar new file mode 100644 index 00000000..bc43cedb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000049_d3772239.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000050_92905e06.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000050_92905e06.szar new file mode 100644 index 00000000..1de1eb81 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000050_92905e06.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000051_55012690.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000051_55012690.szar new file mode 100644 index 00000000..f35b9a83 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000051_55012690.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000052_72a2e181.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000052_72a2e181.szar new file mode 100644 index 00000000..94d572f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000052_72a2e181.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000053_bda7ad9b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000053_bda7ad9b.szar new file mode 100644 index 00000000..b9932a0a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000053_bda7ad9b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000054_4a9a176a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000054_4a9a176a.szar new file mode 100644 index 00000000..f996bf93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000054_4a9a176a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000055_6f1dfa2b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000055_6f1dfa2b.szar new file mode 100644 index 00000000..7c0d6463 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000055_6f1dfa2b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000056_8e1c06ae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000056_8e1c06ae.szar new file mode 100644 index 00000000..cdfedcb3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000056_8e1c06ae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000057_e07af170.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000057_e07af170.szar new file mode 100644 index 00000000..f941f094 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000057_e07af170.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000058_ad24f466.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000058_ad24f466.szar new file mode 100644 index 00000000..07be4e37 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000058_ad24f466.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000059_16311337.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000059_16311337.szar new file mode 100644 index 00000000..92c97259 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/archive/delta_00000000000000000059_16311337.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000001_dd19acfd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000001_dd19acfd.szcp new file mode 100644 index 00000000..0267a4ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000001_dd19acfd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000002_5eb84a86.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000002_5eb84a86.szcp new file mode 100644 index 00000000..0250f97e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000002_5eb84a86.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000003_c6af04ae.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000003_c6af04ae.szcp new file mode 100644 index 00000000..910d6e04 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000003_c6af04ae.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000004_91d2750f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000004_91d2750f.szcp new file mode 100644 index 00000000..596f0f9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000004_91d2750f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000005_7770a94e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000005_7770a94e.szcp new file mode 100644 index 00000000..03204e71 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000005_7770a94e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000006_cce56e38.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000006_cce56e38.szcp new file mode 100644 index 00000000..9ca34652 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000006_cce56e38.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000007_f65fcbb4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000007_f65fcbb4.szcp new file mode 100644 index 00000000..9aea982b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000007_f65fcbb4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000008_ee9e84f6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000008_ee9e84f6.szcp new file mode 100644 index 00000000..68ce375a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000008_ee9e84f6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000009_536fafd0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000009_536fafd0.szcp new file mode 100644 index 00000000..f69b3566 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000009_536fafd0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000010_aef48724.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000010_aef48724.szcp new file mode 100644 index 00000000..178d1e00 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000010_aef48724.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000011_b722c820.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000011_b722c820.szcp new file mode 100644 index 00000000..128a6384 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000011_b722c820.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000012_7cf8f66f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000012_7cf8f66f.szcp new file mode 100644 index 00000000..c8e2d2f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000012_7cf8f66f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000013_2e8e009a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000013_2e8e009a.szcp new file mode 100644 index 00000000..af4a4cc4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000013_2e8e009a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000014_916b86fe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000014_916b86fe.szcp new file mode 100644 index 00000000..f338b8bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000014_916b86fe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000015_35ae8799.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000015_35ae8799.szcp new file mode 100644 index 00000000..84f33a10 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000015_35ae8799.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000016_cc1802b0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000016_cc1802b0.szcp new file mode 100644 index 00000000..1fd10ed5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000016_cc1802b0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000017_6de0601a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000017_6de0601a.szcp new file mode 100644 index 00000000..0d72bdc7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000017_6de0601a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000018_909bd991.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000018_909bd991.szcp new file mode 100644 index 00000000..bb8123c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000018_909bd991.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000019_7beff988.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000019_7beff988.szcp new file mode 100644 index 00000000..daec0fd7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000019_7beff988.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000020_95c4ac0a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000020_95c4ac0a.szcp new file mode 100644 index 00000000..4f3420de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000020_95c4ac0a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000021_0ed11d35.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000021_0ed11d35.szcp new file mode 100644 index 00000000..b7e206d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000021_0ed11d35.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000022_fd4cbe59.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000022_fd4cbe59.szcp new file mode 100644 index 00000000..30a6ce90 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000022_fd4cbe59.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000023_a8440f06.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000023_a8440f06.szcp new file mode 100644 index 00000000..353f473d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000023_a8440f06.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000024_af5c2a6a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000024_af5c2a6a.szcp new file mode 100644 index 00000000..73013d3d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000024_af5c2a6a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000025_2d437414.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000025_2d437414.szcp new file mode 100644 index 00000000..23cd8815 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000025_2d437414.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000026_e883fac9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000026_e883fac9.szcp new file mode 100644 index 00000000..475b51b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000026_e883fac9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000027_7ebc1155.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000027_7ebc1155.szcp new file mode 100644 index 00000000..a483a999 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000027_7ebc1155.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000028_d16a23cd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000028_d16a23cd.szcp new file mode 100644 index 00000000..7bdb2530 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000028_d16a23cd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000029_a2e00310.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000029_a2e00310.szcp new file mode 100644 index 00000000..5cadf203 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000029_a2e00310.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000030_58cebba3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000030_58cebba3.szcp new file mode 100644 index 00000000..f98a4dec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000030_58cebba3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000031_bd746f8b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000031_bd746f8b.szcp new file mode 100644 index 00000000..e0a15f72 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000031_bd746f8b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000032_d16019c2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000032_d16019c2.szcp new file mode 100644 index 00000000..edb527fc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000032_d16019c2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000033_22b555a7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000033_22b555a7.szcp new file mode 100644 index 00000000..8ecebead Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000033_22b555a7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000034_06c8d80b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000034_06c8d80b.szcp new file mode 100644 index 00000000..a94dce89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000034_06c8d80b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000035_fad728b1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000035_fad728b1.szcp new file mode 100644 index 00000000..383dc381 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000035_fad728b1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000036_d9e4fdd0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000036_d9e4fdd0.szcp new file mode 100644 index 00000000..c9c1076d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000036_d9e4fdd0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000037_b810f32f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000037_b810f32f.szcp new file mode 100644 index 00000000..c39af43f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000037_b810f32f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000038_5bd278bb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000038_5bd278bb.szcp new file mode 100644 index 00000000..09238e0b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000038_5bd278bb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000039_43dcae39.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000039_43dcae39.szcp new file mode 100644 index 00000000..5f875bbd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000039_43dcae39.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000040_99f7f709.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000040_99f7f709.szcp new file mode 100644 index 00000000..ccf3fe7c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000040_99f7f709.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000041_e851047f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000041_e851047f.szcp new file mode 100644 index 00000000..24e4cad6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000041_e851047f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000042_0a0f0df1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000042_0a0f0df1.szcp new file mode 100644 index 00000000..edbe9377 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000042_0a0f0df1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000043_43270bdf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000043_43270bdf.szcp new file mode 100644 index 00000000..448e1a69 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000043_43270bdf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000044_7a6b198e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000044_7a6b198e.szcp new file mode 100644 index 00000000..a0bc80cb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000044_7a6b198e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000045_6cf802a8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000045_6cf802a8.szcp new file mode 100644 index 00000000..81010c4a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000045_6cf802a8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000046_2f0fe83d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000046_2f0fe83d.szcp new file mode 100644 index 00000000..e11cad5a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000046_2f0fe83d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000047_5711de44.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000047_5711de44.szcp new file mode 100644 index 00000000..4089e260 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000047_5711de44.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000048_05e889e3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000048_05e889e3.szcp new file mode 100644 index 00000000..427e5794 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000048_05e889e3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000049_fec2db5f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000049_fec2db5f.szcp new file mode 100644 index 00000000..44dfc734 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000049_fec2db5f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000050_884cb536.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000050_884cb536.szcp new file mode 100644 index 00000000..d16daffa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000050_884cb536.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000051_c78a77d3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000051_c78a77d3.szcp new file mode 100644 index 00000000..119530bd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000051_c78a77d3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000052_2334b206.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000052_2334b206.szcp new file mode 100644 index 00000000..869dba02 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000052_2334b206.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000053_d8eee64e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000053_d8eee64e.szcp new file mode 100644 index 00000000..1959b6f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000053_d8eee64e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000054_38df6ec0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000054_38df6ec0.szcp new file mode 100644 index 00000000..1bdac621 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000054_38df6ec0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000055_49d88679.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000055_49d88679.szcp new file mode 100644 index 00000000..5517855e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000055_49d88679.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000056_093d602b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000056_093d602b.szcp new file mode 100644 index 00000000..3979ee9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000056_093d602b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000057_c75733e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000057_c75733e9.szcp new file mode 100644 index 00000000..ee97e732 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000057_c75733e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000058_97ee3f91.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000058_97ee3f91.szcp new file mode 100644 index 00000000..52f07d42 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000058_97ee3f91.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000059_217e0e31.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000059_217e0e31.szcp new file mode 100644 index 00000000..2e6ababe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_047/checkpoints/checkpoint_00000000000000000059_217e0e31.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000001_13654815.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000001_13654815.szar new file mode 100644 index 00000000..afac3a1f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000001_13654815.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000002_0fcd9c3a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000002_0fcd9c3a.szar new file mode 100644 index 00000000..3e1e5832 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000002_0fcd9c3a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000003_179d0cd9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000003_179d0cd9.szar new file mode 100644 index 00000000..9369e2d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000003_179d0cd9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000004_22347c02.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000004_22347c02.szar new file mode 100644 index 00000000..ac26e091 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000004_22347c02.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000005_0b7e478a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000005_0b7e478a.szar new file mode 100644 index 00000000..6124803f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000005_0b7e478a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000006_938d7818.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000006_938d7818.szar new file mode 100644 index 00000000..1146bdc9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000006_938d7818.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000007_933853f9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000007_933853f9.szar new file mode 100644 index 00000000..c7fc5d5f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000007_933853f9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000008_68588cdd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000008_68588cdd.szar new file mode 100644 index 00000000..eff5baba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000008_68588cdd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000009_07f0a5a4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000009_07f0a5a4.szar new file mode 100644 index 00000000..f916f53a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000009_07f0a5a4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000010_fad9417c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000010_fad9417c.szar new file mode 100644 index 00000000..febf9abd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000010_fad9417c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000011_850849a5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000011_850849a5.szar new file mode 100644 index 00000000..39f4dd3d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000011_850849a5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000012_ae2d2e01.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000012_ae2d2e01.szar new file mode 100644 index 00000000..9c9cb9e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000012_ae2d2e01.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000013_21f8981e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000013_21f8981e.szar new file mode 100644 index 00000000..70b341ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000013_21f8981e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000014_2f585ed3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000014_2f585ed3.szar new file mode 100644 index 00000000..2b09d366 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000014_2f585ed3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000015_052c50cd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000015_052c50cd.szar new file mode 100644 index 00000000..6cc714c1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000015_052c50cd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000016_1fc9efab.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000016_1fc9efab.szar new file mode 100644 index 00000000..c89ccfb0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000016_1fc9efab.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000017_d27cfb17.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000017_d27cfb17.szar new file mode 100644 index 00000000..bf3a74a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000017_d27cfb17.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000018_a6943fee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000018_a6943fee.szar new file mode 100644 index 00000000..699b667f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000018_a6943fee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000019_dd6c212d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000019_dd6c212d.szar new file mode 100644 index 00000000..605cbae9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000019_dd6c212d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000020_e7a9ee17.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000020_e7a9ee17.szar new file mode 100644 index 00000000..33592b67 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000020_e7a9ee17.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000021_16c7b0d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000021_16c7b0d7.szar new file mode 100644 index 00000000..3ca8a9ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000021_16c7b0d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000022_82af31e2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000022_82af31e2.szar new file mode 100644 index 00000000..baaf88c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000022_82af31e2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000023_a5f1b8e5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000023_a5f1b8e5.szar new file mode 100644 index 00000000..4136d0bf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000023_a5f1b8e5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000024_65a2121c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000024_65a2121c.szar new file mode 100644 index 00000000..d707f813 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000024_65a2121c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000025_76d658c7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000025_76d658c7.szar new file mode 100644 index 00000000..e1d5a49f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000025_76d658c7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000026_c30e13ea.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000026_c30e13ea.szar new file mode 100644 index 00000000..00c9101e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000026_c30e13ea.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000027_38eed8dd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000027_38eed8dd.szar new file mode 100644 index 00000000..6be8bb89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000027_38eed8dd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000028_51e8b661.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000028_51e8b661.szar new file mode 100644 index 00000000..03e78d28 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000028_51e8b661.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000029_6b5a11c2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000029_6b5a11c2.szar new file mode 100644 index 00000000..783d5fb0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000029_6b5a11c2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000030_0855f508.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000030_0855f508.szar new file mode 100644 index 00000000..bc1b9d06 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000030_0855f508.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000031_05d8e3e0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000031_05d8e3e0.szar new file mode 100644 index 00000000..bb3f49df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000031_05d8e3e0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000032_c4a5aa04.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000032_c4a5aa04.szar new file mode 100644 index 00000000..2982f7a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000032_c4a5aa04.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000033_d0501f62.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000033_d0501f62.szar new file mode 100644 index 00000000..de76e1f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000033_d0501f62.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000034_bb114534.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000034_bb114534.szar new file mode 100644 index 00000000..7b5efa8e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000034_bb114534.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000035_e8e4b92a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000035_e8e4b92a.szar new file mode 100644 index 00000000..c6d07509 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000035_e8e4b92a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000036_8800b63b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000036_8800b63b.szar new file mode 100644 index 00000000..cb3ca3a2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000036_8800b63b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000037_cb6a80b5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000037_cb6a80b5.szar new file mode 100644 index 00000000..20b6f148 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000037_cb6a80b5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000038_094d3cb7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000038_094d3cb7.szar new file mode 100644 index 00000000..635c25dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000038_094d3cb7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000039_4bd84dc2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000039_4bd84dc2.szar new file mode 100644 index 00000000..c8e80484 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000039_4bd84dc2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000040_f2ee73f7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000040_f2ee73f7.szar new file mode 100644 index 00000000..3b4a8692 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000040_f2ee73f7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000041_b2109c3a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000041_b2109c3a.szar new file mode 100644 index 00000000..ecf5dae9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000041_b2109c3a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000042_e04e89d8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000042_e04e89d8.szar new file mode 100644 index 00000000..9c076901 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000042_e04e89d8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000043_c67521a7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000043_c67521a7.szar new file mode 100644 index 00000000..11e2e0be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000043_c67521a7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000044_98b03427.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000044_98b03427.szar new file mode 100644 index 00000000..a2d2a9f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000044_98b03427.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000045_82591147.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000045_82591147.szar new file mode 100644 index 00000000..23ac171c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000045_82591147.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000046_acf4ca40.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000046_acf4ca40.szar new file mode 100644 index 00000000..0fb78abc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000046_acf4ca40.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000047_3b06fb45.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000047_3b06fb45.szar new file mode 100644 index 00000000..b54f51c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000047_3b06fb45.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000048_5cc09be6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000048_5cc09be6.szar new file mode 100644 index 00000000..2850b25d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000048_5cc09be6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000049_f0481936.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000049_f0481936.szar new file mode 100644 index 00000000..63b1077e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000049_f0481936.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000050_bd21b410.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000050_bd21b410.szar new file mode 100644 index 00000000..c9b17651 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000050_bd21b410.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000051_82cdf9c1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000051_82cdf9c1.szar new file mode 100644 index 00000000..98a408b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000051_82cdf9c1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000052_8b216fb7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000052_8b216fb7.szar new file mode 100644 index 00000000..56a69ed9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000052_8b216fb7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000053_ef40bb12.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000053_ef40bb12.szar new file mode 100644 index 00000000..deb5d3fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000053_ef40bb12.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000054_32d465f2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000054_32d465f2.szar new file mode 100644 index 00000000..2f87e98f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000054_32d465f2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000055_5cdd1ec7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000055_5cdd1ec7.szar new file mode 100644 index 00000000..c8136ea5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000055_5cdd1ec7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000056_2c1e44ac.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000056_2c1e44ac.szar new file mode 100644 index 00000000..ec6084c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000056_2c1e44ac.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000057_fc95f9a7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000057_fc95f9a7.szar new file mode 100644 index 00000000..cf3f5913 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000057_fc95f9a7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000058_6dec48c2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000058_6dec48c2.szar new file mode 100644 index 00000000..6619bfea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000058_6dec48c2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000059_633e46f8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000059_633e46f8.szar new file mode 100644 index 00000000..ef4ff11f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000059_633e46f8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000060_edb4c664.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000060_edb4c664.szar new file mode 100644 index 00000000..436f611f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000060_edb4c664.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000061_ac144959.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000061_ac144959.szar new file mode 100644 index 00000000..f3f0d08b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000061_ac144959.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000062_745200cf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000062_745200cf.szar new file mode 100644 index 00000000..2d515ab1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000062_745200cf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000063_d47d7f45.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000063_d47d7f45.szar new file mode 100644 index 00000000..fc34292f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000063_d47d7f45.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000064_99e145c3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000064_99e145c3.szar new file mode 100644 index 00000000..15f5e967 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/archive/delta_00000000000000000064_99e145c3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000001_d443607c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000001_d443607c.szcp new file mode 100644 index 00000000..9874e445 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000001_d443607c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000002_8bcd9022.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000002_8bcd9022.szcp new file mode 100644 index 00000000..398af7c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000002_8bcd9022.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000003_231a6183.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000003_231a6183.szcp new file mode 100644 index 00000000..7c14e3dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000003_231a6183.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000004_05ed6d47.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000004_05ed6d47.szcp new file mode 100644 index 00000000..43c627b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000004_05ed6d47.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000005_7ed8ceff.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000005_7ed8ceff.szcp new file mode 100644 index 00000000..31fa350a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000005_7ed8ceff.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000006_8abb2a3f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000006_8abb2a3f.szcp new file mode 100644 index 00000000..1412fd6a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000006_8abb2a3f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000007_7806ce77.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000007_7806ce77.szcp new file mode 100644 index 00000000..be42d072 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000007_7806ce77.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000008_2c15d476.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000008_2c15d476.szcp new file mode 100644 index 00000000..309814fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000008_2c15d476.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000009_2117655a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000009_2117655a.szcp new file mode 100644 index 00000000..a0f91810 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000009_2117655a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000010_a21cd7a6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000010_a21cd7a6.szcp new file mode 100644 index 00000000..9c01928b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000010_a21cd7a6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000011_d4855b42.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000011_d4855b42.szcp new file mode 100644 index 00000000..cfad5daa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000011_d4855b42.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000012_8311d5e3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000012_8311d5e3.szcp new file mode 100644 index 00000000..8f69ff81 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000012_8311d5e3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000013_16d6f476.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000013_16d6f476.szcp new file mode 100644 index 00000000..535ce11e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000013_16d6f476.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000014_a5683903.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000014_a5683903.szcp new file mode 100644 index 00000000..b9afbe89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000014_a5683903.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000015_6ab281f4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000015_6ab281f4.szcp new file mode 100644 index 00000000..88f64ecd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000015_6ab281f4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000016_cbe3f33f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000016_cbe3f33f.szcp new file mode 100644 index 00000000..6468b754 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000016_cbe3f33f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000017_9acbc392.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000017_9acbc392.szcp new file mode 100644 index 00000000..ff27a6f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000017_9acbc392.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000018_84df6c1a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000018_84df6c1a.szcp new file mode 100644 index 00000000..aa6bb115 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000018_84df6c1a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000019_b0dd6a96.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000019_b0dd6a96.szcp new file mode 100644 index 00000000..7111483d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000019_b0dd6a96.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000020_19f86847.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000020_19f86847.szcp new file mode 100644 index 00000000..7fba21f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000020_19f86847.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000021_6a5059b0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000021_6a5059b0.szcp new file mode 100644 index 00000000..80e1ff0e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000021_6a5059b0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000022_9d33ab63.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000022_9d33ab63.szcp new file mode 100644 index 00000000..508e8cad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000022_9d33ab63.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000023_6a263e48.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000023_6a263e48.szcp new file mode 100644 index 00000000..048b241b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000023_6a263e48.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000024_ff3df15a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000024_ff3df15a.szcp new file mode 100644 index 00000000..21c4595a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000024_ff3df15a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000025_a1c9e9f1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000025_a1c9e9f1.szcp new file mode 100644 index 00000000..8dd075c9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000025_a1c9e9f1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000026_75cffc87.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000026_75cffc87.szcp new file mode 100644 index 00000000..69c5b66a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000026_75cffc87.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000027_243d1347.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000027_243d1347.szcp new file mode 100644 index 00000000..6f638ce8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000027_243d1347.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000028_0ceb38bf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000028_0ceb38bf.szcp new file mode 100644 index 00000000..8af79885 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000028_0ceb38bf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000029_33ba7094.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000029_33ba7094.szcp new file mode 100644 index 00000000..42e3201b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000029_33ba7094.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000030_35f7fce9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000030_35f7fce9.szcp new file mode 100644 index 00000000..a86c510a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000030_35f7fce9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000031_7cf4c53d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000031_7cf4c53d.szcp new file mode 100644 index 00000000..9f7f6552 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000031_7cf4c53d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000032_c175f083.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000032_c175f083.szcp new file mode 100644 index 00000000..cd798325 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000032_c175f083.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000033_b7bd0957.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000033_b7bd0957.szcp new file mode 100644 index 00000000..5f14fe5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000033_b7bd0957.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000034_f47186a2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000034_f47186a2.szcp new file mode 100644 index 00000000..76ed7f1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000034_f47186a2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000035_f27522a9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000035_f27522a9.szcp new file mode 100644 index 00000000..983a7ac5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000035_f27522a9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000036_f41e867c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000036_f41e867c.szcp new file mode 100644 index 00000000..a2f27e6b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000036_f41e867c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000037_cbc2f720.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000037_cbc2f720.szcp new file mode 100644 index 00000000..fb9600c8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000037_cbc2f720.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000038_f346b21e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000038_f346b21e.szcp new file mode 100644 index 00000000..8e3ce1d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000038_f346b21e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000039_927e0c10.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000039_927e0c10.szcp new file mode 100644 index 00000000..781878b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000039_927e0c10.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000040_4c5adc3e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000040_4c5adc3e.szcp new file mode 100644 index 00000000..a2027a51 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000040_4c5adc3e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000041_a61c7518.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000041_a61c7518.szcp new file mode 100644 index 00000000..e4e11b89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000041_a61c7518.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000042_0f570868.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000042_0f570868.szcp new file mode 100644 index 00000000..0bdf1e82 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000042_0f570868.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000043_dcdaeedf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000043_dcdaeedf.szcp new file mode 100644 index 00000000..076fc3d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000043_dcdaeedf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000044_d0a5458a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000044_d0a5458a.szcp new file mode 100644 index 00000000..af99cb1e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000044_d0a5458a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000045_71942f45.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000045_71942f45.szcp new file mode 100644 index 00000000..8b8fa010 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000045_71942f45.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000046_ba072c2f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000046_ba072c2f.szcp new file mode 100644 index 00000000..68a382c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000046_ba072c2f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000047_41824142.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000047_41824142.szcp new file mode 100644 index 00000000..fe0f307d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000047_41824142.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000048_0291eb85.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000048_0291eb85.szcp new file mode 100644 index 00000000..cc66bbe4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000048_0291eb85.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000049_db06f318.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000049_db06f318.szcp new file mode 100644 index 00000000..40420ef6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000049_db06f318.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000050_66910e17.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000050_66910e17.szcp new file mode 100644 index 00000000..001a2d82 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000050_66910e17.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000051_28b7641c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000051_28b7641c.szcp new file mode 100644 index 00000000..c8e82e8d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000051_28b7641c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000052_ff927fb5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000052_ff927fb5.szcp new file mode 100644 index 00000000..cc3453e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000052_ff927fb5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000053_490ee711.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000053_490ee711.szcp new file mode 100644 index 00000000..aa98ea75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000053_490ee711.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000054_780134d4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000054_780134d4.szcp new file mode 100644 index 00000000..dd732b0d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000054_780134d4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000055_304367ad.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000055_304367ad.szcp new file mode 100644 index 00000000..77f5cbd3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000055_304367ad.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000056_52f4576a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000056_52f4576a.szcp new file mode 100644 index 00000000..ba284312 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000056_52f4576a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000057_4f9c45c5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000057_4f9c45c5.szcp new file mode 100644 index 00000000..209bb105 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000057_4f9c45c5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000058_c60cd22e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000058_c60cd22e.szcp new file mode 100644 index 00000000..1d5fb225 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000058_c60cd22e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000059_a955382e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000059_a955382e.szcp new file mode 100644 index 00000000..b3aa50cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000059_a955382e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000060_faef409c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000060_faef409c.szcp new file mode 100644 index 00000000..3870a893 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000060_faef409c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000061_beb5cd7c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000061_beb5cd7c.szcp new file mode 100644 index 00000000..12e68637 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000061_beb5cd7c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000062_90d03a44.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000062_90d03a44.szcp new file mode 100644 index 00000000..b0ac547e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000062_90d03a44.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000063_fb9cbc6d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000063_fb9cbc6d.szcp new file mode 100644 index 00000000..dcf92218 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000063_fb9cbc6d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000064_3fc536be.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000064_3fc536be.szcp new file mode 100644 index 00000000..bb366b83 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000064_3fc536be.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000065_98547813.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000065_98547813.szcp new file mode 100644 index 00000000..e4cd1fc3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000065_98547813.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000066_63dde564.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000066_63dde564.szcp new file mode 100644 index 00000000..d3c2a4dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000066_63dde564.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000067_183a3572.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000067_183a3572.szcp new file mode 100644 index 00000000..62ae2f8b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000067_183a3572.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000068_938d6a9e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000068_938d6a9e.szcp new file mode 100644 index 00000000..7a1d616e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_048/checkpoints/checkpoint_00000000000000000068_938d6a9e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000001_5fb1fba2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000001_5fb1fba2.szar new file mode 100644 index 00000000..8cef45cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000001_5fb1fba2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000002_c1c03f8c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000002_c1c03f8c.szar new file mode 100644 index 00000000..5c7a57d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000002_c1c03f8c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000003_f19568fb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000003_f19568fb.szar new file mode 100644 index 00000000..fd52d699 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000003_f19568fb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000004_230ad5d1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000004_230ad5d1.szar new file mode 100644 index 00000000..bebcc74d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000004_230ad5d1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000005_be38c08d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000005_be38c08d.szar new file mode 100644 index 00000000..fa5cf3d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000005_be38c08d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000006_ab3662d2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000006_ab3662d2.szar new file mode 100644 index 00000000..2c81c269 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000006_ab3662d2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000007_686ec38a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000007_686ec38a.szar new file mode 100644 index 00000000..bab55fb7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000007_686ec38a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000008_2a1e7c93.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000008_2a1e7c93.szar new file mode 100644 index 00000000..81edfd5d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000008_2a1e7c93.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000009_f88a4d4c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000009_f88a4d4c.szar new file mode 100644 index 00000000..0b5092bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000009_f88a4d4c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000010_bb5c2104.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000010_bb5c2104.szar new file mode 100644 index 00000000..5bfbc02e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000010_bb5c2104.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000011_33eb764f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000011_33eb764f.szar new file mode 100644 index 00000000..7b142f1b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000011_33eb764f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000012_6bb4ff4e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000012_6bb4ff4e.szar new file mode 100644 index 00000000..15979c42 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000012_6bb4ff4e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000013_77a59983.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000013_77a59983.szar new file mode 100644 index 00000000..59537235 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000013_77a59983.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000014_daf08f61.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000014_daf08f61.szar new file mode 100644 index 00000000..b89528b6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000014_daf08f61.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000015_081283ec.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000015_081283ec.szar new file mode 100644 index 00000000..d6385500 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000015_081283ec.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000016_c3c59d2a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000016_c3c59d2a.szar new file mode 100644 index 00000000..ded381c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000016_c3c59d2a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000017_14bd5a0d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000017_14bd5a0d.szar new file mode 100644 index 00000000..a107c0b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000017_14bd5a0d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000018_42e47e42.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000018_42e47e42.szar new file mode 100644 index 00000000..0c8ce00a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000018_42e47e42.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000019_29297076.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000019_29297076.szar new file mode 100644 index 00000000..237e6b45 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000019_29297076.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000020_93a6dc49.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000020_93a6dc49.szar new file mode 100644 index 00000000..b9770e0d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000020_93a6dc49.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000021_a5a84738.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000021_a5a84738.szar new file mode 100644 index 00000000..b419535e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000021_a5a84738.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000022_16a26293.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000022_16a26293.szar new file mode 100644 index 00000000..8bf47a29 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000022_16a26293.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000023_bd1ba753.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000023_bd1ba753.szar new file mode 100644 index 00000000..d7ca03d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000023_bd1ba753.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000024_8b0a9f57.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000024_8b0a9f57.szar new file mode 100644 index 00000000..b57c6d53 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000024_8b0a9f57.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000025_8d26870f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000025_8d26870f.szar new file mode 100644 index 00000000..6225ecf3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000025_8d26870f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000026_7404269b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000026_7404269b.szar new file mode 100644 index 00000000..b71f54cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000026_7404269b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000027_f05e159d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000027_f05e159d.szar new file mode 100644 index 00000000..e04e5d77 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000027_f05e159d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000028_fb61d477.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000028_fb61d477.szar new file mode 100644 index 00000000..eace390c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000028_fb61d477.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000029_9b5b25e1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000029_9b5b25e1.szar new file mode 100644 index 00000000..8d8d92c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000029_9b5b25e1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000030_fea89d77.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000030_fea89d77.szar new file mode 100644 index 00000000..aa3e9524 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000030_fea89d77.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000031_941a93e8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000031_941a93e8.szar new file mode 100644 index 00000000..ea36fb0e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000031_941a93e8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000032_e3afeaef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000032_e3afeaef.szar new file mode 100644 index 00000000..036df6d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000032_e3afeaef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000033_9e4e16be.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000033_9e4e16be.szar new file mode 100644 index 00000000..821b3fe4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000033_9e4e16be.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000034_376c890e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000034_376c890e.szar new file mode 100644 index 00000000..4128bf94 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000034_376c890e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000035_47f2c73d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000035_47f2c73d.szar new file mode 100644 index 00000000..7145cfd7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000035_47f2c73d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000036_874392a7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000036_874392a7.szar new file mode 100644 index 00000000..aa069b80 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000036_874392a7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000037_e419a990.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000037_e419a990.szar new file mode 100644 index 00000000..944b9fad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000037_e419a990.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000038_d3ee724f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000038_d3ee724f.szar new file mode 100644 index 00000000..47dd81e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000038_d3ee724f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000039_4b41346d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000039_4b41346d.szar new file mode 100644 index 00000000..4e47ce03 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000039_4b41346d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000040_bf43c26a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000040_bf43c26a.szar new file mode 100644 index 00000000..5b9e6d77 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000040_bf43c26a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000041_0cf99ad8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000041_0cf99ad8.szar new file mode 100644 index 00000000..ad351828 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000041_0cf99ad8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000042_7b2916db.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000042_7b2916db.szar new file mode 100644 index 00000000..a5931bc8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000042_7b2916db.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000043_3fdf56a4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000043_3fdf56a4.szar new file mode 100644 index 00000000..d5e86f10 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000043_3fdf56a4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000044_f7ec4ffe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000044_f7ec4ffe.szar new file mode 100644 index 00000000..4b39d312 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000044_f7ec4ffe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000045_c218836a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000045_c218836a.szar new file mode 100644 index 00000000..b9ba5a94 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000045_c218836a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000046_19113c73.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000046_19113c73.szar new file mode 100644 index 00000000..257a7d66 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000046_19113c73.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000047_bb16eb5b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000047_bb16eb5b.szar new file mode 100644 index 00000000..a9a7fd9c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000047_bb16eb5b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000048_9c3b9c6d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000048_9c3b9c6d.szar new file mode 100644 index 00000000..613bea0c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000048_9c3b9c6d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000049_1cc9b2b3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000049_1cc9b2b3.szar new file mode 100644 index 00000000..dc22e522 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000049_1cc9b2b3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000050_c4d9b479.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000050_c4d9b479.szar new file mode 100644 index 00000000..389ebf44 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000050_c4d9b479.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000051_4498826b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000051_4498826b.szar new file mode 100644 index 00000000..4b8a73b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000051_4498826b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000052_51487df9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000052_51487df9.szar new file mode 100644 index 00000000..cc006f08 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000052_51487df9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000053_2c18ac6e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000053_2c18ac6e.szar new file mode 100644 index 00000000..382b175e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000053_2c18ac6e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000054_662ab50f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000054_662ab50f.szar new file mode 100644 index 00000000..b9c24f4e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000054_662ab50f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000055_97c5ad73.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000055_97c5ad73.szar new file mode 100644 index 00000000..5033c0a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000055_97c5ad73.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000056_8cc566ba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000056_8cc566ba.szar new file mode 100644 index 00000000..973e9f82 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000056_8cc566ba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000057_735c504f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000057_735c504f.szar new file mode 100644 index 00000000..67c7c223 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000057_735c504f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000058_f9721b53.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000058_f9721b53.szar new file mode 100644 index 00000000..0bb60626 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000058_f9721b53.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000059_623f3f3f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000059_623f3f3f.szar new file mode 100644 index 00000000..93660aa0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000059_623f3f3f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000060_547e8662.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000060_547e8662.szar new file mode 100644 index 00000000..e5675f22 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/archive/delta_00000000000000000060_547e8662.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000001_b61971e2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000001_b61971e2.szcp new file mode 100644 index 00000000..c09ea841 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000001_b61971e2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000002_22159320.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000002_22159320.szcp new file mode 100644 index 00000000..33624be3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000002_22159320.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000003_18cda85b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000003_18cda85b.szcp new file mode 100644 index 00000000..ca8536ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000003_18cda85b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000004_d782d0fa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000004_d782d0fa.szcp new file mode 100644 index 00000000..161a838e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000004_d782d0fa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000005_00eda6b2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000005_00eda6b2.szcp new file mode 100644 index 00000000..81574680 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000005_00eda6b2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000006_bb5bb8a9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000006_bb5bb8a9.szcp new file mode 100644 index 00000000..2cf28633 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000006_bb5bb8a9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000007_cc13076b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000007_cc13076b.szcp new file mode 100644 index 00000000..8e9dc823 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000007_cc13076b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000008_5f563118.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000008_5f563118.szcp new file mode 100644 index 00000000..dc3139b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000008_5f563118.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000009_1164d048.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000009_1164d048.szcp new file mode 100644 index 00000000..d4b728ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000009_1164d048.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000010_2b4e2c0c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000010_2b4e2c0c.szcp new file mode 100644 index 00000000..6e03801f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000010_2b4e2c0c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000011_dce3bd62.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000011_dce3bd62.szcp new file mode 100644 index 00000000..08b0cd19 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000011_dce3bd62.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000012_a60795ea.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000012_a60795ea.szcp new file mode 100644 index 00000000..4c2b386c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000012_a60795ea.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000013_f6e57b22.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000013_f6e57b22.szcp new file mode 100644 index 00000000..60c03e38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000013_f6e57b22.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000014_93a10426.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000014_93a10426.szcp new file mode 100644 index 00000000..3355b2c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000014_93a10426.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000015_3706c00b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000015_3706c00b.szcp new file mode 100644 index 00000000..4e0e26bf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000015_3706c00b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000016_379b3e8b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000016_379b3e8b.szcp new file mode 100644 index 00000000..c7e45e3d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000016_379b3e8b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000017_482e97e1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000017_482e97e1.szcp new file mode 100644 index 00000000..3b34cecb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000017_482e97e1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000018_b4e4566d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000018_b4e4566d.szcp new file mode 100644 index 00000000..e21f1b30 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000018_b4e4566d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000019_857d71e6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000019_857d71e6.szcp new file mode 100644 index 00000000..f95397cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000019_857d71e6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000020_5cc01a28.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000020_5cc01a28.szcp new file mode 100644 index 00000000..cb575c15 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000020_5cc01a28.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000021_d6183b36.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000021_d6183b36.szcp new file mode 100644 index 00000000..fdb7ebe1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000021_d6183b36.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000022_79597d52.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000022_79597d52.szcp new file mode 100644 index 00000000..0dde9dbb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000022_79597d52.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000023_280434a1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000023_280434a1.szcp new file mode 100644 index 00000000..c94abecc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000023_280434a1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000024_12f105c4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000024_12f105c4.szcp new file mode 100644 index 00000000..7b6514f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000024_12f105c4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000025_a94f7aff.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000025_a94f7aff.szcp new file mode 100644 index 00000000..2f438614 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000025_a94f7aff.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000026_ee3e0888.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000026_ee3e0888.szcp new file mode 100644 index 00000000..4f9d5f0e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000026_ee3e0888.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000027_de16e971.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000027_de16e971.szcp new file mode 100644 index 00000000..c0f64aa5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000027_de16e971.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000028_ed9cca4c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000028_ed9cca4c.szcp new file mode 100644 index 00000000..8f06f43b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000028_ed9cca4c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000029_e704ebee.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000029_e704ebee.szcp new file mode 100644 index 00000000..afb6e2f3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000029_e704ebee.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000030_0a427085.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000030_0a427085.szcp new file mode 100644 index 00000000..66bc088e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000030_0a427085.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000031_b374b566.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000031_b374b566.szcp new file mode 100644 index 00000000..483c4a71 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000031_b374b566.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000032_3c78143e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000032_3c78143e.szcp new file mode 100644 index 00000000..f3e124db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000032_3c78143e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000033_6e43a667.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000033_6e43a667.szcp new file mode 100644 index 00000000..3b06b22f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000033_6e43a667.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000034_5afea047.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000034_5afea047.szcp new file mode 100644 index 00000000..7c0f0c98 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000034_5afea047.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000035_a5b1416b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000035_a5b1416b.szcp new file mode 100644 index 00000000..7b86c848 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000035_a5b1416b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000036_6657f3db.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000036_6657f3db.szcp new file mode 100644 index 00000000..55789491 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000036_6657f3db.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000037_1ea954e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000037_1ea954e9.szcp new file mode 100644 index 00000000..df01432f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000037_1ea954e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000038_95c580e0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000038_95c580e0.szcp new file mode 100644 index 00000000..75f643f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000038_95c580e0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000039_f0a2009f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000039_f0a2009f.szcp new file mode 100644 index 00000000..1b71a2b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000039_f0a2009f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000040_3382fcc8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000040_3382fcc8.szcp new file mode 100644 index 00000000..af5cb7be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000040_3382fcc8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000041_cc197599.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000041_cc197599.szcp new file mode 100644 index 00000000..aea2d16d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000041_cc197599.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000042_af222ffe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000042_af222ffe.szcp new file mode 100644 index 00000000..7fa33d83 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000042_af222ffe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000043_1e98f724.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000043_1e98f724.szcp new file mode 100644 index 00000000..b2dc217b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000043_1e98f724.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000044_6a80a5e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000044_6a80a5e9.szcp new file mode 100644 index 00000000..9843e0bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000044_6a80a5e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000045_3c43f0e8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000045_3c43f0e8.szcp new file mode 100644 index 00000000..e2936550 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000045_3c43f0e8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000046_2d603d08.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000046_2d603d08.szcp new file mode 100644 index 00000000..9f5af8a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000046_2d603d08.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000047_0c259704.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000047_0c259704.szcp new file mode 100644 index 00000000..66d2566a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000047_0c259704.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000048_ee6cd6f6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000048_ee6cd6f6.szcp new file mode 100644 index 00000000..6a3719b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000048_ee6cd6f6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000049_b93121f4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000049_b93121f4.szcp new file mode 100644 index 00000000..6191a769 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000049_b93121f4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000050_c41eb331.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000050_c41eb331.szcp new file mode 100644 index 00000000..c46d26dd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000050_c41eb331.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000051_bb529d08.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000051_bb529d08.szcp new file mode 100644 index 00000000..0d963e17 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000051_bb529d08.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000052_bafbec72.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000052_bafbec72.szcp new file mode 100644 index 00000000..56732460 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000052_bafbec72.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000053_48e5418d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000053_48e5418d.szcp new file mode 100644 index 00000000..92508c73 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000053_48e5418d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000054_cc2ef710.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000054_cc2ef710.szcp new file mode 100644 index 00000000..b0f1319d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000054_cc2ef710.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000055_f749aea4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000055_f749aea4.szcp new file mode 100644 index 00000000..af8c6158 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000055_f749aea4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000056_135236a3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000056_135236a3.szcp new file mode 100644 index 00000000..20da69db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000056_135236a3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000057_d62af30c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000057_d62af30c.szcp new file mode 100644 index 00000000..15a3a47c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000057_d62af30c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000058_c3034185.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000058_c3034185.szcp new file mode 100644 index 00000000..5340e43f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000058_c3034185.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000059_d7e4bea4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000059_d7e4bea4.szcp new file mode 100644 index 00000000..867c127b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000059_d7e4bea4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000060_ec348325.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000060_ec348325.szcp new file mode 100644 index 00000000..91b39657 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_049/checkpoints/checkpoint_00000000000000000060_ec348325.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000001_1e38c4d5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000001_1e38c4d5.szar new file mode 100644 index 00000000..114a21db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000001_1e38c4d5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000002_86da481f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000002_86da481f.szar new file mode 100644 index 00000000..ab5baea9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000002_86da481f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000003_64a84855.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000003_64a84855.szar new file mode 100644 index 00000000..6a1d2043 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000003_64a84855.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000004_c45cb7b8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000004_c45cb7b8.szar new file mode 100644 index 00000000..3b206f31 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000004_c45cb7b8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000005_9b595a61.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000005_9b595a61.szar new file mode 100644 index 00000000..cb715957 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000005_9b595a61.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000006_184c7ecf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000006_184c7ecf.szar new file mode 100644 index 00000000..3447d89b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000006_184c7ecf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000007_f4af11f9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000007_f4af11f9.szar new file mode 100644 index 00000000..f970f133 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000007_f4af11f9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000008_919cc785.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000008_919cc785.szar new file mode 100644 index 00000000..c2bca1e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000008_919cc785.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000009_3400b214.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000009_3400b214.szar new file mode 100644 index 00000000..a5d98aad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000009_3400b214.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000010_fa2dbd19.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000010_fa2dbd19.szar new file mode 100644 index 00000000..fe89490c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000010_fa2dbd19.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000011_16f30c9b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000011_16f30c9b.szar new file mode 100644 index 00000000..5e1db434 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000011_16f30c9b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000012_73fe97ab.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000012_73fe97ab.szar new file mode 100644 index 00000000..754fb685 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000012_73fe97ab.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000013_e9f925d9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000013_e9f925d9.szar new file mode 100644 index 00000000..3509f269 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000013_e9f925d9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000014_2a5945fd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000014_2a5945fd.szar new file mode 100644 index 00000000..124f8885 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000014_2a5945fd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000015_2f71df1d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000015_2f71df1d.szar new file mode 100644 index 00000000..72be6918 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000015_2f71df1d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000016_962b76e2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000016_962b76e2.szar new file mode 100644 index 00000000..87a41368 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000016_962b76e2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000017_dd705b74.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000017_dd705b74.szar new file mode 100644 index 00000000..83acd3d0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000017_dd705b74.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000018_9758db3e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000018_9758db3e.szar new file mode 100644 index 00000000..2878f9e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000018_9758db3e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000019_690fec6e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000019_690fec6e.szar new file mode 100644 index 00000000..baee4c4b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000019_690fec6e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000020_6e299d83.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000020_6e299d83.szar new file mode 100644 index 00000000..fa7ead36 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000020_6e299d83.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000021_216c94ec.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000021_216c94ec.szar new file mode 100644 index 00000000..c8dda8fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000021_216c94ec.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000022_221fe8ee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000022_221fe8ee.szar new file mode 100644 index 00000000..c8c1b88c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000022_221fe8ee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000023_387608b6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000023_387608b6.szar new file mode 100644 index 00000000..ba8c5395 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000023_387608b6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000024_b86291b7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000024_b86291b7.szar new file mode 100644 index 00000000..ed550458 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000024_b86291b7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000025_31c929cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000025_31c929cc.szar new file mode 100644 index 00000000..70ac351f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000025_31c929cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000026_1098a7d9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000026_1098a7d9.szar new file mode 100644 index 00000000..dc4561ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000026_1098a7d9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000027_e5caa7cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000027_e5caa7cc.szar new file mode 100644 index 00000000..48cc0a30 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000027_e5caa7cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000028_2573e702.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000028_2573e702.szar new file mode 100644 index 00000000..b40c7150 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000028_2573e702.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000029_803ac8a9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000029_803ac8a9.szar new file mode 100644 index 00000000..0e22ad86 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000029_803ac8a9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000030_0e606882.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000030_0e606882.szar new file mode 100644 index 00000000..7894a234 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000030_0e606882.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000031_e761c933.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000031_e761c933.szar new file mode 100644 index 00000000..e1853efd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000031_e761c933.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000032_22cdcf74.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000032_22cdcf74.szar new file mode 100644 index 00000000..b57b5ddf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000032_22cdcf74.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000033_88fc4798.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000033_88fc4798.szar new file mode 100644 index 00000000..6082ed8c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000033_88fc4798.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000034_c3280f54.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000034_c3280f54.szar new file mode 100644 index 00000000..bf40240a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000034_c3280f54.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000035_804cea5a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000035_804cea5a.szar new file mode 100644 index 00000000..1a328718 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000035_804cea5a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000036_a8dde007.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000036_a8dde007.szar new file mode 100644 index 00000000..543954b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000036_a8dde007.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000037_d63ae5da.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000037_d63ae5da.szar new file mode 100644 index 00000000..0211c37c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000037_d63ae5da.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000038_8671de04.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000038_8671de04.szar new file mode 100644 index 00000000..9f35c049 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000038_8671de04.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000039_ef7ec7ba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000039_ef7ec7ba.szar new file mode 100644 index 00000000..806191f7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000039_ef7ec7ba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000040_2d57e8e2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000040_2d57e8e2.szar new file mode 100644 index 00000000..1e47c1ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000040_2d57e8e2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000041_f79a444f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000041_f79a444f.szar new file mode 100644 index 00000000..c0314f4d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000041_f79a444f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000042_56f18426.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000042_56f18426.szar new file mode 100644 index 00000000..98e2c743 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000042_56f18426.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000043_bcfac9a0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000043_bcfac9a0.szar new file mode 100644 index 00000000..6ff52908 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000043_bcfac9a0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000044_de33fb12.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000044_de33fb12.szar new file mode 100644 index 00000000..e11540f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000044_de33fb12.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000045_8e1ca21c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000045_8e1ca21c.szar new file mode 100644 index 00000000..e1f6f1ac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000045_8e1ca21c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000046_0c4d37d9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000046_0c4d37d9.szar new file mode 100644 index 00000000..1c2f5448 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000046_0c4d37d9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000047_62104674.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000047_62104674.szar new file mode 100644 index 00000000..0ab35e7f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000047_62104674.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000048_4e699af1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000048_4e699af1.szar new file mode 100644 index 00000000..99800fde Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000048_4e699af1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000049_e6399bab.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000049_e6399bab.szar new file mode 100644 index 00000000..6246ac51 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000049_e6399bab.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000050_49a3d66c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000050_49a3d66c.szar new file mode 100644 index 00000000..c6e1c4da Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000050_49a3d66c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000051_da6aa089.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000051_da6aa089.szar new file mode 100644 index 00000000..7dbf862b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000051_da6aa089.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000052_161b3a85.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000052_161b3a85.szar new file mode 100644 index 00000000..7971a7a7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000052_161b3a85.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000053_2479a75a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000053_2479a75a.szar new file mode 100644 index 00000000..d310961a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000053_2479a75a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000054_4b903555.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000054_4b903555.szar new file mode 100644 index 00000000..3af99516 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000054_4b903555.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000055_b3f0a78a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000055_b3f0a78a.szar new file mode 100644 index 00000000..a1ed14fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000055_b3f0a78a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000056_33b4fee7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000056_33b4fee7.szar new file mode 100644 index 00000000..ac047fa0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000056_33b4fee7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000057_1c3e6ad7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000057_1c3e6ad7.szar new file mode 100644 index 00000000..c5574177 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000057_1c3e6ad7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000058_743db813.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000058_743db813.szar new file mode 100644 index 00000000..728a566c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000058_743db813.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000059_49431bcb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000059_49431bcb.szar new file mode 100644 index 00000000..8c721f5c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000059_49431bcb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000060_2a2bd514.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000060_2a2bd514.szar new file mode 100644 index 00000000..ea8a4d74 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000060_2a2bd514.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000061_fc001c1e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000061_fc001c1e.szar new file mode 100644 index 00000000..4ca05337 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000061_fc001c1e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000062_52df3022.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000062_52df3022.szar new file mode 100644 index 00000000..e3b08881 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000062_52df3022.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000063_1405c68a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000063_1405c68a.szar new file mode 100644 index 00000000..39caa396 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000063_1405c68a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000064_852435d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000064_852435d7.szar new file mode 100644 index 00000000..cade1b72 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/archive/delta_00000000000000000064_852435d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000001_5e62d54a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000001_5e62d54a.szcp new file mode 100644 index 00000000..3b031f12 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000001_5e62d54a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000002_62d87080.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000002_62d87080.szcp new file mode 100644 index 00000000..8a31df80 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000002_62d87080.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000003_e422ad51.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000003_e422ad51.szcp new file mode 100644 index 00000000..fe42029a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000003_e422ad51.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000004_50d3bb7b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000004_50d3bb7b.szcp new file mode 100644 index 00000000..70c01f84 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000004_50d3bb7b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000005_c21efb0b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000005_c21efb0b.szcp new file mode 100644 index 00000000..a0f0e928 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000005_c21efb0b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000006_f8aa272c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000006_f8aa272c.szcp new file mode 100644 index 00000000..6302647f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000006_f8aa272c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000007_b3ac7d29.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000007_b3ac7d29.szcp new file mode 100644 index 00000000..bd6f1f7a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000007_b3ac7d29.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000008_a4a51bb6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000008_a4a51bb6.szcp new file mode 100644 index 00000000..f690549e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000008_a4a51bb6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000009_b75b1965.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000009_b75b1965.szcp new file mode 100644 index 00000000..8a7bff94 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000009_b75b1965.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000010_6e19c2b0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000010_6e19c2b0.szcp new file mode 100644 index 00000000..dc22f5ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000010_6e19c2b0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000011_cfd8b04e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000011_cfd8b04e.szcp new file mode 100644 index 00000000..c2fcfaff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000011_cfd8b04e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000012_077e52da.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000012_077e52da.szcp new file mode 100644 index 00000000..3a9c1dda Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000012_077e52da.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000013_0c34a81f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000013_0c34a81f.szcp new file mode 100644 index 00000000..6d5871a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000013_0c34a81f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000014_4cc6e15a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000014_4cc6e15a.szcp new file mode 100644 index 00000000..37f5ab0c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000014_4cc6e15a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000015_4fdade6d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000015_4fdade6d.szcp new file mode 100644 index 00000000..4bb51722 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000015_4fdade6d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000016_26e9f869.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000016_26e9f869.szcp new file mode 100644 index 00000000..5093fbd5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000016_26e9f869.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000017_3005d5d3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000017_3005d5d3.szcp new file mode 100644 index 00000000..a55f9ba7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000017_3005d5d3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000018_53987490.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000018_53987490.szcp new file mode 100644 index 00000000..ee9b141b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000018_53987490.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000019_a2c36d8d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000019_a2c36d8d.szcp new file mode 100644 index 00000000..132c9205 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000019_a2c36d8d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000020_7d554daf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000020_7d554daf.szcp new file mode 100644 index 00000000..f45ee3f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000020_7d554daf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000021_46e8f040.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000021_46e8f040.szcp new file mode 100644 index 00000000..76a70309 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000021_46e8f040.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000022_003d6682.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000022_003d6682.szcp new file mode 100644 index 00000000..437598ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000022_003d6682.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000023_0d134166.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000023_0d134166.szcp new file mode 100644 index 00000000..6f2787e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000023_0d134166.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000024_0bede672.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000024_0bede672.szcp new file mode 100644 index 00000000..a8aba985 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000024_0bede672.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000025_920dfda6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000025_920dfda6.szcp new file mode 100644 index 00000000..fc69365c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000025_920dfda6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000026_b862cbe7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000026_b862cbe7.szcp new file mode 100644 index 00000000..58c7596b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000026_b862cbe7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000027_8f62cbaa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000027_8f62cbaa.szcp new file mode 100644 index 00000000..db1ebb13 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000027_8f62cbaa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000028_9ca2501e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000028_9ca2501e.szcp new file mode 100644 index 00000000..3f8ed025 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000028_9ca2501e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000029_40e54c32.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000029_40e54c32.szcp new file mode 100644 index 00000000..753f52d2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000029_40e54c32.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000030_68dac805.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000030_68dac805.szcp new file mode 100644 index 00000000..5257a143 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000030_68dac805.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000031_0b90fb8e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000031_0b90fb8e.szcp new file mode 100644 index 00000000..cd742ad8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000031_0b90fb8e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000032_a1b3c2b9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000032_a1b3c2b9.szcp new file mode 100644 index 00000000..f99f9060 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000032_a1b3c2b9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000033_33fd9893.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000033_33fd9893.szcp new file mode 100644 index 00000000..63a6639f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000033_33fd9893.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000034_651b2ed8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000034_651b2ed8.szcp new file mode 100644 index 00000000..822c3b37 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000034_651b2ed8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000035_40305dc3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000035_40305dc3.szcp new file mode 100644 index 00000000..b9cb8782 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000035_40305dc3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000036_432fe7c3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000036_432fe7c3.szcp new file mode 100644 index 00000000..85fcfe8c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000036_432fe7c3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000037_8d0b83a8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000037_8d0b83a8.szcp new file mode 100644 index 00000000..17f91931 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000037_8d0b83a8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000038_4ff83e0b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000038_4ff83e0b.szcp new file mode 100644 index 00000000..73d02cb9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000038_4ff83e0b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000039_e038a262.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000039_e038a262.szcp new file mode 100644 index 00000000..3197fe6b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000039_e038a262.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000040_4bde7d8f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000040_4bde7d8f.szcp new file mode 100644 index 00000000..be0a24a9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000040_4bde7d8f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000041_c658b850.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000041_c658b850.szcp new file mode 100644 index 00000000..e1c5a67c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000041_c658b850.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000042_7e62d370.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000042_7e62d370.szcp new file mode 100644 index 00000000..ce36c6cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000042_7e62d370.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000043_c4d28075.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000043_c4d28075.szcp new file mode 100644 index 00000000..b7840528 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000043_c4d28075.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000044_5ea4c747.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000044_5ea4c747.szcp new file mode 100644 index 00000000..96400588 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000044_5ea4c747.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000045_d919b596.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000045_d919b596.szcp new file mode 100644 index 00000000..22c7dc86 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000045_d919b596.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000046_34d764ba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000046_34d764ba.szcp new file mode 100644 index 00000000..3458f90b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000046_34d764ba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000047_1d2214e3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000047_1d2214e3.szcp new file mode 100644 index 00000000..812f0489 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000047_1d2214e3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000048_c5b34c3f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000048_c5b34c3f.szcp new file mode 100644 index 00000000..84cbc9ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000048_c5b34c3f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000049_6793ff59.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000049_6793ff59.szcp new file mode 100644 index 00000000..1332d392 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000049_6793ff59.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000050_af882fd8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000050_af882fd8.szcp new file mode 100644 index 00000000..ebba3411 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000050_af882fd8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000051_77329090.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000051_77329090.szcp new file mode 100644 index 00000000..e3c27888 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000051_77329090.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000052_7666fcee.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000052_7666fcee.szcp new file mode 100644 index 00000000..7dfb86d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000052_7666fcee.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000053_8489f703.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000053_8489f703.szcp new file mode 100644 index 00000000..60e95437 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000053_8489f703.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000054_22800f8d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000054_22800f8d.szcp new file mode 100644 index 00000000..be365154 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000054_22800f8d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000055_729021cf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000055_729021cf.szcp new file mode 100644 index 00000000..9d12f0a9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000055_729021cf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000056_b61f6843.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000056_b61f6843.szcp new file mode 100644 index 00000000..ff180ec1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000056_b61f6843.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000057_59f97611.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000057_59f97611.szcp new file mode 100644 index 00000000..b93d1694 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000057_59f97611.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000058_51fbe814.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000058_51fbe814.szcp new file mode 100644 index 00000000..b282103e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000058_51fbe814.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000059_4f4b54f7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000059_4f4b54f7.szcp new file mode 100644 index 00000000..b87d9272 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000059_4f4b54f7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000060_27e296b7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000060_27e296b7.szcp new file mode 100644 index 00000000..c1215248 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000060_27e296b7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000061_473d79dd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000061_473d79dd.szcp new file mode 100644 index 00000000..8de60050 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000061_473d79dd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000062_3d34a7c1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000062_3d34a7c1.szcp new file mode 100644 index 00000000..91ba4531 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000062_3d34a7c1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000063_bb128fe7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000063_bb128fe7.szcp new file mode 100644 index 00000000..730d3b88 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000063_bb128fe7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000064_dc38d68d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000064_dc38d68d.szcp new file mode 100644 index 00000000..3b4d6b94 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_050/checkpoints/checkpoint_00000000000000000064_dc38d68d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000001_5d8340dd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000001_5d8340dd.szar new file mode 100644 index 00000000..d724e163 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000001_5d8340dd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000002_8070a42c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000002_8070a42c.szar new file mode 100644 index 00000000..91c9fe04 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000002_8070a42c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000003_a5d3c756.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000003_a5d3c756.szar new file mode 100644 index 00000000..e1dcec1d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000003_a5d3c756.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000004_715c5dcb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000004_715c5dcb.szar new file mode 100644 index 00000000..fe516618 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000004_715c5dcb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000005_537747ef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000005_537747ef.szar new file mode 100644 index 00000000..05d5e4d2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000005_537747ef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000006_dc6b8254.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000006_dc6b8254.szar new file mode 100644 index 00000000..d4aa7781 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000006_dc6b8254.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000007_fe03cbec.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000007_fe03cbec.szar new file mode 100644 index 00000000..872d5ef4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000007_fe03cbec.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000008_8c9d3e0b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000008_8c9d3e0b.szar new file mode 100644 index 00000000..59d859a8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000008_8c9d3e0b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000009_97966c77.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000009_97966c77.szar new file mode 100644 index 00000000..a39b2375 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000009_97966c77.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000010_249f8fba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000010_249f8fba.szar new file mode 100644 index 00000000..ecc4f95a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000010_249f8fba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000011_4741fe9d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000011_4741fe9d.szar new file mode 100644 index 00000000..4a438f07 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000011_4741fe9d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000012_7372511f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000012_7372511f.szar new file mode 100644 index 00000000..9e253a3f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000012_7372511f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000013_39043706.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000013_39043706.szar new file mode 100644 index 00000000..3783ae23 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000013_39043706.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000014_870b71f4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000014_870b71f4.szar new file mode 100644 index 00000000..c0e5b33b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000014_870b71f4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000015_f43c3930.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000015_f43c3930.szar new file mode 100644 index 00000000..a9ac139c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000015_f43c3930.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000016_71e225b5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000016_71e225b5.szar new file mode 100644 index 00000000..ff30d9d9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000016_71e225b5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000017_c3dcddbd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000017_c3dcddbd.szar new file mode 100644 index 00000000..3f905576 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000017_c3dcddbd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000018_f59da6ed.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000018_f59da6ed.szar new file mode 100644 index 00000000..8e1a23f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000018_f59da6ed.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000019_870744d0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000019_870744d0.szar new file mode 100644 index 00000000..2ac8db94 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000019_870744d0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000020_b3446880.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000020_b3446880.szar new file mode 100644 index 00000000..faece9d2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000020_b3446880.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000021_decb8b30.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000021_decb8b30.szar new file mode 100644 index 00000000..32e2153b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000021_decb8b30.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000022_cabe214c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000022_cabe214c.szar new file mode 100644 index 00000000..de1822fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000022_cabe214c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000023_6c307b99.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000023_6c307b99.szar new file mode 100644 index 00000000..d72e862f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000023_6c307b99.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000024_7233f575.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000024_7233f575.szar new file mode 100644 index 00000000..6d355567 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000024_7233f575.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000025_5548ba21.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000025_5548ba21.szar new file mode 100644 index 00000000..78aa32d0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000025_5548ba21.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000026_9e7fb0dc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000026_9e7fb0dc.szar new file mode 100644 index 00000000..ab32f143 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000026_9e7fb0dc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000027_94647476.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000027_94647476.szar new file mode 100644 index 00000000..6e835f48 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000027_94647476.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000028_8b89ba39.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000028_8b89ba39.szar new file mode 100644 index 00000000..e243bab7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000028_8b89ba39.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000029_33166b79.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000029_33166b79.szar new file mode 100644 index 00000000..d04caf07 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000029_33166b79.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000030_f8d4c980.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000030_f8d4c980.szar new file mode 100644 index 00000000..64b6e394 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000030_f8d4c980.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000031_2e5390bf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000031_2e5390bf.szar new file mode 100644 index 00000000..71a73496 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000031_2e5390bf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000032_9c15443d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000032_9c15443d.szar new file mode 100644 index 00000000..67da5bd0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000032_9c15443d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000033_f4607257.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000033_f4607257.szar new file mode 100644 index 00000000..38b2350c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000033_f4607257.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000034_936cdddc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000034_936cdddc.szar new file mode 100644 index 00000000..5be565d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000034_936cdddc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000035_0a832c2e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000035_0a832c2e.szar new file mode 100644 index 00000000..d1ebe903 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000035_0a832c2e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000036_9a0c4430.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000036_9a0c4430.szar new file mode 100644 index 00000000..dc7090f3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000036_9a0c4430.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000037_6670b0cd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000037_6670b0cd.szar new file mode 100644 index 00000000..ad8d15cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000037_6670b0cd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000038_8c9bd519.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000038_8c9bd519.szar new file mode 100644 index 00000000..95514531 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000038_8c9bd519.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000039_4783b8d4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000039_4783b8d4.szar new file mode 100644 index 00000000..64727cd6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000039_4783b8d4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000040_9724ef29.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000040_9724ef29.szar new file mode 100644 index 00000000..34ee4a06 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000040_9724ef29.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000041_e747a1e7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000041_e747a1e7.szar new file mode 100644 index 00000000..e75f9fb5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000041_e747a1e7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000042_f28cf35e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000042_f28cf35e.szar new file mode 100644 index 00000000..e05d5b35 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000042_f28cf35e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000043_37156c28.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000043_37156c28.szar new file mode 100644 index 00000000..669278e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000043_37156c28.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000044_0e29f304.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000044_0e29f304.szar new file mode 100644 index 00000000..d22b0724 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000044_0e29f304.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000045_17a50703.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000045_17a50703.szar new file mode 100644 index 00000000..111bd5d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000045_17a50703.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000046_34b053bc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000046_34b053bc.szar new file mode 100644 index 00000000..ba9497d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000046_34b053bc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000047_9a6c391c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000047_9a6c391c.szar new file mode 100644 index 00000000..dc24e90d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000047_9a6c391c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000048_0acede46.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000048_0acede46.szar new file mode 100644 index 00000000..180f9730 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000048_0acede46.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000049_d376a9da.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000049_d376a9da.szar new file mode 100644 index 00000000..708fbbae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000049_d376a9da.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000050_864467d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000050_864467d7.szar new file mode 100644 index 00000000..eb078ab3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000050_864467d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000051_9d8b89c3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000051_9d8b89c3.szar new file mode 100644 index 00000000..cfe471cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000051_9d8b89c3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000052_f4585c7b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000052_f4585c7b.szar new file mode 100644 index 00000000..4b7c0d1b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000052_f4585c7b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000053_52a7fe26.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000053_52a7fe26.szar new file mode 100644 index 00000000..528d2612 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000053_52a7fe26.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000054_384a4a6f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000054_384a4a6f.szar new file mode 100644 index 00000000..53978e94 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000054_384a4a6f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000055_22ab74d0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000055_22ab74d0.szar new file mode 100644 index 00000000..ec0f4723 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/archive/delta_00000000000000000055_22ab74d0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000001_2faee3e8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000001_2faee3e8.szcp new file mode 100644 index 00000000..f4d6d492 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000001_2faee3e8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000002_b5740f79.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000002_b5740f79.szcp new file mode 100644 index 00000000..6c173b93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000002_b5740f79.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000003_a83c2df0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000003_a83c2df0.szcp new file mode 100644 index 00000000..b874448d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000003_a83c2df0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000004_5031ffd2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000004_5031ffd2.szcp new file mode 100644 index 00000000..e30823ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000004_5031ffd2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000005_69b17bc7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000005_69b17bc7.szcp new file mode 100644 index 00000000..6b7b6a68 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000005_69b17bc7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000006_262969a2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000006_262969a2.szcp new file mode 100644 index 00000000..2ca85f2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000006_262969a2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000007_ab3e78e8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000007_ab3e78e8.szcp new file mode 100644 index 00000000..e05e612f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000007_ab3e78e8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000008_e7f9fa34.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000008_e7f9fa34.szcp new file mode 100644 index 00000000..d6d0baee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000008_e7f9fa34.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000009_cdfcfb6a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000009_cdfcfb6a.szcp new file mode 100644 index 00000000..d05532e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000009_cdfcfb6a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000010_e44ce305.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000010_e44ce305.szcp new file mode 100644 index 00000000..df00250e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000010_e44ce305.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000011_0943f19f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000011_0943f19f.szcp new file mode 100644 index 00000000..15e6cbc9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000011_0943f19f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000012_b8235da7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000012_b8235da7.szcp new file mode 100644 index 00000000..0018cfc5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000012_b8235da7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000013_135fda3e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000013_135fda3e.szcp new file mode 100644 index 00000000..0b34d3c1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000013_135fda3e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000014_c06bbb1c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000014_c06bbb1c.szcp new file mode 100644 index 00000000..1c22a7d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000014_c06bbb1c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000015_bf0351ae.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000015_bf0351ae.szcp new file mode 100644 index 00000000..693c589a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000015_bf0351ae.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000016_6aeed671.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000016_6aeed671.szcp new file mode 100644 index 00000000..b3d0165f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000016_6aeed671.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000017_32a49ef7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000017_32a49ef7.szcp new file mode 100644 index 00000000..c2480a87 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000017_32a49ef7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000018_edf78e72.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000018_edf78e72.szcp new file mode 100644 index 00000000..c8fec32a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000018_edf78e72.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000019_4ecd87cb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000019_4ecd87cb.szcp new file mode 100644 index 00000000..3183298d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000019_4ecd87cb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000020_d5fa4ab7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000020_d5fa4ab7.szcp new file mode 100644 index 00000000..5c6055c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000020_d5fa4ab7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000021_fe4d9fde.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000021_fe4d9fde.szcp new file mode 100644 index 00000000..a23e4821 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000021_fe4d9fde.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000022_d7c15a06.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000022_d7c15a06.szcp new file mode 100644 index 00000000..04c721df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000022_d7c15a06.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000023_4223e253.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000023_4223e253.szcp new file mode 100644 index 00000000..3fe2952e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000023_4223e253.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000024_63baa3bd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000024_63baa3bd.szcp new file mode 100644 index 00000000..3599f383 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000024_63baa3bd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000025_7cbe7d83.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000025_7cbe7d83.szcp new file mode 100644 index 00000000..fef1bd4c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000025_7cbe7d83.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000026_a9780b28.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000026_a9780b28.szcp new file mode 100644 index 00000000..6cdaa74b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000026_a9780b28.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000027_47c43776.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000027_47c43776.szcp new file mode 100644 index 00000000..823077a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000027_47c43776.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000028_46bd7e0f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000028_46bd7e0f.szcp new file mode 100644 index 00000000..636082f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000028_46bd7e0f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000029_d4997ba5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000029_d4997ba5.szcp new file mode 100644 index 00000000..39f0c0fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000029_d4997ba5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000030_899859b4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000030_899859b4.szcp new file mode 100644 index 00000000..2f54d9ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000030_899859b4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000031_039a7947.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000031_039a7947.szcp new file mode 100644 index 00000000..cbb6ee86 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000031_039a7947.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000032_e53b3531.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000032_e53b3531.szcp new file mode 100644 index 00000000..d688fad8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000032_e53b3531.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000033_b2367275.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000033_b2367275.szcp new file mode 100644 index 00000000..0eb0f93f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000033_b2367275.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000034_0c48fcc3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000034_0c48fcc3.szcp new file mode 100644 index 00000000..f5954717 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000034_0c48fcc3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000035_ac361364.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000035_ac361364.szcp new file mode 100644 index 00000000..4de2b165 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000035_ac361364.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000036_866f862e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000036_866f862e.szcp new file mode 100644 index 00000000..cbb9541a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000036_866f862e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000037_01c9fb49.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000037_01c9fb49.szcp new file mode 100644 index 00000000..46d640e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000037_01c9fb49.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000038_c2e7132c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000038_c2e7132c.szcp new file mode 100644 index 00000000..06ecc6e4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000038_c2e7132c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000039_3b2cb15f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000039_3b2cb15f.szcp new file mode 100644 index 00000000..8ddc3dce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000039_3b2cb15f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000040_1b837112.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000040_1b837112.szcp new file mode 100644 index 00000000..910eb321 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000040_1b837112.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000041_d22a46d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000041_d22a46d1.szcp new file mode 100644 index 00000000..eae63f28 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000041_d22a46d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000042_718fd694.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000042_718fd694.szcp new file mode 100644 index 00000000..ee1d77b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000042_718fd694.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000043_ae928118.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000043_ae928118.szcp new file mode 100644 index 00000000..4e4d8a8b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000043_ae928118.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000044_135f5811.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000044_135f5811.szcp new file mode 100644 index 00000000..c89552dd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000044_135f5811.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000045_3bb03d75.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000045_3bb03d75.szcp new file mode 100644 index 00000000..f0208574 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000045_3bb03d75.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000046_0955c9ae.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000046_0955c9ae.szcp new file mode 100644 index 00000000..278a3209 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000046_0955c9ae.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000047_959146ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000047_959146ce.szcp new file mode 100644 index 00000000..05cc2123 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000047_959146ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000048_ba8553dc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000048_ba8553dc.szcp new file mode 100644 index 00000000..d1f49fad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000048_ba8553dc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000049_e41a6846.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000049_e41a6846.szcp new file mode 100644 index 00000000..0b610d00 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000049_e41a6846.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000050_56de41dd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000050_56de41dd.szcp new file mode 100644 index 00000000..1e2934b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000050_56de41dd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000051_3636bd68.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000051_3636bd68.szcp new file mode 100644 index 00000000..0f1bb7e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000051_3636bd68.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000052_5ad08c8d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000052_5ad08c8d.szcp new file mode 100644 index 00000000..d57416d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000052_5ad08c8d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000053_447c1335.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000053_447c1335.szcp new file mode 100644 index 00000000..391fc9f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000053_447c1335.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000054_acb58fa2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000054_acb58fa2.szcp new file mode 100644 index 00000000..68155093 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000054_acb58fa2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000055_d5308cde.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000055_d5308cde.szcp new file mode 100644 index 00000000..799db8f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_051/checkpoints/checkpoint_00000000000000000055_d5308cde.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000001_42d15176.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000001_42d15176.szar new file mode 100644 index 00000000..4cff5431 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000001_42d15176.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000002_dd925a62.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000002_dd925a62.szar new file mode 100644 index 00000000..72d30234 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000002_dd925a62.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000003_ad68cbe1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000003_ad68cbe1.szar new file mode 100644 index 00000000..cf137dc4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000003_ad68cbe1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000004_2a20f016.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000004_2a20f016.szar new file mode 100644 index 00000000..da047767 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000004_2a20f016.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000005_1d973578.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000005_1d973578.szar new file mode 100644 index 00000000..67cec08c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000005_1d973578.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000006_747cc2fc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000006_747cc2fc.szar new file mode 100644 index 00000000..2e24c50a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000006_747cc2fc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000007_8153061d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000007_8153061d.szar new file mode 100644 index 00000000..4e69badf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000007_8153061d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000008_37a1dc54.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000008_37a1dc54.szar new file mode 100644 index 00000000..3a6b962b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000008_37a1dc54.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000009_a84408fa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000009_a84408fa.szar new file mode 100644 index 00000000..759d386f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000009_a84408fa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000010_b1b4997c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000010_b1b4997c.szar new file mode 100644 index 00000000..ea483dcb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000010_b1b4997c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000011_dd049987.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000011_dd049987.szar new file mode 100644 index 00000000..e9a575d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000011_dd049987.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000012_9f9ac93c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000012_9f9ac93c.szar new file mode 100644 index 00000000..87d6afb4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000012_9f9ac93c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000013_686146d6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000013_686146d6.szar new file mode 100644 index 00000000..14d066c8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000013_686146d6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000014_8c04fe80.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000014_8c04fe80.szar new file mode 100644 index 00000000..ce0b9b12 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000014_8c04fe80.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000015_2f62e480.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000015_2f62e480.szar new file mode 100644 index 00000000..2b5a8a38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000015_2f62e480.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000016_48f0b9db.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000016_48f0b9db.szar new file mode 100644 index 00000000..6e423523 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000016_48f0b9db.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000017_ee4dda9d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000017_ee4dda9d.szar new file mode 100644 index 00000000..e2af335a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000017_ee4dda9d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000018_3a712c3d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000018_3a712c3d.szar new file mode 100644 index 00000000..3a55de17 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000018_3a712c3d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000019_d0ac6ac5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000019_d0ac6ac5.szar new file mode 100644 index 00000000..3e2a790a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000019_d0ac6ac5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000020_ec5dc3ed.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000020_ec5dc3ed.szar new file mode 100644 index 00000000..bdc131de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000020_ec5dc3ed.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000021_0e44ae9f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000021_0e44ae9f.szar new file mode 100644 index 00000000..d5c30179 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000021_0e44ae9f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000022_847b0cc6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000022_847b0cc6.szar new file mode 100644 index 00000000..dd9c2192 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000022_847b0cc6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000023_07aec7bf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000023_07aec7bf.szar new file mode 100644 index 00000000..13672b12 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000023_07aec7bf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000024_bff4d052.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000024_bff4d052.szar new file mode 100644 index 00000000..a177a5f7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000024_bff4d052.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000025_61d8e65f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000025_61d8e65f.szar new file mode 100644 index 00000000..07501429 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000025_61d8e65f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000026_b408cac9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000026_b408cac9.szar new file mode 100644 index 00000000..cc3083cc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000026_b408cac9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000027_3549f8ef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000027_3549f8ef.szar new file mode 100644 index 00000000..8e9c6662 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000027_3549f8ef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000028_e8de87cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000028_e8de87cc.szar new file mode 100644 index 00000000..5a8bd1b6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000028_e8de87cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000029_25bccaca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000029_25bccaca.szar new file mode 100644 index 00000000..1eb1fea4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000029_25bccaca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000030_383ee5cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000030_383ee5cc.szar new file mode 100644 index 00000000..c24ee781 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000030_383ee5cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000031_d13e50cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000031_d13e50cc.szar new file mode 100644 index 00000000..9cb1d42f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000031_d13e50cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000032_c1f5a628.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000032_c1f5a628.szar new file mode 100644 index 00000000..baccc50a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000032_c1f5a628.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000033_a93f27fc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000033_a93f27fc.szar new file mode 100644 index 00000000..6002f534 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000033_a93f27fc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000034_41120bbc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000034_41120bbc.szar new file mode 100644 index 00000000..b25025eb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000034_41120bbc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000035_a194a78a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000035_a194a78a.szar new file mode 100644 index 00000000..cb147b7e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000035_a194a78a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000036_98098034.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000036_98098034.szar new file mode 100644 index 00000000..0e06131c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000036_98098034.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000037_f1059a7b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000037_f1059a7b.szar new file mode 100644 index 00000000..3db4ce4d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000037_f1059a7b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000038_76df9462.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000038_76df9462.szar new file mode 100644 index 00000000..eac5fc81 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000038_76df9462.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000039_54fdd3ed.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000039_54fdd3ed.szar new file mode 100644 index 00000000..87705517 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000039_54fdd3ed.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000040_538e8089.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000040_538e8089.szar new file mode 100644 index 00000000..27733423 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000040_538e8089.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000041_12af711f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000041_12af711f.szar new file mode 100644 index 00000000..e0a346f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000041_12af711f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000042_7c6ea610.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000042_7c6ea610.szar new file mode 100644 index 00000000..cdfe192e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000042_7c6ea610.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000043_c6e9f63f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000043_c6e9f63f.szar new file mode 100644 index 00000000..97895802 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000043_c6e9f63f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000044_4750f0f4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000044_4750f0f4.szar new file mode 100644 index 00000000..1ae8cee3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000044_4750f0f4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000045_1d16d8ae.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000045_1d16d8ae.szar new file mode 100644 index 00000000..301e85c1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000045_1d16d8ae.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000046_9a022d24.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000046_9a022d24.szar new file mode 100644 index 00000000..65d38591 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000046_9a022d24.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000047_eb4b09ab.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000047_eb4b09ab.szar new file mode 100644 index 00000000..d042d049 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000047_eb4b09ab.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000048_5abda031.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000048_5abda031.szar new file mode 100644 index 00000000..681cd772 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000048_5abda031.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000049_3efca6b4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000049_3efca6b4.szar new file mode 100644 index 00000000..311e7ee6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000049_3efca6b4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000050_71e0e488.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000050_71e0e488.szar new file mode 100644 index 00000000..2c10412a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000050_71e0e488.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000051_330023de.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000051_330023de.szar new file mode 100644 index 00000000..328f2c46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000051_330023de.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000052_cc6eaf5d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000052_cc6eaf5d.szar new file mode 100644 index 00000000..0590f935 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000052_cc6eaf5d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000053_eb38817b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000053_eb38817b.szar new file mode 100644 index 00000000..0fa7dee6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000053_eb38817b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000054_b2acd2e3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000054_b2acd2e3.szar new file mode 100644 index 00000000..1a628fcb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000054_b2acd2e3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000055_9ae28293.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000055_9ae28293.szar new file mode 100644 index 00000000..ba0890dd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000055_9ae28293.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000056_0d286258.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000056_0d286258.szar new file mode 100644 index 00000000..13948f51 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000056_0d286258.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000057_99e6fd56.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000057_99e6fd56.szar new file mode 100644 index 00000000..aa4c0597 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000057_99e6fd56.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000058_7ab23216.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000058_7ab23216.szar new file mode 100644 index 00000000..aceb903b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000058_7ab23216.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000059_6a36e672.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000059_6a36e672.szar new file mode 100644 index 00000000..6f59f1ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000059_6a36e672.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000060_dc90d9a1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000060_dc90d9a1.szar new file mode 100644 index 00000000..f1ef500b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000060_dc90d9a1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000061_ed635dfc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000061_ed635dfc.szar new file mode 100644 index 00000000..73147543 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000061_ed635dfc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000062_d0711053.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000062_d0711053.szar new file mode 100644 index 00000000..c41e6e01 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000062_d0711053.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000063_dadae177.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000063_dadae177.szar new file mode 100644 index 00000000..0d3c8f93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000063_dadae177.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000064_853792fd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000064_853792fd.szar new file mode 100644 index 00000000..f805bad2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000064_853792fd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000065_b73a530b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000065_b73a530b.szar new file mode 100644 index 00000000..d9a65bcf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000065_b73a530b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000066_6e31f2e5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000066_6e31f2e5.szar new file mode 100644 index 00000000..e75e6d2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000066_6e31f2e5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000067_ced874c2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000067_ced874c2.szar new file mode 100644 index 00000000..f8307452 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/archive/delta_00000000000000000067_ced874c2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000001_3c247f6b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000001_3c247f6b.szcp new file mode 100644 index 00000000..cacdb14c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000001_3c247f6b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000002_dc8b3b8e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000002_dc8b3b8e.szcp new file mode 100644 index 00000000..869fa286 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000002_dc8b3b8e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000003_9118b264.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000003_9118b264.szcp new file mode 100644 index 00000000..942ed439 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000003_9118b264.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000004_59da2171.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000004_59da2171.szcp new file mode 100644 index 00000000..5c37c74f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000004_59da2171.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000005_a45520dc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000005_a45520dc.szcp new file mode 100644 index 00000000..1ea6ccbc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000005_a45520dc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000006_36d8cd7e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000006_36d8cd7e.szcp new file mode 100644 index 00000000..1c372379 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000006_36d8cd7e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000007_94a3abec.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000007_94a3abec.szcp new file mode 100644 index 00000000..18ecd8f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000007_94a3abec.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000008_5ec35001.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000008_5ec35001.szcp new file mode 100644 index 00000000..54c47784 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000008_5ec35001.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000009_52f93500.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000009_52f93500.szcp new file mode 100644 index 00000000..9c91688d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000009_52f93500.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000010_02664862.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000010_02664862.szcp new file mode 100644 index 00000000..d7ce468a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000010_02664862.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000011_c663997f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000011_c663997f.szcp new file mode 100644 index 00000000..2f7c8ff2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000011_c663997f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000012_79e88005.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000012_79e88005.szcp new file mode 100644 index 00000000..0a51485b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000012_79e88005.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000013_ca520c04.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000013_ca520c04.szcp new file mode 100644 index 00000000..800c5711 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000013_ca520c04.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000014_7367f6a7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000014_7367f6a7.szcp new file mode 100644 index 00000000..52045eb5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000014_7367f6a7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000015_ffd5b861.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000015_ffd5b861.szcp new file mode 100644 index 00000000..8ecc7737 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000015_ffd5b861.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000016_643fcf4d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000016_643fcf4d.szcp new file mode 100644 index 00000000..a86ba822 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000016_643fcf4d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000017_2334ee46.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000017_2334ee46.szcp new file mode 100644 index 00000000..a8a574c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000017_2334ee46.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000018_b925a63a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000018_b925a63a.szcp new file mode 100644 index 00000000..f106882d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000018_b925a63a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000019_dc2bb0e0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000019_dc2bb0e0.szcp new file mode 100644 index 00000000..24d6a44c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000019_dc2bb0e0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000020_f1641605.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000020_f1641605.szcp new file mode 100644 index 00000000..4799a5c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000020_f1641605.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000021_fa042aef.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000021_fa042aef.szcp new file mode 100644 index 00000000..1fa84759 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000021_fa042aef.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000022_084cd2b8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000022_084cd2b8.szcp new file mode 100644 index 00000000..8a26e8f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000022_084cd2b8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000023_9db3b163.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000023_9db3b163.szcp new file mode 100644 index 00000000..4f889f87 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000023_9db3b163.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000024_55452a70.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000024_55452a70.szcp new file mode 100644 index 00000000..625f0487 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000024_55452a70.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000025_e787c672.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000025_e787c672.szcp new file mode 100644 index 00000000..0c05221e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000025_e787c672.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000026_195b6598.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000026_195b6598.szcp new file mode 100644 index 00000000..e7fcb0e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000026_195b6598.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000027_53d4f226.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000027_53d4f226.szcp new file mode 100644 index 00000000..2c7eafb3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000027_53d4f226.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000028_b237ef7d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000028_b237ef7d.szcp new file mode 100644 index 00000000..e4916539 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000028_b237ef7d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000029_36fd398d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000029_36fd398d.szcp new file mode 100644 index 00000000..f673b948 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000029_36fd398d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000030_14521973.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000030_14521973.szcp new file mode 100644 index 00000000..f74cd00a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000030_14521973.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000031_630e37c3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000031_630e37c3.szcp new file mode 100644 index 00000000..f95c6b1f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000031_630e37c3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000032_82069687.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000032_82069687.szcp new file mode 100644 index 00000000..a48c7fa2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000032_82069687.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000033_15c1d24b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000033_15c1d24b.szcp new file mode 100644 index 00000000..d9877fae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000033_15c1d24b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000034_bcec6a51.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000034_bcec6a51.szcp new file mode 100644 index 00000000..fb1f4395 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000034_bcec6a51.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000035_4d478326.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000035_4d478326.szcp new file mode 100644 index 00000000..2380ff71 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000035_4d478326.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000036_5f6a3be1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000036_5f6a3be1.szcp new file mode 100644 index 00000000..b1229fda Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000036_5f6a3be1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000037_2b17da15.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000037_2b17da15.szcp new file mode 100644 index 00000000..55160c59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000037_2b17da15.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000038_d231748c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000038_d231748c.szcp new file mode 100644 index 00000000..a953a8fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000038_d231748c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000039_d858600d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000039_d858600d.szcp new file mode 100644 index 00000000..865f0817 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000039_d858600d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000040_231311ee.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000040_231311ee.szcp new file mode 100644 index 00000000..9cc88310 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000040_231311ee.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000041_23ea71a2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000041_23ea71a2.szcp new file mode 100644 index 00000000..2697fda4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000041_23ea71a2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000042_8d8bc933.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000042_8d8bc933.szcp new file mode 100644 index 00000000..9c53516e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000042_8d8bc933.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000043_4dfcab3e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000043_4dfcab3e.szcp new file mode 100644 index 00000000..0a26b37d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000043_4dfcab3e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000044_2fbacf45.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000044_2fbacf45.szcp new file mode 100644 index 00000000..7d05d496 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000044_2fbacf45.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000045_29e8cc6c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000045_29e8cc6c.szcp new file mode 100644 index 00000000..6266cd36 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000045_29e8cc6c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000046_6405b880.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000046_6405b880.szcp new file mode 100644 index 00000000..64ac3a57 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000046_6405b880.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000047_85ede8ca.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000047_85ede8ca.szcp new file mode 100644 index 00000000..e195aa1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000047_85ede8ca.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000048_2ecba20c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000048_2ecba20c.szcp new file mode 100644 index 00000000..3a14561d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000048_2ecba20c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000049_bb4252cb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000049_bb4252cb.szcp new file mode 100644 index 00000000..e648a3e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000049_bb4252cb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000050_4ee1059c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000050_4ee1059c.szcp new file mode 100644 index 00000000..2c42f676 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000050_4ee1059c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000051_906b63d5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000051_906b63d5.szcp new file mode 100644 index 00000000..451a9579 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000051_906b63d5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000052_cb5ab88f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000052_cb5ab88f.szcp new file mode 100644 index 00000000..aa432260 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000052_cb5ab88f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000053_e8fe3fd8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000053_e8fe3fd8.szcp new file mode 100644 index 00000000..ca6d44f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000053_e8fe3fd8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000054_c4097d60.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000054_c4097d60.szcp new file mode 100644 index 00000000..de9d8930 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000054_c4097d60.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000055_4bfe1a82.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000055_4bfe1a82.szcp new file mode 100644 index 00000000..ea91483c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000055_4bfe1a82.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000056_7899ac00.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000056_7899ac00.szcp new file mode 100644 index 00000000..fa4221f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000056_7899ac00.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000057_75180a27.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000057_75180a27.szcp new file mode 100644 index 00000000..58447520 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000057_75180a27.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000058_bf8147b8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000058_bf8147b8.szcp new file mode 100644 index 00000000..513065e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000058_bf8147b8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000059_77c6f74e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000059_77c6f74e.szcp new file mode 100644 index 00000000..5c6e7eb6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000059_77c6f74e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000060_3e5ff6d0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000060_3e5ff6d0.szcp new file mode 100644 index 00000000..5c4c0934 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000060_3e5ff6d0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000061_2381c758.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000061_2381c758.szcp new file mode 100644 index 00000000..ac716db3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000061_2381c758.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000062_eae8d590.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000062_eae8d590.szcp new file mode 100644 index 00000000..ec472ad5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000062_eae8d590.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000063_15c9f89a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000063_15c9f89a.szcp new file mode 100644 index 00000000..2d6204e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000063_15c9f89a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000064_d965d811.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000064_d965d811.szcp new file mode 100644 index 00000000..6cb4f498 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000064_d965d811.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000065_7928bb19.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000065_7928bb19.szcp new file mode 100644 index 00000000..abe896e9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000065_7928bb19.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000066_6d460d62.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000066_6d460d62.szcp new file mode 100644 index 00000000..1dde9402 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000066_6d460d62.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000067_beb5cc44.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000067_beb5cc44.szcp new file mode 100644 index 00000000..1bb649e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000067_beb5cc44.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000068_9d19c386.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000068_9d19c386.szcp new file mode 100644 index 00000000..9ae0db35 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_052/checkpoints/checkpoint_00000000000000000068_9d19c386.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000001_ee6f2d31.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000001_ee6f2d31.szar new file mode 100644 index 00000000..383f3302 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000001_ee6f2d31.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000002_f6a937ab.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000002_f6a937ab.szar new file mode 100644 index 00000000..17e5dccc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000002_f6a937ab.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000003_97271b75.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000003_97271b75.szar new file mode 100644 index 00000000..ce2cfa06 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000003_97271b75.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000004_5e5e2d78.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000004_5e5e2d78.szar new file mode 100644 index 00000000..363e39ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000004_5e5e2d78.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000005_73f9aa40.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000005_73f9aa40.szar new file mode 100644 index 00000000..821c3707 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000005_73f9aa40.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000006_344a63af.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000006_344a63af.szar new file mode 100644 index 00000000..96ccdbeb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000006_344a63af.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000007_f19b92c7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000007_f19b92c7.szar new file mode 100644 index 00000000..3b955bdf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000007_f19b92c7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000008_fd36a51c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000008_fd36a51c.szar new file mode 100644 index 00000000..3febd23b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000008_fd36a51c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000009_1e2d5b4d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000009_1e2d5b4d.szar new file mode 100644 index 00000000..3528623f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000009_1e2d5b4d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000010_31224772.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000010_31224772.szar new file mode 100644 index 00000000..7116a75f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000010_31224772.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000011_03acf61a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000011_03acf61a.szar new file mode 100644 index 00000000..b866e9fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000011_03acf61a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000012_b7af5b8b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000012_b7af5b8b.szar new file mode 100644 index 00000000..dc8e77ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000012_b7af5b8b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000013_da53104c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000013_da53104c.szar new file mode 100644 index 00000000..76064337 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000013_da53104c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000014_ac147cb5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000014_ac147cb5.szar new file mode 100644 index 00000000..fdabb867 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000014_ac147cb5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000015_6c5f073e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000015_6c5f073e.szar new file mode 100644 index 00000000..687e0f59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000015_6c5f073e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000016_47f1df11.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000016_47f1df11.szar new file mode 100644 index 00000000..e0706991 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000016_47f1df11.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000017_71089807.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000017_71089807.szar new file mode 100644 index 00000000..4803da80 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000017_71089807.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000018_cf8c9f87.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000018_cf8c9f87.szar new file mode 100644 index 00000000..4204fc5e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000018_cf8c9f87.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000019_dbc594a2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000019_dbc594a2.szar new file mode 100644 index 00000000..daba0d98 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000019_dbc594a2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000020_4be1dd71.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000020_4be1dd71.szar new file mode 100644 index 00000000..622c8c07 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000020_4be1dd71.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000021_7c82395a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000021_7c82395a.szar new file mode 100644 index 00000000..cdef2dde Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000021_7c82395a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000022_11ad6c99.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000022_11ad6c99.szar new file mode 100644 index 00000000..38e2e524 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000022_11ad6c99.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000023_c8885e36.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000023_c8885e36.szar new file mode 100644 index 00000000..ab3bdbad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000023_c8885e36.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000024_72ed31e1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000024_72ed31e1.szar new file mode 100644 index 00000000..f7b0c631 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000024_72ed31e1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000025_84c0dc33.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000025_84c0dc33.szar new file mode 100644 index 00000000..b57333f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000025_84c0dc33.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000026_45dc800d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000026_45dc800d.szar new file mode 100644 index 00000000..f6ae9362 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000026_45dc800d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000027_048de301.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000027_048de301.szar new file mode 100644 index 00000000..1d212917 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000027_048de301.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000028_683b365e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000028_683b365e.szar new file mode 100644 index 00000000..8daf512e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000028_683b365e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000029_e9b12b32.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000029_e9b12b32.szar new file mode 100644 index 00000000..3dc51cc1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000029_e9b12b32.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000030_81aa068c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000030_81aa068c.szar new file mode 100644 index 00000000..cf096aba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000030_81aa068c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000031_1e41a50f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000031_1e41a50f.szar new file mode 100644 index 00000000..45871921 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000031_1e41a50f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000032_e1fb31ee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000032_e1fb31ee.szar new file mode 100644 index 00000000..05d66931 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000032_e1fb31ee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000033_e7fb5ad8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000033_e7fb5ad8.szar new file mode 100644 index 00000000..20d34b8e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000033_e7fb5ad8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000034_a70f6758.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000034_a70f6758.szar new file mode 100644 index 00000000..cd9bb99f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000034_a70f6758.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000035_55d91788.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000035_55d91788.szar new file mode 100644 index 00000000..248d0e46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000035_55d91788.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000036_5d445be1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000036_5d445be1.szar new file mode 100644 index 00000000..c68d2b84 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000036_5d445be1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000037_32db0ef7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000037_32db0ef7.szar new file mode 100644 index 00000000..7d20ee81 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000037_32db0ef7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000038_b066388f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000038_b066388f.szar new file mode 100644 index 00000000..d11dabef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000038_b066388f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000039_7661facd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000039_7661facd.szar new file mode 100644 index 00000000..ee13dc29 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000039_7661facd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000040_08256cff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000040_08256cff.szar new file mode 100644 index 00000000..937c027d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000040_08256cff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000041_5b09cca4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000041_5b09cca4.szar new file mode 100644 index 00000000..1fae60e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000041_5b09cca4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000042_95a57c37.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000042_95a57c37.szar new file mode 100644 index 00000000..92e56152 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000042_95a57c37.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000043_1d665a2b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000043_1d665a2b.szar new file mode 100644 index 00000000..528e8253 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000043_1d665a2b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000044_946ca64c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000044_946ca64c.szar new file mode 100644 index 00000000..a497e241 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000044_946ca64c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000045_68bffd58.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000045_68bffd58.szar new file mode 100644 index 00000000..83cd179b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000045_68bffd58.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000046_0bcdb9b7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000046_0bcdb9b7.szar new file mode 100644 index 00000000..f932c9c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000046_0bcdb9b7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000047_84df1b29.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000047_84df1b29.szar new file mode 100644 index 00000000..915afc59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000047_84df1b29.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000048_5c6c4567.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000048_5c6c4567.szar new file mode 100644 index 00000000..130738c8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000048_5c6c4567.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000049_b6bc26f4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000049_b6bc26f4.szar new file mode 100644 index 00000000..52f2cfcf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000049_b6bc26f4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000050_942c19d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000050_942c19d7.szar new file mode 100644 index 00000000..b29540c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000050_942c19d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000051_5386b5ad.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000051_5386b5ad.szar new file mode 100644 index 00000000..798f08f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000051_5386b5ad.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000052_afc0c8f6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000052_afc0c8f6.szar new file mode 100644 index 00000000..45e18377 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000052_afc0c8f6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000053_e06c085e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000053_e06c085e.szar new file mode 100644 index 00000000..5ace9d4e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000053_e06c085e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000054_92169e19.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000054_92169e19.szar new file mode 100644 index 00000000..de611105 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000054_92169e19.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000055_0d9e4b28.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000055_0d9e4b28.szar new file mode 100644 index 00000000..de218a39 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000055_0d9e4b28.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000056_da612910.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000056_da612910.szar new file mode 100644 index 00000000..8b20288c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000056_da612910.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000057_19cffa2f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000057_19cffa2f.szar new file mode 100644 index 00000000..589fb2ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000057_19cffa2f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000058_98a8d19b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000058_98a8d19b.szar new file mode 100644 index 00000000..1e80394d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000058_98a8d19b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000059_c7ae77c3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000059_c7ae77c3.szar new file mode 100644 index 00000000..378a8c16 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000059_c7ae77c3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000060_d9c51845.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000060_d9c51845.szar new file mode 100644 index 00000000..d365b2df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000060_d9c51845.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000061_bca29f08.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000061_bca29f08.szar new file mode 100644 index 00000000..e0d0a9bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000061_bca29f08.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000062_f0df9ba0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000062_f0df9ba0.szar new file mode 100644 index 00000000..94a0ba89 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000062_f0df9ba0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000063_4a6439dc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000063_4a6439dc.szar new file mode 100644 index 00000000..2a61e22c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000063_4a6439dc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000064_78c97485.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000064_78c97485.szar new file mode 100644 index 00000000..7618d519 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000064_78c97485.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000065_24a5b121.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000065_24a5b121.szar new file mode 100644 index 00000000..1b91412b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000065_24a5b121.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000066_ba6818a8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000066_ba6818a8.szar new file mode 100644 index 00000000..e186786f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000066_ba6818a8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000067_2675c885.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000067_2675c885.szar new file mode 100644 index 00000000..9f36da21 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000067_2675c885.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000068_4b65147e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000068_4b65147e.szar new file mode 100644 index 00000000..c02fcb14 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000068_4b65147e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000069_312cc481.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000069_312cc481.szar new file mode 100644 index 00000000..576cb24a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000069_312cc481.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000070_49c96180.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000070_49c96180.szar new file mode 100644 index 00000000..1814d99d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000070_49c96180.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000071_70925e7a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000071_70925e7a.szar new file mode 100644 index 00000000..f4d592b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000071_70925e7a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000072_8f4fd9b3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000072_8f4fd9b3.szar new file mode 100644 index 00000000..e9443ce7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000072_8f4fd9b3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000073_1dd68328.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000073_1dd68328.szar new file mode 100644 index 00000000..2d317179 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000073_1dd68328.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000074_d2057c1f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000074_d2057c1f.szar new file mode 100644 index 00000000..8d3edbdc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000074_d2057c1f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000075_c0f70721.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000075_c0f70721.szar new file mode 100644 index 00000000..ad360f71 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000075_c0f70721.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000076_ec2bae89.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000076_ec2bae89.szar new file mode 100644 index 00000000..c920da39 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000076_ec2bae89.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000077_a27c114c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000077_a27c114c.szar new file mode 100644 index 00000000..364ef409 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000077_a27c114c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000078_3bd6c395.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000078_3bd6c395.szar new file mode 100644 index 00000000..13e789f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000078_3bd6c395.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000079_01c5e738.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000079_01c5e738.szar new file mode 100644 index 00000000..d8814e93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000079_01c5e738.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000080_3163d5d1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000080_3163d5d1.szar new file mode 100644 index 00000000..35e6f31e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000080_3163d5d1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000081_8ed1c448.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000081_8ed1c448.szar new file mode 100644 index 00000000..b362028d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000081_8ed1c448.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000082_5cbb1459.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000082_5cbb1459.szar new file mode 100644 index 00000000..c7afbc52 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000082_5cbb1459.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000083_5360f140.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000083_5360f140.szar new file mode 100644 index 00000000..2e0ff9a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000083_5360f140.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000084_89c95876.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000084_89c95876.szar new file mode 100644 index 00000000..28756a9b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000084_89c95876.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000085_665854f1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000085_665854f1.szar new file mode 100644 index 00000000..0d032de0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000085_665854f1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000086_3c911d2b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000086_3c911d2b.szar new file mode 100644 index 00000000..3f0338f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/archive/delta_00000000000000000086_3c911d2b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000001_6ea26ff5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000001_6ea26ff5.szcp new file mode 100644 index 00000000..b584003b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000001_6ea26ff5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000002_9d85b523.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000002_9d85b523.szcp new file mode 100644 index 00000000..3bd33126 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000002_9d85b523.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000003_df0921fc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000003_df0921fc.szcp new file mode 100644 index 00000000..f03cd3e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000003_df0921fc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000004_4a3083c9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000004_4a3083c9.szcp new file mode 100644 index 00000000..2d87425d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000004_4a3083c9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000005_c0cad44e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000005_c0cad44e.szcp new file mode 100644 index 00000000..437eb184 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000005_c0cad44e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000006_1e259fbd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000006_1e259fbd.szcp new file mode 100644 index 00000000..83594906 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000006_1e259fbd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000007_0b699a39.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000007_0b699a39.szcp new file mode 100644 index 00000000..c42a1ec1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000007_0b699a39.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000008_8645f2d6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000008_8645f2d6.szcp new file mode 100644 index 00000000..220a068e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000008_8645f2d6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000009_bc98d21e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000009_bc98d21e.szcp new file mode 100644 index 00000000..d2d508b3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000009_bc98d21e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000010_b9ab02c3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000010_b9ab02c3.szcp new file mode 100644 index 00000000..137de7ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000010_b9ab02c3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000011_f8899b5b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000011_f8899b5b.szcp new file mode 100644 index 00000000..684479bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000011_f8899b5b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000012_e7beb11f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000012_e7beb11f.szcp new file mode 100644 index 00000000..2a60df1b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000012_e7beb11f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000013_6b4f5c93.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000013_6b4f5c93.szcp new file mode 100644 index 00000000..dc8b15fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000013_6b4f5c93.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000014_a57d094a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000014_a57d094a.szcp new file mode 100644 index 00000000..4eda4540 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000014_a57d094a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000015_6b369eca.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000015_6b369eca.szcp new file mode 100644 index 00000000..d6bedf93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000015_6b369eca.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000016_4cea0933.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000016_4cea0933.szcp new file mode 100644 index 00000000..8e79130b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000016_4cea0933.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000017_70b1913a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000017_70b1913a.szcp new file mode 100644 index 00000000..2f7ca8ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000017_70b1913a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000018_7e324367.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000018_7e324367.szcp new file mode 100644 index 00000000..a7327ca0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000018_7e324367.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000019_42f9c1a0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000019_42f9c1a0.szcp new file mode 100644 index 00000000..4449d71a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000019_42f9c1a0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000020_2cd17f92.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000020_2cd17f92.szcp new file mode 100644 index 00000000..eb1d913a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000020_2cd17f92.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000021_9aa791f5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000021_9aa791f5.szcp new file mode 100644 index 00000000..61f838e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000021_9aa791f5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000022_20fcedc7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000022_20fcedc7.szcp new file mode 100644 index 00000000..c1c49781 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000022_20fcedc7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000023_f33da0b8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000023_f33da0b8.szcp new file mode 100644 index 00000000..c0b49105 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000023_f33da0b8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000024_ce4bb410.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000024_ce4bb410.szcp new file mode 100644 index 00000000..d69a45ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000024_ce4bb410.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000025_42438e8c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000025_42438e8c.szcp new file mode 100644 index 00000000..0aebc75d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000025_42438e8c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000026_b6309566.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000026_b6309566.szcp new file mode 100644 index 00000000..9e3203bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000026_b6309566.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000027_2061fe54.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000027_2061fe54.szcp new file mode 100644 index 00000000..3f614400 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000027_2061fe54.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000028_2c253a0c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000028_2c253a0c.szcp new file mode 100644 index 00000000..d77f0e07 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000028_2c253a0c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000029_06476637.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000029_06476637.szcp new file mode 100644 index 00000000..9f52802c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000029_06476637.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000030_20bf8fef.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000030_20bf8fef.szcp new file mode 100644 index 00000000..67684354 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000030_20bf8fef.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000031_95731950.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000031_95731950.szcp new file mode 100644 index 00000000..8dba1254 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000031_95731950.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000032_f427a8b1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000032_f427a8b1.szcp new file mode 100644 index 00000000..1cd21760 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000032_f427a8b1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000033_be6e69a8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000033_be6e69a8.szcp new file mode 100644 index 00000000..17daf386 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000033_be6e69a8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000034_9fce38a7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000034_9fce38a7.szcp new file mode 100644 index 00000000..3ca939f8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000034_9fce38a7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000035_9d13d3bd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000035_9d13d3bd.szcp new file mode 100644 index 00000000..a08d6f2f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000035_9d13d3bd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000036_0e7eedce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000036_0e7eedce.szcp new file mode 100644 index 00000000..21eddea3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000036_0e7eedce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000037_d13ffbf3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000037_d13ffbf3.szcp new file mode 100644 index 00000000..aed7ee0e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000037_d13ffbf3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000038_e2280218.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000038_e2280218.szcp new file mode 100644 index 00000000..f64d8115 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000038_e2280218.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000039_bbe5f40d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000039_bbe5f40d.szcp new file mode 100644 index 00000000..3e6991fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000039_bbe5f40d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000040_e4aa1f0a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000040_e4aa1f0a.szcp new file mode 100644 index 00000000..22650f88 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000040_e4aa1f0a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000041_53866ae5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000041_53866ae5.szcp new file mode 100644 index 00000000..3c1e9611 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000041_53866ae5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000042_34399524.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000042_34399524.szcp new file mode 100644 index 00000000..50cf88c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000042_34399524.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000043_df1e8794.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000043_df1e8794.szcp new file mode 100644 index 00000000..0ee1c258 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000043_df1e8794.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000044_f5ba20ab.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000044_f5ba20ab.szcp new file mode 100644 index 00000000..6daefe12 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000044_f5ba20ab.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000045_4c90fd1f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000045_4c90fd1f.szcp new file mode 100644 index 00000000..3792ab77 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000045_4c90fd1f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000046_1fe56b49.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000046_1fe56b49.szcp new file mode 100644 index 00000000..58d719bf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000046_1fe56b49.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000047_8a40ce64.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000047_8a40ce64.szcp new file mode 100644 index 00000000..50ab9dbe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000047_8a40ce64.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000048_feeb9c2f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000048_feeb9c2f.szcp new file mode 100644 index 00000000..fd9e1ae9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000048_feeb9c2f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000049_1f523f7b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000049_1f523f7b.szcp new file mode 100644 index 00000000..3da5e5cf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000049_1f523f7b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000050_ed9a2b8a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000050_ed9a2b8a.szcp new file mode 100644 index 00000000..032855ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000050_ed9a2b8a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000051_973d3bf8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000051_973d3bf8.szcp new file mode 100644 index 00000000..38b0f1be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000051_973d3bf8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000052_e5bf2ea0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000052_e5bf2ea0.szcp new file mode 100644 index 00000000..3841588d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000052_e5bf2ea0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000053_89960b70.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000053_89960b70.szcp new file mode 100644 index 00000000..cd51a2b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000053_89960b70.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000054_41cd8470.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000054_41cd8470.szcp new file mode 100644 index 00000000..4e3a02b5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000054_41cd8470.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000055_d5621f01.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000055_d5621f01.szcp new file mode 100644 index 00000000..3bd0afcf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000055_d5621f01.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000056_36d0fea2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000056_36d0fea2.szcp new file mode 100644 index 00000000..bc0511ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000056_36d0fea2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000057_d162cdfc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000057_d162cdfc.szcp new file mode 100644 index 00000000..b3293ed3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000057_d162cdfc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000058_a62718e3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000058_a62718e3.szcp new file mode 100644 index 00000000..34e62dc9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000058_a62718e3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000059_f69ffb72.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000059_f69ffb72.szcp new file mode 100644 index 00000000..f40c5eb8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000059_f69ffb72.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000060_d6f38d73.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000060_d6f38d73.szcp new file mode 100644 index 00000000..fa885669 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000060_d6f38d73.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000061_2be5b97b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000061_2be5b97b.szcp new file mode 100644 index 00000000..35d18299 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000061_2be5b97b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000062_3a576dd1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000062_3a576dd1.szcp new file mode 100644 index 00000000..8fce6275 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000062_3a576dd1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000063_28d2ee97.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000063_28d2ee97.szcp new file mode 100644 index 00000000..71ef2168 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000063_28d2ee97.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000064_cf469fc7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000064_cf469fc7.szcp new file mode 100644 index 00000000..f9a61e88 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000064_cf469fc7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000065_bea5c9e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000065_bea5c9e9.szcp new file mode 100644 index 00000000..186cf366 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000065_bea5c9e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000066_b5ed2d91.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000066_b5ed2d91.szcp new file mode 100644 index 00000000..1f759402 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000066_b5ed2d91.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000067_130a9805.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000067_130a9805.szcp new file mode 100644 index 00000000..0eca4333 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000067_130a9805.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000068_910cfb37.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000068_910cfb37.szcp new file mode 100644 index 00000000..843b86bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000068_910cfb37.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000069_022a6aae.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000069_022a6aae.szcp new file mode 100644 index 00000000..0e69e4af Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000069_022a6aae.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000070_8f067475.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000070_8f067475.szcp new file mode 100644 index 00000000..ee27188b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000070_8f067475.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000071_ed8b70b8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000071_ed8b70b8.szcp new file mode 100644 index 00000000..df716ccb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000071_ed8b70b8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000072_6ed298c8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000072_6ed298c8.szcp new file mode 100644 index 00000000..7a0ef1e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000072_6ed298c8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000073_1c1d900e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000073_1c1d900e.szcp new file mode 100644 index 00000000..50bfc2fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000073_1c1d900e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000074_e86dcfef.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000074_e86dcfef.szcp new file mode 100644 index 00000000..2487af52 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000074_e86dcfef.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000075_728125ee.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000075_728125ee.szcp new file mode 100644 index 00000000..e9f80280 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000075_728125ee.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000076_25b22522.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000076_25b22522.szcp new file mode 100644 index 00000000..c3239a34 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000076_25b22522.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000077_934fc51b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000077_934fc51b.szcp new file mode 100644 index 00000000..1bb91766 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000077_934fc51b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000078_7882b2ba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000078_7882b2ba.szcp new file mode 100644 index 00000000..520687ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000078_7882b2ba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000079_3b9bd3b5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000079_3b9bd3b5.szcp new file mode 100644 index 00000000..cc36c5ec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000079_3b9bd3b5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000080_bad8d46c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000080_bad8d46c.szcp new file mode 100644 index 00000000..f6229c11 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000080_bad8d46c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000081_0faf0210.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000081_0faf0210.szcp new file mode 100644 index 00000000..8a8e4f86 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000081_0faf0210.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000082_028b751b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000082_028b751b.szcp new file mode 100644 index 00000000..873d1259 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000082_028b751b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000083_37ef5677.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000083_37ef5677.szcp new file mode 100644 index 00000000..43a3484f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000083_37ef5677.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000084_eb0dfbfb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000084_eb0dfbfb.szcp new file mode 100644 index 00000000..2e5e95c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000084_eb0dfbfb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000085_319abe9f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000085_319abe9f.szcp new file mode 100644 index 00000000..91e530f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000085_319abe9f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000086_c847ae47.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000086_c847ae47.szcp new file mode 100644 index 00000000..acfb8c04 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_053/checkpoints/checkpoint_00000000000000000086_c847ae47.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000001_1e4f4e70.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000001_1e4f4e70.szar new file mode 100644 index 00000000..8f272ca7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000001_1e4f4e70.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000002_12c028b7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000002_12c028b7.szar new file mode 100644 index 00000000..f600cf7d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000002_12c028b7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000003_1bf663c3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000003_1bf663c3.szar new file mode 100644 index 00000000..53205cf2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000003_1bf663c3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000004_ab0b0a36.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000004_ab0b0a36.szar new file mode 100644 index 00000000..13a1bec4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000004_ab0b0a36.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000005_91b5641b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000005_91b5641b.szar new file mode 100644 index 00000000..13c290ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000005_91b5641b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000006_1e57e73c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000006_1e57e73c.szar new file mode 100644 index 00000000..94b30fde Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000006_1e57e73c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000007_8f5376cb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000007_8f5376cb.szar new file mode 100644 index 00000000..f562a988 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000007_8f5376cb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000008_74499791.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000008_74499791.szar new file mode 100644 index 00000000..b0235f08 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000008_74499791.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000009_3e2e2355.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000009_3e2e2355.szar new file mode 100644 index 00000000..9fadfb2b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000009_3e2e2355.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000010_008095e4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000010_008095e4.szar new file mode 100644 index 00000000..88ee69ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000010_008095e4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000011_905e7f37.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000011_905e7f37.szar new file mode 100644 index 00000000..37abd873 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000011_905e7f37.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000012_4ad57a5a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000012_4ad57a5a.szar new file mode 100644 index 00000000..fc6736c8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000012_4ad57a5a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000013_f596dc46.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000013_f596dc46.szar new file mode 100644 index 00000000..cc851623 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000013_f596dc46.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000014_74935045.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000014_74935045.szar new file mode 100644 index 00000000..fc12a295 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000014_74935045.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000015_3ccf90f6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000015_3ccf90f6.szar new file mode 100644 index 00000000..6329e175 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000015_3ccf90f6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000016_4ce880e8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000016_4ce880e8.szar new file mode 100644 index 00000000..a11c9ae4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000016_4ce880e8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000017_df908214.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000017_df908214.szar new file mode 100644 index 00000000..bb66780b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000017_df908214.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000018_1c1551c0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000018_1c1551c0.szar new file mode 100644 index 00000000..36d000e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000018_1c1551c0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000019_afd0b5e4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000019_afd0b5e4.szar new file mode 100644 index 00000000..90a46844 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000019_afd0b5e4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000020_cf97cbca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000020_cf97cbca.szar new file mode 100644 index 00000000..ba97001b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000020_cf97cbca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000021_0e2dabc3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000021_0e2dabc3.szar new file mode 100644 index 00000000..bde455ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000021_0e2dabc3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000022_08fe1187.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000022_08fe1187.szar new file mode 100644 index 00000000..f5553330 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000022_08fe1187.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000023_c78efa82.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000023_c78efa82.szar new file mode 100644 index 00000000..ca94b445 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000023_c78efa82.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000024_ddf433b2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000024_ddf433b2.szar new file mode 100644 index 00000000..7f0c06e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000024_ddf433b2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000025_64ccb7a2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000025_64ccb7a2.szar new file mode 100644 index 00000000..41bd43bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000025_64ccb7a2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000026_be4fd637.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000026_be4fd637.szar new file mode 100644 index 00000000..ad50f4be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000026_be4fd637.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000027_ad8e384d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000027_ad8e384d.szar new file mode 100644 index 00000000..7f440966 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000027_ad8e384d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000028_cf1c061c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000028_cf1c061c.szar new file mode 100644 index 00000000..2703704e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000028_cf1c061c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000029_e9ef6ac2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000029_e9ef6ac2.szar new file mode 100644 index 00000000..8d4b9598 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000029_e9ef6ac2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000030_b17e80ce.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000030_b17e80ce.szar new file mode 100644 index 00000000..f9669c26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000030_b17e80ce.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000031_2f72bd87.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000031_2f72bd87.szar new file mode 100644 index 00000000..eb619456 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000031_2f72bd87.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000032_ccc7a48f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000032_ccc7a48f.szar new file mode 100644 index 00000000..6318189e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000032_ccc7a48f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000033_a314ef92.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000033_a314ef92.szar new file mode 100644 index 00000000..4a660131 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000033_a314ef92.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000034_9245ccb6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000034_9245ccb6.szar new file mode 100644 index 00000000..c170567c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000034_9245ccb6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000035_a1573bd1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000035_a1573bd1.szar new file mode 100644 index 00000000..1b3ec6fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000035_a1573bd1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000036_628ccd99.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000036_628ccd99.szar new file mode 100644 index 00000000..369c69f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000036_628ccd99.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000037_950e0d21.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000037_950e0d21.szar new file mode 100644 index 00000000..4c24b292 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000037_950e0d21.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000038_ba2c24ab.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000038_ba2c24ab.szar new file mode 100644 index 00000000..49cd9d86 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000038_ba2c24ab.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000039_1afb7100.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000039_1afb7100.szar new file mode 100644 index 00000000..14494a48 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000039_1afb7100.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000040_82d09c47.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000040_82d09c47.szar new file mode 100644 index 00000000..7f5460f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000040_82d09c47.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000041_05c395b9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000041_05c395b9.szar new file mode 100644 index 00000000..e6a70e12 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000041_05c395b9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000042_bdc4c53d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000042_bdc4c53d.szar new file mode 100644 index 00000000..45daa87a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000042_bdc4c53d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000043_3ced3672.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000043_3ced3672.szar new file mode 100644 index 00000000..14fff4b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000043_3ced3672.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000044_3352044c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000044_3352044c.szar new file mode 100644 index 00000000..aa755730 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000044_3352044c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000045_b7c22060.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000045_b7c22060.szar new file mode 100644 index 00000000..382f8314 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000045_b7c22060.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000046_f2bb5857.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000046_f2bb5857.szar new file mode 100644 index 00000000..fca97509 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000046_f2bb5857.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000047_9224a7db.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000047_9224a7db.szar new file mode 100644 index 00000000..61b24d61 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000047_9224a7db.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000048_eda573e5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000048_eda573e5.szar new file mode 100644 index 00000000..28d6d282 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000048_eda573e5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000049_65a34d59.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000049_65a34d59.szar new file mode 100644 index 00000000..09394071 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000049_65a34d59.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000050_f9f84ebe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000050_f9f84ebe.szar new file mode 100644 index 00000000..49547a84 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000050_f9f84ebe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000051_b810cbe8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000051_b810cbe8.szar new file mode 100644 index 00000000..94271e88 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000051_b810cbe8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000052_30c1b075.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000052_30c1b075.szar new file mode 100644 index 00000000..88e380bf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000052_30c1b075.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000053_1fa3d6a2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000053_1fa3d6a2.szar new file mode 100644 index 00000000..0818dab3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000053_1fa3d6a2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000054_bf0d17ca.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000054_bf0d17ca.szar new file mode 100644 index 00000000..7df4f2fc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000054_bf0d17ca.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000055_b0d92379.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000055_b0d92379.szar new file mode 100644 index 00000000..7af80851 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000055_b0d92379.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000056_d0230684.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000056_d0230684.szar new file mode 100644 index 00000000..40b545be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000056_d0230684.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000057_98c7f780.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000057_98c7f780.szar new file mode 100644 index 00000000..bc2b3b99 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000057_98c7f780.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000058_81fb6252.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000058_81fb6252.szar new file mode 100644 index 00000000..ddce68bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000058_81fb6252.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000059_2f4b0526.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000059_2f4b0526.szar new file mode 100644 index 00000000..8281945d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000059_2f4b0526.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000060_c0b360b8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000060_c0b360b8.szar new file mode 100644 index 00000000..d9555d5b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000060_c0b360b8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000061_f805ff50.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000061_f805ff50.szar new file mode 100644 index 00000000..d69e48f4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000061_f805ff50.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000062_d3db99a8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000062_d3db99a8.szar new file mode 100644 index 00000000..53bc871d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000062_d3db99a8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000063_5e3a46f0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000063_5e3a46f0.szar new file mode 100644 index 00000000..f8d42af1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000063_5e3a46f0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000064_f64b302f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000064_f64b302f.szar new file mode 100644 index 00000000..d677122c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000064_f64b302f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000065_da3b5e0a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000065_da3b5e0a.szar new file mode 100644 index 00000000..860c1391 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000065_da3b5e0a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000066_6d9bd7a2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000066_6d9bd7a2.szar new file mode 100644 index 00000000..daeaf512 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000066_6d9bd7a2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000067_07804492.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000067_07804492.szar new file mode 100644 index 00000000..fbfa3582 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000067_07804492.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000068_de4ed5a8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000068_de4ed5a8.szar new file mode 100644 index 00000000..aab6f987 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000068_de4ed5a8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000069_db82bb16.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000069_db82bb16.szar new file mode 100644 index 00000000..f012e528 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000069_db82bb16.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000070_0416b33e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000070_0416b33e.szar new file mode 100644 index 00000000..19035b8b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000070_0416b33e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000071_3ae92438.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000071_3ae92438.szar new file mode 100644 index 00000000..8b7e2db4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000071_3ae92438.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000072_f84dc9b4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000072_f84dc9b4.szar new file mode 100644 index 00000000..e9e095e4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000072_f84dc9b4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000073_000fe017.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000073_000fe017.szar new file mode 100644 index 00000000..219bdfb1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000073_000fe017.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000074_9cdbe958.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000074_9cdbe958.szar new file mode 100644 index 00000000..cc657cc6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000074_9cdbe958.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000075_504fdc7a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000075_504fdc7a.szar new file mode 100644 index 00000000..cf38955b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000075_504fdc7a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000076_0f5165dd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000076_0f5165dd.szar new file mode 100644 index 00000000..1337a932 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/archive/delta_00000000000000000076_0f5165dd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000001_d7237b99.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000001_d7237b99.szcp new file mode 100644 index 00000000..94e08550 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000001_d7237b99.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000002_ad0b1f09.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000002_ad0b1f09.szcp new file mode 100644 index 00000000..d73f56f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000002_ad0b1f09.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000003_3c51e913.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000003_3c51e913.szcp new file mode 100644 index 00000000..b21a0c3f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000003_3c51e913.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000004_423033f4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000004_423033f4.szcp new file mode 100644 index 00000000..2784d245 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000004_423033f4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000005_7449d55e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000005_7449d55e.szcp new file mode 100644 index 00000000..a34eb38f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000005_7449d55e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000006_3ad04373.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000006_3ad04373.szcp new file mode 100644 index 00000000..2c5ed885 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000006_3ad04373.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000007_96f2f3d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000007_96f2f3d1.szcp new file mode 100644 index 00000000..6406e3c5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000007_96f2f3d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000008_f717429b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000008_f717429b.szcp new file mode 100644 index 00000000..c295ff6a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000008_f717429b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000009_929f40d2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000009_929f40d2.szcp new file mode 100644 index 00000000..96431ee4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000009_929f40d2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000010_56e755a1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000010_56e755a1.szcp new file mode 100644 index 00000000..4fee854b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000010_56e755a1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000011_82b5da22.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000011_82b5da22.szcp new file mode 100644 index 00000000..22202410 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000011_82b5da22.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000012_7624d470.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000012_7624d470.szcp new file mode 100644 index 00000000..fd1fe279 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000012_7624d470.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000013_f3183006.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000013_f3183006.szcp new file mode 100644 index 00000000..6c7baf8e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000013_f3183006.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000014_5ec43060.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000014_5ec43060.szcp new file mode 100644 index 00000000..c3f43c9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000014_5ec43060.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000015_7027cc21.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000015_7027cc21.szcp new file mode 100644 index 00000000..90ea3826 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000015_7027cc21.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000016_22d1ca75.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000016_22d1ca75.szcp new file mode 100644 index 00000000..849d31ae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000016_22d1ca75.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000017_63940d09.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000017_63940d09.szcp new file mode 100644 index 00000000..508b3d4b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000017_63940d09.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000018_4e3cc309.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000018_4e3cc309.szcp new file mode 100644 index 00000000..5e5b6037 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000018_4e3cc309.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000019_c2e9749a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000019_c2e9749a.szcp new file mode 100644 index 00000000..dac175ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000019_c2e9749a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000020_c6cb3720.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000020_c6cb3720.szcp new file mode 100644 index 00000000..0b828c13 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000020_c6cb3720.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000021_7defc3ae.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000021_7defc3ae.szcp new file mode 100644 index 00000000..dff0ecae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000021_7defc3ae.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000022_7c5cf487.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000022_7c5cf487.szcp new file mode 100644 index 00000000..57570101 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000022_7c5cf487.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000023_38c12922.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000023_38c12922.szcp new file mode 100644 index 00000000..83c06760 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000023_38c12922.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000024_94b82b28.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000024_94b82b28.szcp new file mode 100644 index 00000000..254227cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000024_94b82b28.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000025_8c629696.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000025_8c629696.szcp new file mode 100644 index 00000000..64fc6041 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000025_8c629696.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000026_ea8e7cc9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000026_ea8e7cc9.szcp new file mode 100644 index 00000000..7fe06f31 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000026_ea8e7cc9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000027_63dd5e44.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000027_63dd5e44.szcp new file mode 100644 index 00000000..84507aba Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000027_63dd5e44.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000028_6c970615.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000028_6c970615.szcp new file mode 100644 index 00000000..3e5eae4a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000028_6c970615.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000029_36e6d14d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000029_36e6d14d.szcp new file mode 100644 index 00000000..8d6059b7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000029_36e6d14d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000030_69c4151f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000030_69c4151f.szcp new file mode 100644 index 00000000..da3ed6ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000030_69c4151f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000031_786e09ef.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000031_786e09ef.szcp new file mode 100644 index 00000000..cf081abd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000031_786e09ef.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000032_aca1077c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000032_aca1077c.szcp new file mode 100644 index 00000000..1313b88e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000032_aca1077c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000033_2fb7b59f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000033_2fb7b59f.szcp new file mode 100644 index 00000000..4b970c82 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000033_2fb7b59f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000034_4deb647f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000034_4deb647f.szcp new file mode 100644 index 00000000..31c999f9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000034_4deb647f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000035_2077d2b0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000035_2077d2b0.szcp new file mode 100644 index 00000000..936b757f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000035_2077d2b0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000036_996e2c04.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000036_996e2c04.szcp new file mode 100644 index 00000000..2b016f67 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000036_996e2c04.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000037_5e36cffa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000037_5e36cffa.szcp new file mode 100644 index 00000000..163d0597 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000037_5e36cffa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000038_8a9255ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000038_8a9255ce.szcp new file mode 100644 index 00000000..c851dab6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000038_8a9255ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000039_768dced9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000039_768dced9.szcp new file mode 100644 index 00000000..33f3be58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000039_768dced9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000040_f7accc1b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000040_f7accc1b.szcp new file mode 100644 index 00000000..5555909b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000040_f7accc1b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000041_1e6808c2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000041_1e6808c2.szcp new file mode 100644 index 00000000..52f43be7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000041_1e6808c2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000042_deda2dde.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000042_deda2dde.szcp new file mode 100644 index 00000000..b455e390 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000042_deda2dde.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000043_dce77b20.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000043_dce77b20.szcp new file mode 100644 index 00000000..2a028d62 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000043_dce77b20.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000044_fb9a651c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000044_fb9a651c.szcp new file mode 100644 index 00000000..da813ef1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000044_fb9a651c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000045_f25ca0fc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000045_f25ca0fc.szcp new file mode 100644 index 00000000..a08cd09d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000045_f25ca0fc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000046_bc40eec1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000046_bc40eec1.szcp new file mode 100644 index 00000000..2a415e11 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000046_bc40eec1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000047_38fd6790.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000047_38fd6790.szcp new file mode 100644 index 00000000..8ae7e85b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000047_38fd6790.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000048_58ede4ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000048_58ede4ce.szcp new file mode 100644 index 00000000..4d35ca4f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000048_58ede4ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000049_6e42dd2a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000049_6e42dd2a.szcp new file mode 100644 index 00000000..5208f5db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000049_6e42dd2a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000050_7c05050b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000050_7c05050b.szcp new file mode 100644 index 00000000..4231dfda Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000050_7c05050b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000051_923d8ab6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000051_923d8ab6.szcp new file mode 100644 index 00000000..949c210b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000051_923d8ab6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000052_f842359d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000052_f842359d.szcp new file mode 100644 index 00000000..30008fad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000052_f842359d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000053_33f689ac.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000053_33f689ac.szcp new file mode 100644 index 00000000..d37f3668 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000053_33f689ac.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000054_d4ff945c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000054_d4ff945c.szcp new file mode 100644 index 00000000..a18ab8d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000054_d4ff945c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000055_31a8a4ca.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000055_31a8a4ca.szcp new file mode 100644 index 00000000..c671a5aa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000055_31a8a4ca.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000056_b7fe2e27.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000056_b7fe2e27.szcp new file mode 100644 index 00000000..1a6bf999 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000056_b7fe2e27.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000057_58777146.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000057_58777146.szcp new file mode 100644 index 00000000..69812772 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000057_58777146.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000058_3a77c60c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000058_3a77c60c.szcp new file mode 100644 index 00000000..5175b978 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000058_3a77c60c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000059_55021cbd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000059_55021cbd.szcp new file mode 100644 index 00000000..e981311d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000059_55021cbd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000060_54da8e07.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000060_54da8e07.szcp new file mode 100644 index 00000000..58b1abf8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000060_54da8e07.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000061_848a61d8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000061_848a61d8.szcp new file mode 100644 index 00000000..fa9813a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000061_848a61d8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000062_8e6bb9eb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000062_8e6bb9eb.szcp new file mode 100644 index 00000000..24967aea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000062_8e6bb9eb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000063_efb68603.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000063_efb68603.szcp new file mode 100644 index 00000000..a7a2a5b1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000063_efb68603.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000064_00f20a5e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000064_00f20a5e.szcp new file mode 100644 index 00000000..895dfb14 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000064_00f20a5e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000065_2d0d31fc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000065_2d0d31fc.szcp new file mode 100644 index 00000000..c68b89e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000065_2d0d31fc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000066_5fa80db2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000066_5fa80db2.szcp new file mode 100644 index 00000000..cf3a58db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000066_5fa80db2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000067_ffa9266c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000067_ffa9266c.szcp new file mode 100644 index 00000000..afb66086 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000067_ffa9266c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000068_ceb89572.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000068_ceb89572.szcp new file mode 100644 index 00000000..b432d58e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000068_ceb89572.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000069_708ebf78.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000069_708ebf78.szcp new file mode 100644 index 00000000..7d46145a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000069_708ebf78.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000070_fda2e557.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000070_fda2e557.szcp new file mode 100644 index 00000000..0e1ee3c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000070_fda2e557.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000071_e747e947.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000071_e747e947.szcp new file mode 100644 index 00000000..b117d429 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000071_e747e947.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000072_ea499f23.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000072_ea499f23.szcp new file mode 100644 index 00000000..dcea92c4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000072_ea499f23.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000073_3290a483.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000073_3290a483.szcp new file mode 100644 index 00000000..bfdba0e3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000073_3290a483.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000074_d711f80d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000074_d711f80d.szcp new file mode 100644 index 00000000..b0c3ff44 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000074_d711f80d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000075_7b2e5d3e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000075_7b2e5d3e.szcp new file mode 100644 index 00000000..1c332bce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000075_7b2e5d3e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000076_2b1ce47f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000076_2b1ce47f.szcp new file mode 100644 index 00000000..04e6e015 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_054/checkpoints/checkpoint_00000000000000000076_2b1ce47f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000001_a06edf34.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000001_a06edf34.szar new file mode 100644 index 00000000..e65b7cc7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000001_a06edf34.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000002_1315a7d3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000002_1315a7d3.szar new file mode 100644 index 00000000..177f38a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000002_1315a7d3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000003_8df63657.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000003_8df63657.szar new file mode 100644 index 00000000..73fc3711 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000003_8df63657.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000004_90e73bde.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000004_90e73bde.szar new file mode 100644 index 00000000..123cc92a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000004_90e73bde.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000005_1c795d8f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000005_1c795d8f.szar new file mode 100644 index 00000000..5abdc918 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000005_1c795d8f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000006_b6870d4c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000006_b6870d4c.szar new file mode 100644 index 00000000..4a98eaca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000006_b6870d4c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000007_bd9f1794.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000007_bd9f1794.szar new file mode 100644 index 00000000..346f5050 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000007_bd9f1794.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000008_66ee1dd7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000008_66ee1dd7.szar new file mode 100644 index 00000000..d248eb46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000008_66ee1dd7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000009_2a92fb49.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000009_2a92fb49.szar new file mode 100644 index 00000000..86112448 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000009_2a92fb49.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000010_a3277726.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000010_a3277726.szar new file mode 100644 index 00000000..d5c148fd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000010_a3277726.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000011_4a59ea6e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000011_4a59ea6e.szar new file mode 100644 index 00000000..a7d1d3a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000011_4a59ea6e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000012_65c4ecdc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000012_65c4ecdc.szar new file mode 100644 index 00000000..28738d7c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000012_65c4ecdc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000013_e776c3a4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000013_e776c3a4.szar new file mode 100644 index 00000000..e5d9cd16 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000013_e776c3a4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000014_0fb9dfd3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000014_0fb9dfd3.szar new file mode 100644 index 00000000..e0910330 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000014_0fb9dfd3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000015_252e51f6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000015_252e51f6.szar new file mode 100644 index 00000000..d45f732a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000015_252e51f6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000016_01824e3c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000016_01824e3c.szar new file mode 100644 index 00000000..f96a9f66 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000016_01824e3c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000017_9f298084.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000017_9f298084.szar new file mode 100644 index 00000000..fdb2b25e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000017_9f298084.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000018_93149693.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000018_93149693.szar new file mode 100644 index 00000000..08887b57 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000018_93149693.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000019_162a47a4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000019_162a47a4.szar new file mode 100644 index 00000000..047bec1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000019_162a47a4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000020_e83f0623.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000020_e83f0623.szar new file mode 100644 index 00000000..b99a3b4b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000020_e83f0623.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000021_94db3ea0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000021_94db3ea0.szar new file mode 100644 index 00000000..9b67c256 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000021_94db3ea0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000022_7b2e1637.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000022_7b2e1637.szar new file mode 100644 index 00000000..ffa2100e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000022_7b2e1637.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000023_3cf46d92.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000023_3cf46d92.szar new file mode 100644 index 00000000..7fdf5807 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000023_3cf46d92.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000024_ff322d66.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000024_ff322d66.szar new file mode 100644 index 00000000..bd4ea930 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000024_ff322d66.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000025_b429eb7b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000025_b429eb7b.szar new file mode 100644 index 00000000..7a5c11a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000025_b429eb7b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000026_5ff96507.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000026_5ff96507.szar new file mode 100644 index 00000000..2990f957 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000026_5ff96507.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000027_e1f422d6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000027_e1f422d6.szar new file mode 100644 index 00000000..42e6f764 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000027_e1f422d6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000028_4b365ce0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000028_4b365ce0.szar new file mode 100644 index 00000000..225092d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000028_4b365ce0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000029_ccb95023.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000029_ccb95023.szar new file mode 100644 index 00000000..3d9b04a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000029_ccb95023.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000030_8cec6e29.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000030_8cec6e29.szar new file mode 100644 index 00000000..577c5fae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000030_8cec6e29.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000031_013e6caa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000031_013e6caa.szar new file mode 100644 index 00000000..030160b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000031_013e6caa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000032_94b4b836.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000032_94b4b836.szar new file mode 100644 index 00000000..7852312a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000032_94b4b836.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000033_b1a48ea4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000033_b1a48ea4.szar new file mode 100644 index 00000000..89660367 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000033_b1a48ea4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000034_ed90f4f8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000034_ed90f4f8.szar new file mode 100644 index 00000000..b15ad59d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000034_ed90f4f8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000035_ff2acd67.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000035_ff2acd67.szar new file mode 100644 index 00000000..cc8ee283 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000035_ff2acd67.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000036_1bcaa25f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000036_1bcaa25f.szar new file mode 100644 index 00000000..08ae5998 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000036_1bcaa25f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000037_8af3db17.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000037_8af3db17.szar new file mode 100644 index 00000000..9c007d36 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000037_8af3db17.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000038_1483d31b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000038_1483d31b.szar new file mode 100644 index 00000000..a81b7e21 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000038_1483d31b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000039_9b24388c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000039_9b24388c.szar new file mode 100644 index 00000000..2dc17ca1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000039_9b24388c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000040_04cc4855.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000040_04cc4855.szar new file mode 100644 index 00000000..60ac147b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000040_04cc4855.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000041_5817cd1d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000041_5817cd1d.szar new file mode 100644 index 00000000..1d521cb9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000041_5817cd1d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000042_28b4f41b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000042_28b4f41b.szar new file mode 100644 index 00000000..1d8c917d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000042_28b4f41b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000043_15ac6a7d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000043_15ac6a7d.szar new file mode 100644 index 00000000..49b915b6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000043_15ac6a7d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000044_3ad58da6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000044_3ad58da6.szar new file mode 100644 index 00000000..2053afa8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000044_3ad58da6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000045_6cf79fe8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000045_6cf79fe8.szar new file mode 100644 index 00000000..f9ef4028 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000045_6cf79fe8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000046_c0d2244c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000046_c0d2244c.szar new file mode 100644 index 00000000..c398e9ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000046_c0d2244c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000047_182a1cd3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000047_182a1cd3.szar new file mode 100644 index 00000000..233cb722 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000047_182a1cd3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000048_ddeb3721.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000048_ddeb3721.szar new file mode 100644 index 00000000..b12dfb93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000048_ddeb3721.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000049_5ba027b6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000049_5ba027b6.szar new file mode 100644 index 00000000..3406b21c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000049_5ba027b6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000050_d90e5147.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000050_d90e5147.szar new file mode 100644 index 00000000..a700574e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000050_d90e5147.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000051_81dfa2b8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000051_81dfa2b8.szar new file mode 100644 index 00000000..fe07c522 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000051_81dfa2b8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000052_a3212ddd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000052_a3212ddd.szar new file mode 100644 index 00000000..73994538 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000052_a3212ddd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000053_8bc6da12.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000053_8bc6da12.szar new file mode 100644 index 00000000..eb3ec6ef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000053_8bc6da12.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000054_1a3f05c0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000054_1a3f05c0.szar new file mode 100644 index 00000000..080c8e72 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000054_1a3f05c0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000055_900e9827.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000055_900e9827.szar new file mode 100644 index 00000000..669e4995 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000055_900e9827.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000056_f0403ec7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000056_f0403ec7.szar new file mode 100644 index 00000000..3cd172f2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000056_f0403ec7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000057_2e5ecb8b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000057_2e5ecb8b.szar new file mode 100644 index 00000000..75448218 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000057_2e5ecb8b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000058_7030c0de.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000058_7030c0de.szar new file mode 100644 index 00000000..be90742e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000058_7030c0de.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000059_b96b076d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000059_b96b076d.szar new file mode 100644 index 00000000..f9cd2500 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000059_b96b076d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000060_0c7ac0b2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000060_0c7ac0b2.szar new file mode 100644 index 00000000..82124cce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000060_0c7ac0b2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000061_eea2ab72.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000061_eea2ab72.szar new file mode 100644 index 00000000..c16ad792 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000061_eea2ab72.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000062_e716a89c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000062_e716a89c.szar new file mode 100644 index 00000000..968d9121 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000062_e716a89c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000063_37aa57f2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000063_37aa57f2.szar new file mode 100644 index 00000000..efa037c1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000063_37aa57f2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000064_da1bee60.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000064_da1bee60.szar new file mode 100644 index 00000000..2ef4fbac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000064_da1bee60.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000065_c30ca757.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000065_c30ca757.szar new file mode 100644 index 00000000..596bcd47 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/archive/delta_00000000000000000065_c30ca757.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000001_2ca63bc4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000001_2ca63bc4.szcp new file mode 100644 index 00000000..8e1fc7aa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000001_2ca63bc4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000002_2dbc6405.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000002_2dbc6405.szcp new file mode 100644 index 00000000..22cd2723 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000002_2dbc6405.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000003_9f3a0ec4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000003_9f3a0ec4.szcp new file mode 100644 index 00000000..e144207a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000003_9f3a0ec4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000004_162fe1ac.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000004_162fe1ac.szcp new file mode 100644 index 00000000..8e408d38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000004_162fe1ac.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000005_3fae01d4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000005_3fae01d4.szcp new file mode 100644 index 00000000..4c565b70 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000005_3fae01d4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000006_005e7ba7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000006_005e7ba7.szcp new file mode 100644 index 00000000..62e09dbb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000006_005e7ba7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000007_e7465b36.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000007_e7465b36.szcp new file mode 100644 index 00000000..2661bfb0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000007_e7465b36.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000008_f0d0536c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000008_f0d0536c.szcp new file mode 100644 index 00000000..970726d1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000008_f0d0536c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000009_c7aafab6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000009_c7aafab6.szcp new file mode 100644 index 00000000..7e20a8d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000009_c7aafab6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000010_63695791.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000010_63695791.szcp new file mode 100644 index 00000000..e433c5bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000010_63695791.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000011_38a4e503.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000011_38a4e503.szcp new file mode 100644 index 00000000..a347d402 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000011_38a4e503.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000012_33ca556d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000012_33ca556d.szcp new file mode 100644 index 00000000..83310769 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000012_33ca556d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000013_0edfeebf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000013_0edfeebf.szcp new file mode 100644 index 00000000..33b2a751 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000013_0edfeebf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000014_7c1426dc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000014_7c1426dc.szcp new file mode 100644 index 00000000..996ada77 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000014_7c1426dc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000015_3657948f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000015_3657948f.szcp new file mode 100644 index 00000000..3f461bcc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000015_3657948f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000016_0cee93fe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000016_0cee93fe.szcp new file mode 100644 index 00000000..bd189890 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000016_0cee93fe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000017_556139d1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000017_556139d1.szcp new file mode 100644 index 00000000..22d72c6d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000017_556139d1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000018_ea524697.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000018_ea524697.szcp new file mode 100644 index 00000000..82432f33 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000018_ea524697.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000019_86287b60.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000019_86287b60.szcp new file mode 100644 index 00000000..23871127 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000019_86287b60.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000020_e3c80c3a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000020_e3c80c3a.szcp new file mode 100644 index 00000000..f0091967 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000020_e3c80c3a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000021_fdd5e3dd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000021_fdd5e3dd.szcp new file mode 100644 index 00000000..d4162004 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000021_fdd5e3dd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000022_e346a67f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000022_e346a67f.szcp new file mode 100644 index 00000000..d11f7605 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000022_e346a67f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000023_0e92450a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000023_0e92450a.szcp new file mode 100644 index 00000000..73ce0cde Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000023_0e92450a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000024_9cc74386.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000024_9cc74386.szcp new file mode 100644 index 00000000..59e4d7cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000024_9cc74386.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000025_f6776c4e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000025_f6776c4e.szcp new file mode 100644 index 00000000..690971c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000025_f6776c4e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000026_1d4483b5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000026_1d4483b5.szcp new file mode 100644 index 00000000..00c47a77 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000026_1d4483b5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000027_3ec36487.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000027_3ec36487.szcp new file mode 100644 index 00000000..09e61f78 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000027_3ec36487.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000028_13801412.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000028_13801412.szcp new file mode 100644 index 00000000..4ae7e90b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000028_13801412.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000029_c4a5d04e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000029_c4a5d04e.szcp new file mode 100644 index 00000000..89f9fb9e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000029_c4a5d04e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000030_0edcbc4b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000030_0edcbc4b.szcp new file mode 100644 index 00000000..9fccb33a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000030_0edcbc4b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000031_b46f6f7b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000031_b46f6f7b.szcp new file mode 100644 index 00000000..a556d142 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000031_b46f6f7b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000032_c8a85a1f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000032_c8a85a1f.szcp new file mode 100644 index 00000000..8646479f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000032_c8a85a1f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000033_98e8bc8b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000033_98e8bc8b.szcp new file mode 100644 index 00000000..68b0dc6e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000033_98e8bc8b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000034_e7fca90f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000034_e7fca90f.szcp new file mode 100644 index 00000000..15f781fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000034_e7fca90f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000035_79dd4eb4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000035_79dd4eb4.szcp new file mode 100644 index 00000000..ce0b0a58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000035_79dd4eb4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000036_642313fe.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000036_642313fe.szcp new file mode 100644 index 00000000..2f5184b2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000036_642313fe.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000037_7db98920.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000037_7db98920.szcp new file mode 100644 index 00000000..321a4a3e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000037_7db98920.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000038_f5443802.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000038_f5443802.szcp new file mode 100644 index 00000000..110bfa7e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000038_f5443802.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000039_9f9de84e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000039_9f9de84e.szcp new file mode 100644 index 00000000..d1842ce0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000039_9f9de84e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000040_c3e7643d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000040_c3e7643d.szcp new file mode 100644 index 00000000..86f822ee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000040_c3e7643d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000041_db1691bd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000041_db1691bd.szcp new file mode 100644 index 00000000..492467fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000041_db1691bd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000042_4a9f4804.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000042_4a9f4804.szcp new file mode 100644 index 00000000..8d91e916 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000042_4a9f4804.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000043_58fa384e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000043_58fa384e.szcp new file mode 100644 index 00000000..dc8f3cdd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000043_58fa384e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000044_a4d8b435.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000044_a4d8b435.szcp new file mode 100644 index 00000000..9e8d79d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000044_a4d8b435.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000045_2ffe1dee.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000045_2ffe1dee.szcp new file mode 100644 index 00000000..36811cf4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000045_2ffe1dee.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000046_b13804a5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000046_b13804a5.szcp new file mode 100644 index 00000000..c167aee9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000046_b13804a5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000047_9e6eaf8d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000047_9e6eaf8d.szcp new file mode 100644 index 00000000..683d1bac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000047_9e6eaf8d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000048_6fc104fb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000048_6fc104fb.szcp new file mode 100644 index 00000000..dfb27582 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000048_6fc104fb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000049_cc660b50.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000049_cc660b50.szcp new file mode 100644 index 00000000..df6a5883 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000049_cc660b50.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000050_c7e9a323.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000050_c7e9a323.szcp new file mode 100644 index 00000000..d46e01c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000050_c7e9a323.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000051_db434a0f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000051_db434a0f.szcp new file mode 100644 index 00000000..ca3df58b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000051_db434a0f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000052_eef75726.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000052_eef75726.szcp new file mode 100644 index 00000000..0fa2080f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000052_eef75726.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000053_46295557.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000053_46295557.szcp new file mode 100644 index 00000000..e9746523 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000053_46295557.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000054_a326b1e7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000054_a326b1e7.szcp new file mode 100644 index 00000000..a3eb1c9a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000054_a326b1e7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000055_38f09c92.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000055_38f09c92.szcp new file mode 100644 index 00000000..ebf0ed0b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000055_38f09c92.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000056_fe50c198.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000056_fe50c198.szcp new file mode 100644 index 00000000..58ef6c8b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000056_fe50c198.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000057_48d012bf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000057_48d012bf.szcp new file mode 100644 index 00000000..1c4d9a9d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000057_48d012bf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000058_1c407186.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000058_1c407186.szcp new file mode 100644 index 00000000..04eedd17 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000058_1c407186.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000059_fbaff2d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000059_fbaff2d7.szcp new file mode 100644 index 00000000..559f79ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000059_fbaff2d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000060_7835d451.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000060_7835d451.szcp new file mode 100644 index 00000000..c0f4206b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000060_7835d451.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000061_77c94e46.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000061_77c94e46.szcp new file mode 100644 index 00000000..5fcd4232 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000061_77c94e46.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000062_e1eaf75a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000062_e1eaf75a.szcp new file mode 100644 index 00000000..15622984 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000062_e1eaf75a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000063_cc1d1727.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000063_cc1d1727.szcp new file mode 100644 index 00000000..eae9e5ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000063_cc1d1727.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000064_5af3250a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000064_5af3250a.szcp new file mode 100644 index 00000000..54f17f82 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000064_5af3250a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000065_88109563.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000065_88109563.szcp new file mode 100644 index 00000000..d5685dd2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_055/checkpoints/checkpoint_00000000000000000065_88109563.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000001_d25dab95.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000001_d25dab95.szar new file mode 100644 index 00000000..1f55a6e6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000001_d25dab95.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000002_290e4079.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000002_290e4079.szar new file mode 100644 index 00000000..5955c56b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000002_290e4079.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000003_2bac1f2a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000003_2bac1f2a.szar new file mode 100644 index 00000000..a5e2280f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000003_2bac1f2a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000004_fcf57f74.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000004_fcf57f74.szar new file mode 100644 index 00000000..a922efd7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000004_fcf57f74.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000005_d3319323.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000005_d3319323.szar new file mode 100644 index 00000000..f31f8a6a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000005_d3319323.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000006_0fdca2e4.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000006_0fdca2e4.szar new file mode 100644 index 00000000..176c524b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000006_0fdca2e4.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000007_fa47b7ba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000007_fa47b7ba.szar new file mode 100644 index 00000000..ff7a51b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000007_fa47b7ba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000008_356bd466.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000008_356bd466.szar new file mode 100644 index 00000000..a4ac8ca3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000008_356bd466.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000009_755ab029.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000009_755ab029.szar new file mode 100644 index 00000000..53847303 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000009_755ab029.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000010_f936b562.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000010_f936b562.szar new file mode 100644 index 00000000..7341e17a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000010_f936b562.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000011_e825b2f7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000011_e825b2f7.szar new file mode 100644 index 00000000..2ca06c04 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000011_e825b2f7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000012_4d2a4ee6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000012_4d2a4ee6.szar new file mode 100644 index 00000000..4f8a46b4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000012_4d2a4ee6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000013_c3e6454e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000013_c3e6454e.szar new file mode 100644 index 00000000..34fc820f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000013_c3e6454e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000014_1223cca1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000014_1223cca1.szar new file mode 100644 index 00000000..84b634de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000014_1223cca1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000015_efdec97c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000015_efdec97c.szar new file mode 100644 index 00000000..40612555 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000015_efdec97c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000016_95e3218f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000016_95e3218f.szar new file mode 100644 index 00000000..fe34ed68 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000016_95e3218f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000017_6409f0a3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000017_6409f0a3.szar new file mode 100644 index 00000000..f9187907 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000017_6409f0a3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000018_be1b5e7d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000018_be1b5e7d.szar new file mode 100644 index 00000000..88eac378 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000018_be1b5e7d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000019_42d5abe2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000019_42d5abe2.szar new file mode 100644 index 00000000..09586073 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000019_42d5abe2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000020_f46e004e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000020_f46e004e.szar new file mode 100644 index 00000000..61adedbc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000020_f46e004e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000021_7c944059.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000021_7c944059.szar new file mode 100644 index 00000000..2f9ca9db Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000021_7c944059.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000022_2d2b9ae8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000022_2d2b9ae8.szar new file mode 100644 index 00000000..e5012382 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000022_2d2b9ae8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000023_5d8ab88b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000023_5d8ab88b.szar new file mode 100644 index 00000000..55bab291 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000023_5d8ab88b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000024_89530982.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000024_89530982.szar new file mode 100644 index 00000000..81023d3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000024_89530982.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000025_4a452225.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000025_4a452225.szar new file mode 100644 index 00000000..3836d152 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000025_4a452225.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000026_c5880b03.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000026_c5880b03.szar new file mode 100644 index 00000000..9722941d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000026_c5880b03.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000027_6830deed.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000027_6830deed.szar new file mode 100644 index 00000000..f795e67d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000027_6830deed.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000028_b43ea3c0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000028_b43ea3c0.szar new file mode 100644 index 00000000..f0b6f9b8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000028_b43ea3c0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000029_92a6e1c0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000029_92a6e1c0.szar new file mode 100644 index 00000000..a9ceedf6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000029_92a6e1c0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000030_0387e35b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000030_0387e35b.szar new file mode 100644 index 00000000..71ebce98 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000030_0387e35b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000031_918aa3ac.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000031_918aa3ac.szar new file mode 100644 index 00000000..e6c2ecbc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000031_918aa3ac.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000032_d57884cf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000032_d57884cf.szar new file mode 100644 index 00000000..9c8b6e2b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000032_d57884cf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000033_22a8f59c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000033_22a8f59c.szar new file mode 100644 index 00000000..15c19d47 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000033_22a8f59c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000034_19ff82cd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000034_19ff82cd.szar new file mode 100644 index 00000000..2be69bf2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000034_19ff82cd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000035_1b4c40cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000035_1b4c40cc.szar new file mode 100644 index 00000000..259e3ae6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000035_1b4c40cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000036_77843871.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000036_77843871.szar new file mode 100644 index 00000000..a6912317 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000036_77843871.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000037_34cbf0cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000037_34cbf0cc.szar new file mode 100644 index 00000000..a698ca47 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000037_34cbf0cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000038_e04378e8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000038_e04378e8.szar new file mode 100644 index 00000000..c55edf8e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000038_e04378e8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000039_8917b1f7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000039_8917b1f7.szar new file mode 100644 index 00000000..6bad37c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000039_8917b1f7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000040_a485cb6e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000040_a485cb6e.szar new file mode 100644 index 00000000..692290c1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000040_a485cb6e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000041_ffad173f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000041_ffad173f.szar new file mode 100644 index 00000000..343772c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000041_ffad173f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000042_42d18323.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000042_42d18323.szar new file mode 100644 index 00000000..d09580dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000042_42d18323.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000043_31ed3377.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000043_31ed3377.szar new file mode 100644 index 00000000..95566866 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000043_31ed3377.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000044_11b6b2d3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000044_11b6b2d3.szar new file mode 100644 index 00000000..db22099b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000044_11b6b2d3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000045_f31426f2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000045_f31426f2.szar new file mode 100644 index 00000000..6dd2b3ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000045_f31426f2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000046_bc1eccc2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000046_bc1eccc2.szar new file mode 100644 index 00000000..b0fe3514 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000046_bc1eccc2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000047_e6c9682b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000047_e6c9682b.szar new file mode 100644 index 00000000..fb112666 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000047_e6c9682b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000048_fc8f8921.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000048_fc8f8921.szar new file mode 100644 index 00000000..eaa70786 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000048_fc8f8921.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000049_326ab380.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000049_326ab380.szar new file mode 100644 index 00000000..d70ce179 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000049_326ab380.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000050_a0e8037a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000050_a0e8037a.szar new file mode 100644 index 00000000..8f27fd2d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000050_a0e8037a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000051_7f19d536.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000051_7f19d536.szar new file mode 100644 index 00000000..62e4a56a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000051_7f19d536.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000052_95c89683.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000052_95c89683.szar new file mode 100644 index 00000000..6b845108 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000052_95c89683.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000053_40158ae2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000053_40158ae2.szar new file mode 100644 index 00000000..06fb80ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000053_40158ae2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000054_5aa62bfb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000054_5aa62bfb.szar new file mode 100644 index 00000000..99af4222 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000054_5aa62bfb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000055_c75dd952.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000055_c75dd952.szar new file mode 100644 index 00000000..09bb7cee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000055_c75dd952.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000056_6d919d1c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000056_6d919d1c.szar new file mode 100644 index 00000000..63a62c3a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000056_6d919d1c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000057_f02a3f58.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000057_f02a3f58.szar new file mode 100644 index 00000000..33cb866e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000057_f02a3f58.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000058_c46e089c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000058_c46e089c.szar new file mode 100644 index 00000000..9c8d2f40 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000058_c46e089c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000059_21a24cc8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000059_21a24cc8.szar new file mode 100644 index 00000000..c5ad2807 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000059_21a24cc8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000060_dbe3862d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000060_dbe3862d.szar new file mode 100644 index 00000000..4ad4e38d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000060_dbe3862d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000061_fc1f8858.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000061_fc1f8858.szar new file mode 100644 index 00000000..930ddfec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000061_fc1f8858.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000062_9f8438fb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000062_9f8438fb.szar new file mode 100644 index 00000000..80d6b2c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000062_9f8438fb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000063_a93e21a5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000063_a93e21a5.szar new file mode 100644 index 00000000..b221ed4e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000063_a93e21a5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000064_a93d2299.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000064_a93d2299.szar new file mode 100644 index 00000000..6c46309b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000064_a93d2299.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000065_de804b51.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000065_de804b51.szar new file mode 100644 index 00000000..7486f3f6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000065_de804b51.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000066_7029fab7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000066_7029fab7.szar new file mode 100644 index 00000000..24013b67 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000066_7029fab7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000067_129cda36.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000067_129cda36.szar new file mode 100644 index 00000000..070a45b6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000067_129cda36.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000068_f67910ff.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000068_f67910ff.szar new file mode 100644 index 00000000..f75feb10 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000068_f67910ff.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000069_63106e04.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000069_63106e04.szar new file mode 100644 index 00000000..b46f4faa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000069_63106e04.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000070_ac9cbe25.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000070_ac9cbe25.szar new file mode 100644 index 00000000..102a131d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000070_ac9cbe25.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000071_814a2253.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000071_814a2253.szar new file mode 100644 index 00000000..29d08291 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000071_814a2253.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000072_3bbb1cda.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000072_3bbb1cda.szar new file mode 100644 index 00000000..9b596d74 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000072_3bbb1cda.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000073_17262d03.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000073_17262d03.szar new file mode 100644 index 00000000..6f272205 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000073_17262d03.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000074_e44dd983.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000074_e44dd983.szar new file mode 100644 index 00000000..44ff1e34 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000074_e44dd983.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000075_1b0978d0.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000075_1b0978d0.szar new file mode 100644 index 00000000..9c7a7e2c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000075_1b0978d0.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000076_04f2df66.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000076_04f2df66.szar new file mode 100644 index 00000000..94e1375c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000076_04f2df66.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000077_b76f34a2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000077_b76f34a2.szar new file mode 100644 index 00000000..2e7a8ce3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000077_b76f34a2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000078_becfd7ad.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000078_becfd7ad.szar new file mode 100644 index 00000000..4ec60480 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000078_becfd7ad.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000079_d31576ec.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000079_d31576ec.szar new file mode 100644 index 00000000..0f6c6693 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000079_d31576ec.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000080_844f85fa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000080_844f85fa.szar new file mode 100644 index 00000000..31c1b23d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000080_844f85fa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000081_ca43bde7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000081_ca43bde7.szar new file mode 100644 index 00000000..6cc853b0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000081_ca43bde7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000082_d6f1a138.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000082_d6f1a138.szar new file mode 100644 index 00000000..a27968c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000082_d6f1a138.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000083_8b13460a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000083_8b13460a.szar new file mode 100644 index 00000000..a4784a8e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000083_8b13460a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000084_219213ed.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000084_219213ed.szar new file mode 100644 index 00000000..d3754ea4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000084_219213ed.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000085_9ac5a9ce.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000085_9ac5a9ce.szar new file mode 100644 index 00000000..8f4d0411 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000085_9ac5a9ce.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000086_969570f3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000086_969570f3.szar new file mode 100644 index 00000000..3f856152 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000086_969570f3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000087_dc7f5d9c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000087_dc7f5d9c.szar new file mode 100644 index 00000000..ebe0692e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/archive/delta_00000000000000000087_dc7f5d9c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000001_84495a43.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000001_84495a43.szcp new file mode 100644 index 00000000..9c71c5ed Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000001_84495a43.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000002_c36508fa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000002_c36508fa.szcp new file mode 100644 index 00000000..2a1c6fb6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000002_c36508fa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000003_111b618b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000003_111b618b.szcp new file mode 100644 index 00000000..ca1a0db3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000003_111b618b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000004_4c23d2f4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000004_4c23d2f4.szcp new file mode 100644 index 00000000..d6a8b582 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000004_4c23d2f4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000005_c8724c66.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000005_c8724c66.szcp new file mode 100644 index 00000000..51e85feb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000005_c8724c66.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000006_be6303e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000006_be6303e9.szcp new file mode 100644 index 00000000..6022069d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000006_be6303e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000007_95a6a61e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000007_95a6a61e.szcp new file mode 100644 index 00000000..18002ad3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000007_95a6a61e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000008_22bfb39b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000008_22bfb39b.szcp new file mode 100644 index 00000000..4ad98013 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000008_22bfb39b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000009_c2d9a5e0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000009_c2d9a5e0.szcp new file mode 100644 index 00000000..191eac79 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000009_c2d9a5e0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000010_386654e1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000010_386654e1.szcp new file mode 100644 index 00000000..16c6339b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000010_386654e1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000011_a80aa0cf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000011_a80aa0cf.szcp new file mode 100644 index 00000000..15e8fa8a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000011_a80aa0cf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000012_a69e163a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000012_a69e163a.szcp new file mode 100644 index 00000000..2e260ba2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000012_a69e163a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000013_1049b48d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000013_1049b48d.szcp new file mode 100644 index 00000000..15923022 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000013_1049b48d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000014_ad595475.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000014_ad595475.szcp new file mode 100644 index 00000000..2c0059de Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000014_ad595475.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000015_35bda896.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000015_35bda896.szcp new file mode 100644 index 00000000..f2db0995 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000015_35bda896.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000016_47c5b8f9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000016_47c5b8f9.szcp new file mode 100644 index 00000000..35375b1e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000016_47c5b8f9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000017_4c4d6616.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000017_4c4d6616.szcp new file mode 100644 index 00000000..eb9cd071 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000017_4c4d6616.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000018_9b8cf4fc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000018_9b8cf4fc.szcp new file mode 100644 index 00000000..4f67b8cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000018_9b8cf4fc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000019_20514b99.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000019_20514b99.szcp new file mode 100644 index 00000000..b11d5870 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000019_20514b99.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000020_4be2de1f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000020_4be2de1f.szcp new file mode 100644 index 00000000..9df29aab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000020_4be2de1f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000021_7fb2a425.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000021_7fb2a425.szcp new file mode 100644 index 00000000..b3403f4d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000021_7fb2a425.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000022_a1202ab2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000022_a1202ab2.szcp new file mode 100644 index 00000000..7e84a934 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000022_a1202ab2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000023_7a395765.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000023_7a395765.szcp new file mode 100644 index 00000000..f03fe0a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000023_7a395765.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000024_c3c348ce.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000024_c3c348ce.szcp new file mode 100644 index 00000000..74d1747e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000024_c3c348ce.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000025_ff09baf2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000025_ff09baf2.szcp new file mode 100644 index 00000000..47680768 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000025_ff09baf2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000026_d72d55ab.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000026_d72d55ab.szcp new file mode 100644 index 00000000..cded3f32 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000026_d72d55ab.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000027_8bf4b7af.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000027_8bf4b7af.szcp new file mode 100644 index 00000000..fa64401a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000027_8bf4b7af.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000028_e6a9214c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000028_e6a9214c.szcp new file mode 100644 index 00000000..d1dd7158 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000028_e6a9214c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000029_8215f2d7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000029_8215f2d7.szcp new file mode 100644 index 00000000..12429e03 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000029_8215f2d7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000030_9c5410d8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000030_9c5410d8.szcp new file mode 100644 index 00000000..9a838da0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000030_9c5410d8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000031_017afd84.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000031_017afd84.szcp new file mode 100644 index 00000000..415fbe8d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000031_017afd84.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000032_56a15929.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000032_56a15929.szcp new file mode 100644 index 00000000..48c5e798 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000032_56a15929.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000033_aec2e385.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000033_aec2e385.szcp new file mode 100644 index 00000000..0850400c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000033_aec2e385.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000034_7389db99.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000034_7389db99.szcp new file mode 100644 index 00000000..018a7c09 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000034_7389db99.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000035_7a0009b0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000035_7a0009b0.szcp new file mode 100644 index 00000000..d39388d8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000035_7a0009b0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000036_2a5c8fb8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000036_2a5c8fb8.szcp new file mode 100644 index 00000000..ba20aee4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000036_2a5c8fb8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000037_fa101b3c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000037_fa101b3c.szcp new file mode 100644 index 00000000..ac69514a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000037_fa101b3c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000038_51e4c380.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000038_51e4c380.szcp new file mode 100644 index 00000000..7c45c629 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000038_51e4c380.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000039_e1dceabc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000039_e1dceabc.szcp new file mode 100644 index 00000000..91ebe91c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000039_e1dceabc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000040_0881b781.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000040_0881b781.szcp new file mode 100644 index 00000000..10d2a35d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000040_0881b781.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000041_6bf51593.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000041_6bf51593.szcp new file mode 100644 index 00000000..94862313 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000041_6bf51593.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000042_baad1571.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000042_baad1571.szcp new file mode 100644 index 00000000..7686b548 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000042_baad1571.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000043_59341aad.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000043_59341aad.szcp new file mode 100644 index 00000000..d845a6c3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000043_59341aad.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000044_b56b573c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000044_b56b573c.szcp new file mode 100644 index 00000000..2d45c58e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000044_b56b573c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000045_ffca8f4d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000045_ffca8f4d.szcp new file mode 100644 index 00000000..c4d7e470 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000045_ffca8f4d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000046_c5a9e086.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000046_c5a9e086.szcp new file mode 100644 index 00000000..e6503185 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000046_c5a9e086.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000047_12157449.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000047_12157449.szcp new file mode 100644 index 00000000..4a5c53a1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000047_12157449.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000048_8cb60676.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000048_8cb60676.szcp new file mode 100644 index 00000000..72d54a0d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000048_8cb60676.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000049_76c792f6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000049_76c792f6.szcp new file mode 100644 index 00000000..fabd7df0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000049_76c792f6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000050_a5b660bc.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000050_a5b660bc.szcp new file mode 100644 index 00000000..77442a68 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000050_a5b660bc.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000051_7c4e90e2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000051_7c4e90e2.szcp new file mode 100644 index 00000000..f80329be Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000051_7c4e90e2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000052_c175fcad.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000052_c175fcad.szcp new file mode 100644 index 00000000..800d8606 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000052_c175fcad.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000053_14328241.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000053_14328241.szcp new file mode 100644 index 00000000..19f25096 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000053_14328241.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000054_03171427.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000054_03171427.szcp new file mode 100644 index 00000000..3cfc2a93 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000054_03171427.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000055_f3b2ebae.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000055_f3b2ebae.szcp new file mode 100644 index 00000000..a77730df Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000055_f3b2ebae.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000056_6c6cba40.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000056_6c6cba40.szcp new file mode 100644 index 00000000..b841e881 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000056_6c6cba40.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000057_5d96108d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000057_5d96108d.szcp new file mode 100644 index 00000000..c3a69ac6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000057_5d96108d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000058_d2768b23.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000058_d2768b23.szcp new file mode 100644 index 00000000..5cde4d3b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000058_d2768b23.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000059_6af594d4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000059_6af594d4.szcp new file mode 100644 index 00000000..1343fe2f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000059_6af594d4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000060_09785daa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000060_09785daa.szcp new file mode 100644 index 00000000..35a00ed7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000060_09785daa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000061_075f8e09.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000061_075f8e09.szcp new file mode 100644 index 00000000..622b367f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000061_075f8e09.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000062_3e663035.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000062_3e663035.szcp new file mode 100644 index 00000000..0ffb70f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000062_3e663035.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000063_46666161.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000063_46666161.szcp new file mode 100644 index 00000000..300507a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000063_46666161.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000064_6a87243a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000064_6a87243a.szcp new file mode 100644 index 00000000..f1a15b52 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000064_6a87243a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000065_f67b120f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000065_f67b120f.szcp new file mode 100644 index 00000000..bd37e491 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000065_f67b120f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000066_0ff256e5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000066_0ff256e5.szcp new file mode 100644 index 00000000..bc116da8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000066_0ff256e5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000067_2ba665c2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000067_2ba665c2.szcp new file mode 100644 index 00000000..7768e00c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000067_2ba665c2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000068_8d638f13.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000068_8d638f13.szcp new file mode 100644 index 00000000..849da455 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000068_8d638f13.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000069_0e53fa3b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000069_0e53fa3b.szcp new file mode 100644 index 00000000..9d39d0fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000069_0e53fa3b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000070_53d9ec97.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000070_53d9ec97.szcp new file mode 100644 index 00000000..ce7c453d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000070_53d9ec97.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000071_deef1d7b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000071_deef1d7b.szcp new file mode 100644 index 00000000..5263bd2b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000071_deef1d7b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000072_521bcb91.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000072_521bcb91.szcp new file mode 100644 index 00000000..7c0a27f5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000072_521bcb91.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000073_536d285c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000073_536d285c.szcp new file mode 100644 index 00000000..bea7ad19 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000073_536d285c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000074_b99359af.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000074_b99359af.szcp new file mode 100644 index 00000000..025e432b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000074_b99359af.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000075_48c1f91b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000075_48c1f91b.szcp new file mode 100644 index 00000000..ea3da6e8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000075_48c1f91b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000076_c70b3e1e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000076_c70b3e1e.szcp new file mode 100644 index 00000000..bdc68212 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000076_c70b3e1e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000077_bc9f93b5.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000077_bc9f93b5.szcp new file mode 100644 index 00000000..b91a1d2a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000077_bc9f93b5.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000078_e8946e99.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000078_e8946e99.szcp new file mode 100644 index 00000000..53feb65b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000078_e8946e99.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000079_a2eadd12.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000079_a2eadd12.szcp new file mode 100644 index 00000000..29f58baf Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000079_a2eadd12.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000080_8b720a1d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000080_8b720a1d.szcp new file mode 100644 index 00000000..176d96ce Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000080_8b720a1d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000081_1d415284.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000081_1d415284.szcp new file mode 100644 index 00000000..84b39c40 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000081_1d415284.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000082_b8c062b6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000082_b8c062b6.szcp new file mode 100644 index 00000000..87ef1335 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000082_b8c062b6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000083_b287ab3d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000083_b287ab3d.szcp new file mode 100644 index 00000000..e3c82cea Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000083_b287ab3d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000084_18b9dfe0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000084_18b9dfe0.szcp new file mode 100644 index 00000000..4b41ab28 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000084_18b9dfe0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000085_ad7e2d0f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000085_ad7e2d0f.szcp new file mode 100644 index 00000000..8c44eece Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000085_ad7e2d0f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000086_8c3408cf.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000086_8c3408cf.szcp new file mode 100644 index 00000000..cc7fcf76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000086_8c3408cf.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000087_993aa4b8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000087_993aa4b8.szcp new file mode 100644 index 00000000..7912f125 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_056/checkpoints/checkpoint_00000000000000000087_993aa4b8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000001_9f7e2fb5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000001_9f7e2fb5.szar new file mode 100644 index 00000000..574b3898 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000001_9f7e2fb5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000002_90adee8e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000002_90adee8e.szar new file mode 100644 index 00000000..53c84ce9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000002_90adee8e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000003_14c806ef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000003_14c806ef.szar new file mode 100644 index 00000000..ab67e3ab Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000003_14c806ef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000004_d1bc8189.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000004_d1bc8189.szar new file mode 100644 index 00000000..dc7ba555 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000004_d1bc8189.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000005_5f4e1f4c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000005_5f4e1f4c.szar new file mode 100644 index 00000000..76c44fdb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000005_5f4e1f4c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000006_d0420cdd.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000006_d0420cdd.szar new file mode 100644 index 00000000..325023e1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000006_d0420cdd.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000007_5b3f5892.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000007_5b3f5892.szar new file mode 100644 index 00000000..b01b372d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000007_5b3f5892.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000008_0677a7e2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000008_0677a7e2.szar new file mode 100644 index 00000000..47e4b723 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000008_0677a7e2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000009_69ea3336.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000009_69ea3336.szar new file mode 100644 index 00000000..f28ae880 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000009_69ea3336.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000010_eb40be17.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000010_eb40be17.szar new file mode 100644 index 00000000..3a8eafee Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000010_eb40be17.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000011_f0d41860.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000011_f0d41860.szar new file mode 100644 index 00000000..b1617771 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000011_f0d41860.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000012_05a6f95d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000012_05a6f95d.szar new file mode 100644 index 00000000..a7b5df11 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000012_05a6f95d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000013_ec8d5b57.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000013_ec8d5b57.szar new file mode 100644 index 00000000..59f70284 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000013_ec8d5b57.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000014_ce47ff5b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000014_ce47ff5b.szar new file mode 100644 index 00000000..e2ff1027 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000014_ce47ff5b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000015_1a915f63.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000015_1a915f63.szar new file mode 100644 index 00000000..c29f62cd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000015_1a915f63.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000016_68719e20.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000016_68719e20.szar new file mode 100644 index 00000000..c6945d0a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000016_68719e20.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000017_a2f3a842.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000017_a2f3a842.szar new file mode 100644 index 00000000..e92f533d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000017_a2f3a842.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000018_7d02f4f3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000018_7d02f4f3.szar new file mode 100644 index 00000000..7addce21 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000018_7d02f4f3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000019_d4223db6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000019_d4223db6.szar new file mode 100644 index 00000000..e37ec262 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000019_d4223db6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000020_0daa4a9e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000020_0daa4a9e.szar new file mode 100644 index 00000000..130bd361 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000020_0daa4a9e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000021_491c2df2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000021_491c2df2.szar new file mode 100644 index 00000000..72d74ec3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000021_491c2df2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000022_353b7aa6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000022_353b7aa6.szar new file mode 100644 index 00000000..6ccbdc00 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000022_353b7aa6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000023_f948a7ba.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000023_f948a7ba.szar new file mode 100644 index 00000000..8291e8e2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000023_f948a7ba.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000024_e7af8ce7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000024_e7af8ce7.szar new file mode 100644 index 00000000..9d774d0b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000024_e7af8ce7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000025_8200f646.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000025_8200f646.szar new file mode 100644 index 00000000..ce6bc88f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000025_8200f646.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000026_3398645a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000026_3398645a.szar new file mode 100644 index 00000000..3a8652d4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000026_3398645a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000027_5b878321.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000027_5b878321.szar new file mode 100644 index 00000000..d65793ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000027_5b878321.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000028_300e5688.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000028_300e5688.szar new file mode 100644 index 00000000..ed70761c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000028_300e5688.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000029_ff544369.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000029_ff544369.szar new file mode 100644 index 00000000..b2e5aac8 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000029_ff544369.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000030_baeae9fe.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000030_baeae9fe.szar new file mode 100644 index 00000000..775b5636 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000030_baeae9fe.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000031_8d8c1d31.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000031_8d8c1d31.szar new file mode 100644 index 00000000..b81123f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000031_8d8c1d31.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000032_29e742d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000032_29e742d7.szar new file mode 100644 index 00000000..a8c73f85 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000032_29e742d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000033_b0e2f4bb.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000033_b0e2f4bb.szar new file mode 100644 index 00000000..98a0e27e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000033_b0e2f4bb.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000034_43e1f3fc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000034_43e1f3fc.szar new file mode 100644 index 00000000..25997421 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000034_43e1f3fc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000035_e7f6a8be.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000035_e7f6a8be.szar new file mode 100644 index 00000000..656d0cbe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000035_e7f6a8be.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000036_65762c9a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000036_65762c9a.szar new file mode 100644 index 00000000..27567cfd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000036_65762c9a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000037_cd6a5f11.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000037_cd6a5f11.szar new file mode 100644 index 00000000..c3f30236 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000037_cd6a5f11.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000038_7928b0aa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000038_7928b0aa.szar new file mode 100644 index 00000000..208e6c4a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000038_7928b0aa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000039_89e154f6.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000039_89e154f6.szar new file mode 100644 index 00000000..87e31f1a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000039_89e154f6.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000040_1f2a75a1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000040_1f2a75a1.szar new file mode 100644 index 00000000..441e9ff2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000040_1f2a75a1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000041_08871315.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000041_08871315.szar new file mode 100644 index 00000000..7ee8803a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000041_08871315.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000042_5142a746.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000042_5142a746.szar new file mode 100644 index 00000000..2bda62c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000042_5142a746.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000043_cd97f671.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000043_cd97f671.szar new file mode 100644 index 00000000..99c4b90b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000043_cd97f671.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000044_2d0c2c39.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000044_2d0c2c39.szar new file mode 100644 index 00000000..2788201c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000044_2d0c2c39.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000045_7da835cc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000045_7da835cc.szar new file mode 100644 index 00000000..59edb25c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000045_7da835cc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000046_fcb8fe67.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000046_fcb8fe67.szar new file mode 100644 index 00000000..621b379c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000046_fcb8fe67.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000047_9415f59d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000047_9415f59d.szar new file mode 100644 index 00000000..39a81ac6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000047_9415f59d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000048_9d8561ef.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000048_9d8561ef.szar new file mode 100644 index 00000000..8dcafe1c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000048_9d8561ef.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000049_af41868d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000049_af41868d.szar new file mode 100644 index 00000000..882dde3e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000049_af41868d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000050_731e0be2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000050_731e0be2.szar new file mode 100644 index 00000000..8a82a86d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000050_731e0be2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000051_b48f9208.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000051_b48f9208.szar new file mode 100644 index 00000000..1452364b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000051_b48f9208.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000052_ec2e4fb8.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000052_ec2e4fb8.szar new file mode 100644 index 00000000..3510faae Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000052_ec2e4fb8.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000053_07523698.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000053_07523698.szar new file mode 100644 index 00000000..51f180af Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000053_07523698.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000054_d8f85f92.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000054_d8f85f92.szar new file mode 100644 index 00000000..abdc5a75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000054_d8f85f92.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000055_c9eec506.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000055_c9eec506.szar new file mode 100644 index 00000000..cfb5b969 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000055_c9eec506.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000056_8aab08aa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000056_8aab08aa.szar new file mode 100644 index 00000000..c08aeb1f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000056_8aab08aa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000057_0cf35526.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000057_0cf35526.szar new file mode 100644 index 00000000..74539373 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000057_0cf35526.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000058_6a1856b9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000058_6a1856b9.szar new file mode 100644 index 00000000..87fad385 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/archive/delta_00000000000000000058_6a1856b9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000001_83bb42e6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000001_83bb42e6.szcp new file mode 100644 index 00000000..e622b174 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000001_83bb42e6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000002_55a0ccfa.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000002_55a0ccfa.szcp new file mode 100644 index 00000000..9a094ed1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000002_55a0ccfa.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000003_43affb25.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000003_43affb25.szcp new file mode 100644 index 00000000..eccfd7d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000003_43affb25.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000004_e21b80dd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000004_e21b80dd.szcp new file mode 100644 index 00000000..b91a2d42 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000004_e21b80dd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000005_c83cd600.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000005_c83cd600.szcp new file mode 100644 index 00000000..b78d077f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000005_c83cd600.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000006_91dc883b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000006_91dc883b.szcp new file mode 100644 index 00000000..cb67eac3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000006_91dc883b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000007_5bfb01cb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000007_5bfb01cb.szcp new file mode 100644 index 00000000..a117e321 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000007_5bfb01cb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000008_c151ac69.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000008_c151ac69.szcp new file mode 100644 index 00000000..3eb18550 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000008_c151ac69.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000009_9d42164a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000009_9d42164a.szcp new file mode 100644 index 00000000..3631a26c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000009_9d42164a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000010_32fb83e9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000010_32fb83e9.szcp new file mode 100644 index 00000000..d9593af3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000010_32fb83e9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000011_000f2d4e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000011_000f2d4e.szcp new file mode 100644 index 00000000..2786ae86 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000011_000f2d4e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000012_ea51ab5f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000012_ea51ab5f.szcp new file mode 100644 index 00000000..4541ed26 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000012_ea51ab5f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000013_c1db17eb.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000013_c1db17eb.szcp new file mode 100644 index 00000000..adf48ef3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000013_c1db17eb.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000014_3aa32050.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000014_3aa32050.szcp new file mode 100644 index 00000000..c9a7254f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000014_3aa32050.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000015_5c56dfc8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000015_5c56dfc8.szcp new file mode 100644 index 00000000..6c9287a0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000015_5c56dfc8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000016_d567378f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000016_d567378f.szcp new file mode 100644 index 00000000..7f059a46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000016_d567378f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000017_26aa5e1c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000017_26aa5e1c.szcp new file mode 100644 index 00000000..d5f89c9c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000017_26aa5e1c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000018_4dea5041.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000018_4dea5041.szcp new file mode 100644 index 00000000..a3a3b1ca Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000018_4dea5041.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000019_df48e9ef.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000019_df48e9ef.szcp new file mode 100644 index 00000000..89aeaa37 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000019_df48e9ef.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000020_cd3f4f72.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000020_cd3f4f72.szcp new file mode 100644 index 00000000..7c0ec779 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000020_cd3f4f72.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000021_e09fbfac.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000021_e09fbfac.szcp new file mode 100644 index 00000000..43d4c88e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000021_e09fbfac.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000022_43e16f6f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000022_43e16f6f.szcp new file mode 100644 index 00000000..1437ecd2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000022_43e16f6f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000023_573ff736.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000023_573ff736.szcp new file mode 100644 index 00000000..6913746c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000023_573ff736.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000024_9c521448.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000024_9c521448.szcp new file mode 100644 index 00000000..fd8af71d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000024_9c521448.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000025_54db1581.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000025_54db1581.szcp new file mode 100644 index 00000000..060d8c61 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000025_54db1581.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000026_7ff50d86.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000026_7ff50d86.szcp new file mode 100644 index 00000000..e462db3e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000026_7ff50d86.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000027_3376e330.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000027_3376e330.szcp new file mode 100644 index 00000000..b2802c46 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000027_3376e330.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000028_2d68bcba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000028_2d68bcba.szcp new file mode 100644 index 00000000..d30c654a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000028_2d68bcba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000029_49fb88ba.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000029_49fb88ba.szcp new file mode 100644 index 00000000..a97faf68 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000029_49fb88ba.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000030_545a9c35.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000030_545a9c35.szcp new file mode 100644 index 00000000..e2bbfd14 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000030_545a9c35.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000031_a8d68b01.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000031_a8d68b01.szcp new file mode 100644 index 00000000..3db5988e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000031_a8d68b01.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000032_fad6f703.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000032_fad6f703.szcp new file mode 100644 index 00000000..fba7b531 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000032_fad6f703.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000033_69d68975.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000033_69d68975.szcp new file mode 100644 index 00000000..54525453 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000033_69d68975.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000034_5d0abc9d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000034_5d0abc9d.szcp new file mode 100644 index 00000000..f6e589fb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000034_5d0abc9d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000035_11b345af.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000035_11b345af.szcp new file mode 100644 index 00000000..d79f47c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000035_11b345af.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000036_983ad2c0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000036_983ad2c0.szcp new file mode 100644 index 00000000..67346043 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000036_983ad2c0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000037_09adc787.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000037_09adc787.szcp new file mode 100644 index 00000000..dd5d427e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000037_09adc787.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000038_3491f25e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000038_3491f25e.szcp new file mode 100644 index 00000000..b8920d62 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000038_3491f25e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000039_48af9f21.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000039_48af9f21.szcp new file mode 100644 index 00000000..5830401f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000039_48af9f21.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000040_b5aae614.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000040_b5aae614.szcp new file mode 100644 index 00000000..b568b11c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000040_b5aae614.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000041_1033d559.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000041_1033d559.szcp new file mode 100644 index 00000000..d8fa5647 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000041_1033d559.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000042_29ca7823.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000042_29ca7823.szcp new file mode 100644 index 00000000..7706c55c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000042_29ca7823.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000043_335b9b97.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000043_335b9b97.szcp new file mode 100644 index 00000000..76a051a6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000043_335b9b97.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000044_d04455df.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000044_d04455df.szcp new file mode 100644 index 00000000..db0c52dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000044_d04455df.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000045_b31438e4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000045_b31438e4.szcp new file mode 100644 index 00000000..8b6fc94c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000045_b31438e4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000046_5e3da61c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000046_5e3da61c.szcp new file mode 100644 index 00000000..421137f1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000046_5e3da61c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000047_7f58fae3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000047_7f58fae3.szcp new file mode 100644 index 00000000..924e92ad Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000047_7f58fae3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000048_15c90279.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000048_15c90279.szcp new file mode 100644 index 00000000..55893730 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000048_15c90279.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000049_01c8977a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000049_01c8977a.szcp new file mode 100644 index 00000000..981423e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000049_01c8977a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000050_3aa55de4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000050_3aa55de4.szcp new file mode 100644 index 00000000..73fcfd0e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000050_3aa55de4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000051_85732566.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000051_85732566.szcp new file mode 100644 index 00000000..edaa9a25 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000051_85732566.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000052_5f48f2db.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000052_5f48f2db.szcp new file mode 100644 index 00000000..80eaff0d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000052_5f48f2db.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000053_26151ae3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000053_26151ae3.szcp new file mode 100644 index 00000000..b5095092 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000053_26151ae3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000054_9d7fb103.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000054_9d7fb103.szcp new file mode 100644 index 00000000..30988f66 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000054_9d7fb103.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000055_f65ff8a4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000055_f65ff8a4.szcp new file mode 100644 index 00000000..6e470c43 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000055_f65ff8a4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000056_5b5ac408.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000056_5b5ac408.szcp new file mode 100644 index 00000000..649bd175 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000056_5b5ac408.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000057_d00fa89d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000057_d00fa89d.szcp new file mode 100644 index 00000000..ed4318bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000057_d00fa89d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000058_60ae1be6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000058_60ae1be6.szcp new file mode 100644 index 00000000..560b0a58 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_057/checkpoints/checkpoint_00000000000000000058_60ae1be6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000001_bb7c8756.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000001_bb7c8756.szar new file mode 100644 index 00000000..6399f3bc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000001_bb7c8756.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000002_a09082d2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000002_a09082d2.szar new file mode 100644 index 00000000..8649a413 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000002_a09082d2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000003_555626aa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000003_555626aa.szar new file mode 100644 index 00000000..a95bbb96 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000003_555626aa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000004_daac6c24.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000004_daac6c24.szar new file mode 100644 index 00000000..e5df8fac Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000004_daac6c24.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000005_435d0881.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000005_435d0881.szar new file mode 100644 index 00000000..d541358a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000005_435d0881.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000006_7ddad4d3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000006_7ddad4d3.szar new file mode 100644 index 00000000..d5d7c7d7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000006_7ddad4d3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000007_85b7408e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000007_85b7408e.szar new file mode 100644 index 00000000..7d49178b Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000007_85b7408e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000008_686053bc.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000008_686053bc.szar new file mode 100644 index 00000000..b50aa864 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000008_686053bc.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000009_d3bb376d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000009_d3bb376d.szar new file mode 100644 index 00000000..96b44fef Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000009_d3bb376d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000010_41f14518.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000010_41f14518.szar new file mode 100644 index 00000000..26114fc5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000010_41f14518.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000011_e1cc28ee.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000011_e1cc28ee.szar new file mode 100644 index 00000000..057bcf6d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000011_e1cc28ee.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000012_7b979ffa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000012_7b979ffa.szar new file mode 100644 index 00000000..48d4617a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000012_7b979ffa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000013_fb9aaa5c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000013_fb9aaa5c.szar new file mode 100644 index 00000000..9260284f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000013_fb9aaa5c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000014_a4e7f24b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000014_a4e7f24b.szar new file mode 100644 index 00000000..b275e3d5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000014_a4e7f24b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000015_a1d59955.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000015_a1d59955.szar new file mode 100644 index 00000000..ced4870d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000015_a1d59955.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000016_6f4553de.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000016_6f4553de.szar new file mode 100644 index 00000000..d24c931a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000016_6f4553de.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000017_9870b05d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000017_9870b05d.szar new file mode 100644 index 00000000..552b4728 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000017_9870b05d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000018_e3b0e62e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000018_e3b0e62e.szar new file mode 100644 index 00000000..c14a1bbd Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000018_e3b0e62e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000019_9a6e2727.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000019_9a6e2727.szar new file mode 100644 index 00000000..46f892a3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000019_9a6e2727.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000020_657dca6e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000020_657dca6e.szar new file mode 100644 index 00000000..1a6e6008 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000020_657dca6e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000021_6f48c385.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000021_6f48c385.szar new file mode 100644 index 00000000..d783ef13 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000021_6f48c385.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000022_c26b302a.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000022_c26b302a.szar new file mode 100644 index 00000000..f4f59d2c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000022_c26b302a.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000023_d01c5c5b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000023_d01c5c5b.szar new file mode 100644 index 00000000..a55cc3ff Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000023_d01c5c5b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000024_fcc3b939.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000024_fcc3b939.szar new file mode 100644 index 00000000..dbada3aa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000024_fcc3b939.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000025_c17e1ad2.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000025_c17e1ad2.szar new file mode 100644 index 00000000..ca819db7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000025_c17e1ad2.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000026_ec499384.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000026_ec499384.szar new file mode 100644 index 00000000..c4c8132c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000026_ec499384.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000027_bbbea9c1.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000027_bbbea9c1.szar new file mode 100644 index 00000000..cde343e5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000027_bbbea9c1.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000028_29e55eaf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000028_29e55eaf.szar new file mode 100644 index 00000000..50861fe3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000028_29e55eaf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000029_926953de.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000029_926953de.szar new file mode 100644 index 00000000..9f1c7a7e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000029_926953de.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000030_5fb98fb9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000030_5fb98fb9.szar new file mode 100644 index 00000000..544c55f0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000030_5fb98fb9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000031_fc0d85aa.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000031_fc0d85aa.szar new file mode 100644 index 00000000..dd09e4c0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000031_fc0d85aa.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000032_abc3f001.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000032_abc3f001.szar new file mode 100644 index 00000000..67da3c21 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000032_abc3f001.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000033_e3fec497.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000033_e3fec497.szar new file mode 100644 index 00000000..6c6690e4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000033_e3fec497.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000034_4fe1fcd7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000034_4fe1fcd7.szar new file mode 100644 index 00000000..2a38ab43 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000034_4fe1fcd7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000035_388f1d6c.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000035_388f1d6c.szar new file mode 100644 index 00000000..cdda2bb1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000035_388f1d6c.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000036_3bb04326.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000036_3bb04326.szar new file mode 100644 index 00000000..6cfb246c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000036_3bb04326.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000037_d11c83a5.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000037_d11c83a5.szar new file mode 100644 index 00000000..44449c82 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000037_d11c83a5.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000038_5fb5dd51.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000038_5fb5dd51.szar new file mode 100644 index 00000000..98bffe47 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000038_5fb5dd51.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000039_001191a3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000039_001191a3.szar new file mode 100644 index 00000000..2da965b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000039_001191a3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000040_2c4f9875.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000040_2c4f9875.szar new file mode 100644 index 00000000..d1ef360f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000040_2c4f9875.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000041_bd15c353.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000041_bd15c353.szar new file mode 100644 index 00000000..bd8d9ee3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000041_bd15c353.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000042_a32ff2b9.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000042_a32ff2b9.szar new file mode 100644 index 00000000..322a5f38 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000042_a32ff2b9.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000043_67dbb663.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000043_67dbb663.szar new file mode 100644 index 00000000..b56fda81 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000043_67dbb663.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000044_09867a02.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000044_09867a02.szar new file mode 100644 index 00000000..a0e45899 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000044_09867a02.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000045_3e150a81.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000045_3e150a81.szar new file mode 100644 index 00000000..c1910efc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000045_3e150a81.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000046_66aaa831.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000046_66aaa831.szar new file mode 100644 index 00000000..c43116e0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000046_66aaa831.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000047_fd2ea8e3.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000047_fd2ea8e3.szar new file mode 100644 index 00000000..bb3cf56f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000047_fd2ea8e3.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000048_c87b3e72.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000048_c87b3e72.szar new file mode 100644 index 00000000..edb2a2bb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000048_c87b3e72.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000049_f801b15b.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000049_f801b15b.szar new file mode 100644 index 00000000..608a05dc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000049_f801b15b.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000050_cdd826bf.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000050_cdd826bf.szar new file mode 100644 index 00000000..87df6730 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000050_cdd826bf.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000051_2e6f2c9d.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000051_2e6f2c9d.szar new file mode 100644 index 00000000..dc134d91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000051_2e6f2c9d.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000052_775515d7.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000052_775515d7.szar new file mode 100644 index 00000000..7dfac967 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000052_775515d7.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000053_566c3e7f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000053_566c3e7f.szar new file mode 100644 index 00000000..abb99b91 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000053_566c3e7f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000054_2989887e.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000054_2989887e.szar new file mode 100644 index 00000000..d81163d6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000054_2989887e.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000055_a8f64343.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000055_a8f64343.szar new file mode 100644 index 00000000..32742d56 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000055_a8f64343.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000056_9bc72c9f.szar b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000056_9bc72c9f.szar new file mode 100644 index 00000000..b46f7c1e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/archive/delta_00000000000000000056_9bc72c9f.szar differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000001_0623ef43.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000001_0623ef43.szcp new file mode 100644 index 00000000..691384af Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000001_0623ef43.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000002_4d755c2d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000002_4d755c2d.szcp new file mode 100644 index 00000000..5d33ae8c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000002_4d755c2d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000003_52a2202f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000003_52a2202f.szcp new file mode 100644 index 00000000..72a66e76 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000003_52a2202f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000004_f321f0f2.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000004_f321f0f2.szcp new file mode 100644 index 00000000..cf53799e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000004_f321f0f2.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000005_4cf9fe42.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000005_4cf9fe42.szcp new file mode 100644 index 00000000..2e607bb6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000005_4cf9fe42.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000006_21b2cc41.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000006_21b2cc41.szcp new file mode 100644 index 00000000..fedf83c2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000006_21b2cc41.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000007_add37c7d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000007_add37c7d.szcp new file mode 100644 index 00000000..deab0262 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000007_add37c7d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000008_7a894ee0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000008_7a894ee0.szcp new file mode 100644 index 00000000..bfa94f16 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000008_7a894ee0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000009_164c7a85.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000009_164c7a85.szcp new file mode 100644 index 00000000..98755fe0 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000009_164c7a85.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000010_ff19a5a3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000010_ff19a5a3.szcp new file mode 100644 index 00000000..d806256e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000010_ff19a5a3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000011_77b5d25f.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000011_77b5d25f.szcp new file mode 100644 index 00000000..b4587fdc Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000011_77b5d25f.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000012_f3328da1.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000012_f3328da1.szcp new file mode 100644 index 00000000..b78a97e7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000012_f3328da1.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000013_04b6d62e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000013_04b6d62e.szcp new file mode 100644 index 00000000..0b030acb Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000013_04b6d62e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000014_3690ede9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000014_3690ede9.szcp new file mode 100644 index 00000000..4bee1557 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000014_3690ede9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000015_de470191.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000015_de470191.szcp new file mode 100644 index 00000000..58fe88c1 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000015_de470191.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000016_b033f764.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000016_b033f764.szcp new file mode 100644 index 00000000..e13d16fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000016_b033f764.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000017_fe3cc3c3.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000017_fe3cc3c3.szcp new file mode 100644 index 00000000..46af9e80 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000017_fe3cc3c3.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000018_7a11882b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000018_7a11882b.szcp new file mode 100644 index 00000000..5c05060e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000018_7a11882b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000019_5ec87d93.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000019_5ec87d93.szcp new file mode 100644 index 00000000..08370802 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000019_5ec87d93.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000020_842df786.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000020_842df786.szcp new file mode 100644 index 00000000..d5ddcd73 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000020_842df786.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000021_df5c5397.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000021_df5c5397.szcp new file mode 100644 index 00000000..5182715d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000021_df5c5397.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000022_9e2df4d9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000022_9e2df4d9.szcp new file mode 100644 index 00000000..e699281a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000022_9e2df4d9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000023_d36958e7.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000023_d36958e7.szcp new file mode 100644 index 00000000..ca519765 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000023_d36958e7.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000024_16c22c58.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000024_16c22c58.szcp new file mode 100644 index 00000000..5f561d6c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000024_16c22c58.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000025_6c092ad0.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000025_6c092ad0.szcp new file mode 100644 index 00000000..d2fb2303 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000025_6c092ad0.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000026_2b95b4d8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000026_2b95b4d8.szcp new file mode 100644 index 00000000..5cd2da59 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000026_2b95b4d8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000027_afea661e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000027_afea661e.szcp new file mode 100644 index 00000000..d065df1f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000027_afea661e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000028_197a8238.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000028_197a8238.szcp new file mode 100644 index 00000000..8cc1b6a5 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000028_197a8238.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000029_89f691dd.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000029_89f691dd.szcp new file mode 100644 index 00000000..9a36f2d3 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000029_89f691dd.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000030_6340b595.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000030_6340b595.szcp new file mode 100644 index 00000000..56be1b7f Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000030_6340b595.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000031_637b7e7b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000031_637b7e7b.szcp new file mode 100644 index 00000000..b8a30364 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000031_637b7e7b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000032_25cfdeb4.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000032_25cfdeb4.szcp new file mode 100644 index 00000000..d7474cc4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000032_25cfdeb4.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000033_ead8c214.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000033_ead8c214.szcp new file mode 100644 index 00000000..4525daf7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000033_ead8c214.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000034_224490ed.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000034_224490ed.szcp new file mode 100644 index 00000000..4e9354b9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000034_224490ed.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000035_6e84d1ad.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000035_6e84d1ad.szcp new file mode 100644 index 00000000..bed805fe Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000035_6e84d1ad.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000036_4caeb26e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000036_4caeb26e.szcp new file mode 100644 index 00000000..3f5ea2d2 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000036_4caeb26e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000037_404292f9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000037_404292f9.szcp new file mode 100644 index 00000000..ca561e75 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000037_404292f9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000038_dfdba055.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000038_dfdba055.szcp new file mode 100644 index 00000000..d52866fa Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000038_dfdba055.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000039_06ae1946.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000039_06ae1946.szcp new file mode 100644 index 00000000..beca4eec Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000039_06ae1946.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000040_1b068370.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000040_1b068370.szcp new file mode 100644 index 00000000..ee2f08a4 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000040_1b068370.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000041_edf47564.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000041_edf47564.szcp new file mode 100644 index 00000000..0ddca2c6 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000041_edf47564.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000042_22c4c54e.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000042_22c4c54e.szcp new file mode 100644 index 00000000..a2eb6884 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000042_22c4c54e.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000043_1b10d5c9.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000043_1b10d5c9.szcp new file mode 100644 index 00000000..b259be0d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000043_1b10d5c9.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000044_16759759.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000044_16759759.szcp new file mode 100644 index 00000000..e2817293 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000044_16759759.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000045_5987c367.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000045_5987c367.szcp new file mode 100644 index 00000000..94370d13 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000045_5987c367.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000046_8793d678.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000046_8793d678.szcp new file mode 100644 index 00000000..c6f892c7 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000046_8793d678.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000047_7f80a848.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000047_7f80a848.szcp new file mode 100644 index 00000000..b5042c5e Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000047_7f80a848.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000048_b359bd6a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000048_b359bd6a.szcp new file mode 100644 index 00000000..b0200a8c Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000048_b359bd6a.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000049_c68b1da8.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000049_c68b1da8.szcp new file mode 100644 index 00000000..d8a1d390 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000049_c68b1da8.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000050_28787b0b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000050_28787b0b.szcp new file mode 100644 index 00000000..68e3e958 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000050_28787b0b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000051_0bcda6c6.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000051_0bcda6c6.szcp new file mode 100644 index 00000000..1dae8d42 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000051_0bcda6c6.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000052_e112d942.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000052_e112d942.szcp new file mode 100644 index 00000000..46b21bb9 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000052_e112d942.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000053_ccf9ea0c.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000053_ccf9ea0c.szcp new file mode 100644 index 00000000..fbde6c62 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000053_ccf9ea0c.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000054_e58aa29b.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000054_e58aa29b.szcp new file mode 100644 index 00000000..29895f35 Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000054_e58aa29b.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000055_a14e219d.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000055_a14e219d.szcp new file mode 100644 index 00000000..f3f1627a Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000055_a14e219d.szcp differ diff --git a/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000056_c19fbc7a.szcp b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000056_c19fbc7a.szcp new file mode 100644 index 00000000..b2df993d Binary files /dev/null and b/results/search/runs/b577ed1d-d662-4fba-9fc4-21e2d2b697b2/topology_058/checkpoints/checkpoint_00000000000000000056_c19fbc7a.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/metrics.tsv b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/metrics.tsv new file mode 100644 index 00000000..c3fd9ccb --- /dev/null +++ b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/metrics.tsv @@ -0,0 +1,308 @@ +round unix_ns phase topology depth bandit_score worstness before_C before_I after_C after_I improved backend_error archive_cells archive_improvements verified accounted_fp32_steps new_trials kernel_ms transfer_ms wall_ms rex_attempts rex_accepts spsa_attempted spsa_accepted steps_baseline steps_replica steps_adaptive steps_pbt steps_injected verified_baseline verified_replica verified_adaptive verified_pbt verified_injected archive_baseline archive_replica archive_adaptive archive_pbt archive_injected global_baseline global_replica global_adaptive global_pbt global_injected +1 1783756125507603800 DEPTH 56 1 0.81643558783371195 0 2 5 2 5 0 0 217 27 2546 23664814 143040 1030.9314575195312 6.0129999999999999 1557.0539000000001 120960 60062 1 0 5898240 4423680 4423680 4426413 4492800 170 202 172 172 1830 2 1 3 0 21 0 0 0 0 0 +2 1783756126625978900 DEPTH 8 1 0.82652048513770882 0 2 5 2 5 0 0 228 33 2569 23664803 143040 852.99446105957031 5.9203999999999999 1094.7475999999999 120960 62909 1 0 5898240 4423680 4423680 4426402 4492800 206 216 184 172 1791 3 0 0 4 26 0 0 0 0 0 +3 1783756127874832700 DEPTH 13 1 0.8366051894304537 0.0069124423963133532 1 6 1 6 0 0 185 28 2500 23664855 143040 821.06198120117188 5.9382999999999999 1232.5882999999999 120960 59374 1 0 5898240 4423680 4423680 4426453 4492800 193 199 184 172 1752 2 0 3 2 21 0 0 0 0 0 +4 1783756129189382000 DEPTH 17 1 0.8466897015597703 0.013824884792626776 0 7 0 7 1 0 197 32 2533 23664829 143040 823.74267578125 5.9454000000000002 1286.7473 120960 57659 1 0 5898240 4423680 4423680 4426425 4492800 180 201 163 182 1807 2 6 4 0 20 0 0 0 0 1 +5 1783756130510646100 DEPTH 42 1 0.70677402236797593 0.084485407066052204 2 6 2 6 1 0 147 34 2577 23664924 143040 836.02195739746094 5.9489000000000001 1301.2947999999999 120960 56773 1 0 5898240 4423680 4423680 4426522 4492800 151 175 165 166 1920 2 0 3 0 29 0 0 0 0 1 +6 1783756131756764600 DEPTH 31 1 0.71685815269192932 0.084485407066052204 2 6 2 6 1 0 132 29 2564 23664883 143040 822.5235595703125 5.9462000000000002 1227.9953 120960 56985 1 0 5898240 4423680 4423680 4426481 4492800 168 194 174 206 1822 1 1 3 3 21 0 0 0 0 1 +7 1783756132906960900 DEPTH 16 1 0.72694209336307736 0.084485407066052204 2 6 2 6 0 0 187 32 2531 23664846 143040 850.599609375 5.9416000000000002 1133.912 120960 66874 1 0 5898240 4423680 4423680 4426444 4492800 191 203 171 186 1780 4 0 1 1 26 0 0 0 0 0 +8 1783756134204710500 DEPTH 9 1 0.7370258452075007 0.084485407066052204 2 6 2 6 0 0 138 38 2583 23664814 143040 823.35284423828125 6.4954999999999998 1278.6678999999999 120960 57172 1 0 5898240 4423680 4423680 4426413 4492800 164 174 178 173 1894 4 0 5 0 29 0 0 0 0 0 +9 1783756135466359800 DEPTH 33 1 0.74710940904596035 0.091397849462365552 1 7 1 7 0 0 185 25 2552 23664840 143040 837.28759765625 5.9851999999999999 1245.3828000000001 120960 61294 1 0 5898240 4423680 4423680 4426439 4492800 176 204 183 175 1814 2 0 2 3 18 0 0 0 0 0 +10 1783756136757192800 DEPTH 1 1 0.75719278569394266 0.091397849462365552 1 7 1 7 0 0 127 37 2569 23664784 143040 827.79548645019531 5.9593999999999996 1268.0084999999999 120960 58549 1 0 5898240 4423680 4423680 4426384 4492800 170 176 157 171 1895 7 3 1 5 21 0 0 0 0 0 +11 1783756138085856100 DEPTH 11 1 0.76727597596170405 0.098310291858679053 0 8 0 8 0 0 106 28 2586 23664810 143040 817.74456787109375 6.0046999999999997 1309.6362999999999 120960 56408 1 0 5898240 4423680 4423680 4426405 4492800 169 194 202 200 1821 3 2 1 6 16 0 0 0 0 0 +12 1783756139371753200 DEPTH 53 1 0.77735898065431508 0.098310291858679053 0 8 0 8 0 0 152 36 2511 23664874 143040 846.00114440917969 6.1627999999999998 1262.1968999999999 120960 63792 1 0 5898240 4423680 4423680 4426471 4492800 188 201 204 198 1720 1 0 3 1 31 0 0 0 0 0 +13 1783756140676473900 DEPTH 45 1 0.73744180057170472 0.16897081413210441 2 7 2 7 0 0 147 44 2620 23664858 143040 846.66456604003906 6.0419999999999998 1283.2850000000001 120960 63934 1 0 5898240 4423680 4423680 4426458 4492800 150 153 151 207 1959 2 1 1 1 39 0 0 0 0 0 +14 1783756141993184000 DEPTH 44 1 0.74752443650870415 0.16897081413210441 2 7 2 7 0 0 160 27 2590 23664864 143040 835.10287475585938 5.9289000000000005 1298.0999999999999 120960 58916 1 0 5898240 4423680 4423680 4426461 4492800 160 180 166 175 1909 0 1 2 0 24 0 0 0 0 0 +15 1783756143281834900 DEPTH 54 1 0.75760688925508846 0.17588325652841791 1 8 1 8 1 0 115 50 2546 23664825 143040 815.34445190429688 5.9389000000000003 1268.4228000000001 120960 57857 1 0 5898240 4423680 4423680 4426425 4492800 172 182 191 206 1795 5 5 3 3 34 0 0 0 1 1 +16 1783756144601279300 DEPTH 52 1 0.76768915959562045 0.17588325652841791 1 8 1 8 0 0 109 32 2572 23664813 143040 818.3436279296875 6.0982000000000003 1290.2963 120960 56929 1 0 5898240 4423680 4423680 4426412 4492800 197 202 162 176 1835 2 7 4 2 17 0 0 0 0 0 +17 1783756145848092800 DEPTH 30 1 0.77777124831009159 0.17588325652841791 1 8 1 8 1 0 141 52 2524 23664882 143040 826.17366027832031 5.9549000000000003 1224.8634 120960 60400 1 0 5898240 4423680 4423680 4426480 4492800 182 202 174 185 1781 2 0 1 9 40 0 0 0 1 0 +18 1783756147130531000 DEPTH 2 1 0.76285315617336491 0.25345622119815675 2 8 2 8 0 0 143 30 2550 23664812 143040 830.1585693359375 5.9817 1263.1349 120960 57436 1 0 5898240 4423680 4423680 4426409 4492800 169 199 177 196 1809 4 3 4 4 15 0 0 0 0 0 +19 1783756148419070000 DEPTH 21 1 0.77293488395541465 0.26728110599078347 0 10 0 10 0 0 180 50 2542 23664817 143040 838.77059936523438 5.9761000000000006 1266.0588 120960 58274 1 0 5898240 4423680 4423680 4426417 4492800 167 189 170 161 1855 4 3 4 1 38 0 0 0 0 0 +20 1783756149451644700 DEPTH 12 1 0.76801643242136852 0.33102918586789559 3 8 3 8 0 0 186 72 2530 23664884 143040 829.16937255859375 5.9447999999999999 1014.7607 120960 60141 1 0 5898240 4423680 4423680 4426484 4492800 193 207 175 198 1757 6 0 6 8 52 0 0 0 0 0 +21 1783756150517620500 DEPTH 39 1 0.77809780233154702 0.33102918586789559 3 8 3 8 0 0 175 64 2546 23664911 143040 846.30538940429688 6.4725000000000001 1044.0378000000001 120960 64729 1 0 5898240 4423680 4423680 4426511 4492800 177 181 156 184 1848 11 1 9 3 40 0 0 0 0 0 +22 1783756151752597300 DEPTH 3 1 0.78817899444150352 0.33794162826420893 2 9 2 9 1 0 148 78 2550 23664826 143040 823.57846069335938 5.9864000000000006 1203.6059 120960 56602 1 0 5898240 4423680 4423680 4426424 4492800 188 213 183 186 1780 10 3 7 4 54 1 0 0 0 0 +23 1783756153036217000 DEPTH 48 1 0.79826000950206422 0.33794162826420893 2 9 2 9 0 0 166 42 2579 23664916 143040 805.26005554199219 6.1283000000000003 1262.0929000000001 120960 55897 1 0 5898240 4423680 4423680 4426514 4492800 184 187 178 215 1815 7 2 2 6 25 0 0 0 0 0 +24 1783756154263669400 DEPTH 50 1 0.80834084825936658 0.33794162826420893 2 9 2 9 0 0 135 49 2607 23664876 143040 809.43307495117188 5.9995999999999992 1204.22 120960 56753 1 0 5898240 4423680 4423680 4426474 4492800 162 207 165 159 1914 3 3 2 2 39 0 0 0 0 0 +25 1783756155520578600 DEPTH 41 1 0.80842151145489916 0.34485407066052232 1 10 1 10 0 0 113 37 2558 23664814 143040 811.48506164550781 5.9596999999999998 1238.3695 120960 55861 1 0 5898240 4423680 4423680 4426412 4492800 193 184 173 180 1828 3 0 2 3 29 0 0 0 0 0 +26 1783756156559524100 DEPTH 10 1 0.80850199982553805 0.34485407066052232 1 10 1 10 0 0 119 21 2570 23664869 143040 822.96907043457031 5.9287000000000001 1021.2996000000001 120960 54214 1 0 5898240 4423680 4423680 4426468 4492800 169 208 166 165 1862 1 3 3 2 12 0 0 0 0 0 +27 1783756157592131000 DEPTH 38 1 0.79858231410358682 0.42242703533026116 2 10 2 10 0 0 122 59 2546 23664801 143040 823.55899047851562 6.7645 1019.5626 120960 58552 1 0 5898240 4423680 4423680 4426400 4492800 176 157 168 176 1869 1 1 5 3 49 0 0 0 0 0 +28 1783756158863886600 DEPTH 14 1 0.79866245501681254 0.43625192012288788 0 12 0 12 1 0 120 50 2559 23664818 143040 835.99217224121094 6.017500000000001 1254.2619999999999 120960 61101 1 0 5898240 4423680 4423680 4426418 4492800 173 163 168 174 1881 3 1 4 5 37 0 0 0 0 1 +29 1783756159893054900 DEPTH 49 1 0.79159956614562654 0.5 3 10 3 10 0 0 132 59 2582 23664830 143040 831.01443481445312 5.9337999999999997 1015.2298 120960 57665 1 0 5898240 4423680 4423680 4426429 4492800 162 203 158 164 1895 2 3 6 5 43 0 0 0 0 0 +30 1783756160947290700 DEPTH 36 1 0.79167936249454984 0.5 3 10 3 10 0 0 116 38 2598 23664872 143040 845.02276611328125 6.0390000000000006 1041.0123000000001 120960 60951 1 0 5898240 4423680 4423680 4426469 4492800 163 172 180 158 1925 9 0 1 2 26 0 0 0 0 0 +31 1783756162265012100 DEPTH 17 1 1.0333015999858279 0.013824884792626776 0 7 0 7 0 0 197 22 2522 23664810 81600 813.49447631835938 5.9315999999999995 1301.6690000000001 120960 46445 1 0 5898240 4423680 4423680 4426408 4492800 190 197 173 202 1760 0 0 0 0 22 0 0 0 0 0 +32 1783756163578508500 DEPTH 56 1 1.0333752247994321 0 2 5 2 5 0 0 218 20 2544 23664806 81600 823.44146728515625 5.9556000000000004 1297.7553 120960 49199 1 0 5898240 4423680 4423680 4426406 4492800 180 204 214 203 1743 1 0 0 0 19 0 0 0 0 0 +33 1783756164690161300 DEPTH 8 1 1.0334504410118854 0 2 5 2 5 0 0 229 26 2556 23664843 81600 845.76531982421875 5.9162999999999997 1088.7474 120960 53304 1 0 5898240 4423680 4423680 4426442 4492800 224 210 219 192 1711 0 0 2 0 24 0 0 0 0 0 +34 1783756165948397700 DEPTH 13 1 1.0335254968101322 0.0069124423963133532 1 6 1 6 0 0 186 19 2500 23664876 81600 817.78451538085938 5.9737999999999998 1243.9126000000001 120960 48023 1 0 5898240 4423680 4423680 4426476 4492800 201 196 190 184 1729 0 1 0 0 18 0 0 0 0 0 +35 1783756167266354500 DEPTH 42 1 0.88567807823877098 0.084485407066052204 2 6 2 6 0 0 147 28 2583 23664821 81600 824.70899963378906 5.9426999999999994 1302.7026000000001 120960 46523 1 0 5898240 4423680 4423680 4426420 4492800 156 176 181 199 1871 0 0 0 0 28 0 0 0 0 0 +36 1783756168534665800 DEPTH 31 1 0.88367913467594517 0.084485407066052204 2 6 2 6 1 0 133 27 2578 23664897 81600 818.18096923828125 5.9620000000000006 1252.1229000000001 120960 48132 1 0 5898240 4423680 4423680 4426494 4492800 169 194 216 524 1475 0 0 2 0 25 0 0 0 0 1 +37 1783756169664429000 DEPTH 16 1 0.88374970831216493 0.084485407066052204 2 6 2 6 0 0 187 39 2539 23664761 81600 841.47750854492188 5.9108000000000009 1113.7808 120960 54660 1 0 5898240 4423680 4423680 4426361 4492800 210 193 173 200 1763 0 0 0 1 38 0 0 0 0 0 +38 1783756170970520800 DEPTH 9 1 0.88382412902609064 0.084485407066052204 2 6 2 6 0 0 139 19 2599 23664873 81600 819.58993530273438 5.9209999999999994 1288.0491 120960 47225 1 0 5898240 4423680 4423680 4426472 4492800 170 168 211 223 1827 2 0 0 0 17 0 0 0 0 0 +39 1783756172248324900 DEPTH 33 1 0.88389839259214864 0.091397849462365552 1 7 1 7 0 0 185 27 2560 23664869 81600 834.01797485351562 5.9732000000000003 1261.4356 120960 49951 1 0 5898240 4423680 4423680 4426464 4492800 174 190 205 198 1793 0 0 0 0 27 0 0 0 0 0 +40 1783756173532989300 DEPTH 1 1 0.8839724996517706 0.091397849462365552 1 7 1 7 0 0 127 21 2564 23664793 81600 823.25341796875 5.9862000000000002 1266.9024999999999 120960 47916 1 0 5898240 4423680 4423680 4426393 4492800 193 171 175 229 1796 1 0 0 0 20 0 0 0 0 0 +41 1783756174835625900 DEPTH 11 1 0.88404645084251599 0.098310291858679053 0 8 0 8 0 0 106 17 2585 23664819 81600 810.83888244628906 5.9474000000000009 1286.4355 120960 46593 1 0 5898240 4423680 4423680 4426418 4492800 232 180 335 347 1491 0 0 0 0 17 0 0 0 0 0 +42 1783756176086195500 DEPTH 53 1 0.88412024679810342 0.098310291858679053 0 8 0 8 0 0 152 43 2517 23664868 81600 837.41261291503906 5.9725999999999999 1229.3191999999999 120960 53014 1 0 5898240 4423680 4423680 4426467 4492800 188 198 204 195 1732 0 0 1 0 42 0 0 0 0 0 +43 1783756177098882100 DEPTH 5 1 0.79270138921720901 0.50691244239631339 2 11 2 11 1 0 94 69 2603 23664845 143040 799.92289733886719 5.9473000000000011 987.19740000000002 120960 55328 1 0 5898240 4423680 4423680 4426445 4492800 164 180 172 174 1913 5 1 10 3 50 0 0 0 0 2 +44 1783756178131851100 DEPTH 19 1 0.79277885170797591 0.50691244239631339 2 11 2 11 1 0 133 39 2613 23664823 143040 832.58274841308594 6.0465 1016.9815 120960 57977 1 0 5898240 4423680 4423680 4426423 4492800 158 182 179 164 1930 7 2 2 4 24 0 0 0 0 2 +45 1783756179177605200 DEPTH 35 1 0.7928561525465414 0.50691244239631339 2 11 2 11 0 0 167 67 2518 23664867 143040 843.15878295898438 5.9417 1028.7945999999999 120960 60640 1 0 5898240 4423680 4423680 4426466 4492800 184 202 175 172 1785 9 3 1 6 48 0 0 0 0 0 +46 1783756180211685600 DEPTH 20 1 0.79293329238502774 0.50691244239631339 2 11 2 11 0 0 118 39 2564 23664907 143040 825.12136840820312 5.9430000000000005 1017.4638 120960 58156 1 0 5898240 4423680 4423680 4426507 4492800 181 186 186 218 1793 7 0 3 5 24 0 0 0 0 0 +47 1783756181500177200 DEPTH 17 1 0.93140710450238029 0.013824884792626776 0 7 0 7 0 0 198 21 2525 23664911 81600 811.62640380859375 5.9330999999999996 1287.2807 120960 39765 1 0 5898240 4423680 4423680 4426510 4492800 229 198 182 232 1684 0 0 0 0 21 0 0 0 0 0 +48 1783756182796031800 DEPTH 56 1 0.93147501337655125 0 2 5 2 5 0 0 218 21 2565 23664940 81600 822.21748352050781 5.9188999999999998 1294.5771 120960 42326 1 0 5898240 4423680 4423680 4426539 4492800 180 198 296 279 1612 1 0 0 0 20 0 0 0 0 0 +49 1783756183914261200 DEPTH 8 1 0.93154435559981297 0 2 5 2 5 0 0 229 22 2577 23664878 81600 842.9268798828125 5.9836 1116.5134 120960 45636 1 0 5898240 4423680 4423680 4426477 4492800 241 204 240 219 1673 0 0 0 0 22 0 0 0 0 0 +50 1783756185171492200 DEPTH 13 1 0.9316135545175751 0.0069124423963133532 1 6 1 6 0 0 186 24 2505 23664828 81600 815.19406127929688 5.9221000000000004 1255.9644000000001 120960 40647 1 0 5898240 4423680 4423680 4426428 4492800 201 187 192 225 1700 0 0 0 0 24 0 0 0 0 0 +51 1783756186471172500 DEPTH 54 1 0.83491024163327043 0.17588325652841791 1 8 1 8 1 0 115 40 2548 23664820 81600 813.09651184082031 5.9499999999999993 1279.1983 120960 45911 1 0 5898240 4423680 4423680 4426418 4492800 185 175 254 301 1633 0 0 0 1 39 0 0 0 0 2 +52 1783756187750267200 DEPTH 30 1 0.83485936960955509 0.17588325652841791 1 8 1 8 0 0 141 31 2535 23664909 81600 823.28082275390625 5.9615999999999998 1257.5827999999999 120960 49418 1 0 5898240 4423680 4423680 4426504 4492800 207 198 208 287 1635 0 0 0 2 29 0 0 0 0 0 +53 1783756189049491200 DEPTH 45 1 0.83492193427821126 0.16897081413210441 2 7 2 7 0 0 149 21 2635 23664821 81600 840.44390869140625 5.9397999999999991 1281.7701999999999 120960 52598 1 0 5898240 4423680 4423680 4426421 4492800 150 150 150 396 1789 0 1 1 0 19 0 0 0 0 0 +54 1783756190385632500 DEPTH 44 1 0.83499391548470292 0.16897081413210441 2 7 2 7 0 0 160 24 2597 23664817 81600 830.83822631835938 6.0216000000000003 1308.4123 120960 48669 1 0 5898240 4423680 4423680 4426416 4492800 161 174 173 203 1886 0 0 0 0 24 0 0 0 0 0 +55 1783756191668995900 DEPTH 17 1 0.84077513154361161 0.013824884792626776 0 7 0 7 0 0 198 22 2520 23664871 81600 806.19313049316406 6.1939000000000011 1282.1914999999999 120960 29005 1 0 5898240 4423680 4423680 4426468 4492800 241 192 187 291 1609 0 0 0 0 22 0 0 0 0 0 +56 1783756192988574500 DEPTH 52 1 0.83513743648222327 0.17588325652841791 1 8 1 8 0 0 110 21 2570 23664875 81600 811.98056030273438 5.9638 1270.9355 120960 46399 1 0 5898240 4423680 4423680 4426473 4492800 217 197 168 238 1750 0 0 0 0 21 0 0 0 0 0 +57 1783756194323845800 DEPTH 56 1 0.85090446078433191 0 2 5 2 5 0 0 218 26 2570 23664830 81600 816.69427490234375 5.9363999999999999 1294.4138 120960 30694 1 0 5898240 4423680 4423680 4426427 4492800 180 195 291 338 1566 0 0 0 1 25 0 0 0 0 0 +58 1783756195639448400 DEPTH 42 1 0.85403197170828793 0.084485407066052204 2 6 2 6 0 0 147 22 2589 23664891 81600 821.66873168945312 5.9451000000000001 1299.2201 120960 40076 1 0 5898240 4423680 4423680 4426491 4492800 171 172 209 239 1798 0 0 0 1 21 0 0 0 0 0 +59 1783756196743634700 DEPTH 8 1 0.86103467789547461 0 2 5 2 5 0 0 229 29 2567 23664890 81600 837.96939086914062 5.9526000000000003 1087.4670000000001 120960 33488 1 0 5898240 4423680 4423680 4426490 4492800 282 198 261 231 1595 0 0 0 1 28 0 0 0 0 0 +60 1783756198019835400 DEPTH 31 1 0.86230754562060297 0.084485407066052204 2 6 2 6 0 0 133 14 2579 23664826 81600 819.11705017089844 5.9548000000000005 1260.2982 120960 41113 1 0 5898240 4423680 4423680 4426423 4492800 191 184 250 729 1225 0 0 0 0 14 0 0 0 0 0 +61 1783756199291062200 DEPTH 13 1 0.87116436754104309 0.0069124423963133532 1 6 1 6 0 0 186 23 2501 23664785 81600 810.49067687988281 5.9170999999999996 1242.5486000000001 120960 30085 1 0 5898240 4423680 4423680 4426385 4492800 200 187 192 305 1617 1 0 0 0 22 0 0 0 0 0 +62 1783756200576858600 DEPTH 2 1 0.81056450970216043 0.25345622119815675 2 8 2 8 0 0 143 29 2562 23664945 81600 826.12687683105469 6.1398000000000001 1266.8905 120960 48006 1 0 5898240 4423680 4423680 4426541 4492800 201 188 265 278 1630 0 0 0 1 28 0 0 0 0 0 +63 1783756200775626000 REFRESH 47 0 0.79422065014784304 0.50691244239631339 2 11 2 11 0 0 112 11 416 3943915 116640 148.15744018554688 1.0068999999999999 182.47739999999999 20160 15255 0 0 983040 737280 737280 737515 748800 27 26 26 26 311 0 0 1 1 9 0 0 0 0 0 +64 1783756200978456900 REFRESH 3 0 0.79570571965701209 0.33794162826420893 2 9 2 9 0 0 148 9 417 3943914 55200 149.62380981445312 0.98780000000000001 185.4759 20160 14922 0 0 983040 737280 737280 737513 748800 37 26 26 29 299 0 0 0 0 9 0 0 0 0 0 +65 1783756201195050500 REFRESH 48 0 0.79577611138625293 0.33794162826420893 2 9 2 9 0 0 166 10 417 3943892 55200 148.64285278320312 0.98729999999999996 203.26910000000001 20160 15031 0 0 983040 737280 737280 737491 748800 28 26 28 53 282 0 0 0 0 10 0 0 0 0 0 +66 1783756201380259200 REFRESH 8 0 0.82173486804884854 0 2 5 2 5 0 0 230 6 415 3943916 55200 150.15628051757812 0.98650000000000004 184.10120000000001 20160 12259 0 0 983040 737280 737280 737516 748800 53 26 27 38 271 0 0 0 1 5 0 0 0 0 0 +67 1783756201568200100 REFRESH 2 0 0.59776855236212412 0.25345622119815675 2 8 2 8 0 0 143 10 412 3943925 55200 149.81837463378906 0.98729999999999996 186.77889999999999 20160 14239 0 0 983040 737280 737280 737525 748800 39 26 26 55 266 0 0 0 0 10 0 0 0 0 0 +68 1783756201755670300 REFRESH 33 0 0.87283526650744636 0.091397849462365552 1 7 1 7 0 0 185 5 415 3943902 55200 149.67091369628906 0.99029999999999996 186.2936 20160 14150 0 0 983040 737280 737280 737502 748800 42 26 34 41 272 0 0 0 0 5 0 0 0 0 0 +69 1783756201960664100 REFRESH 55 0 0.79466451631590929 0.51382488479262667 1 12 1 12 1 0 147 18 415 3943868 116640 149.55416870117188 1.0084 189.13749999999999 20160 14749 0 0 983040 737280 737280 737468 748800 27 28 26 26 308 1 0 1 0 16 0 0 0 0 1 +70 1783756202164667000 REFRESH 22 0 0.78938083525609681 0.58448540706605223 3 11 3 11 0 0 126 8 421 3943913 116640 150.4716796875 1.0055000000000001 188.09780000000001 20160 14427 0 0 983040 737280 737280 737513 748800 27 28 26 25 315 0 0 0 0 8 0 0 0 0 0 +71 1783756202375228700 REFRESH 0 0 0.79481129402459527 0.51382488479262667 1 12 1 12 0 0 91 3 421 3943897 116640 147.93180847167969 1.0053000000000001 183.94239999999999 20160 15139 0 0 983040 737280 737280 737497 748800 26 25 25 25 320 0 0 0 0 3 0 0 0 0 0 +72 1783756202563055000 REFRESH 1 0 0.87310079838959742 0.091397849462365552 1 7 1 7 0 0 127 7 420 3943928 55200 149.37907409667969 0.98109999999999997 186.69280000000001 20160 14281 0 0 983040 737280 737280 737528 748800 49 26 66 46 233 0 0 0 0 7 0 0 0 0 0 +73 1783756202756857400 REFRESH 10 0 0.79633421368490476 0.34485407066052232 1 10 1 10 0 0 119 9 416 3943916 55200 149.45353698730469 0.99860000000000004 179.05000000000001 20160 14948 0 0 983040 737280 737280 737516 748800 26 26 28 26 310 0 0 0 0 9 0 0 0 0 0 +74 1783756202962526100 REFRESH 9 0 0.87323277661568199 0.084485407066052204 2 6 2 6 0 0 139 8 421 3943885 55200 149.43948364257812 0.98609999999999998 190.60239999999999 20160 14347 0 0 983040 737280 737280 737485 748800 29 25 49 80 238 0 0 0 0 8 0 0 0 0 0 +75 1783756203165775700 REFRESH 56 0 0.93228390476359002 0 2 5 2 5 0 0 220 11 414 3943879 55200 149.0863037109375 0.98599999999999999 202.05869999999999 20160 12028 0 0 983040 737280 737280 737479 748800 56 26 50 85 197 0 0 0 0 11 0 0 0 0 0 +76 1783756203346814200 REFRESH 19 0 0.77941032542910071 0.50691244239631339 2 11 2 11 0 0 133 13 416 3943881 55200 149.84281921386719 0.98729999999999996 179.8802 20160 14922 0 0 983040 737280 737280 737480 748800 27 26 27 39 297 0 0 0 0 13 0 0 0 0 0 +77 1783756203581407700 REFRESH 29 0 0.79524815703739327 0.51382488479262667 1 12 1 12 0 0 128 7 414 3943890 116640 148.74931335449219 1.0028999999999999 208.64060000000001 20160 14938 0 0 983040 737280 737280 737490 748800 30 26 26 26 306 1 0 0 0 6 0 0 0 0 0 +78 1783756203780460800 REFRESH 25 0 0.78996332439902173 0.58448540706605223 3 11 3 11 1 0 115 7 420 3943940 116640 149.35142517089844 1.0089999999999999 183.3974 20160 15051 0 0 983040 737280 737280 737540 748800 27 25 26 25 317 0 1 0 1 5 0 0 0 0 1 +79 1783756203977421000 REFRESH 40 0 0.79539263598283616 0.51382488479262667 1 12 1 12 0 0 121 10 414 3943944 116640 148.93241882324219 1.0062 181.14920000000001 20160 15144 0 0 983040 737280 737280 737544 748800 27 27 26 25 309 0 1 1 1 7 0 0 0 0 0 +80 1783756204167830100 REFRESH 45 0 0.8236256082604515 0.16897081413210441 2 7 2 7 0 0 151 9 422 3943917 55200 149.78559875488281 0.98499999999999999 189.2593 20160 14338 0 0 983040 737280 737280 737517 748800 28 26 26 38 304 0 0 0 0 9 0 0 0 0 0 +81 1783756204358208800 REFRESH 13 0 0.95264454958480282 0.0069124423963133532 1 6 1 6 0 0 186 4 413 3943908 55200 149.23980712890625 0.98370000000000002 189.3211 20160 12231 0 0 983040 737280 737280 737508 748800 52 26 30 99 206 0 0 0 0 4 0 0 0 0 0 +82 1783756204571073800 REFRESH 44 0 0.82375553082235253 0.16897081413210441 2 7 2 7 0 0 160 4 420 3943912 55200 150.71743774414062 0.99839999999999995 211.71279999999999 20160 14442 0 0 983040 737280 737280 737512 748800 74 26 33 25 262 0 0 0 0 4 0 0 0 0 0 +83 1783756204758851400 REFRESH 53 0 0.87382030277004707 0.098310291858679053 0 8 0 8 0 0 152 5 413 3943877 55200 150.02214050292969 0.98709999999999998 186.5035 20160 14174 0 0 983040 737280 737280 737477 748800 29 26 28 29 301 0 0 0 1 4 0 0 0 0 0 +84 1783756204965967700 REFRESH 38 0 0.78708735954475073 0.42242703533026116 2 10 2 10 0 0 123 11 415 3943896 55200 149.68319702148438 0.98640000000000005 180.50620000000001 20160 14964 0 0 983040 737280 737280 737495 748800 29 26 38 37 285 0 0 0 1 10 0 0 0 0 0 +85 1783756205158802000 REFRESH 49 0 0.78001217284815871 0.5 3 10 3 10 0 0 132 9 414 3943890 55200 148.81791687011719 0.98699999999999999 180.86770000000001 20160 14903 0 0 983040 737280 737280 737490 748800 29 26 27 32 300 0 0 0 0 9 0 0 0 0 0 +86 1783756205350740500 REFRESH 39 0 0.79722256970263206 0.33102918586789559 3 8 3 8 0 0 175 16 412 3943927 55200 149.35757446289062 0.97740000000000005 178.1061 20160 14954 0 0 983040 737280 737280 737527 748800 29 26 27 28 302 0 0 0 0 16 0 0 0 0 0 +87 1783756205550259900 REFRESH 50 0 0.79728997916806399 0.33794162826420893 2 9 2 9 0 0 135 9 419 3943907 55200 149.51145935058594 0.97960000000000003 186.26140000000001 20160 14963 0 0 983040 737280 737280 737506 748800 27 26 27 26 313 0 0 0 0 9 0 0 0 0 0 +88 1783756205748511700 REFRESH 28 0 0.79603587474165705 0.51382488479262667 1 12 1 12 0 0 147 17 414 3943907 116640 149.45587158203125 1.0057 186.00550000000001 20160 14588 0 0 983040 737280 737280 737506 748800 27 29 26 26 306 2 1 0 0 14 0 0 0 0 0 +89 1783756205942579000 REFRESH 32 0 0.78324951465028514 0.76036866359446997 2 14 2 14 0 0 121 14 411 3943898 116640 148.40730285644531 1.0621 181.77099999999999 20160 15110 0 0 983040 737280 737280 737498 748800 26 25 27 26 307 2 2 0 0 10 0 0 0 0 0 +90 1783756206156141100 REFRESH 37 0 0.79617730450933377 0.51382488479262667 1 12 1 12 0 0 142 17 415 3943916 116640 149.35551452636719 1.0079 184.2398 20160 15194 0 0 983040 737280 737280 737515 748800 28 28 26 26 307 1 1 1 0 14 0 0 0 0 0 +91 1783756206356692000 REFRESH 54 0 0.82516437411264365 0.17588325652841791 1 8 1 8 0 0 115 6 418 3943889 55200 148.75648498535156 0.98499999999999999 199.22540000000001 20160 14390 0 0 983040 737280 737280 737489 748800 56 26 52 113 171 0 0 0 0 6 0 0 0 0 0 +92 1783756206559302400 REFRESH 46 0 0.78073377764887864 0.84485407066052232 2 15 2 15 0 0 116 12 414 3943909 116640 149.15583801269531 1.0042 187.35409999999999 20160 14975 0 0 983040 737280 737280 737509 748800 27 28 26 26 307 1 0 1 0 10 0 0 0 0 0 +93 1783756206748767600 REFRESH 30 0 0.82446979966755518 0.17588325652841791 1 8 1 8 0 0 141 9 418 3943925 55200 149.15481567382812 0.98839999999999995 188.33699999999999 20160 14273 0 0 983040 737280 737280 737525 748800 35 26 49 68 240 0 0 0 1 8 0 0 0 0 0 +94 1783756206943727300 REFRESH 15 0 0.78693473538570058 0.66897081413210457 3 12 3 12 0 0 100 11 420 3943927 116640 149.39529418945312 1.0088999999999999 182.78280000000001 20160 15058 0 0 983040 737280 737280 737527 748800 26 29 26 26 313 1 0 0 1 9 0 0 0 0 0 +95 1783756207140666200 REFRESH 18 0 0.77674830081130064 1 4 15 4 15 0 0 109 13 420 3943928 116640 149.36976623535156 1.0168999999999999 184.37350000000001 20160 15107 0 0 983040 737280 737280 737527 748800 26 25 25 26 318 1 0 0 0 12 0 0 0 0 0 +96 1783756207333623500 REFRESH 34 0 0.79124122063322677 0.59831029185867901 1 13 1 13 0 0 105 8 423 3943919 116640 147.89222717285156 1.0093000000000001 181.2329 20160 15330 0 0 983040 737280 737280 737519 748800 26 26 25 26 320 0 1 1 0 6 0 0 0 0 0 +97 1783756207516935600 REFRESH 35 0 0.78081415869625515 0.50691244239631339 2 11 2 11 0 0 167 10 414 3943920 55200 149.45484924316406 0.98299999999999998 181.70769999999999 20160 14958 0 0 983040 737280 737280 737520 748800 27 26 29 26 306 0 0 0 0 10 0 0 0 0 0 +98 1783756207721919300 REFRESH 41 0 0.79802302407689152 0.34485407066052232 1 10 1 10 0 0 113 5 412 3943947 55200 149.83987426757812 0.98670000000000002 191.5342 20160 14959 0 0 983040 737280 737280 737546 748800 31 26 36 40 279 0 0 0 0 5 0 0 0 0 0 +99 1783756207916288600 REFRESH 7 0 0.79680710034815394 0.51382488479262667 1 12 1 12 0 0 132 6 422 3943885 116640 149.1279296875 1.0056 182.68510000000001 20160 15014 0 0 983040 737280 737280 737485 748800 26 28 26 26 316 1 0 0 0 5 0 0 0 0 0 +100 1783756208109803500 REFRESH 12 0 0.79815466723825956 0.33102918586789559 3 8 3 8 0 0 187 7 412 3943929 55200 149.92486572265625 0.99570000000000003 181.7996 20160 14902 0 0 983040 737280 737280 737529 748800 30 26 30 28 298 0 0 0 0 7 0 0 0 0 0 +101 1783756208309997000 REFRESH 20 0 0.78107744592624551 0.50691244239631339 2 11 2 11 0 0 118 15 415 3943937 55200 149.18348693847656 0.99029999999999996 179.93510000000001 20160 14946 0 0 983040 737280 737280 737537 748800 32 26 31 37 289 0 0 0 0 15 0 0 0 0 0 +102 1783756208540235300 REFRESH 17 0 1.0038756877087072 0.013824884792626776 0 7 0 7 0 0 198 3 411 3943931 55200 148.63258361816406 1.0634999999999999 229.0224 20160 12154 0 0 983040 737280 737280 737531 748800 94 26 29 50 212 0 0 0 0 3 0 0 0 0 0 +103 1783756208738251300 REFRESH 43 0 0.78755977693564549 0.66897081413210457 3 12 3 12 0 0 136 8 414 3943925 116640 149.02886962890625 1.012 183.41650000000001 20160 15160 0 0 983040 737280 737280 737525 748800 27 29 26 27 305 0 0 0 0 8 0 0 0 0 0 +104 1783756208926977000 REFRESH 31 0 0.86384127367845287 0.084485407066052204 2 6 2 6 0 0 133 7 422 3943878 55200 148.50047302246094 0.9839 187.5522 20160 13077 0 0 983040 737280 737280 737478 748800 77 25 28 79 213 0 0 0 0 7 0 0 0 0 0 +105 1783756209126581400 REFRESH 27 0 0.79186391102743969 0.6052227342549924 0 14 0 14 0 0 151 9 415 3943914 116640 148.80886840820312 1.0085 184.31790000000001 20160 14988 0 0 983040 737280 737280 737514 748800 28 29 26 25 307 0 0 0 0 9 0 0 0 0 0 +106 1783756209334693000 REFRESH 57 0 0.79193245246803834 0.59139784946236551 2 12 2 12 0 0 124 9 411 3943889 116640 148.44210815429688 1.0066999999999999 182.28999999999999 20160 15133 0 0 983040 737280 737280 737489 748800 27 26 26 27 305 1 0 1 0 7 0 0 0 0 0 +107 1783756209534406500 REFRESH 5 0 0.78146872058297356 0.50691244239631339 2 11 2 11 0 0 94 10 412 3943904 55200 147.85740661621094 1.0205 179.92699999999999 20160 14957 0 0 983040 737280 737280 737504 748800 30 26 30 29 297 0 0 0 0 10 0 0 0 0 0 +108 1783756209730339000 REFRESH 36 0 0.78153347112779048 0.5 3 10 3 10 0 0 116 11 420 3943922 55200 149.77127075195312 0.98770000000000002 183.70410000000001 20160 14971 0 0 983040 737280 737280 737522 748800 28 25 39 28 300 0 0 0 0 11 0 0 0 0 0 +109 1783756209927343900 REFRESH 6 0 0.79213731323521597 0.58448540706605223 3 11 3 11 0 0 119 16 426 3943907 116640 148.78831481933594 1.0101 181.69409999999999 20160 15045 0 0 983040 737280 737280 737507 748800 25 25 26 25 325 1 0 0 0 15 0 0 0 0 0 +110 1783756210124794600 REFRESH 4 0 0.79220534716210378 0.59831029185867901 1 13 1 13 0 0 50 8 422 3943910 116640 148.20045471191406 1.0053000000000001 180.1215 20160 15321 0 0 983040 737280 737280 737509 748800 25 25 25 29 318 2 0 1 0 5 0 0 0 0 0 +111 1783756210355005400 REFRESH 42 0 0.86592938744156034 0.084485407066052204 2 6 2 6 0 0 147 7 419 3943906 55200 148.46566772460938 0.98350000000000004 214.06880000000001 20160 13169 0 0 983040 737280 737280 737506 748800 54 26 37 77 225 0 0 0 0 7 0 0 0 0 0 +112 1783756210554231400 REFRESH 14 0 0.78893737943921105 0.43625192012288788 0 12 0 12 0 0 120 2 412 3943905 55200 149.6944580078125 0.98009999999999997 183.976 20160 14864 0 0 983040 737280 737280 737504 748800 27 25 27 32 301 0 0 0 0 2 0 0 0 0 0 +113 1783756210753719800 REFRESH 51 0 0.78824202961720646 0.66897081413210457 3 12 3 12 0 0 93 12 410 3943921 116640 148.13388061523438 1.0458000000000001 182.8261 20160 15228 0 0 983040 737280 737280 737521 748800 25 26 26 25 308 1 1 0 1 9 0 0 0 0 0 +114 1783756210998819700 REFRESH 11 0 0.87576818619694474 0.098310291858679053 0 8 0 8 0 0 106 4 421 3943909 55200 148.40730285644531 0.98350000000000004 223.00479999999999 20160 14473 0 0 983040 737280 737280 737509 748800 53 26 86 71 185 0 0 1 1 2 0 0 0 0 0 +115 1783756211216359600 REFRESH 52 0 0.82582916055263789 0.17588325652841791 1 8 1 8 0 0 110 5 419 3943889 55200 148.51994323730469 0.98519999999999996 216.35159999999999 20160 14228 0 0 983040 737280 737280 737489 748800 32 25 47 32 283 0 0 0 0 5 0 0 0 0 0 +116 1783756211422548600 REFRESH 21 0 0.814190298953826 0.26728110599078347 0 10 0 10 1 0 180 11 413 3943946 55200 150.06822204589844 0.98750000000000004 189.31700000000001 20160 14892 0 0 983040 737280 737280 737546 748800 28 26 35 29 295 0 0 0 0 11 0 0 0 0 1 +117 1783756211622749100 REFRESH 23 0 0.7824508161443553 0.83794162826420893 3 14 3 14 1 0 110 11 413 3943906 116640 149.80805969238281 1.0057 184.85409999999999 20160 14755 0 0 983040 737280 737280 737506 748800 27 26 26 26 308 1 0 0 1 9 0 0 0 0 1 +118 1783756211822539600 REFRESH 16 0 0.87601141484313805 0.084485407066052204 2 6 2 6 0 0 187 3 414 3943907 55200 149.95046997070312 0.98650000000000004 184.52180000000001 20160 14182 0 0 983040 737280 737280 737507 748800 40 26 26 29 293 0 0 0 0 3 0 0 0 0 0 +119 1783756212021781500 REFRESH 58 0 0.79281204754622681 0.59139784946236551 2 12 2 12 0 0 125 15 419 3943922 116640 149.63507080078125 1.0091000000000001 183.4418 20160 14941 0 0 983040 737280 737280 737522 748800 27 26 26 26 314 0 0 0 0 15 0 0 0 0 0 +120 1783756212223664700 REFRESH 26 0 0.79287884399716324 0.59831029185867901 1 13 1 13 0 0 86 9 421 3943895 116640 148.06924438476562 1.0023 180.92429999999999 20160 15143 0 0 983040 737280 737280 737495 748800 25 26 25 25 320 0 2 0 0 7 0 0 0 0 0 +121 1783756212423597500 REFRESH 24 0 0.78877885242961121 0.66205837173579118 4 11 4 11 0 0 136 12 415 3943899 116640 149.20498657226562 1.0104 185.1713 20160 14650 0 0 983040 737280 737280 737499 748800 25 29 26 26 309 2 2 0 0 8 0 0 0 0 0 +122 1783756213724572900 DEPTH 56 1 0.99626235351166648 0 2 5 2 5 0 0 220 22 2547 23664863 81600 847.61468505859375 5.9127999999999998 1299.6388999999999 120960 59885 1 0 5898240 4423680 4423680 4426461 4492800 171 156 162 191 1867 0 0 0 1 21 0 0 0 0 0 +123 1783756214815676600 DEPTH 8 1 0.99231561894936782 0 2 5 2 5 0 0 230 26 2561 23664819 81600 859.62794494628906 5.9493999999999998 1089.9553000000001 120960 60912 1 0 5898240 4423680 4423680 4426417 4492800 162 156 156 158 1929 0 0 0 0 26 0 0 0 0 0 +124 1783756216061482800 DEPTH 13 1 0.99036878810975937 0.0069124423963133532 1 6 1 6 0 0 186 23 2491 23664859 81600 849.67347717285156 5.9306999999999999 1244.6377 120960 59854 1 0 5898240 4423680 4423680 4426457 4492800 172 151 158 170 1840 0 0 0 0 23 0 0 0 0 0 +125 1783756217395586600 DEPTH 17 1 0.96942301113058682 0.013824884792626776 0 7 0 7 0 0 198 18 2519 23664871 81600 849.51631164550781 5.9149000000000003 1314.2329 120960 60657 1 0 5898240 4423680 4423680 4426470 4492800 192 156 160 156 1855 0 0 0 0 18 0 0 0 0 0 +126 1783756218703884100 DEPTH 9 1 0.86311580786937758 0.084485407066052204 2 6 2 6 0 0 139 16 2587 23664916 81600 856.28825378417969 5.9079999999999995 1292.1858999999999 120960 69274 1 0 5898240 4423680 4423680 4426514 4492800 154 150 212 218 1853 0 0 0 0 16 0 0 0 0 0 +127 1783756220000776600 DEPTH 1 1 0.86217292732658612 0.091397849462365552 1 7 1 7 0 0 127 13 2556 23664795 81600 854.927734375 5.9962 1282.3155999999999 120960 69289 1 0 5898240 4423680 4423680 4426393 4492800 164 150 179 161 1902 0 0 0 0 13 0 0 0 0 0 +128 1783756221247070500 DEPTH 33 1 0.86022994423578969 0.091397849462365552 1 7 1 7 0 0 185 30 2536 23664849 81600 857.18319702148438 5.9541999999999993 1224.2775999999999 120960 69631 1 0 5898240 4423680 4423680 4426449 4492800 159 156 161 156 1904 0 0 0 0 30 0 0 0 0 0 +129 1783756222498619900 DEPTH 53 1 0.86028685895319201 0.098310291858679053 0 8 0 8 0 0 152 40 2510 23664826 81600 853.82342529296875 5.9823000000000004 1250.1890000000001 120960 68484 1 0 5898240 4423680 4423680 4426424 4492800 150 150 156 157 1897 0 0 0 0 40 0 0 0 0 0 +130 1783756223774700700 DEPTH 31 1 0.85244880565613357 0.084485407066052204 2 6 2 6 0 0 134 23 2560 23664788 81600 850.80856323242188 5.9464000000000006 1247.9899 120960 65357 1 0 5898240 4423680 4423680 4426388 4492800 205 150 150 220 1835 0 1 0 0 22 0 0 0 0 0 +131 1783756225103591100 DEPTH 56 1 0.82888368058504425 0 2 5 2 5 0 0 220 22 2557 23664782 81600 839.53868103027344 5.928799999999999 1299.9260999999999 120960 49283 1 0 5898240 4423680 4423680 4426381 4492800 171 156 162 197 1871 0 0 0 0 22 0 0 0 0 0 +132 1783756226374753200 DEPTH 30 1 0.81446474069951291 0.17588325652841791 1 8 1 8 0 0 141 31 2520 23664881 81600 851.51622009277344 5.9893000000000001 1251.2940000000001 120960 68963 1 0 5898240 4423680 4423680 4426479 4492800 173 156 177 187 1827 0 0 0 0 31 0 0 0 0 0 +133 1783756227642538800 DEPTH 45 1 0.81451350296504255 0.16897081413210441 2 7 2 7 0 0 153 24 2606 23664730 81600 858.18962097167969 6.0576999999999996 1238.2162000000001 120960 69489 1 0 5898240 4423680 4423680 4426328 4492800 150 150 150 172 1984 0 1 0 0 23 0 0 0 0 0 +134 1783756228955204600 DEPTH 54 1 0.81231725199042892 0.17588325652841791 1 8 1 8 1 0 115 30 2545 23664788 81600 848.84033203125 5.9436999999999998 1299.3821 120960 68604 1 0 5898240 4423680 4423680 4426386 4492800 156 156 185 247 1801 0 0 0 0 30 0 0 0 0 2 +135 1783756230272542100 DEPTH 44 1 0.80962622094805803 0.16897081413210441 2 7 2 7 0 0 161 20 2590 23664940 81600 854.71607971191406 5.9852999999999996 1293.1393 120960 68799 1 0 5898240 4423680 4423680 4426537 4492800 167 150 156 150 1967 0 0 0 0 20 0 0 0 0 0 +136 1783756231372338900 DEPTH 8 1 0.86553595101590053 0 2 5 2 5 0 0 230 33 2555 23664766 81600 852.71516418457031 5.9207000000000001 1086.4097999999999 120960 49932 1 0 5898240 4423680 4423680 4426363 4492800 168 156 158 167 1906 0 0 0 0 33 0 0 0 0 0 +137 1783756232712523900 DEPTH 42 1 0.8543349101683424 0.084485407066052204 2 6 2 6 0 0 147 23 2584 23664920 81600 852.65975952148438 6.3927999999999994 1323.4978000000001 120960 66161 1 0 5898240 4423680 4423680 4426518 4492800 171 150 157 208 1898 0 0 0 0 23 0 0 0 0 0 +138 1783756234026914300 DEPTH 13 1 0.87383623465009208 0.0069124423963133532 1 6 1 6 0 0 186 25 2499 23664913 81600 843.522216796875 6.0062999999999995 1283.8380999999999 120960 49385 1 0 5898240 4423680 4423680 4426513 4492800 166 150 157 162 1864 2 0 0 0 23 0 0 0 0 0 +139 1783756235337347000 DEPTH 17 1 0.87298727867869064 0.013824884792626776 0 7 0 7 0 0 198 16 2517 23664788 81600 842.35153198242188 5.9591000000000012 1309.2659000000001 120960 49508 1 0 5898240 4423680 4423680 4426386 4492800 234 156 162 162 1803 0 0 0 0 16 0 0 0 0 0 +140 1783756236708022000 DEPTH 11 1 0.85990627625193139 0.098310291858679053 0 8 0 8 0 0 107 14 2572 23664839 81600 846.16258239746094 5.9675000000000002 1351.9945 120960 69204 1 0 5898240 4423680 4423680 4426437 4492800 201 153 272 271 1675 0 0 0 0 14 0 0 0 0 0 +141 1783756237831112800 DEPTH 16 1 0.83896199179743769 0.084485407066052204 2 6 2 6 0 0 187 27 2529 23664873 81600 858.59053039550781 5.9081000000000001 1121.5872999999999 120960 69209 1 0 5898240 4423680 4423680 4426473 4492800 162 150 150 161 1906 0 0 0 0 27 0 0 0 0 0 +142 1783756239120800000 DEPTH 56 1 0.84228411009892645 0 2 5 2 5 0 0 220 24 2545 23664829 81600 835.18965148925781 5.9599999999999991 1287.6978999999999 120960 39061 1 0 5898240 4423680 4423680 4426429 4492800 171 156 162 236 1820 0 0 0 0 24 0 0 0 0 0 +143 1783756240404692900 DEPTH 52 1 0.81107313005012682 0.17588325652841791 1 8 1 8 0 0 110 23 2559 23664814 81600 846.53913879394531 5.9382999999999999 1282.4829 120960 68803 1 0 5898240 4423680 4423680 4426412 4492800 164 150 171 158 1916 0 0 3 0 20 0 0 0 0 0 +144 1783756241688554800 DEPTH 2 1 0.79112855341897947 0.25345622119815675 2 8 2 8 0 0 143 23 2549 23664753 81600 853.00428771972656 5.8999000000000006 1259.4086 120960 69308 1 0 5898240 4423680 4423680 4426349 4492800 189 154 150 236 1820 0 0 0 1 22 0 0 0 0 0 +145 1783756242775224200 DEPTH 39 1 0.78760815564694009 0.33102918586789559 3 8 3 8 0 0 175 40 2537 23664824 81600 853.63609313964844 6.0366999999999997 1038.8030000000001 120960 69866 1 0 5898240 4423680 4423680 4426424 4492800 156 150 153 154 1924 0 0 0 0 40 0 0 0 0 0 +146 1783756243859611400 DEPTH 8 1 0.82923593530076178 0 2 5 2 5 0 0 230 19 2569 23664888 81600 851.17312622070312 5.9236000000000004 1083.2865999999999 120960 40836 1 0 5898240 4423680 4423680 4426482 4492800 165 156 157 170 1921 0 0 0 0 19 0 0 0 0 0 +147 1783756245126609900 DEPTH 13 1 0.81766368287301738 0.0069124423963133532 1 6 1 6 0 0 186 20 2494 23664838 81600 837.15867614746094 5.9371999999999998 1265.8649 120960 38972 1 0 5898240 4423680 4423680 4426438 4492800 173 150 158 176 1837 0 0 0 0 20 0 0 0 0 0 +148 1783756246402429900 DEPTH 9 1 0.82460706030918229 0.084485407066052204 2 6 2 6 0 0 139 12 2592 23664889 81600 848.66169738769531 5.9012000000000002 1274.6759 120960 57567 1 0 5898240 4423680 4423680 4426488 4492800 151 150 198 238 1855 0 0 0 0 12 0 0 0 0 0 +149 1783756247708572200 DEPTH 21 1 0.80284194392181263 0.26728110599078347 0 10 0 10 0 0 180 39 2546 23664832 81600 855.82725524902344 5.9391000000000007 1263.3972000000001 120960 69686 1 0 5898240 4423680 4423680 4426431 4492800 166 151 168 160 1901 0 0 0 0 39 0 0 0 0 0 +150 1783756249040306100 DEPTH 17 1 0.8369973604685057 0.013824884792626776 0 7 0 7 0 0 198 20 2521 23664879 81600 837.38699340820312 6.0632000000000001 1303.1814999999999 120960 39021 1 0 5898240 4423680 4423680 4426478 4492800 258 156 168 161 1778 1 0 0 0 19 0 0 0 0 0 +151 1783756250336322900 DEPTH 1 1 0.84386514890723452 0.091397849462365552 1 7 1 7 0 0 129 26 2564 23664828 81600 845.59822082519531 5.9533999999999994 1270.2688000000001 120960 57646 1 0 5898240 4423680 4423680 4426428 4492800 172 150 193 168 1881 0 0 0 0 26 0 0 0 0 0 +152 1783756251675985500 DEPTH 48 1 0.78800986262974038 0.33794162826420893 2 9 2 9 0 0 167 36 2563 23664855 81600 851.35968017578125 5.9218999999999999 1295.6641 120960 69230 1 0 5898240 4423680 4423680 4426450 4492800 157 150 160 237 1859 0 0 0 0 36 0 0 0 0 0 +153 1783756252892440300 DEPTH 3 1 0.78706685357636386 0.33794162826420893 2 9 2 9 1 0 148 53 2540 23664803 81600 851.19186401367188 5.9110999999999994 1194.9807000000001 120960 69485 1 0 5898240 4423680 4423680 4426401 4492800 173 156 150 162 1899 0 0 0 0 53 0 0 0 0 1 +154 1783756253090705900 REFRESH 27 0 0.77803304711388721 0.6052227342549924 0 14 0 14 0 0 152 9 412 3943919 55200 149.8101806640625 0.98860000000000003 182.1474 20160 14740 0 0 983040 737280 737280 737519 748800 27 26 26 25 308 0 0 1 0 8 0 0 0 0 0 +155 1783756253291883600 REFRESH 9 0 0.66635104688507063 0.084485407066052204 2 6 2 6 0 0 139 1 421 3943923 55200 149.51014709472656 0.98799999999999999 200.0128 20160 12141 0 0 983040 737280 737280 737523 748800 29 25 50 92 225 0 0 0 0 1 0 0 0 0 0 +156 1783756253487109000 REFRESH 34 0 0.77715207903757233 0.59831029185867901 1 13 1 13 0 0 105 7 420 3943916 55200 148.70704650878906 0.98650000000000004 177.87010000000001 20160 14657 0 0 983040 737280 737280 737516 748800 27 26 26 30 311 1 0 0 0 6 0 0 0 0 0 +157 1783756253679341500 REFRESH 6 0 0.77921144214963456 0.58448540706605223 3 11 3 11 0 0 119 14 419 3943930 55200 149.18246459960938 0.98580000000000001 177.4478 20160 14718 0 0 983040 737280 737280 737530 748800 29 25 26 26 313 1 0 0 1 12 0 0 0 0 0 +158 1783756253907313800 REFRESH 31 0 0.84542867474876149 0.084485407066052204 2 6 2 6 0 0 134 7 422 3943931 55200 149.00735473632812 0.98499999999999999 190.65770000000001 20160 12102 0 0 983040 737280 737280 737531 748800 92 25 27 63 215 0 0 0 0 7 0 0 0 0 0 +159 1783756254093472400 REFRESH 16 0 0.78068274647865699 0.084485407066052204 2 6 2 6 0 0 187 4 414 3943877 55200 149.69139099121094 0.98719999999999997 184.98429999999999 20160 12888 0 0 983040 737280 737280 737477 748800 73 26 26 34 255 0 0 0 0 4 0 0 0 0 0 +160 1783756254299886900 REFRESH 50 0 0.78746306132780519 0.33794162826420893 2 9 2 9 0 0 135 3 418 3943901 55200 149.16915893554688 0.99460000000000004 187.9615 20160 14708 0 0 983040 737280 737280 737501 748800 27 26 26 26 313 0 0 0 0 3 0 0 0 0 0 +161 1783756254490189700 REFRESH 2 0 0.70208625606587505 0.25345622119815675 2 8 2 8 0 0 144 8 419 3943897 55200 148.96333312988281 1.016 189.23679999999999 20160 12964 0 0 983040 737280 737280 737497 748800 76 26 29 78 210 0 0 0 1 7 0 0 0 0 0 +162 1783756254679668200 REFRESH 45 0 0.80623787900130894 0.16897081413210441 2 7 2 7 0 0 153 5 420 3943930 55200 149.75590515136719 0.98870000000000002 188.25659999999999 20160 13060 0 0 983040 737280 737280 737530 748800 28 26 26 51 289 0 0 0 0 5 0 0 0 0 0 +163 1783756254881762500 REFRESH 28 0 0.78492264492117192 0.51382488479262667 1 12 1 12 0 0 147 10 412 3943895 55200 150.57305908203125 0.98719999999999997 181.54419999999999 20160 14745 0 0 983040 737280 737280 737495 748800 28 26 26 26 306 0 0 0 0 10 0 0 0 0 0 +164 1783756255077263900 REFRESH 58 0 0.77962416201700357 0.59139784946236551 2 12 2 12 0 0 125 10 418 3943896 55200 150.59866333007812 0.98699999999999999 180.23509999999999 20160 14719 0 0 983040 737280 737280 737496 748800 27 26 26 26 313 0 0 0 0 10 0 0 0 0 0 +165 1783756255291871400 REFRESH 26 0 0.77868272283483209 0.59831029185867901 1 13 1 13 0 0 88 9 422 3943895 55200 149.749755859375 0.99399999999999999 181.44550000000001 20160 14751 0 0 983040 737280 737280 737494 748800 25 26 25 25 321 1 0 0 0 8 0 0 0 0 0 +166 1783756255484369500 REFRESH 4 0 0.77774118484176691 0.59831029185867901 1 13 1 13 0 0 51 7 425 3943918 55200 148.66021728515625 0.99009999999999998 177.85769999999999 20160 14694 0 0 983040 737280 737280 737518 748800 25 25 25 32 318 2 0 1 0 4 0 0 0 0 0 +167 1783756255688637900 REFRESH 54 0 0.80448021405602899 0.17588325652841791 1 8 1 8 0 0 115 4 420 3943915 55200 148.43699645996094 0.98799999999999999 203.09979999999999 20160 13047 0 0 983040 737280 737280 737515 748800 72 26 73 116 133 0 0 0 0 4 0 0 0 0 0 +168 1783756255884261900 REFRESH 51 0 0.77569114704546149 0.66897081413210457 3 12 3 12 0 0 93 8 414 3943897 55200 149.41778564453125 0.98770000000000002 178.25800000000001 20160 14782 0 0 983040 737280 737280 737497 748800 26 26 28 26 308 0 0 0 1 7 0 0 0 0 0 +169 1783756256080408300 REFRESH 36 0 0.7718227334010429 0.5 3 10 3 10 1 0 116 11 417 3943926 55200 150.25868225097656 0.98150000000000004 180.63069999999999 20160 14750 0 0 983040 737280 737280 737526 748800 28 25 41 26 297 0 0 0 0 11 0 0 0 0 1 +170 1783756256284636600 REFRESH 14 0 0.77102376455534238 0.43625192012288788 0 12 0 12 0 0 120 6 416 3943908 55200 149.64837646484375 1.4479 188.61109999999999 20160 14687 0 0 983040 737280 737280 737507 748800 27 26 30 36 297 0 0 0 0 6 0 0 0 0 0 +171 1783756256493130200 REFRESH 53 0 0.85309858118004678 0.098310291858679053 0 8 0 8 0 0 153 8 413 3943927 55200 149.22854614257812 1.0435000000000001 187.08709999999999 20160 12962 0 0 983040 737280 737280 737527 748800 46 26 27 29 285 1 0 0 0 7 0 0 0 0 0 +172 1783756256689482800 REFRESH 40 0 0.78544704267338206 0.51382488479262667 1 12 1 12 0 0 121 12 419 3943924 55200 150.044677734375 0.99160000000000004 180.3809 20160 14632 0 0 983040 737280 737280 737524 748800 28 26 26 25 314 0 0 0 0 12 0 0 0 0 0 +173 1783756256894819600 REFRESH 38 0 0.77918650580367332 0.42242703533026116 2 10 2 10 0 0 124 13 414 3943910 55200 148.99098205566406 0.98670000000000002 178.4674 20160 14746 0 0 983040 737280 737280 737510 748800 29 26 47 39 273 0 0 1 1 11 0 0 0 0 0 +174 1783756257093721100 REFRESH 15 0 0.77603869543534321 0.66897081413210457 3 12 3 12 0 0 100 4 417 3943915 55200 150.46041870117188 0.98219999999999996 179.79140000000001 20160 14768 0 0 983040 737280 737280 737515 748800 27 26 26 26 312 0 0 0 0 4 0 0 0 0 0 +175 1783756257294005500 REFRESH 20 0 0.77215355434225796 0.50691244239631339 2 11 2 11 0 0 120 8 415 3943908 55200 148.92134094238281 1.0373000000000001 179.358 20160 14647 0 0 983040 737280 737280 737508 748800 30 26 32 37 290 0 0 1 0 7 0 0 0 0 0 +176 1783756257492833800 REFRESH 25 0 0.77733381245727395 0.58448540706605223 3 11 3 11 0 0 118 10 418 3943928 55200 150.32012939453125 0.9889 182.00389999999999 20160 14781 0 0 983040 737280 737280 737528 748800 27 25 27 27 312 1 1 0 1 7 0 0 0 0 0 +177 1783756257704680600 REFRESH 47 0 0.78573497944112658 0.50691244239631339 2 11 2 11 0 0 113 14 416 3943919 55200 148.71040344238281 0.98770000000000002 177.82769999999999 20160 14710 0 0 983040 737280 737280 737519 748800 27 26 26 27 310 1 0 1 0 12 0 0 0 0 0 +178 1783756257916845900 REFRESH 41 0 0.78446058672466834 0.34485407066052232 1 10 1 10 0 0 113 7 414 3943914 55200 148.674560546875 0.98899999999999999 193.62979999999999 20160 14744 0 0 983040 737280 737280 737514 748800 26 26 31 32 299 0 0 0 0 7 0 0 0 0 0 +179 1783756258146256100 REFRESH 17 0 0.97228933482850333 0.013824884792626776 0 7 0 7 0 0 198 5 412 3943922 55200 149.46713256835938 0.9879 228.30090000000001 20160 12390 0 0 983040 737280 737280 737522 748800 132 26 33 65 156 0 0 0 0 5 0 0 0 0 0 +180 1783756258350896200 REFRESH 48 0 0.77806180546425208 0.33794162826420893 2 9 2 9 0 0 167 7 424 3943923 55200 148.65203857421875 0.99099999999999999 203.46809999999999 20160 14146 0 0 983040 737280 737280 737523 748800 29 26 45 88 236 0 0 0 0 7 0 0 0 0 0 +181 1783756258543822900 REFRESH 5 0 0.77248112065386654 0.50691244239631339 2 11 2 11 0 0 95 7 411 3943893 55200 148.94387817382812 0.98480000000000001 178.1618 20160 14803 0 0 983040 737280 737280 737493 748800 33 27 35 34 282 0 0 0 0 7 0 0 0 0 0 +182 1783756258759862600 REFRESH 56 0 0.9775226886156132 0 2 5 2 5 0 0 220 8 413 3943909 55200 149.68421936035156 0.98519999999999996 214.78919999999999 20160 12128 0 0 983040 737280 737280 737509 748800 77 26 51 77 182 0 0 0 0 8 0 0 0 0 0 +183 1783756258959337400 REFRESH 55 0 0.78607737051510451 0.51382488479262667 1 12 1 12 0 0 148 11 416 3943918 55200 150.69056701660156 0.98460000000000003 181.90000000000001 20160 14613 0 0 983040 737280 737280 737518 748800 27 26 26 26 311 0 0 0 0 11 0 0 0 0 0 +184 1783756259173954200 REFRESH 0 0 0.77913410761487467 0.51382488479262667 1 12 1 12 0 0 91 6 422 3943915 55200 149.4835205078125 0.98509999999999998 178.40729999999999 20160 14681 0 0 983040 737280 737280 737514 748800 26 25 26 25 320 0 0 0 0 6 0 0 0 0 0 +185 1783756259373044700 REFRESH 12 0 0.78684051424613988 0.33102918586789559 3 8 3 8 0 0 187 11 412 3943917 55200 148.77906799316406 0.98299999999999998 178.1688 20160 14702 0 0 983040 737280 737280 737516 748800 33 26 31 29 293 0 0 0 0 11 0 0 0 0 0 +186 1783756259559707200 REFRESH 8 0 0.97478060803608524 0 2 5 2 5 0 0 230 6 414 3943927 55200 151.50079345703125 0.98599999999999999 185.39660000000001 20160 11942 0 0 983040 737280 737280 737527 748800 94 26 29 44 221 0 0 0 0 6 0 0 0 0 0 +187 1783756259757730500 REFRESH 37 0 0.78630376251720102 0.51382488479262667 1 12 1 12 0 0 142 7 415 3943900 55200 150.34690856933594 0.98540000000000005 182.239 20160 14782 0 0 983040 737280 737280 737499 748800 28 26 26 29 306 0 0 0 0 7 0 0 0 0 0 +188 1783756259954266100 REFRESH 23 0 0.77078547665699382 0.83794162826420893 3 14 3 14 0 0 110 8 416 3943908 55200 150.19520568847656 0.98609999999999998 180.90129999999999 20160 14783 0 0 983040 737280 737280 737507 748800 27 26 26 26 311 0 0 0 1 7 0 0 0 0 0 +189 1783756260149418100 REFRESH 29 0 0.78341640500991383 0.51382488479262667 1 12 1 12 0 0 128 11 414 3943915 55200 149.11795043945312 0.98709999999999998 179.85050000000001 20160 14624 0 0 983040 737280 737280 737515 748800 32 26 26 25 305 0 0 0 0 11 0 0 0 0 0 +190 1783756260399896300 REFRESH 11 0 0.85314880520851644 0.098310291858679053 0 8 0 8 0 0 107 7 417 3943893 55200 148.93466186523438 0.98629999999999995 224.7218 20160 12966 0 0 983040 737280 737280 737493 748800 62 26 98 84 147 0 0 0 1 6 0 0 0 0 0 +191 1783756260617293600 REFRESH 52 0 0.80409800175707669 0.17588325652841791 1 8 1 8 0 0 110 7 420 3943898 55200 148.12905883789062 0.97940000000000005 216.11699999999999 20160 12895 0 0 983040 737280 737280 737498 748800 35 25 56 36 268 0 0 0 0 7 0 0 0 0 0 +192 1783756260823630700 REFRESH 43 0 0.77506087385962041 0.66897081413210457 3 12 3 12 0 0 136 11 415 3943921 55200 150.00575256347656 0.98809999999999998 180.87020000000001 20160 14779 0 0 983040 737280 737280 737521 748800 27 26 26 30 306 0 0 0 1 10 0 0 0 0 0 +193 1783756261014774700 REFRESH 21 0 0.79373512928352918 0.26728110599078347 0 10 0 10 0 0 180 6 415 3943917 55200 150.00166320800781 0.98809999999999998 189.9581 20160 14246 0 0 983040 737280 737280 737516 748800 30 26 41 34 284 0 0 0 0 6 0 0 0 0 0 +194 1783756261212384100 REFRESH 32 0 0.77383927254095697 0.76036866359446997 2 14 2 14 0 0 122 16 416 3943909 55200 148.98892211914062 0.99070000000000003 178.971 20160 14737 0 0 983040 737280 737280 737509 748800 27 25 27 26 311 0 0 0 0 16 0 0 0 0 0 +195 1783756261426033200 REFRESH 33 0 0.85429399317279608 0.091397849462365552 1 7 1 7 0 0 185 6 415 3943912 55200 150.06515502929688 0.98129999999999995 186.55709999999999 20160 13076 0 0 983040 737280 737280 737511 748800 54 26 36 37 262 0 0 0 0 6 0 0 0 0 0 +196 1783756261607930700 REFRESH 39 0 0.77888447438071751 0.33102918586789559 3 8 3 8 0 0 176 9 407 3943921 55200 149.2725830078125 0.9869 180.709 20160 14243 0 0 983040 737280 737280 737521 748800 32 26 32 29 288 0 0 0 0 9 0 0 0 0 0 +197 1783756261804600800 REFRESH 22 0 0.77950619587548708 0.58448540706605223 3 11 3 11 0 0 126 8 418 3943919 55200 150.23309326171875 0.98699999999999999 181.33799999999999 20160 14718 0 0 983040 737280 737280 737519 748800 27 26 27 25 313 0 0 0 0 8 0 0 0 0 0 +198 1783756261997545800 REFRESH 13 0 0.97383762327618517 0.0069124423963133532 1 6 1 6 0 0 186 1 415 3943919 55200 149.79788208007812 0.98819999999999997 191.8031 20160 12457 0 0 983040 737280 737280 737519 748800 105 26 39 105 140 0 0 0 0 1 0 0 0 0 0 +199 1783756262205743600 REFRESH 24 0 0.77745036490610642 0.66205837173579118 4 11 4 11 0 0 137 10 415 3943911 55200 150.35392761230469 0.98899999999999999 184.20609999999999 20160 14643 0 0 983040 737280 737280 737511 748800 25 26 26 27 311 0 0 0 0 10 0 0 0 0 0 +200 1783756262399460000 REFRESH 18 0 0.76724923937269207 1 4 15 4 15 1 0 109 19 419 3943887 55200 148.81280517578125 0.98760000000000003 178.5652 20160 14757 0 0 983040 737280 737280 737487 748800 27 25 25 26 316 0 0 0 0 19 0 0 0 0 1 +201 1783756262643799000 REFRESH 46 0 0.77150023990789651 0.84485407066052232 2 15 2 15 0 0 116 7 414 3943914 55200 149.76409912109375 0.98699999999999999 180.0549 20160 14683 0 0 983040 737280 737280 737514 748800 26 26 26 27 309 0 0 0 0 7 0 0 0 0 0 +202 1783756262848848600 REFRESH 35 0 0.77360250447327217 0.50691244239631339 2 11 2 11 0 0 167 12 414 3943912 55200 150.15731811523438 0.98660000000000003 181.60480000000001 20160 14759 0 0 983040 737280 737280 737512 748800 27 26 29 27 305 0 0 0 0 12 0 0 0 0 0 +203 1783756263076120700 REFRESH 42 0 0.84895418761279251 0.084485407066052204 2 6 2 6 0 0 147 7 418 3943902 55200 148.7431640625 0.98709999999999998 226.0461 20160 12180 0 0 983040 737280 737280 737502 748800 71 26 36 72 213 0 0 0 0 7 0 0 0 0 0 +204 1783756263264163200 REFRESH 3 0 0.77839082318915664 0.33794162826420893 2 9 2 9 0 0 148 11 421 3943908 55200 149.28793334960938 0.9919 185.40559999999999 20160 14153 0 0 983040 737280 737280 737508 748800 67 26 32 64 232 0 0 0 0 11 0 0 0 0 0 +205 1783756263461352200 REFRESH 7 0 0.78330456246617974 0.51382488479262667 1 12 1 12 0 0 132 10 419 3943877 55200 149.76101684570312 0.98980000000000001 181.03819999999999 20160 14771 0 0 983040 737280 737280 737475 748800 26 26 26 26 315 1 0 0 0 9 0 0 0 0 0 +206 1783756263678321400 REFRESH 44 0 0.80392652068199288 0.16897081413210441 2 7 2 7 0 0 161 5 422 3943921 55200 149.87059020996094 1.0626 215.77500000000001 20160 13011 0 0 983040 737280 737280 737521 748800 103 26 33 25 235 0 0 0 0 5 0 0 0 0 0 +207 1783756263870646100 REFRESH 10 0 0.7900068286922779 0.34485407066052232 1 10 1 10 0 0 119 5 419 3943920 55200 149.07289123535156 0.98860000000000003 180.30799999999999 20160 14695 0 0 983040 737280 737280 737520 748800 26 26 29 27 311 0 0 0 0 5 0 0 0 0 0 +208 1783756264086197700 REFRESH 57 0 0.78111143509143743 0.59139784946236551 2 12 2 12 0 0 125 12 413 3943921 55200 150.40121459960938 0.98140000000000005 180.02359999999999 20160 14735 0 0 983040 737280 737280 737519 748800 27 26 26 27 307 0 0 0 0 12 0 0 0 0 0 +209 1783756264275996700 REFRESH 30 0 0.80857711668141397 0.17588325652841791 1 8 1 8 0 0 141 7 413 3943918 55200 148.80256652832031 0.98509999999999998 188.64750000000001 20160 12959 0 0 983040 737280 737280 737517 748800 48 26 57 82 200 0 0 0 0 7 0 0 0 0 0 +210 1783756264474220300 REFRESH 1 0 0.84818446375021084 0.091397849462365552 1 7 1 7 0 0 129 5 419 3943910 55200 150.0579833984375 0.9869 196.9348 20160 12165 0 0 983040 737280 737280 737510 748800 61 26 64 43 225 0 0 0 0 5 0 0 0 0 0 +211 1783756264674998900 REFRESH 49 0 0.77307165920446885 0.5 3 10 3 10 0 0 132 7 410 3943917 55200 149.5572509765625 0.98670000000000002 180.08000000000001 20160 14800 0 0 983040 737280 737280 737517 748800 29 26 27 36 292 0 0 0 0 7 0 0 0 0 0 +212 1783756264869177100 REFRESH 19 0 0.77413413413944487 0.50691244239631339 2 11 2 11 0 0 133 10 418 3943902 55200 149.11692810058594 0.98699999999999999 179.0059 20160 14776 0 0 983040 737280 737280 737502 748800 27 26 27 50 288 0 0 0 0 10 0 0 0 0 0 +213 1783756266183777200 DEPTH 56 1 0.97066845531164803 0 2 5 2 5 0 0 220 24 2561 23664902 81600 852.53120422363281 5.9277999999999995 1313.3613 120960 57011 1 0 5898240 4423680 4423680 4426499 4492800 171 156 167 231 1836 0 0 0 0 24 0 0 0 0 0 +214 1783756267312555500 DEPTH 8 1 0.9660843580495031 0 2 5 2 5 0 0 230 21 2562 23664868 81600 862.6119384765625 5.9838000000000005 1116.5279 120960 56670 1 0 5898240 4423680 4423680 4426466 4492800 163 156 158 161 1924 0 0 0 0 21 0 0 0 0 0 +215 1783756268631224500 DEPTH 17 1 0.96315705206608948 0.013824884792626776 0 7 0 7 0 0 198 16 2529 23664827 81600 852.16938781738281 5.9113999999999995 1317.5329999999999 120960 58531 1 0 5898240 4423680 4423680 4426426 4492800 297 156 168 162 1746 0 0 0 0 16 0 0 0 0 0 +216 1783756269900548500 DEPTH 13 1 0.8898525743992789 0.0069124423963133532 1 6 1 6 0 0 186 22 2492 23664896 81600 852.38044738769531 5.9356999999999998 1267.7035000000001 120960 58311 1 0 5898240 4423680 4423680 4426496 4492800 171 150 157 174 1840 0 0 0 0 22 0 0 0 0 0 +217 1783756271127544900 DEPTH 53 1 0.84488435986553589 0.098310291858679053 0 8 0 8 0 0 153 26 2515 23664912 81600 854.10308837890625 5.8998000000000008 1225.6228000000001 120960 64584 1 0 5898240 4423680 4423680 4426509 4492800 151 150 156 156 1902 2 0 0 0 24 0 0 0 0 0 +218 1783756272269449900 DEPTH 16 1 0.83930977395167217 0.084485407066052204 2 6 2 6 0 0 187 28 2539 23664901 81600 857.41355895996094 5.9026000000000005 1127.1545000000001 120960 65127 1 0 5898240 4423680 4423680 4426501 4492800 162 150 150 156 1921 0 0 0 0 28 0 0 0 0 0 +219 1783756273562083200 DEPTH 31 1 0.83760153837669937 0.084485407066052204 2 6 2 6 0 0 134 17 2559 23664901 81600 849.71089172363281 5.923 1257.4526000000001 120960 59942 1 0 5898240 4423680 4423680 4426499 4492800 228 150 153 219 1809 0 0 0 0 17 0 0 0 0 0 +220 1783756274866014800 DEPTH 9 1 0.8326108730089079 0.084485407066052204 2 6 2 6 0 0 139 17 2594 23664840 81600 856.52505493164062 5.9337999999999997 1302.7399 120960 59760 1 0 5898240 4423680 4423680 4426439 4492800 159 150 215 235 1835 1 0 0 0 16 0 0 0 0 0 +221 1783756276191991700 DEPTH 11 1 0.84325559290164853 0.098310291858679053 0 8 0 8 0 0 107 7 2543 23664824 81600 845.84477233886719 6.0488 1324.7916 120960 64688 1 0 5898240 4423680 4423680 4426424 4492800 228 151 266 297 1601 0 0 0 0 7 0 0 0 0 0 +222 1783756277392722300 DEPTH 33 1 0.84311072548923283 0.091397849462365552 1 7 1 7 0 0 185 20 2538 23664826 81600 858.75224304199219 5.9128000000000007 1199.5499 120960 65591 1 0 5898240 4423680 4423680 4426426 4492800 161 156 162 159 1900 0 0 0 0 20 0 0 0 0 0 +223 1783756278728042200 DEPTH 56 1 0.81549284581634607 0 2 5 2 5 0 0 220 19 2550 23664808 81600 840.72271728515625 5.9748999999999999 1301.4974 120960 46010 1 0 5898240 4423680 4423680 4426407 4492800 175 156 168 269 1782 0 0 0 1 18 0 0 0 0 0 +224 1783756280003751900 DEPTH 45 1 0.7954407813336164 0.16897081413210441 2 7 2 7 0 0 159 31 2611 23664872 81600 859.53492736816406 5.9419000000000004 1250.8629000000001 120960 65521 1 0 5898240 4423680 4423680 4426471 4492800 150 150 150 196 1965 0 0 0 0 31 0 0 0 0 0 +225 1783756281340068700 DEPTH 52 1 0.79424570500808866 0.17588325652841791 1 8 1 8 0 0 110 28 2568 23664915 81600 846.28446960449219 5.9706999999999999 1308.3942 120960 64452 1 0 5898240 4423680 4423680 4426514 4492800 166 150 173 171 1908 0 0 1 0 27 0 0 0 0 0 +226 1783756282673145200 DEPTH 54 1 0.79271753417345936 0.17588325652841791 1 8 1 8 0 0 116 23 2544 23664848 81600 850.70941162109375 5.9771000000000001 1302.2573 120960 64602 1 0 5898240 4423680 4423680 4426446 4492800 160 156 214 298 1716 0 0 0 0 23 0 0 0 0 0 +227 1783756283764396900 DEPTH 8 1 0.84148501637651207 0 2 5 2 5 0 0 230 22 2569 23664866 81600 854.41389465332031 5.9138000000000002 1074.9087 120960 46195 1 0 5898240 4423680 4423680 4426463 4492800 162 156 159 164 1928 0 0 0 0 22 0 0 0 0 0 +228 1783756285074180600 DEPTH 21 1 0.78136720559399375 0.26728110599078347 0 10 0 10 1 0 180 39 2548 23664901 81600 854.61799621582031 6.0456000000000003 1263.8196 120960 69244 1 0 5898240 4423680 4423680 4426500 4492800 168 151 180 160 1889 0 0 0 0 39 0 0 0 0 1 +229 1783756286401069600 DEPTH 17 1 0.84889093549986538 0.013824884792626776 0 7 0 7 0 0 198 20 2513 23664874 81600 841.99295043945312 5.9116 1305.9969000000001 120960 47298 1 0 5898240 4423680 4423680 4426472 4492800 376 156 168 222 1591 0 0 0 0 20 0 0 0 0 0 +230 1783756287759415100 DEPTH 42 1 0.83929940300577233 0.084485407066052204 2 6 2 6 0 0 147 26 2583 23664825 81600 852.93133544921875 5.9204999999999997 1325.2438 120960 60153 1 0 5898240 4423680 4423680 4426425 4492800 182 150 154 235 1862 0 0 0 0 26 0 0 0 0 0 +231 1783756289007706500 DEPTH 13 1 0.85595722187040646 0.0069124423963133532 1 6 1 6 0 0 186 21 2499 23664776 81600 843.05412292480469 5.9078999999999997 1245.0242000000001 120960 47619 1 0 5898240 4423680 4423680 4426376 4492800 176 150 158 177 1838 0 0 0 0 21 0 0 0 0 0 +232 1783756290114747700 DEPTH 12 1 0.77796051907757535 0.33102918586789559 3 8 3 8 0 0 187 58 2516 23664847 81600 853.81080627441406 5.9183000000000003 1031.482 120960 70142 1 0 5898240 4423680 4423680 4426445 4492800 160 156 154 160 1886 0 0 0 0 58 0 0 0 0 0 +233 1783756291430633300 DEPTH 1 1 0.81644436005245558 0.091397849462365552 1 7 1 7 0 0 129 18 2568 23664879 81600 855.15133666992188 5.9218000000000002 1293.0455999999999 120960 60198 1 0 5898240 4423680 4423680 4426477 4492800 198 150 204 171 1845 0 0 0 0 18 0 0 0 0 0 +234 1783756292486510700 DEPTH 55 1 0.77524104416194095 0.51382488479262667 1 12 1 12 0 0 150 49 2544 23664829 81600 864.06390380859375 5.9128999999999996 1042.4101000000001 120960 68159 1 0 5898240 4423680 4423680 4426427 4492800 158 156 150 150 1930 0 0 2 0 47 0 0 0 0 0 +235 1783756293574680900 DEPTH 47 1 0.77529095432518236 0.50691244239631339 2 11 2 11 0 0 114 30 2577 23664893 81600 856.62234497070312 5.9379 1052.6297999999999 120960 68455 1 0 5898240 4423680 4423680 4426493 4492800 156 150 154 150 1967 1 0 1 1 27 0 0 0 0 0 +236 1783756294645673500 DEPTH 40 1 0.77534078869508738 0.51382488479262667 1 12 1 12 1 0 122 46 2534 23664941 81600 857.35099792480469 6.0110000000000001 1032.3562999999999 120960 68658 1 0 5898240 4423680 4423680 4426539 4492800 156 150 151 150 1927 0 0 0 0 46 0 0 0 0 1 +237 1783756295929813800 DEPTH 56 1 0.85076451379915341 0 2 5 2 5 0 0 220 30 2538 23664834 81600 836.78121948242188 5.9200999999999997 1282.9429 120960 36944 1 0 5898240 4423680 4423680 4426432 4492800 178 156 170 321 1713 0 0 0 1 29 0 0 0 0 0 +238 1783756297020466800 DEPTH 8 1 0.81705559601084266 0 2 5 2 5 0 0 230 20 2553 23664820 81600 851.68418884277344 5.9418000000000006 1089.5268000000001 120960 36740 1 0 5898240 4423680 4423680 4426420 4492800 185 156 160 168 1884 0 0 0 0 20 0 0 0 0 0 +239 1783756298259331500 DEPTH 30 1 0.79811373616838366 0.17588325652841791 1 8 1 8 0 0 143 32 2525 23664786 81600 850.24893188476562 5.8732000000000006 1221.9555 120960 64548 1 0 5898240 4423680 4423680 4426386 4492800 186 156 211 201 1771 0 0 0 0 32 0 0 0 0 0 +240 1783756299558654800 DEPTH 44 1 0.79210136755685945 0.16897081413210441 2 7 2 7 0 0 161 20 2590 23664819 81600 854.64054870605469 5.9428000000000001 1298.1168 120960 64925 1 0 5898240 4423680 4423680 4426419 4492800 199 150 157 151 1933 0 0 0 0 20 0 0 0 0 0 +241 1783756300771375800 DEPTH 53 1 0.82852699271867847 0.098310291858679053 0 8 0 8 1 0 153 27 2518 23664857 81600 846.72000122070312 5.9173 1211.5213000000001 120960 52975 1 0 5898240 4423680 4423680 4426457 4492800 156 150 156 160 1896 1 0 0 0 26 0 0 0 0 1 +242 1783756302083864000 DEPTH 17 1 0.83479871326918886 0.013824884792626776 0 7 0 7 0 0 198 18 2512 23664815 81600 837.50865173339844 5.9268000000000001 1311.3571999999999 120960 37933 1 0 5898240 4423680 4423680 4426414 4492800 322 156 168 223 1643 0 0 0 0 18 0 0 0 0 0 +243 1783756303146290100 DEPTH 28 1 0.77568752526647222 0.51382488479262667 1 12 1 12 0 0 147 43 2534 23664844 81600 858.65425109863281 5.8814000000000002 1038.1242999999999 120960 68304 1 0 5898240 4423680 4423680 4426444 4492800 160 150 156 156 1912 0 0 0 0 43 0 0 0 0 0 +244 1783756304197198600 DEPTH 10 1 0.77533092125857284 0.34485407066052232 1 10 1 10 0 0 120 9 2560 23664834 81600 853.17791748046875 5.9067999999999996 1038.2019 120960 69902 1 0 5898240 4423680 4423680 4426432 4492800 150 150 157 154 1949 0 0 0 0 9 0 0 0 0 0 +245 1783756304389035500 REFRESH 13 0 0.84219908623167949 0.0069124423963133532 1 6 1 6 0 0 186 2 414 3943907 55200 148.91725158691406 0.98650000000000004 190.77209999999999 20160 12106 0 0 983040 737280 737280 737507 748800 117 26 36 96 139 0 0 0 0 2 0 0 0 0 0 +246 1783756304576369000 REFRESH 53 0 0.6319805144770746 0.098310291858679053 0 8 0 8 0 0 153 7 415 3943938 55200 150.17266845703125 0.99019999999999997 186.1095 20160 11931 0 0 983040 737280 737280 737538 748800 86 26 29 30 244 0 0 0 0 7 0 0 0 0 0 +247 1783756304767925100 REFRESH 33 0 0.83697978288873653 0.091397849462365552 1 7 1 7 0 0 185 5 416 3943924 55200 149.94432067871094 0.98770000000000002 190.39400000000001 20160 12110 0 0 983040 737280 737280 737524 748800 52 26 30 34 274 0 0 0 0 5 0 0 0 0 0 +248 1783756304968238700 REFRESH 14 0 0.76022130115552977 0.43625192012288788 0 12 0 12 0 0 122 8 411 3943915 55200 149.82861328125 0.98470000000000002 187.8509 20160 14561 0 0 983040 737280 737280 737515 748800 28 25 29 31 298 0 0 0 0 8 0 0 0 0 0 +249 1783756305160985100 REFRESH 32 0 0.76312469425609186 0.76036866359446997 2 14 2 14 0 0 124 9 416 3943943 55200 148.8773193359375 0.98619999999999997 177.67070000000001 20160 14783 0 0 983040 737280 737280 737543 748800 28 25 29 32 302 1 0 0 0 8 0 0 0 0 0 +250 1783756305356793300 REFRESH 15 0 0.76050682362422906 0.66897081413210457 3 12 3 12 0 0 100 9 417 3943924 55200 150.27200317382812 0.98640000000000005 180.4914 20160 14734 0 0 983040 737280 737280 737524 748800 26 26 28 26 311 0 0 0 0 9 0 0 0 0 0 +251 1783756305569750800 REFRESH 48 0 0.76841232883961053 0.33794162826420893 2 9 2 9 0 0 167 5 420 3943927 55200 148.48512268066406 0.98609999999999998 211.80090000000001 20160 13978 0 0 983040 737280 737280 737527 748800 28 26 34 79 253 0 0 0 0 5 0 0 0 0 0 +252 1783756305802519900 REFRESH 42 0 0.80334054217356188 0.084485407066052204 2 6 2 6 0 0 147 6 421 3943896 55200 149.58589172363281 1.0265 231.6087 20160 12506 0 0 983040 737280 737280 737496 748800 89 26 34 79 193 0 0 0 0 6 0 0 0 0 0 +253 1783756305983220900 REFRESH 55 0 0.70450916507336947 0.51382488479262667 1 12 1 12 0 0 150 9 416 3943883 55200 149.89414978027344 0.98770000000000002 179.53290000000001 20160 14815 0 0 983040 737280 737280 737483 748800 27 26 28 28 307 0 0 0 0 9 0 0 0 0 0 +254 1783756306163726500 REFRESH 47 0 0.70455560700879238 0.50691244239631339 2 11 2 11 0 0 114 13 422 3943915 55200 149.80300903320312 0.98540000000000005 179.27670000000001 20160 14771 0 0 983040 737280 737280 737515 748800 28 26 33 29 306 1 0 0 0 12 0 0 0 0 0 +255 1783756306368633700 REFRESH 49 0 0.76070198027898961 0.5 3 10 3 10 0 0 132 5 414 3943897 55200 149.73210144042969 0.98170000000000002 180.0694 20160 14601 0 0 983040 737280 737280 737497 748800 29 26 27 39 293 0 0 0 0 5 0 0 0 0 0 +256 1783756306563151800 REFRESH 58 0 0.77096474996133668 0.59139784946236551 2 12 2 12 0 0 125 6 416 3943928 55200 150.65394592285156 0.98089999999999999 179.4308 20160 14714 0 0 983040 737280 737280 737528 748800 27 26 26 27 310 0 0 0 0 6 0 0 0 0 0 +257 1783756306763242000 REFRESH 24 0 0.76684637574649783 0.66205837173579118 4 11 4 11 0 0 137 6 409 3943899 55200 149.73849487304688 1.1004 183.78149999999999 20160 14748 0 0 983040 737280 737280 737499 748800 25 26 26 27 305 0 0 0 0 6 0 0 0 0 0 +258 1783756306950088900 REFRESH 8 0 0.90315261673593783 0 2 5 2 5 0 0 230 8 415 3943900 55200 150.49317932128906 0.98240000000000005 185.75229999999999 20160 11990 0 0 983040 737280 737280 737499 748800 100 27 28 38 222 1 0 0 0 7 0 0 0 0 0 +259 1783756307143590300 REFRESH 19 0 0.76479647207589119 0.50691244239631339 2 11 2 11 0 0 133 6 418 3943908 55200 150.45120239257812 0.9859 178.57329999999999 20160 14572 0 0 983040 737280 737280 737507 748800 27 26 27 38 300 0 0 0 0 6 0 0 0 0 0 +260 1783756307323880700 REFRESH 12 0 0.76938272830025123 0.33102918586789559 3 8 3 8 0 0 187 4 411 3943928 55200 149.35247802734375 0.98550000000000004 179.1943 20160 13906 0 0 983040 737280 737280 737528 748800 78 26 37 36 234 0 0 0 0 4 0 0 0 0 0 +261 1783756307540935000 REFRESH 52 0 0.78846091782478711 0.17588325652841791 1 8 1 8 0 0 110 11 417 3943923 55200 149.00531005859375 0.98619999999999997 215.78280000000001 20160 12042 0 0 983040 737280 737280 737522 748800 45 25 98 39 210 0 0 0 0 11 0 0 0 0 0 +262 1783756307734135900 REFRESH 6 0 0.77125344193714163 0.58448540706605223 3 11 3 11 1 0 119 13 422 3943894 55200 148.91110229492188 1.0545 179.0917 20160 14670 0 0 983040 737280 737280 737494 748800 26 25 27 25 319 1 0 1 0 11 0 0 0 0 1 +263 1783756307918710900 REFRESH 28 0 0.71497051744476825 0.51382488479262667 1 12 1 12 0 0 147 6 402 3943905 55200 149.17733764648438 0.98580000000000001 182.9684 20160 14727 0 0 983040 737280 737280 737505 748800 37 26 29 32 278 0 0 0 0 6 0 0 0 0 0 +264 1783756308116460600 REFRESH 26 0 0.76944910955434687 0.59831029185867901 1 13 1 13 1 0 90 14 418 3943887 55200 150.28111267089844 0.98370000000000002 179.08940000000001 20160 14637 0 0 983040 737280 737280 737487 748800 27 26 25 29 311 0 0 0 0 14 0 0 0 0 1 +265 1783756308313703200 REFRESH 0 0 0.76645398154642475 0.51382488479262667 1 12 1 12 0 0 91 7 425 3943886 55200 148.62541198730469 0.9859 177.70230000000001 20160 14739 0 0 983040 737280 737280 737486 748800 26 25 26 25 323 0 0 0 0 7 0 0 0 0 0 +266 1783756308507231700 REFRESH 57 0 0.77054449830464633 0.59139784946236551 2 12 2 12 0 0 125 3 413 3943940 55200 149.4097900390625 0.98480000000000001 178.5326 20160 14717 0 0 983040 737280 737280 737539 748800 27 26 26 28 306 0 0 0 0 3 0 0 0 0 0 +267 1783756308685694600 REFRESH 10 0 0.74581051068592574 0.34485407066052232 1 10 1 10 0 0 120 6 419 3943908 55200 148.41856384277344 0.98699999999999999 177.14529999999999 20160 14074 0 0 983040 737280 737280 737507 748800 27 26 43 32 291 0 0 0 0 6 0 0 0 0 0 +268 1783756308913868200 REFRESH 23 0 0.75932112336808899 0.83794162826420893 3 14 3 14 0 0 111 5 413 3943915 55200 150.25357055664062 1.0295000000000001 181.18819999999999 20160 14776 0 0 983040 737280 737280 737514 748800 27 26 26 26 308 0 0 0 0 5 0 0 0 0 0 +269 1783756309113910900 REFRESH 50 0 0.77448696061643374 0.33794162826420893 2 9 2 9 0 0 137 8 419 3943876 55200 148.99302673339844 0.9819 182.89400000000001 20160 14640 0 0 983040 737280 737280 737476 748800 27 26 32 30 304 0 0 0 0 8 0 0 0 0 0 +270 1783756309311634200 REFRESH 7 0 0.77339158833778154 0.51382488479262667 1 12 1 12 1 0 132 9 421 3943925 55200 150.32012939453125 0.98560000000000003 180.17500000000001 20160 14790 0 0 983040 737280 737280 737525 748800 26 26 26 26 317 0 0 0 0 9 0 0 0 0 1 +271 1783756309526259400 REFRESH 54 0 0.78745303750758611 0.17588325652841791 1 8 1 8 0 0 116 5 420 3943918 55200 148.97357177734375 0.98560000000000003 213.3843 20160 11954 0 0 983040 737280 737280 737518 748800 87 26 73 103 131 0 0 0 0 5 0 0 0 0 0 +272 1783756309723558100 REFRESH 22 0 0.76792900701176103 0.58448540706605223 3 11 3 11 0 0 126 8 419 3943912 55200 150.18598937988281 0.98809999999999998 181.4092 20160 14786 0 0 983040 737280 737280 737512 748800 27 26 27 25 314 0 0 0 0 8 0 0 0 0 0 +273 1783756309916310300 REFRESH 5 0 0.76242520128561908 0.50691244239631339 2 11 2 11 1 0 95 9 416 3943916 55200 147.7232666015625 0.98770000000000002 176.76050000000001 20160 14686 0 0 983040 737280 737280 737516 748800 35 27 33 36 285 0 0 0 0 9 0 0 0 0 1 +274 1783756310131472000 REFRESH 31 0 0.83311476750828073 0.084485407066052204 2 6 2 6 0 0 135 5 422 3943901 55200 148.95820617675781 0.98850000000000005 196.29310000000001 20160 12017 0 0 983040 737280 737280 737501 748800 111 25 29 67 190 0 0 0 1 4 0 0 0 0 0 +275 1783756310310039800 REFRESH 40 0 0.76551532716604431 0.51382488479262667 1 12 1 12 1 0 122 11 419 3943912 55200 148.44825744628906 0.9859 177.41569999999999 20160 14751 0 0 983040 737280 737280 737512 748800 32 26 50 31 280 0 0 0 0 11 0 0 0 0 1 +276 1783756310513523900 REFRESH 27 0 0.77001731362745829 0.6052227342549924 0 14 0 14 0 0 152 10 412 3943911 55200 150.13580322265625 0.98719999999999997 180.4967 20160 14599 0 0 983040 737280 737280 737511 748800 27 26 26 25 308 0 0 1 0 9 0 0 0 0 0 +277 1783756310704765100 REFRESH 30 0 0.79203229302068423 0.17588325652841791 1 8 1 8 0 0 143 4 423 3943898 55200 148.60185241699219 0.98680000000000001 190.1087 20160 12225 0 0 983040 737280 737280 737498 748800 67 26 71 90 169 0 0 0 0 4 0 0 0 0 0 +278 1783756310903679200 REFRESH 9 0 0.82873949188867746 0.084485407066052204 2 6 2 6 0 0 139 10 423 3943900 55200 149.12396240234375 0.98670000000000002 197.7989 20160 12199 0 0 983040 737280 737280 737500 748800 29 25 53 109 207 0 0 0 0 10 0 0 0 0 0 +279 1783756311101528100 REFRESH 37 0 0.77441497801269266 0.51382488479262667 1 12 1 12 0 0 142 9 418 3943907 55200 149.80915832519531 0.9849 182.49610000000001 20160 14743 0 0 983040 737280 737280 737507 748800 28 26 26 32 306 1 0 0 0 8 0 0 0 0 0 +280 1783756311341846900 REFRESH 2 0 0.77666531506274594 0.25345622119815675 2 8 2 8 0 0 145 7 420 3943913 55200 149.70777893066406 0.98519999999999996 190.84999999999999 20160 12856 0 0 983040 737280 737280 737512 748800 57 26 30 69 238 0 0 0 0 7 0 0 0 0 0 +281 1783756311566391000 REFRESH 17 0 0.95177810063267954 0.013824884792626776 0 7 0 7 0 0 198 4 413 3943903 55200 149.32992553710938 0.97850000000000004 223.4091 20160 12079 0 0 983040 737280 737280 737503 748800 129 26 33 54 171 0 0 0 0 4 0 0 0 0 0 +282 1783756311761947900 REFRESH 1 0 0.83183818980979596 0.091397849462365552 1 7 1 7 0 0 129 6 418 3943916 55200 149.376953125 0.98580000000000001 193.18729999999999 20160 12215 0 0 983040 737280 737280 737516 748800 86 26 76 44 186 0 0 0 0 6 0 0 0 0 0 +283 1783756311957101000 REFRESH 39 0 0.77181240976226961 0.33102918586789559 3 8 3 8 0 0 176 8 404 3943881 55200 149.50706481933594 0.98860000000000003 179.50659999999999 20160 13972 0 0 983040 737280 737280 737481 748800 31 26 29 29 289 0 0 0 0 8 0 0 0 0 0 +284 1783756312152444900 REFRESH 35 0 0.76591778865800664 0.50691244239631339 2 11 2 11 0 0 167 12 413 3943925 55200 150.20338439941406 0.98650000000000004 180.66239999999999 20160 14678 0 0 983040 737280 737280 737525 748800 27 26 30 28 302 0 0 0 0 12 0 0 0 0 0 +285 1783756312344886000 REFRESH 46 0 0.75910980558457009 0.84485407066052232 2 15 2 15 0 0 116 7 413 3943910 55200 149.58079528808594 0.98780000000000001 180.2406 20160 14698 0 0 983040 737280 737280 737510 748800 27 26 29 26 305 0 0 0 0 7 0 0 0 0 0 +286 1783756312548028400 REFRESH 43 0 0.76641672099228841 0.66897081413210457 3 12 3 12 0 0 136 7 417 3943917 55200 150.09893798828125 0.98009999999999997 179.99180000000001 20160 14838 0 0 983040 737280 737280 737517 748800 28 26 28 32 303 0 0 0 0 7 0 0 0 0 0 +287 1783756312803456800 REFRESH 44 0 0.7869801987416476 0.16897081413210441 2 7 2 7 0 0 161 5 421 3943911 55200 148.73394775390625 0.98599999999999999 214.6172 20160 12139 0 0 983040 737280 737280 737511 748800 124 26 37 27 207 0 0 0 0 5 0 0 0 0 0 +288 1783756312995787100 REFRESH 18 0 0.75805273295473274 1 4 15 4 15 0 0 109 14 419 3943910 55200 149.40774536132812 0.99019999999999997 179.40440000000001 20160 14672 0 0 983040 737280 737280 737510 748800 29 25 25 28 312 0 0 0 0 14 0 0 0 0 0 +289 1783756313188756200 REFRESH 25 0 0.76983395774334507 0.58448540706605223 3 11 3 11 0 0 118 9 417 3943909 55200 149.86341857910156 0.98880000000000001 180.59479999999999 20160 14839 0 0 983040 737280 737280 737509 748800 27 26 28 29 307 1 0 0 0 8 0 0 0 0 0 +290 1783756313382560200 REFRESH 38 0 0.77332610965578175 0.42242703533026116 2 10 2 10 0 0 124 10 414 3943923 55200 148.50253295898438 0.98760000000000003 178.32820000000001 20160 14586 0 0 983040 737280 737280 737523 748800 29 26 51 40 268 0 0 0 1 9 0 0 0 0 0 +291 1783756313576165300 REFRESH 36 0 0.7662564850422251 0.5 3 10 3 10 0 0 116 10 424 3943930 55200 149.48658752441406 0.98550000000000004 179.61850000000001 20160 14579 0 0 983040 737280 737280 737530 748800 28 25 44 27 300 0 0 0 0 10 0 0 0 0 0 +292 1783756313775092300 REFRESH 20 0 0.76427124191160478 0.50691244239631339 2 11 2 11 0 0 121 9 416 3943915 55200 149.396484375 0.98529999999999995 178.36269999999999 20160 14627 0 0 983040 737280 737280 737515 748800 30 26 32 33 295 0 0 0 0 9 0 0 0 0 0 +293 1783756313971906000 REFRESH 51 0 0.76653906056177612 0.66897081413210457 3 12 3 12 0 0 93 6 406 3943900 55200 149.20806884765625 0.98340000000000005 177.5822 20160 14712 0 0 983040 737280 737280 737500 748800 28 26 31 26 295 0 0 0 0 6 0 0 0 0 0 +294 1783756314161888700 REFRESH 34 0 0.76795151703308762 0.59831029185867901 1 13 1 13 1 0 105 7 423 3943905 55200 148.84454345703125 0.98760000000000003 178.23320000000001 20160 14684 0 0 983040 737280 737280 737505 748800 26 26 26 28 317 1 0 0 0 6 0 0 0 0 1 +295 1783756314351192600 REFRESH 4 0 0.76799724268901526 0.59831029185867901 1 13 1 13 0 0 52 5 424 3943930 55200 147.81645202636719 0.9869 176.6491 20160 14789 0 0 983040 737280 737280 737530 748800 25 25 25 31 318 0 0 1 0 4 0 0 0 0 0 +296 1783756314542072000 REFRESH 29 0 0.77550004722746602 0.51382488479262667 1 12 1 12 0 0 128 8 417 3943900 55200 149.63711547851562 0.98419999999999996 179.25049999999999 20160 14750 0 0 983040 737280 737280 737500 748800 36 26 26 25 304 0 0 0 0 8 0 0 0 0 0 +297 1783756314740713600 REFRESH 3 0 0.77259765602467279 0.33794162826420893 2 9 2 9 0 0 148 4 415 3943901 55200 148.43801879882812 0.98519999999999996 182.97309999999999 20160 13972 0 0 983040 737280 737280 737501 748800 64 26 31 62 232 0 0 0 0 4 0 0 0 0 0 +298 1783756314966851300 REFRESH 11 0 0.83621214543156464 0.098310291858679053 0 8 0 8 0 0 107 8 419 3943892 55200 148.33868408203125 0.9829 225.06110000000001 20160 12096 0 0 983040 737280 737280 737491 748800 76 26 82 81 154 0 0 0 0 8 0 0 0 0 0 +299 1783756315190060900 REFRESH 16 0 0.83582208429410132 0.084485407066052204 2 6 2 6 0 0 188 5 413 3943921 55200 150.01496887207031 1.0002 183.58359999999999 20160 12080 0 0 983040 737280 737280 737521 748800 94 26 26 34 233 0 0 1 0 4 0 0 0 0 0 +300 1783756315389009800 REFRESH 45 0 0.79113496896244051 0.16897081413210441 2 7 2 7 0 0 160 3 429 3943912 55200 149.45893859863281 0.98629999999999995 185.44820000000001 20160 12064 0 0 983040 737280 737280 737512 748800 30 26 26 79 268 0 0 0 0 3 0 0 0 0 0 +301 1783756315589985600 REFRESH 41 0 0.77630701383310718 0.34485407066052232 1 10 1 10 0 0 113 7 414 3943909 55200 149.47340393066406 0.98770000000000002 188.95840000000001 20160 14557 0 0 983040 737280 737280 737508 748800 29 26 42 45 272 0 0 0 0 7 0 0 0 0 0 +302 1783756315813526000 REFRESH 56 0 0.95801058080578905 0 2 5 2 5 0 0 220 5 413 3943916 55200 149.78150939941406 0.98509999999999998 222.29990000000001 20160 11974 0 0 983040 737280 737280 737516 748800 100 26 51 80 156 0 0 0 0 5 0 0 0 0 0 +303 1783756316005444300 REFRESH 21 0 0.77600944082296319 0.26728110599078347 0 10 0 10 0 0 180 11 414 3943924 55200 149.59513854980469 0.98509999999999998 190.8038 20160 12882 0 0 983040 737280 737280 737524 748800 33 26 43 34 278 0 0 0 0 11 0 0 0 0 0 +304 1783756317115145900 DEPTH 8 1 0.94824599047382341 0 2 5 2 5 0 0 230 22 2550 23664765 81600 863.13165283203125 5.9531000000000001 1092.8498999999999 120960 57827 1 0 5898240 4423680 4423680 4426363 4492800 194 180 157 164 1855 0 0 0 0 22 0 0 0 0 0 +305 1783756318410606000 DEPTH 13 1 0.94213584421669549 0.0069124423963133532 1 6 1 6 0 0 186 25 2493 23664882 81600 854.34263610839844 5.9359000000000002 1265.1385 120960 58068 1 0 5898240 4423680 4423680 4426482 4492800 188 150 161 192 1802 0 0 0 0 25 0 0 0 0 0 +306 1783756319720662700 DEPTH 17 1 0.94236271178585174 0.013824884792626776 0 7 0 7 0 0 199 26 2525 23664856 81600 850.44497680664062 5.9922000000000004 1308.9838999999999 120960 58330 1 0 5898240 4423680 4423680 4426453 4492800 352 156 168 175 1674 0 0 0 0 26 0 0 0 0 0 +307 1783756320570369900 DEPTH 33 1 0.82773392643063037 0.091397849462365552 1 7 1 7 0 0 185 11 1693 15776515 58560 578.33767700195312 4.1336999999999993 826.62469999999996 80640 42489 0 0 3932160 2949120 2949120 2950914 2995200 108 104 108 104 1269 0 0 0 0 11 0 0 0 0 0 diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/run.tsv b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/run.tsv new file mode 100644 index 00000000..a597717a --- /dev/null +++ b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/run.tsv @@ -0,0 +1,32 @@ +format szilassi-global-search-v4 +run_id b9c63d13-e9c0-466b-925f-7baffe4ebe7c +node_id LOOKICH +seed 1048760467 +topology_from 0 +topology_to 58 +backend cuda-fp32 +objective_version 4 +cuda_math standard-fp32 +cuda_chains_requested 0 +cuda_chains_effective 61440 +cuda_iterations_per_batch 64 +cuda_depth_batches 6 +cuda_session_cache 59 +algorithm hybrid-quality-diversity-v1 +control_baseline_fraction 0.25 +strategy_weights baseline:4,replica:3,adaptive:3,pbt:3,injected:3 +fresh_fractions depth:1/4,breadth:7/8,injected-protected +replica_exchange group:8,temperature-ratio:16 +pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04 +verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1 +accounted_fp32_steps proposal-iterations-plus-injection-pbt;setup-retries-excluded +map_elites_bins determinant:8,edge:8,turn:8,extent:8 +map_elites_max_cells_per_topology 4096 +cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only +spsa adam:6,cpu-double,fp32-roundtrip,final-canonical-dd-gate +topology_scheduler ucb-plus-reward-plus-staleness,full-refresh-every-5 +topology_scheduler_mode quality-first +worst_priority_coefficient 0.65 +cpu_iterations_per_trial 50000 +degeneracy_formula worst-plus-0.05-rest +degeneracy_weight 0.01 diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/archive/delta_00000000000000000001_acf423b8.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/archive/delta_00000000000000000001_acf423b8.szar new file mode 100644 index 00000000..8533bc74 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/archive/delta_00000000000000000001_acf423b8.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/archive/delta_00000000000000000002_8018aebd.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/archive/delta_00000000000000000002_8018aebd.szar new file mode 100644 index 00000000..828a498e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/archive/delta_00000000000000000002_8018aebd.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/archive/delta_00000000000000000003_c6f9deec.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/archive/delta_00000000000000000003_c6f9deec.szar new file mode 100644 index 00000000..7905e6a0 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/archive/delta_00000000000000000003_c6f9deec.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/checkpoints/checkpoint_00000000000000000001_c0578d00.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/checkpoints/checkpoint_00000000000000000001_c0578d00.szcp new file mode 100644 index 00000000..b78a8006 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/checkpoints/checkpoint_00000000000000000001_c0578d00.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/checkpoints/checkpoint_00000000000000000002_7599d6c2.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/checkpoints/checkpoint_00000000000000000002_7599d6c2.szcp new file mode 100644 index 00000000..99213bc9 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/checkpoints/checkpoint_00000000000000000002_7599d6c2.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/checkpoints/checkpoint_00000000000000000003_d14a7ca1.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/checkpoints/checkpoint_00000000000000000003_d14a7ca1.szcp new file mode 100644 index 00000000..bbcb297a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_000/checkpoints/checkpoint_00000000000000000003_d14a7ca1.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000001_46df853e.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000001_46df853e.szar new file mode 100644 index 00000000..e5aa6bc7 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000001_46df853e.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000002_b3b826ce.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000002_b3b826ce.szar new file mode 100644 index 00000000..63ea33e4 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000002_b3b826ce.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000003_07c3c4df.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000003_07c3c4df.szar new file mode 100644 index 00000000..41181c05 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000003_07c3c4df.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000004_5792b1ee.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000004_5792b1ee.szar new file mode 100644 index 00000000..b1c78c70 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000004_5792b1ee.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000005_62962b22.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000005_62962b22.szar new file mode 100644 index 00000000..5e9ab6e1 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000005_62962b22.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000006_3ae04586.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000006_3ae04586.szar new file mode 100644 index 00000000..d26bc2b0 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000006_3ae04586.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000007_c4901dcc.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000007_c4901dcc.szar new file mode 100644 index 00000000..8cbb2deb Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/archive/delta_00000000000000000007_c4901dcc.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000001_fc012856.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000001_fc012856.szcp new file mode 100644 index 00000000..8ef0148c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000001_fc012856.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000002_9e53e033.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000002_9e53e033.szcp new file mode 100644 index 00000000..be90cb8c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000002_9e53e033.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000003_31cb838a.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000003_31cb838a.szcp new file mode 100644 index 00000000..352b0716 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000003_31cb838a.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000004_f1646767.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000004_f1646767.szcp new file mode 100644 index 00000000..3ef6b441 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000004_f1646767.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000005_69c860ce.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000005_69c860ce.szcp new file mode 100644 index 00000000..380e58bf Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000005_69c860ce.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000006_4da61146.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000006_4da61146.szcp new file mode 100644 index 00000000..b9bfab6d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000006_4da61146.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000007_dadb9eb7.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000007_dadb9eb7.szcp new file mode 100644 index 00000000..4e754b7f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_001/checkpoints/checkpoint_00000000000000000007_dadb9eb7.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/archive/delta_00000000000000000001_df56bd01.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/archive/delta_00000000000000000001_df56bd01.szar new file mode 100644 index 00000000..17985755 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/archive/delta_00000000000000000001_df56bd01.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/archive/delta_00000000000000000002_a180fc2f.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/archive/delta_00000000000000000002_a180fc2f.szar new file mode 100644 index 00000000..d49dc83a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/archive/delta_00000000000000000002_a180fc2f.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/archive/delta_00000000000000000003_3a911232.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/archive/delta_00000000000000000003_3a911232.szar new file mode 100644 index 00000000..af9dfcb6 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/archive/delta_00000000000000000003_3a911232.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/archive/delta_00000000000000000004_c2728665.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/archive/delta_00000000000000000004_c2728665.szar new file mode 100644 index 00000000..36e1e109 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/archive/delta_00000000000000000004_c2728665.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/archive/delta_00000000000000000005_b9d782be.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/archive/delta_00000000000000000005_b9d782be.szar new file mode 100644 index 00000000..10d3db32 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/archive/delta_00000000000000000005_b9d782be.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/checkpoints/checkpoint_00000000000000000001_4d0b58db.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/checkpoints/checkpoint_00000000000000000001_4d0b58db.szcp new file mode 100644 index 00000000..7a8aa1cf Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/checkpoints/checkpoint_00000000000000000001_4d0b58db.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/checkpoints/checkpoint_00000000000000000002_80f5d4dc.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/checkpoints/checkpoint_00000000000000000002_80f5d4dc.szcp new file mode 100644 index 00000000..7ed23e1a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/checkpoints/checkpoint_00000000000000000002_80f5d4dc.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/checkpoints/checkpoint_00000000000000000003_a3d2ef6e.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/checkpoints/checkpoint_00000000000000000003_a3d2ef6e.szcp new file mode 100644 index 00000000..24558a9d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/checkpoints/checkpoint_00000000000000000003_a3d2ef6e.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/checkpoints/checkpoint_00000000000000000004_471db741.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/checkpoints/checkpoint_00000000000000000004_471db741.szcp new file mode 100644 index 00000000..25a551eb Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/checkpoints/checkpoint_00000000000000000004_471db741.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/checkpoints/checkpoint_00000000000000000005_81308806.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/checkpoints/checkpoint_00000000000000000005_81308806.szcp new file mode 100644 index 00000000..282f8aab Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_002/checkpoints/checkpoint_00000000000000000005_81308806.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/archive/delta_00000000000000000001_5e0d1915.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/archive/delta_00000000000000000001_5e0d1915.szar new file mode 100644 index 00000000..1326ccfc Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/archive/delta_00000000000000000001_5e0d1915.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/archive/delta_00000000000000000002_bc510144.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/archive/delta_00000000000000000002_bc510144.szar new file mode 100644 index 00000000..cf02018d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/archive/delta_00000000000000000002_bc510144.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/archive/delta_00000000000000000003_da067b85.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/archive/delta_00000000000000000003_da067b85.szar new file mode 100644 index 00000000..f884d5c4 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/archive/delta_00000000000000000003_da067b85.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/archive/delta_00000000000000000004_b20b183e.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/archive/delta_00000000000000000004_b20b183e.szar new file mode 100644 index 00000000..059774a0 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/archive/delta_00000000000000000004_b20b183e.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/archive/delta_00000000000000000005_b253d00e.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/archive/delta_00000000000000000005_b253d00e.szar new file mode 100644 index 00000000..4810d240 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/archive/delta_00000000000000000005_b253d00e.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/checkpoints/checkpoint_00000000000000000001_77256633.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/checkpoints/checkpoint_00000000000000000001_77256633.szcp new file mode 100644 index 00000000..15ec4caa Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/checkpoints/checkpoint_00000000000000000001_77256633.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/checkpoints/checkpoint_00000000000000000002_ffba2505.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/checkpoints/checkpoint_00000000000000000002_ffba2505.szcp new file mode 100644 index 00000000..d9e22520 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/checkpoints/checkpoint_00000000000000000002_ffba2505.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/checkpoints/checkpoint_00000000000000000003_954fe89e.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/checkpoints/checkpoint_00000000000000000003_954fe89e.szcp new file mode 100644 index 00000000..d4fae02f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/checkpoints/checkpoint_00000000000000000003_954fe89e.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/checkpoints/checkpoint_00000000000000000004_1d49a0af.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/checkpoints/checkpoint_00000000000000000004_1d49a0af.szcp new file mode 100644 index 00000000..262a592c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/checkpoints/checkpoint_00000000000000000004_1d49a0af.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/checkpoints/checkpoint_00000000000000000005_557b09fd.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/checkpoints/checkpoint_00000000000000000005_557b09fd.szcp new file mode 100644 index 00000000..d2864dc0 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_003/checkpoints/checkpoint_00000000000000000005_557b09fd.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/archive/delta_00000000000000000001_1b33744f.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/archive/delta_00000000000000000001_1b33744f.szar new file mode 100644 index 00000000..7d54cbcb Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/archive/delta_00000000000000000001_1b33744f.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/archive/delta_00000000000000000002_5c1ef144.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/archive/delta_00000000000000000002_5c1ef144.szar new file mode 100644 index 00000000..c6202287 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/archive/delta_00000000000000000002_5c1ef144.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/archive/delta_00000000000000000003_9dc734f6.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/archive/delta_00000000000000000003_9dc734f6.szar new file mode 100644 index 00000000..c7b674dd Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/archive/delta_00000000000000000003_9dc734f6.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/checkpoints/checkpoint_00000000000000000001_4ea0a612.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/checkpoints/checkpoint_00000000000000000001_4ea0a612.szcp new file mode 100644 index 00000000..9db34459 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/checkpoints/checkpoint_00000000000000000001_4ea0a612.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/checkpoints/checkpoint_00000000000000000002_413fa8c1.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/checkpoints/checkpoint_00000000000000000002_413fa8c1.szcp new file mode 100644 index 00000000..5fdcf935 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/checkpoints/checkpoint_00000000000000000002_413fa8c1.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/checkpoints/checkpoint_00000000000000000003_a70aaa90.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/checkpoints/checkpoint_00000000000000000003_a70aaa90.szcp new file mode 100644 index 00000000..2e1e19db Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_004/checkpoints/checkpoint_00000000000000000003_a70aaa90.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/archive/delta_00000000000000000001_77352dec.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/archive/delta_00000000000000000001_77352dec.szar new file mode 100644 index 00000000..5781888e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/archive/delta_00000000000000000001_77352dec.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/archive/delta_00000000000000000002_54691c7c.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/archive/delta_00000000000000000002_54691c7c.szar new file mode 100644 index 00000000..baa9d6ca Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/archive/delta_00000000000000000002_54691c7c.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/archive/delta_00000000000000000003_855f3f73.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/archive/delta_00000000000000000003_855f3f73.szar new file mode 100644 index 00000000..2f1a4cc5 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/archive/delta_00000000000000000003_855f3f73.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/archive/delta_00000000000000000004_676d0826.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/archive/delta_00000000000000000004_676d0826.szar new file mode 100644 index 00000000..c3ee6ef2 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/archive/delta_00000000000000000004_676d0826.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/checkpoints/checkpoint_00000000000000000001_f68073ff.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/checkpoints/checkpoint_00000000000000000001_f68073ff.szcp new file mode 100644 index 00000000..37d98de3 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/checkpoints/checkpoint_00000000000000000001_f68073ff.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/checkpoints/checkpoint_00000000000000000002_329a7454.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/checkpoints/checkpoint_00000000000000000002_329a7454.szcp new file mode 100644 index 00000000..eaeaff6f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/checkpoints/checkpoint_00000000000000000002_329a7454.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/checkpoints/checkpoint_00000000000000000003_ace226c7.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/checkpoints/checkpoint_00000000000000000003_ace226c7.szcp new file mode 100644 index 00000000..1d43d8ed Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/checkpoints/checkpoint_00000000000000000003_ace226c7.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/checkpoints/checkpoint_00000000000000000004_b534ce3b.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/checkpoints/checkpoint_00000000000000000004_b534ce3b.szcp new file mode 100644 index 00000000..e6cf8ab4 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_005/checkpoints/checkpoint_00000000000000000004_b534ce3b.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/archive/delta_00000000000000000001_1bd7d914.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/archive/delta_00000000000000000001_1bd7d914.szar new file mode 100644 index 00000000..3496cbcc Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/archive/delta_00000000000000000001_1bd7d914.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/archive/delta_00000000000000000002_caf89ea0.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/archive/delta_00000000000000000002_caf89ea0.szar new file mode 100644 index 00000000..79f04afb Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/archive/delta_00000000000000000002_caf89ea0.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/archive/delta_00000000000000000003_dc53f7e7.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/archive/delta_00000000000000000003_dc53f7e7.szar new file mode 100644 index 00000000..a642a6bc Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/archive/delta_00000000000000000003_dc53f7e7.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/checkpoints/checkpoint_00000000000000000001_2a7be764.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/checkpoints/checkpoint_00000000000000000001_2a7be764.szcp new file mode 100644 index 00000000..4ae629a1 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/checkpoints/checkpoint_00000000000000000001_2a7be764.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/checkpoints/checkpoint_00000000000000000002_839bda71.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/checkpoints/checkpoint_00000000000000000002_839bda71.szcp new file mode 100644 index 00000000..80b5b5d1 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/checkpoints/checkpoint_00000000000000000002_839bda71.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/checkpoints/checkpoint_00000000000000000003_7db3de31.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/checkpoints/checkpoint_00000000000000000003_7db3de31.szcp new file mode 100644 index 00000000..df9f8e26 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_006/checkpoints/checkpoint_00000000000000000003_7db3de31.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/archive/delta_00000000000000000001_74f25ca5.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/archive/delta_00000000000000000001_74f25ca5.szar new file mode 100644 index 00000000..e1d95e0b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/archive/delta_00000000000000000001_74f25ca5.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/archive/delta_00000000000000000002_4ccd8d97.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/archive/delta_00000000000000000002_4ccd8d97.szar new file mode 100644 index 00000000..ee7f0419 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/archive/delta_00000000000000000002_4ccd8d97.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/archive/delta_00000000000000000003_3f4c08ae.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/archive/delta_00000000000000000003_3f4c08ae.szar new file mode 100644 index 00000000..d2645085 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/archive/delta_00000000000000000003_3f4c08ae.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/checkpoints/checkpoint_00000000000000000001_d7ac1cc2.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/checkpoints/checkpoint_00000000000000000001_d7ac1cc2.szcp new file mode 100644 index 00000000..196abef9 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/checkpoints/checkpoint_00000000000000000001_d7ac1cc2.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/checkpoints/checkpoint_00000000000000000002_eaefc0a2.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/checkpoints/checkpoint_00000000000000000002_eaefc0a2.szcp new file mode 100644 index 00000000..4922c43f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/checkpoints/checkpoint_00000000000000000002_eaefc0a2.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/checkpoints/checkpoint_00000000000000000003_22f19b04.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/checkpoints/checkpoint_00000000000000000003_22f19b04.szcp new file mode 100644 index 00000000..75d71c8d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_007/checkpoints/checkpoint_00000000000000000003_22f19b04.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000001_6c847dda.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000001_6c847dda.szar new file mode 100644 index 00000000..ae8b9d26 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000001_6c847dda.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000002_5b241ccc.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000002_5b241ccc.szar new file mode 100644 index 00000000..aa30ed85 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000002_5b241ccc.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000003_6a235a39.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000003_6a235a39.szar new file mode 100644 index 00000000..3ca79b1a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000003_6a235a39.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000004_3d664696.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000004_3d664696.szar new file mode 100644 index 00000000..2bba60c9 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000004_3d664696.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000005_69235ea0.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000005_69235ea0.szar new file mode 100644 index 00000000..e4cf63c6 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000005_69235ea0.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000006_c42499d7.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000006_c42499d7.szar new file mode 100644 index 00000000..1f054405 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000006_c42499d7.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000007_ad46930d.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000007_ad46930d.szar new file mode 100644 index 00000000..a4c6d071 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/archive/delta_00000000000000000007_ad46930d.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000001_cf66e9c3.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000001_cf66e9c3.szcp new file mode 100644 index 00000000..fbfe53e3 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000001_cf66e9c3.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000002_3858e5dc.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000002_3858e5dc.szcp new file mode 100644 index 00000000..7371ffb5 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000002_3858e5dc.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000003_98ea6213.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000003_98ea6213.szcp new file mode 100644 index 00000000..924d2a21 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000003_98ea6213.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000004_9cfa2f38.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000004_9cfa2f38.szcp new file mode 100644 index 00000000..288e2d68 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000004_9cfa2f38.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000005_bd06686f.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000005_bd06686f.szcp new file mode 100644 index 00000000..ac9d2ba7 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000005_bd06686f.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000006_517b9675.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000006_517b9675.szcp new file mode 100644 index 00000000..89b680b6 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000006_517b9675.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000007_426f6bf4.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000007_426f6bf4.szcp new file mode 100644 index 00000000..f9123794 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_008/checkpoints/checkpoint_00000000000000000007_426f6bf4.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000001_4b3c7951.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000001_4b3c7951.szar new file mode 100644 index 00000000..b2f2fffb Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000001_4b3c7951.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000002_fbc3b420.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000002_fbc3b420.szar new file mode 100644 index 00000000..33200672 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000002_fbc3b420.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000003_f056746b.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000003_f056746b.szar new file mode 100644 index 00000000..91d32061 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000003_f056746b.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000004_7d388141.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000004_7d388141.szar new file mode 100644 index 00000000..70c9d37c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000004_7d388141.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000005_70872603.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000005_70872603.szar new file mode 100644 index 00000000..6c174993 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000005_70872603.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000006_8236e930.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000006_8236e930.szar new file mode 100644 index 00000000..b33172d8 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000006_8236e930.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000007_bc21606b.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000007_bc21606b.szar new file mode 100644 index 00000000..56c27943 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/archive/delta_00000000000000000007_bc21606b.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000001_0461c42e.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000001_0461c42e.szcp new file mode 100644 index 00000000..8d8f8fda Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000001_0461c42e.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000002_3850bbf0.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000002_3850bbf0.szcp new file mode 100644 index 00000000..6e74b11c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000002_3850bbf0.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000003_4f1ed0f1.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000003_4f1ed0f1.szcp new file mode 100644 index 00000000..f904c91e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000003_4f1ed0f1.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000004_022c6cff.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000004_022c6cff.szcp new file mode 100644 index 00000000..e4431160 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000004_022c6cff.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000005_b4952771.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000005_b4952771.szcp new file mode 100644 index 00000000..200ee229 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000005_b4952771.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000006_d22378b8.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000006_d22378b8.szcp new file mode 100644 index 00000000..097ca285 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000006_d22378b8.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000007_c848b2fa.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000007_c848b2fa.szcp new file mode 100644 index 00000000..329e8f40 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_009/checkpoints/checkpoint_00000000000000000007_c848b2fa.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/archive/delta_00000000000000000001_004fb309.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/archive/delta_00000000000000000001_004fb309.szar new file mode 100644 index 00000000..9305bb9e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/archive/delta_00000000000000000001_004fb309.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/archive/delta_00000000000000000002_9013bfd7.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/archive/delta_00000000000000000002_9013bfd7.szar new file mode 100644 index 00000000..9b291d23 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/archive/delta_00000000000000000002_9013bfd7.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/archive/delta_00000000000000000003_d0895c0f.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/archive/delta_00000000000000000003_d0895c0f.szar new file mode 100644 index 00000000..fd25abf6 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/archive/delta_00000000000000000003_d0895c0f.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/archive/delta_00000000000000000004_b28115e9.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/archive/delta_00000000000000000004_b28115e9.szar new file mode 100644 index 00000000..a0574c38 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/archive/delta_00000000000000000004_b28115e9.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/archive/delta_00000000000000000005_f30e9999.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/archive/delta_00000000000000000005_f30e9999.szar new file mode 100644 index 00000000..be1ac49f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/archive/delta_00000000000000000005_f30e9999.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/checkpoints/checkpoint_00000000000000000001_29393eb1.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/checkpoints/checkpoint_00000000000000000001_29393eb1.szcp new file mode 100644 index 00000000..aeead30f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/checkpoints/checkpoint_00000000000000000001_29393eb1.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/checkpoints/checkpoint_00000000000000000002_0ed0f76e.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/checkpoints/checkpoint_00000000000000000002_0ed0f76e.szcp new file mode 100644 index 00000000..95263fd9 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/checkpoints/checkpoint_00000000000000000002_0ed0f76e.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/checkpoints/checkpoint_00000000000000000003_01f33bfc.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/checkpoints/checkpoint_00000000000000000003_01f33bfc.szcp new file mode 100644 index 00000000..2cbb64c7 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/checkpoints/checkpoint_00000000000000000003_01f33bfc.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/checkpoints/checkpoint_00000000000000000004_f9bc8193.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/checkpoints/checkpoint_00000000000000000004_f9bc8193.szcp new file mode 100644 index 00000000..0cc1ae6f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/checkpoints/checkpoint_00000000000000000004_f9bc8193.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/checkpoints/checkpoint_00000000000000000005_770c8e1b.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/checkpoints/checkpoint_00000000000000000005_770c8e1b.szcp new file mode 100644 index 00000000..21d852cf Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_010/checkpoints/checkpoint_00000000000000000005_770c8e1b.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000001_10aa73b9.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000001_10aa73b9.szar new file mode 100644 index 00000000..ae45d286 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000001_10aa73b9.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000002_019f32dd.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000002_019f32dd.szar new file mode 100644 index 00000000..e9866523 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000002_019f32dd.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000003_fb1dba3f.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000003_fb1dba3f.szar new file mode 100644 index 00000000..1cd8fad9 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000003_fb1dba3f.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000004_df8573b7.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000004_df8573b7.szar new file mode 100644 index 00000000..10c53895 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000004_df8573b7.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000005_28a65008.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000005_28a65008.szar new file mode 100644 index 00000000..e26e5405 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000005_28a65008.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000006_18e40f82.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000006_18e40f82.szar new file mode 100644 index 00000000..0d4c8892 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000006_18e40f82.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000007_88f0f0b5.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000007_88f0f0b5.szar new file mode 100644 index 00000000..32609584 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/archive/delta_00000000000000000007_88f0f0b5.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000001_bbb20944.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000001_bbb20944.szcp new file mode 100644 index 00000000..6e9f1886 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000001_bbb20944.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000002_7f029005.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000002_7f029005.szcp new file mode 100644 index 00000000..e9ec5c73 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000002_7f029005.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000003_dcc036bd.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000003_dcc036bd.szcp new file mode 100644 index 00000000..990caf59 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000003_dcc036bd.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000004_1d6bb887.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000004_1d6bb887.szcp new file mode 100644 index 00000000..c860e038 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000004_1d6bb887.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000005_81c92ff3.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000005_81c92ff3.szcp new file mode 100644 index 00000000..05729cef Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000005_81c92ff3.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000006_a9261401.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000006_a9261401.szcp new file mode 100644 index 00000000..4c1d495b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000006_a9261401.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000007_dbcfd9b7.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000007_dbcfd9b7.szcp new file mode 100644 index 00000000..2f02c483 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_011/checkpoints/checkpoint_00000000000000000007_dbcfd9b7.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/archive/delta_00000000000000000001_1540bfb4.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/archive/delta_00000000000000000001_1540bfb4.szar new file mode 100644 index 00000000..b8ebea0a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/archive/delta_00000000000000000001_1540bfb4.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/archive/delta_00000000000000000002_c44239c0.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/archive/delta_00000000000000000002_c44239c0.szar new file mode 100644 index 00000000..a6868910 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/archive/delta_00000000000000000002_c44239c0.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/archive/delta_00000000000000000003_58f3c543.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/archive/delta_00000000000000000003_58f3c543.szar new file mode 100644 index 00000000..a427fc0f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/archive/delta_00000000000000000003_58f3c543.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/archive/delta_00000000000000000004_e7954955.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/archive/delta_00000000000000000004_e7954955.szar new file mode 100644 index 00000000..ae28b9d5 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/archive/delta_00000000000000000004_e7954955.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/archive/delta_00000000000000000005_c2f40bd8.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/archive/delta_00000000000000000005_c2f40bd8.szar new file mode 100644 index 00000000..7924cc4a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/archive/delta_00000000000000000005_c2f40bd8.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/checkpoints/checkpoint_00000000000000000001_5215b3ea.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/checkpoints/checkpoint_00000000000000000001_5215b3ea.szcp new file mode 100644 index 00000000..a272b7db Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/checkpoints/checkpoint_00000000000000000001_5215b3ea.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/checkpoints/checkpoint_00000000000000000002_fb2dff5b.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/checkpoints/checkpoint_00000000000000000002_fb2dff5b.szcp new file mode 100644 index 00000000..a5c67023 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/checkpoints/checkpoint_00000000000000000002_fb2dff5b.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/checkpoints/checkpoint_00000000000000000003_f3c1c353.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/checkpoints/checkpoint_00000000000000000003_f3c1c353.szcp new file mode 100644 index 00000000..35fe5982 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/checkpoints/checkpoint_00000000000000000003_f3c1c353.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/checkpoints/checkpoint_00000000000000000004_d18f2ae2.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/checkpoints/checkpoint_00000000000000000004_d18f2ae2.szcp new file mode 100644 index 00000000..f9fca05b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/checkpoints/checkpoint_00000000000000000004_d18f2ae2.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/checkpoints/checkpoint_00000000000000000005_2c781780.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/checkpoints/checkpoint_00000000000000000005_2c781780.szcp new file mode 100644 index 00000000..8f94c1ab Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_012/checkpoints/checkpoint_00000000000000000005_2c781780.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000001_4f00aab2.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000001_4f00aab2.szar new file mode 100644 index 00000000..f06d62c8 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000001_4f00aab2.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000002_4386261f.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000002_4386261f.szar new file mode 100644 index 00000000..24393796 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000002_4386261f.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000003_af950d0e.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000003_af950d0e.szar new file mode 100644 index 00000000..64af2120 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000003_af950d0e.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000004_190cd5ee.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000004_190cd5ee.szar new file mode 100644 index 00000000..68b7ae03 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000004_190cd5ee.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000005_97255c56.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000005_97255c56.szar new file mode 100644 index 00000000..375eb84e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000005_97255c56.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000006_a2476f48.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000006_a2476f48.szar new file mode 100644 index 00000000..8e08f32a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000006_a2476f48.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000007_c1270870.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000007_c1270870.szar new file mode 100644 index 00000000..251dc1c1 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/archive/delta_00000000000000000007_c1270870.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000001_d858cb14.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000001_d858cb14.szcp new file mode 100644 index 00000000..19ccdefc Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000001_d858cb14.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000002_f77692c5.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000002_f77692c5.szcp new file mode 100644 index 00000000..fdde2747 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000002_f77692c5.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000003_c313bbe8.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000003_c313bbe8.szcp new file mode 100644 index 00000000..a2e36823 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000003_c313bbe8.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000004_462fef92.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000004_462fef92.szcp new file mode 100644 index 00000000..11ec1c88 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000004_462fef92.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000005_330a32f0.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000005_330a32f0.szcp new file mode 100644 index 00000000..d4eab9b0 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000005_330a32f0.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000006_a65b4a9c.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000006_a65b4a9c.szcp new file mode 100644 index 00000000..00a6652a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000006_a65b4a9c.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000007_4d1a9aaf.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000007_4d1a9aaf.szcp new file mode 100644 index 00000000..ab1ab211 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_013/checkpoints/checkpoint_00000000000000000007_4d1a9aaf.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/archive/delta_00000000000000000001_29aec5e7.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/archive/delta_00000000000000000001_29aec5e7.szar new file mode 100644 index 00000000..2bd8d01b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/archive/delta_00000000000000000001_29aec5e7.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/archive/delta_00000000000000000002_f82bf209.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/archive/delta_00000000000000000002_f82bf209.szar new file mode 100644 index 00000000..fa857f48 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/archive/delta_00000000000000000002_f82bf209.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/archive/delta_00000000000000000003_c4c599b9.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/archive/delta_00000000000000000003_c4c599b9.szar new file mode 100644 index 00000000..18853983 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/archive/delta_00000000000000000003_c4c599b9.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/archive/delta_00000000000000000004_0da99646.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/archive/delta_00000000000000000004_0da99646.szar new file mode 100644 index 00000000..ccca4c69 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/archive/delta_00000000000000000004_0da99646.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/checkpoints/checkpoint_00000000000000000001_45722ae1.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/checkpoints/checkpoint_00000000000000000001_45722ae1.szcp new file mode 100644 index 00000000..5651509c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/checkpoints/checkpoint_00000000000000000001_45722ae1.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/checkpoints/checkpoint_00000000000000000002_c25408ce.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/checkpoints/checkpoint_00000000000000000002_c25408ce.szcp new file mode 100644 index 00000000..7c33c7b1 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/checkpoints/checkpoint_00000000000000000002_c25408ce.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/checkpoints/checkpoint_00000000000000000003_b3303bb0.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/checkpoints/checkpoint_00000000000000000003_b3303bb0.szcp new file mode 100644 index 00000000..45d919c0 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/checkpoints/checkpoint_00000000000000000003_b3303bb0.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/checkpoints/checkpoint_00000000000000000004_ee14d697.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/checkpoints/checkpoint_00000000000000000004_ee14d697.szcp new file mode 100644 index 00000000..95625709 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_014/checkpoints/checkpoint_00000000000000000004_ee14d697.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/archive/delta_00000000000000000001_79bdc389.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/archive/delta_00000000000000000001_79bdc389.szar new file mode 100644 index 00000000..e011ffea Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/archive/delta_00000000000000000001_79bdc389.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/archive/delta_00000000000000000002_4df75ffe.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/archive/delta_00000000000000000002_4df75ffe.szar new file mode 100644 index 00000000..897fd09c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/archive/delta_00000000000000000002_4df75ffe.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/archive/delta_00000000000000000003_e5953fbc.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/archive/delta_00000000000000000003_e5953fbc.szar new file mode 100644 index 00000000..783e3100 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/archive/delta_00000000000000000003_e5953fbc.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/checkpoints/checkpoint_00000000000000000001_c53967c4.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/checkpoints/checkpoint_00000000000000000001_c53967c4.szcp new file mode 100644 index 00000000..c2123682 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/checkpoints/checkpoint_00000000000000000001_c53967c4.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/checkpoints/checkpoint_00000000000000000002_eac072af.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/checkpoints/checkpoint_00000000000000000002_eac072af.szcp new file mode 100644 index 00000000..fee7e9d8 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/checkpoints/checkpoint_00000000000000000002_eac072af.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/checkpoints/checkpoint_00000000000000000003_bee8db8f.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/checkpoints/checkpoint_00000000000000000003_bee8db8f.szcp new file mode 100644 index 00000000..a889cdab Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_015/checkpoints/checkpoint_00000000000000000003_bee8db8f.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000001_89a5467f.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000001_89a5467f.szar new file mode 100644 index 00000000..5e394320 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000001_89a5467f.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000002_7ac921c0.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000002_7ac921c0.szar new file mode 100644 index 00000000..e3a07f79 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000002_7ac921c0.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000003_9a70e6f1.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000003_9a70e6f1.szar new file mode 100644 index 00000000..92e567a2 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000003_9a70e6f1.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000004_0a0af2bc.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000004_0a0af2bc.szar new file mode 100644 index 00000000..e7e769b0 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000004_0a0af2bc.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000005_2d0329a1.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000005_2d0329a1.szar new file mode 100644 index 00000000..33872b40 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000005_2d0329a1.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000006_62e6a940.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000006_62e6a940.szar new file mode 100644 index 00000000..9d9bb14d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/archive/delta_00000000000000000006_62e6a940.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000001_7237d1e1.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000001_7237d1e1.szcp new file mode 100644 index 00000000..b039d184 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000001_7237d1e1.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000002_b10b09a0.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000002_b10b09a0.szcp new file mode 100644 index 00000000..c74b9923 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000002_b10b09a0.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000003_1d96dde7.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000003_1d96dde7.szcp new file mode 100644 index 00000000..dde5bad5 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000003_1d96dde7.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000004_4d50bf88.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000004_4d50bf88.szcp new file mode 100644 index 00000000..d75d73f4 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000004_4d50bf88.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000005_f02e3ad3.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000005_f02e3ad3.szcp new file mode 100644 index 00000000..e3c00440 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000005_f02e3ad3.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000006_dfa700f9.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000006_dfa700f9.szcp new file mode 100644 index 00000000..7b36e94c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_016/checkpoints/checkpoint_00000000000000000006_dfa700f9.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000001_fe369c98.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000001_fe369c98.szar new file mode 100644 index 00000000..06cc046a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000001_fe369c98.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000002_210aac55.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000002_210aac55.szar new file mode 100644 index 00000000..dda1999e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000002_210aac55.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000003_2d1aa1cb.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000003_2d1aa1cb.szar new file mode 100644 index 00000000..66d373dd Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000003_2d1aa1cb.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000004_1faa81c7.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000004_1faa81c7.szar new file mode 100644 index 00000000..725caf90 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000004_1faa81c7.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000005_c998274e.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000005_c998274e.szar new file mode 100644 index 00000000..4202b1b2 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000005_c998274e.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000006_bf0108d8.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000006_bf0108d8.szar new file mode 100644 index 00000000..03cace65 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000006_bf0108d8.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000007_00e730dc.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000007_00e730dc.szar new file mode 100644 index 00000000..681ca4d7 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000007_00e730dc.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000008_6d6fa269.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000008_6d6fa269.szar new file mode 100644 index 00000000..927c5c92 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/archive/delta_00000000000000000008_6d6fa269.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000001_fc8424ab.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000001_fc8424ab.szcp new file mode 100644 index 00000000..37f9bb7d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000001_fc8424ab.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000002_e9b5d597.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000002_e9b5d597.szcp new file mode 100644 index 00000000..aeabe5cd Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000002_e9b5d597.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000003_18a71377.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000003_18a71377.szcp new file mode 100644 index 00000000..fd3fa5b5 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000003_18a71377.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000004_a15f625f.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000004_a15f625f.szcp new file mode 100644 index 00000000..0e9f42e2 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000004_a15f625f.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000005_497ccb83.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000005_497ccb83.szcp new file mode 100644 index 00000000..452fb31d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000005_497ccb83.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000006_71faebf8.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000006_71faebf8.szcp new file mode 100644 index 00000000..80f69aff Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000006_71faebf8.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000007_fbd2705f.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000007_fbd2705f.szcp new file mode 100644 index 00000000..01836c83 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000007_fbd2705f.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000008_486915ee.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000008_486915ee.szcp new file mode 100644 index 00000000..db6f2056 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_017/checkpoints/checkpoint_00000000000000000008_486915ee.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/archive/delta_00000000000000000001_b89f89ef.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/archive/delta_00000000000000000001_b89f89ef.szar new file mode 100644 index 00000000..1b9a95e7 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/archive/delta_00000000000000000001_b89f89ef.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/archive/delta_00000000000000000002_a2538dac.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/archive/delta_00000000000000000002_a2538dac.szar new file mode 100644 index 00000000..095f0bba Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/archive/delta_00000000000000000002_a2538dac.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/archive/delta_00000000000000000003_27caa82b.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/archive/delta_00000000000000000003_27caa82b.szar new file mode 100644 index 00000000..6728aa45 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/archive/delta_00000000000000000003_27caa82b.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/checkpoints/checkpoint_00000000000000000001_d68d5d32.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/checkpoints/checkpoint_00000000000000000001_d68d5d32.szcp new file mode 100644 index 00000000..08eab680 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/checkpoints/checkpoint_00000000000000000001_d68d5d32.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/checkpoints/checkpoint_00000000000000000002_9f1d4156.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/checkpoints/checkpoint_00000000000000000002_9f1d4156.szcp new file mode 100644 index 00000000..d21c9369 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/checkpoints/checkpoint_00000000000000000002_9f1d4156.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/checkpoints/checkpoint_00000000000000000003_b3be2c57.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/checkpoints/checkpoint_00000000000000000003_b3be2c57.szcp new file mode 100644 index 00000000..d0f623fc Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_018/checkpoints/checkpoint_00000000000000000003_b3be2c57.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/archive/delta_00000000000000000001_9428c0ac.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/archive/delta_00000000000000000001_9428c0ac.szar new file mode 100644 index 00000000..81516db1 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/archive/delta_00000000000000000001_9428c0ac.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/archive/delta_00000000000000000002_56304a90.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/archive/delta_00000000000000000002_56304a90.szar new file mode 100644 index 00000000..d1baee83 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/archive/delta_00000000000000000002_56304a90.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/archive/delta_00000000000000000003_3f4b271a.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/archive/delta_00000000000000000003_3f4b271a.szar new file mode 100644 index 00000000..89e9ce5a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/archive/delta_00000000000000000003_3f4b271a.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/archive/delta_00000000000000000004_f31a477e.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/archive/delta_00000000000000000004_f31a477e.szar new file mode 100644 index 00000000..c1bb4357 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/archive/delta_00000000000000000004_f31a477e.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/checkpoints/checkpoint_00000000000000000001_b6845ec4.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/checkpoints/checkpoint_00000000000000000001_b6845ec4.szcp new file mode 100644 index 00000000..4496ce70 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/checkpoints/checkpoint_00000000000000000001_b6845ec4.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/checkpoints/checkpoint_00000000000000000002_5f015b6f.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/checkpoints/checkpoint_00000000000000000002_5f015b6f.szcp new file mode 100644 index 00000000..76bf431a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/checkpoints/checkpoint_00000000000000000002_5f015b6f.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/checkpoints/checkpoint_00000000000000000003_c668952b.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/checkpoints/checkpoint_00000000000000000003_c668952b.szcp new file mode 100644 index 00000000..c5939483 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/checkpoints/checkpoint_00000000000000000003_c668952b.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/checkpoints/checkpoint_00000000000000000004_4240b5b8.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/checkpoints/checkpoint_00000000000000000004_4240b5b8.szcp new file mode 100644 index 00000000..2c9d291a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_019/checkpoints/checkpoint_00000000000000000004_4240b5b8.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/archive/delta_00000000000000000001_cf6c3da8.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/archive/delta_00000000000000000001_cf6c3da8.szar new file mode 100644 index 00000000..6f8156d7 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/archive/delta_00000000000000000001_cf6c3da8.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/archive/delta_00000000000000000002_4be5612b.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/archive/delta_00000000000000000002_4be5612b.szar new file mode 100644 index 00000000..94c84936 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/archive/delta_00000000000000000002_4be5612b.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/archive/delta_00000000000000000003_c45f335d.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/archive/delta_00000000000000000003_c45f335d.szar new file mode 100644 index 00000000..3ab0de24 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/archive/delta_00000000000000000003_c45f335d.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/archive/delta_00000000000000000004_9fd9b115.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/archive/delta_00000000000000000004_9fd9b115.szar new file mode 100644 index 00000000..cf4e10b8 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/archive/delta_00000000000000000004_9fd9b115.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/checkpoints/checkpoint_00000000000000000001_0799bd57.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/checkpoints/checkpoint_00000000000000000001_0799bd57.szcp new file mode 100644 index 00000000..fc63b8da Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/checkpoints/checkpoint_00000000000000000001_0799bd57.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/checkpoints/checkpoint_00000000000000000002_d4fb1941.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/checkpoints/checkpoint_00000000000000000002_d4fb1941.szcp new file mode 100644 index 00000000..f7ba893f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/checkpoints/checkpoint_00000000000000000002_d4fb1941.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/checkpoints/checkpoint_00000000000000000003_decb26ba.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/checkpoints/checkpoint_00000000000000000003_decb26ba.szcp new file mode 100644 index 00000000..0ea6a4e0 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/checkpoints/checkpoint_00000000000000000003_decb26ba.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/checkpoints/checkpoint_00000000000000000004_fdb8dbf4.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/checkpoints/checkpoint_00000000000000000004_fdb8dbf4.szcp new file mode 100644 index 00000000..c5c58ad5 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_020/checkpoints/checkpoint_00000000000000000004_fdb8dbf4.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000001_a34006bb.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000001_a34006bb.szar new file mode 100644 index 00000000..42b3db63 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000001_a34006bb.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000002_d2c707f7.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000002_d2c707f7.szar new file mode 100644 index 00000000..d63f1590 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000002_d2c707f7.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000003_49ff7e4c.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000003_49ff7e4c.szar new file mode 100644 index 00000000..23ac3724 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000003_49ff7e4c.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000004_2fe7ef6c.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000004_2fe7ef6c.szar new file mode 100644 index 00000000..8b9aa48c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000004_2fe7ef6c.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000005_e36b7300.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000005_e36b7300.szar new file mode 100644 index 00000000..50ebe247 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000005_e36b7300.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000006_50688d64.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000006_50688d64.szar new file mode 100644 index 00000000..a2943009 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/archive/delta_00000000000000000006_50688d64.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000001_04b84292.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000001_04b84292.szcp new file mode 100644 index 00000000..7868cfb8 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000001_04b84292.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000002_fdc7de1c.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000002_fdc7de1c.szcp new file mode 100644 index 00000000..7c3da07a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000002_fdc7de1c.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000003_2b038b47.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000003_2b038b47.szcp new file mode 100644 index 00000000..37f2cb24 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000003_2b038b47.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000004_c3b4e501.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000004_c3b4e501.szcp new file mode 100644 index 00000000..56cba571 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000004_c3b4e501.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000005_f54db6fd.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000005_f54db6fd.szcp new file mode 100644 index 00000000..25f0b344 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000005_f54db6fd.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000006_10a45487.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000006_10a45487.szcp new file mode 100644 index 00000000..853b1a14 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_021/checkpoints/checkpoint_00000000000000000006_10a45487.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/archive/delta_00000000000000000001_5f1b7ab2.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/archive/delta_00000000000000000001_5f1b7ab2.szar new file mode 100644 index 00000000..54c423a6 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/archive/delta_00000000000000000001_5f1b7ab2.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/archive/delta_00000000000000000002_0000aacc.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/archive/delta_00000000000000000002_0000aacc.szar new file mode 100644 index 00000000..abe48028 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/archive/delta_00000000000000000002_0000aacc.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/archive/delta_00000000000000000003_64724722.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/archive/delta_00000000000000000003_64724722.szar new file mode 100644 index 00000000..20dca1a1 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/archive/delta_00000000000000000003_64724722.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/checkpoints/checkpoint_00000000000000000001_831d615a.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/checkpoints/checkpoint_00000000000000000001_831d615a.szcp new file mode 100644 index 00000000..a75a1f3a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/checkpoints/checkpoint_00000000000000000001_831d615a.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/checkpoints/checkpoint_00000000000000000002_fbb07e37.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/checkpoints/checkpoint_00000000000000000002_fbb07e37.szcp new file mode 100644 index 00000000..0eea0464 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/checkpoints/checkpoint_00000000000000000002_fbb07e37.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/checkpoints/checkpoint_00000000000000000003_fc552bbc.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/checkpoints/checkpoint_00000000000000000003_fc552bbc.szcp new file mode 100644 index 00000000..9e96dbdf Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_022/checkpoints/checkpoint_00000000000000000003_fc552bbc.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/archive/delta_00000000000000000001_95565453.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/archive/delta_00000000000000000001_95565453.szar new file mode 100644 index 00000000..10febaca Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/archive/delta_00000000000000000001_95565453.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/archive/delta_00000000000000000002_15983aae.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/archive/delta_00000000000000000002_15983aae.szar new file mode 100644 index 00000000..80cbf7ee Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/archive/delta_00000000000000000002_15983aae.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/archive/delta_00000000000000000003_eddd8dfa.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/archive/delta_00000000000000000003_eddd8dfa.szar new file mode 100644 index 00000000..693afa25 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/archive/delta_00000000000000000003_eddd8dfa.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/checkpoints/checkpoint_00000000000000000001_0840cd93.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/checkpoints/checkpoint_00000000000000000001_0840cd93.szcp new file mode 100644 index 00000000..f1e7bad7 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/checkpoints/checkpoint_00000000000000000001_0840cd93.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/checkpoints/checkpoint_00000000000000000002_a5a9c340.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/checkpoints/checkpoint_00000000000000000002_a5a9c340.szcp new file mode 100644 index 00000000..d4023942 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/checkpoints/checkpoint_00000000000000000002_a5a9c340.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/checkpoints/checkpoint_00000000000000000003_413be517.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/checkpoints/checkpoint_00000000000000000003_413be517.szcp new file mode 100644 index 00000000..b98daeef Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_023/checkpoints/checkpoint_00000000000000000003_413be517.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/archive/delta_00000000000000000001_843ead95.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/archive/delta_00000000000000000001_843ead95.szar new file mode 100644 index 00000000..5b5805bb Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/archive/delta_00000000000000000001_843ead95.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/archive/delta_00000000000000000002_2977916c.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/archive/delta_00000000000000000002_2977916c.szar new file mode 100644 index 00000000..f49ec528 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/archive/delta_00000000000000000002_2977916c.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/archive/delta_00000000000000000003_63b4d223.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/archive/delta_00000000000000000003_63b4d223.szar new file mode 100644 index 00000000..2c22da39 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/archive/delta_00000000000000000003_63b4d223.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/checkpoints/checkpoint_00000000000000000001_257dfeab.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/checkpoints/checkpoint_00000000000000000001_257dfeab.szcp new file mode 100644 index 00000000..aa10a421 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/checkpoints/checkpoint_00000000000000000001_257dfeab.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/checkpoints/checkpoint_00000000000000000002_26df4645.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/checkpoints/checkpoint_00000000000000000002_26df4645.szcp new file mode 100644 index 00000000..a2cd920f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/checkpoints/checkpoint_00000000000000000002_26df4645.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/checkpoints/checkpoint_00000000000000000003_edfe077b.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/checkpoints/checkpoint_00000000000000000003_edfe077b.szcp new file mode 100644 index 00000000..21490b19 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_024/checkpoints/checkpoint_00000000000000000003_edfe077b.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/archive/delta_00000000000000000001_4743ec72.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/archive/delta_00000000000000000001_4743ec72.szar new file mode 100644 index 00000000..5586b2d5 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/archive/delta_00000000000000000001_4743ec72.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/archive/delta_00000000000000000002_1541dc07.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/archive/delta_00000000000000000002_1541dc07.szar new file mode 100644 index 00000000..0cd9c02a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/archive/delta_00000000000000000002_1541dc07.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/archive/delta_00000000000000000003_649a1ab7.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/archive/delta_00000000000000000003_649a1ab7.szar new file mode 100644 index 00000000..ae11a2f8 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/archive/delta_00000000000000000003_649a1ab7.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/checkpoints/checkpoint_00000000000000000001_e0ebfd85.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/checkpoints/checkpoint_00000000000000000001_e0ebfd85.szcp new file mode 100644 index 00000000..ec8d4558 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/checkpoints/checkpoint_00000000000000000001_e0ebfd85.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/checkpoints/checkpoint_00000000000000000002_e038c329.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/checkpoints/checkpoint_00000000000000000002_e038c329.szcp new file mode 100644 index 00000000..ecb40a07 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/checkpoints/checkpoint_00000000000000000002_e038c329.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/checkpoints/checkpoint_00000000000000000003_2862d847.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/checkpoints/checkpoint_00000000000000000003_2862d847.szcp new file mode 100644 index 00000000..044e382d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_025/checkpoints/checkpoint_00000000000000000003_2862d847.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/archive/delta_00000000000000000001_b51d8812.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/archive/delta_00000000000000000001_b51d8812.szar new file mode 100644 index 00000000..c07ce908 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/archive/delta_00000000000000000001_b51d8812.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/archive/delta_00000000000000000002_b1d97ca5.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/archive/delta_00000000000000000002_b1d97ca5.szar new file mode 100644 index 00000000..d9007e62 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/archive/delta_00000000000000000002_b1d97ca5.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/archive/delta_00000000000000000003_94df8e68.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/archive/delta_00000000000000000003_94df8e68.szar new file mode 100644 index 00000000..9a978f73 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/archive/delta_00000000000000000003_94df8e68.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/checkpoints/checkpoint_00000000000000000001_19b93e5b.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/checkpoints/checkpoint_00000000000000000001_19b93e5b.szcp new file mode 100644 index 00000000..7e57e9ff Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/checkpoints/checkpoint_00000000000000000001_19b93e5b.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/checkpoints/checkpoint_00000000000000000002_f40f8cae.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/checkpoints/checkpoint_00000000000000000002_f40f8cae.szcp new file mode 100644 index 00000000..0e4c52b9 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/checkpoints/checkpoint_00000000000000000002_f40f8cae.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/checkpoints/checkpoint_00000000000000000003_25d14c28.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/checkpoints/checkpoint_00000000000000000003_25d14c28.szcp new file mode 100644 index 00000000..fd675994 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_026/checkpoints/checkpoint_00000000000000000003_25d14c28.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/archive/delta_00000000000000000001_90192c8f.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/archive/delta_00000000000000000001_90192c8f.szar new file mode 100644 index 00000000..384639d8 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/archive/delta_00000000000000000001_90192c8f.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/archive/delta_00000000000000000002_2631dea6.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/archive/delta_00000000000000000002_2631dea6.szar new file mode 100644 index 00000000..38c9ce84 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/archive/delta_00000000000000000002_2631dea6.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/archive/delta_00000000000000000003_89c93043.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/archive/delta_00000000000000000003_89c93043.szar new file mode 100644 index 00000000..492456df Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/archive/delta_00000000000000000003_89c93043.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/checkpoints/checkpoint_00000000000000000001_3462965b.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/checkpoints/checkpoint_00000000000000000001_3462965b.szcp new file mode 100644 index 00000000..651a5b32 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/checkpoints/checkpoint_00000000000000000001_3462965b.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/checkpoints/checkpoint_00000000000000000002_4e224ffe.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/checkpoints/checkpoint_00000000000000000002_4e224ffe.szcp new file mode 100644 index 00000000..c23dbf58 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/checkpoints/checkpoint_00000000000000000002_4e224ffe.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/checkpoints/checkpoint_00000000000000000003_efc4c890.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/checkpoints/checkpoint_00000000000000000003_efc4c890.szcp new file mode 100644 index 00000000..a199540c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_027/checkpoints/checkpoint_00000000000000000003_efc4c890.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/archive/delta_00000000000000000001_d3d6221f.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/archive/delta_00000000000000000001_d3d6221f.szar new file mode 100644 index 00000000..9ab1524d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/archive/delta_00000000000000000001_d3d6221f.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/archive/delta_00000000000000000002_c3615484.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/archive/delta_00000000000000000002_c3615484.szar new file mode 100644 index 00000000..20955a78 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/archive/delta_00000000000000000002_c3615484.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/archive/delta_00000000000000000003_ef4658fd.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/archive/delta_00000000000000000003_ef4658fd.szar new file mode 100644 index 00000000..f815b7be Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/archive/delta_00000000000000000003_ef4658fd.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/archive/delta_00000000000000000004_c426ce23.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/archive/delta_00000000000000000004_c426ce23.szar new file mode 100644 index 00000000..aa55ea34 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/archive/delta_00000000000000000004_c426ce23.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/checkpoints/checkpoint_00000000000000000001_2d7128a9.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/checkpoints/checkpoint_00000000000000000001_2d7128a9.szcp new file mode 100644 index 00000000..c683db7a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/checkpoints/checkpoint_00000000000000000001_2d7128a9.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/checkpoints/checkpoint_00000000000000000002_65a27fa1.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/checkpoints/checkpoint_00000000000000000002_65a27fa1.szcp new file mode 100644 index 00000000..ebd00846 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/checkpoints/checkpoint_00000000000000000002_65a27fa1.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/checkpoints/checkpoint_00000000000000000003_e018a8b8.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/checkpoints/checkpoint_00000000000000000003_e018a8b8.szcp new file mode 100644 index 00000000..fa2c6818 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/checkpoints/checkpoint_00000000000000000003_e018a8b8.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/checkpoints/checkpoint_00000000000000000004_b3612dab.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/checkpoints/checkpoint_00000000000000000004_b3612dab.szcp new file mode 100644 index 00000000..b2991100 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_028/checkpoints/checkpoint_00000000000000000004_b3612dab.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/archive/delta_00000000000000000001_f1b37500.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/archive/delta_00000000000000000001_f1b37500.szar new file mode 100644 index 00000000..2e595b2c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/archive/delta_00000000000000000001_f1b37500.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/archive/delta_00000000000000000002_55c30cbf.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/archive/delta_00000000000000000002_55c30cbf.szar new file mode 100644 index 00000000..f9495307 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/archive/delta_00000000000000000002_55c30cbf.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/archive/delta_00000000000000000003_74c404ef.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/archive/delta_00000000000000000003_74c404ef.szar new file mode 100644 index 00000000..20f92ef6 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/archive/delta_00000000000000000003_74c404ef.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/checkpoints/checkpoint_00000000000000000001_8ad1d884.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/checkpoints/checkpoint_00000000000000000001_8ad1d884.szcp new file mode 100644 index 00000000..cf830ef8 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/checkpoints/checkpoint_00000000000000000001_8ad1d884.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/checkpoints/checkpoint_00000000000000000002_cac7d470.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/checkpoints/checkpoint_00000000000000000002_cac7d470.szcp new file mode 100644 index 00000000..e13f51eb Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/checkpoints/checkpoint_00000000000000000002_cac7d470.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/checkpoints/checkpoint_00000000000000000003_bd798762.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/checkpoints/checkpoint_00000000000000000003_bd798762.szcp new file mode 100644 index 00000000..b106628b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_029/checkpoints/checkpoint_00000000000000000003_bd798762.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000001_7b6616ca.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000001_7b6616ca.szar new file mode 100644 index 00000000..5540f54d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000001_7b6616ca.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000002_8dac5c7f.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000002_8dac5c7f.szar new file mode 100644 index 00000000..4899a92a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000002_8dac5c7f.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000003_ffd8cee4.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000003_ffd8cee4.szar new file mode 100644 index 00000000..6c1d0dae Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000003_ffd8cee4.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000004_bb2c64fc.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000004_bb2c64fc.szar new file mode 100644 index 00000000..f5d91dfa Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000004_bb2c64fc.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000005_5a9337d5.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000005_5a9337d5.szar new file mode 100644 index 00000000..34e241c2 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000005_5a9337d5.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000006_240de7c6.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000006_240de7c6.szar new file mode 100644 index 00000000..64c51c38 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000006_240de7c6.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000007_3ec32eb8.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000007_3ec32eb8.szar new file mode 100644 index 00000000..8786c9af Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/archive/delta_00000000000000000007_3ec32eb8.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000001_2d55908a.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000001_2d55908a.szcp new file mode 100644 index 00000000..ab5bb141 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000001_2d55908a.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000002_c6619f64.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000002_c6619f64.szcp new file mode 100644 index 00000000..e0c6641b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000002_c6619f64.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000003_50b243cb.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000003_50b243cb.szcp new file mode 100644 index 00000000..65d84b5d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000003_50b243cb.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000004_5ad8bb7a.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000004_5ad8bb7a.szcp new file mode 100644 index 00000000..86c5eff7 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000004_5ad8bb7a.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000005_c54eda34.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000005_c54eda34.szcp new file mode 100644 index 00000000..69751b48 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000005_c54eda34.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000006_92237912.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000006_92237912.szcp new file mode 100644 index 00000000..07a94938 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000006_92237912.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000007_39595b4f.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000007_39595b4f.szcp new file mode 100644 index 00000000..84725fdb Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_030/checkpoints/checkpoint_00000000000000000007_39595b4f.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000001_90b63153.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000001_90b63153.szar new file mode 100644 index 00000000..0723e5ae Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000001_90b63153.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000002_81716d8f.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000002_81716d8f.szar new file mode 100644 index 00000000..6d1d3f73 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000002_81716d8f.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000003_0e6435de.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000003_0e6435de.szar new file mode 100644 index 00000000..6733d457 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000003_0e6435de.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000004_b029efd5.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000004_b029efd5.szar new file mode 100644 index 00000000..cdf74978 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000004_b029efd5.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000005_49dfda76.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000005_49dfda76.szar new file mode 100644 index 00000000..ae850558 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000005_49dfda76.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000006_5ec45929.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000006_5ec45929.szar new file mode 100644 index 00000000..4e65b148 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000006_5ec45929.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000007_311e1d71.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000007_311e1d71.szar new file mode 100644 index 00000000..4e5be034 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/archive/delta_00000000000000000007_311e1d71.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000001_134d84ea.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000001_134d84ea.szcp new file mode 100644 index 00000000..17d2eff9 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000001_134d84ea.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000002_d1a86c23.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000002_d1a86c23.szcp new file mode 100644 index 00000000..12477d60 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000002_d1a86c23.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000003_5730a69b.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000003_5730a69b.szcp new file mode 100644 index 00000000..11cce07c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000003_5730a69b.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000004_55aa03a9.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000004_55aa03a9.szcp new file mode 100644 index 00000000..9c9e230e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000004_55aa03a9.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000005_bea3b7cb.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000005_bea3b7cb.szcp new file mode 100644 index 00000000..df3683c1 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000005_bea3b7cb.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000006_e94f623f.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000006_e94f623f.szcp new file mode 100644 index 00000000..37c29898 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000006_e94f623f.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000007_a08a6d98.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000007_a08a6d98.szcp new file mode 100644 index 00000000..929b9826 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_031/checkpoints/checkpoint_00000000000000000007_a08a6d98.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/archive/delta_00000000000000000001_05f45fd1.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/archive/delta_00000000000000000001_05f45fd1.szar new file mode 100644 index 00000000..e3cfe937 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/archive/delta_00000000000000000001_05f45fd1.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/archive/delta_00000000000000000002_1e3f5096.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/archive/delta_00000000000000000002_1e3f5096.szar new file mode 100644 index 00000000..15b4a09d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/archive/delta_00000000000000000002_1e3f5096.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/archive/delta_00000000000000000003_d96cca9f.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/archive/delta_00000000000000000003_d96cca9f.szar new file mode 100644 index 00000000..7aafd3f8 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/archive/delta_00000000000000000003_d96cca9f.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/checkpoints/checkpoint_00000000000000000001_32c9d8d1.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/checkpoints/checkpoint_00000000000000000001_32c9d8d1.szcp new file mode 100644 index 00000000..2d231003 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/checkpoints/checkpoint_00000000000000000001_32c9d8d1.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/checkpoints/checkpoint_00000000000000000002_79283a4f.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/checkpoints/checkpoint_00000000000000000002_79283a4f.szcp new file mode 100644 index 00000000..44e588d5 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/checkpoints/checkpoint_00000000000000000002_79283a4f.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/checkpoints/checkpoint_00000000000000000003_fd5aaa29.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/checkpoints/checkpoint_00000000000000000003_fd5aaa29.szcp new file mode 100644 index 00000000..974e1a61 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_032/checkpoints/checkpoint_00000000000000000003_fd5aaa29.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000001_16acbbad.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000001_16acbbad.szar new file mode 100644 index 00000000..71ab43c5 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000001_16acbbad.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000002_1c169533.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000002_1c169533.szar new file mode 100644 index 00000000..1c3a187f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000002_1c169533.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000003_4fbf5053.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000003_4fbf5053.szar new file mode 100644 index 00000000..70c1009c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000003_4fbf5053.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000004_c37f00f4.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000004_c37f00f4.szar new file mode 100644 index 00000000..4a0aa0cd Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000004_c37f00f4.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000005_89ffccd3.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000005_89ffccd3.szar new file mode 100644 index 00000000..7309c867 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000005_89ffccd3.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000006_1cc82f3f.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000006_1cc82f3f.szar new file mode 100644 index 00000000..0d8f777e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000006_1cc82f3f.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000007_9bc2123c.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000007_9bc2123c.szar new file mode 100644 index 00000000..be6ea2b0 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/archive/delta_00000000000000000007_9bc2123c.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000001_67edddbe.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000001_67edddbe.szcp new file mode 100644 index 00000000..08f005b3 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000001_67edddbe.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000002_b0b7d01c.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000002_b0b7d01c.szcp new file mode 100644 index 00000000..bbb5d122 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000002_b0b7d01c.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000003_6aab0862.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000003_6aab0862.szcp new file mode 100644 index 00000000..86af3fc1 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000003_6aab0862.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000004_643f3302.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000004_643f3302.szcp new file mode 100644 index 00000000..a6235c5b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000004_643f3302.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000005_0b1cee1b.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000005_0b1cee1b.szcp new file mode 100644 index 00000000..d322e379 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000005_0b1cee1b.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000006_6251887f.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000006_6251887f.szcp new file mode 100644 index 00000000..e71991eb Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000006_6251887f.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000007_a3ba33bf.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000007_a3ba33bf.szcp new file mode 100644 index 00000000..f570d4ba Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_033/checkpoints/checkpoint_00000000000000000007_a3ba33bf.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/archive/delta_00000000000000000001_455f2b58.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/archive/delta_00000000000000000001_455f2b58.szar new file mode 100644 index 00000000..67ea1c37 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/archive/delta_00000000000000000001_455f2b58.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/archive/delta_00000000000000000002_d3fdb335.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/archive/delta_00000000000000000002_d3fdb335.szar new file mode 100644 index 00000000..96e62b90 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/archive/delta_00000000000000000002_d3fdb335.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/archive/delta_00000000000000000003_1e7fcc17.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/archive/delta_00000000000000000003_1e7fcc17.szar new file mode 100644 index 00000000..e7954e51 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/archive/delta_00000000000000000003_1e7fcc17.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/checkpoints/checkpoint_00000000000000000001_30e2c584.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/checkpoints/checkpoint_00000000000000000001_30e2c584.szcp new file mode 100644 index 00000000..755e15fc Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/checkpoints/checkpoint_00000000000000000001_30e2c584.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/checkpoints/checkpoint_00000000000000000002_81cf3ef7.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/checkpoints/checkpoint_00000000000000000002_81cf3ef7.szcp new file mode 100644 index 00000000..1c837041 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/checkpoints/checkpoint_00000000000000000002_81cf3ef7.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/checkpoints/checkpoint_00000000000000000003_099159d6.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/checkpoints/checkpoint_00000000000000000003_099159d6.szcp new file mode 100644 index 00000000..a77cd719 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_034/checkpoints/checkpoint_00000000000000000003_099159d6.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/archive/delta_00000000000000000001_e1342912.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/archive/delta_00000000000000000001_e1342912.szar new file mode 100644 index 00000000..0b0ecd90 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/archive/delta_00000000000000000001_e1342912.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/archive/delta_00000000000000000002_61f73b0a.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/archive/delta_00000000000000000002_61f73b0a.szar new file mode 100644 index 00000000..126c9eed Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/archive/delta_00000000000000000002_61f73b0a.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/archive/delta_00000000000000000003_ea5eb83e.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/archive/delta_00000000000000000003_ea5eb83e.szar new file mode 100644 index 00000000..7b599423 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/archive/delta_00000000000000000003_ea5eb83e.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/archive/delta_00000000000000000004_acbd05e1.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/archive/delta_00000000000000000004_acbd05e1.szar new file mode 100644 index 00000000..50355784 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/archive/delta_00000000000000000004_acbd05e1.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/checkpoints/checkpoint_00000000000000000001_fcf58bfc.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/checkpoints/checkpoint_00000000000000000001_fcf58bfc.szcp new file mode 100644 index 00000000..19b852c6 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/checkpoints/checkpoint_00000000000000000001_fcf58bfc.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/checkpoints/checkpoint_00000000000000000002_57f72c66.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/checkpoints/checkpoint_00000000000000000002_57f72c66.szcp new file mode 100644 index 00000000..f15c61ae Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/checkpoints/checkpoint_00000000000000000002_57f72c66.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/checkpoints/checkpoint_00000000000000000003_0a014b00.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/checkpoints/checkpoint_00000000000000000003_0a014b00.szcp new file mode 100644 index 00000000..72412baf Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/checkpoints/checkpoint_00000000000000000003_0a014b00.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/checkpoints/checkpoint_00000000000000000004_404613c9.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/checkpoints/checkpoint_00000000000000000004_404613c9.szcp new file mode 100644 index 00000000..2883f52f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_035/checkpoints/checkpoint_00000000000000000004_404613c9.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/archive/delta_00000000000000000001_4825ed16.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/archive/delta_00000000000000000001_4825ed16.szar new file mode 100644 index 00000000..34ade59f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/archive/delta_00000000000000000001_4825ed16.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/archive/delta_00000000000000000002_071930bd.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/archive/delta_00000000000000000002_071930bd.szar new file mode 100644 index 00000000..4f27efa2 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/archive/delta_00000000000000000002_071930bd.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/archive/delta_00000000000000000003_3be94a3e.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/archive/delta_00000000000000000003_3be94a3e.szar new file mode 100644 index 00000000..6c97fbc0 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/archive/delta_00000000000000000003_3be94a3e.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/archive/delta_00000000000000000004_3b211278.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/archive/delta_00000000000000000004_3b211278.szar new file mode 100644 index 00000000..ffe97f38 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/archive/delta_00000000000000000004_3b211278.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/checkpoints/checkpoint_00000000000000000001_4397c952.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/checkpoints/checkpoint_00000000000000000001_4397c952.szcp new file mode 100644 index 00000000..0eeed4d5 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/checkpoints/checkpoint_00000000000000000001_4397c952.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/checkpoints/checkpoint_00000000000000000002_323a213a.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/checkpoints/checkpoint_00000000000000000002_323a213a.szcp new file mode 100644 index 00000000..1d8a129b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/checkpoints/checkpoint_00000000000000000002_323a213a.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/checkpoints/checkpoint_00000000000000000003_73499766.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/checkpoints/checkpoint_00000000000000000003_73499766.szcp new file mode 100644 index 00000000..ac6244cf Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/checkpoints/checkpoint_00000000000000000003_73499766.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/checkpoints/checkpoint_00000000000000000004_187d6256.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/checkpoints/checkpoint_00000000000000000004_187d6256.szcp new file mode 100644 index 00000000..d83eb2cf Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_036/checkpoints/checkpoint_00000000000000000004_187d6256.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/archive/delta_00000000000000000001_7e3b77f3.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/archive/delta_00000000000000000001_7e3b77f3.szar new file mode 100644 index 00000000..281f0ef8 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/archive/delta_00000000000000000001_7e3b77f3.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/archive/delta_00000000000000000002_c23f3a10.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/archive/delta_00000000000000000002_c23f3a10.szar new file mode 100644 index 00000000..2911555e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/archive/delta_00000000000000000002_c23f3a10.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/archive/delta_00000000000000000003_95e29e34.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/archive/delta_00000000000000000003_95e29e34.szar new file mode 100644 index 00000000..275bdff6 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/archive/delta_00000000000000000003_95e29e34.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/checkpoints/checkpoint_00000000000000000001_8bfe0581.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/checkpoints/checkpoint_00000000000000000001_8bfe0581.szcp new file mode 100644 index 00000000..c0971415 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/checkpoints/checkpoint_00000000000000000001_8bfe0581.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/checkpoints/checkpoint_00000000000000000002_7b529f8a.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/checkpoints/checkpoint_00000000000000000002_7b529f8a.szcp new file mode 100644 index 00000000..2797e042 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/checkpoints/checkpoint_00000000000000000002_7b529f8a.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/checkpoints/checkpoint_00000000000000000003_bb4af7c4.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/checkpoints/checkpoint_00000000000000000003_bb4af7c4.szcp new file mode 100644 index 00000000..503577c7 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_037/checkpoints/checkpoint_00000000000000000003_bb4af7c4.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/archive/delta_00000000000000000001_8db5ded7.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/archive/delta_00000000000000000001_8db5ded7.szar new file mode 100644 index 00000000..9a5ffd9b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/archive/delta_00000000000000000001_8db5ded7.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/archive/delta_00000000000000000002_f95bbdf9.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/archive/delta_00000000000000000002_f95bbdf9.szar new file mode 100644 index 00000000..eda3dc55 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/archive/delta_00000000000000000002_f95bbdf9.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/archive/delta_00000000000000000003_d18c85ce.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/archive/delta_00000000000000000003_d18c85ce.szar new file mode 100644 index 00000000..d46fb623 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/archive/delta_00000000000000000003_d18c85ce.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/archive/delta_00000000000000000004_7f81a821.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/archive/delta_00000000000000000004_7f81a821.szar new file mode 100644 index 00000000..38b51b12 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/archive/delta_00000000000000000004_7f81a821.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/checkpoints/checkpoint_00000000000000000001_f4b96fe2.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/checkpoints/checkpoint_00000000000000000001_f4b96fe2.szcp new file mode 100644 index 00000000..6d3b0228 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/checkpoints/checkpoint_00000000000000000001_f4b96fe2.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/checkpoints/checkpoint_00000000000000000002_e25d5b81.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/checkpoints/checkpoint_00000000000000000002_e25d5b81.szcp new file mode 100644 index 00000000..ad352186 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/checkpoints/checkpoint_00000000000000000002_e25d5b81.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/checkpoints/checkpoint_00000000000000000003_9a18f2b7.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/checkpoints/checkpoint_00000000000000000003_9a18f2b7.szcp new file mode 100644 index 00000000..0fed3527 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/checkpoints/checkpoint_00000000000000000003_9a18f2b7.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/checkpoints/checkpoint_00000000000000000004_9590b4f4.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/checkpoints/checkpoint_00000000000000000004_9590b4f4.szcp new file mode 100644 index 00000000..e5de0b0a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_038/checkpoints/checkpoint_00000000000000000004_9590b4f4.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/archive/delta_00000000000000000001_897f4dc1.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/archive/delta_00000000000000000001_897f4dc1.szar new file mode 100644 index 00000000..b37220bb Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/archive/delta_00000000000000000001_897f4dc1.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/archive/delta_00000000000000000002_dd3c3589.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/archive/delta_00000000000000000002_dd3c3589.szar new file mode 100644 index 00000000..bad50523 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/archive/delta_00000000000000000002_dd3c3589.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/archive/delta_00000000000000000003_9c174fc3.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/archive/delta_00000000000000000003_9c174fc3.szar new file mode 100644 index 00000000..2f9419b2 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/archive/delta_00000000000000000003_9c174fc3.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/archive/delta_00000000000000000004_4cd67025.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/archive/delta_00000000000000000004_4cd67025.szar new file mode 100644 index 00000000..b29dee06 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/archive/delta_00000000000000000004_4cd67025.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/archive/delta_00000000000000000005_380c0ad8.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/archive/delta_00000000000000000005_380c0ad8.szar new file mode 100644 index 00000000..8dd404a4 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/archive/delta_00000000000000000005_380c0ad8.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/checkpoints/checkpoint_00000000000000000001_71289149.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/checkpoints/checkpoint_00000000000000000001_71289149.szcp new file mode 100644 index 00000000..97ca1fd9 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/checkpoints/checkpoint_00000000000000000001_71289149.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/checkpoints/checkpoint_00000000000000000002_5e9876ff.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/checkpoints/checkpoint_00000000000000000002_5e9876ff.szcp new file mode 100644 index 00000000..588ca68e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/checkpoints/checkpoint_00000000000000000002_5e9876ff.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/checkpoints/checkpoint_00000000000000000003_2ae74ddf.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/checkpoints/checkpoint_00000000000000000003_2ae74ddf.szcp new file mode 100644 index 00000000..407df35e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/checkpoints/checkpoint_00000000000000000003_2ae74ddf.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/checkpoints/checkpoint_00000000000000000004_e2fd1c0c.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/checkpoints/checkpoint_00000000000000000004_e2fd1c0c.szcp new file mode 100644 index 00000000..14667754 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/checkpoints/checkpoint_00000000000000000004_e2fd1c0c.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/checkpoints/checkpoint_00000000000000000005_2c682a8a.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/checkpoints/checkpoint_00000000000000000005_2c682a8a.szcp new file mode 100644 index 00000000..cf9723de Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_039/checkpoints/checkpoint_00000000000000000005_2c682a8a.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/archive/delta_00000000000000000001_7f0590a7.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/archive/delta_00000000000000000001_7f0590a7.szar new file mode 100644 index 00000000..f94e7f5c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/archive/delta_00000000000000000001_7f0590a7.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/archive/delta_00000000000000000002_e06590df.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/archive/delta_00000000000000000002_e06590df.szar new file mode 100644 index 00000000..3cea5574 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/archive/delta_00000000000000000002_e06590df.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/archive/delta_00000000000000000003_5e79fcac.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/archive/delta_00000000000000000003_5e79fcac.szar new file mode 100644 index 00000000..c3b900a4 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/archive/delta_00000000000000000003_5e79fcac.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/archive/delta_00000000000000000004_99b77f2a.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/archive/delta_00000000000000000004_99b77f2a.szar new file mode 100644 index 00000000..80226923 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/archive/delta_00000000000000000004_99b77f2a.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/checkpoints/checkpoint_00000000000000000001_d7091ff3.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/checkpoints/checkpoint_00000000000000000001_d7091ff3.szcp new file mode 100644 index 00000000..28709c6a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/checkpoints/checkpoint_00000000000000000001_d7091ff3.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/checkpoints/checkpoint_00000000000000000002_1ba2556d.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/checkpoints/checkpoint_00000000000000000002_1ba2556d.szcp new file mode 100644 index 00000000..3e492460 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/checkpoints/checkpoint_00000000000000000002_1ba2556d.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/checkpoints/checkpoint_00000000000000000003_0196366d.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/checkpoints/checkpoint_00000000000000000003_0196366d.szcp new file mode 100644 index 00000000..d8b3351a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/checkpoints/checkpoint_00000000000000000003_0196366d.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/checkpoints/checkpoint_00000000000000000004_c34bdc71.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/checkpoints/checkpoint_00000000000000000004_c34bdc71.szcp new file mode 100644 index 00000000..355c1e6c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_040/checkpoints/checkpoint_00000000000000000004_c34bdc71.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/archive/delta_00000000000000000001_212f9bc9.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/archive/delta_00000000000000000001_212f9bc9.szar new file mode 100644 index 00000000..d876da43 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/archive/delta_00000000000000000001_212f9bc9.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/archive/delta_00000000000000000002_63c2e448.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/archive/delta_00000000000000000002_63c2e448.szar new file mode 100644 index 00000000..d8c552fb Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/archive/delta_00000000000000000002_63c2e448.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/archive/delta_00000000000000000003_e47a8a0a.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/archive/delta_00000000000000000003_e47a8a0a.szar new file mode 100644 index 00000000..a3f7b17f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/archive/delta_00000000000000000003_e47a8a0a.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/archive/delta_00000000000000000004_bce144e3.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/archive/delta_00000000000000000004_bce144e3.szar new file mode 100644 index 00000000..76aab5da Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/archive/delta_00000000000000000004_bce144e3.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/checkpoints/checkpoint_00000000000000000001_dc952155.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/checkpoints/checkpoint_00000000000000000001_dc952155.szcp new file mode 100644 index 00000000..1771455b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/checkpoints/checkpoint_00000000000000000001_dc952155.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/checkpoints/checkpoint_00000000000000000002_e6b2f6f0.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/checkpoints/checkpoint_00000000000000000002_e6b2f6f0.szcp new file mode 100644 index 00000000..e71e7f90 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/checkpoints/checkpoint_00000000000000000002_e6b2f6f0.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/checkpoints/checkpoint_00000000000000000003_950e2d82.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/checkpoints/checkpoint_00000000000000000003_950e2d82.szcp new file mode 100644 index 00000000..11da5930 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/checkpoints/checkpoint_00000000000000000003_950e2d82.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/checkpoints/checkpoint_00000000000000000004_76b068bc.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/checkpoints/checkpoint_00000000000000000004_76b068bc.szcp new file mode 100644 index 00000000..a5e16dab Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_041/checkpoints/checkpoint_00000000000000000004_76b068bc.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000001_2dd928e8.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000001_2dd928e8.szar new file mode 100644 index 00000000..120b6a15 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000001_2dd928e8.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000002_76ee6d81.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000002_76ee6d81.szar new file mode 100644 index 00000000..074d2e0d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000002_76ee6d81.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000003_9d92b1f8.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000003_9d92b1f8.szar new file mode 100644 index 00000000..8ebdc602 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000003_9d92b1f8.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000004_4bc2cd2d.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000004_4bc2cd2d.szar new file mode 100644 index 00000000..8064f219 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000004_4bc2cd2d.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000005_1cb31b59.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000005_1cb31b59.szar new file mode 100644 index 00000000..f9d62baa Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000005_1cb31b59.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000006_0bab37b3.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000006_0bab37b3.szar new file mode 100644 index 00000000..8bc9201c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000006_0bab37b3.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000007_42a22618.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000007_42a22618.szar new file mode 100644 index 00000000..99dfa3cc Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/archive/delta_00000000000000000007_42a22618.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000001_b500ab25.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000001_b500ab25.szcp new file mode 100644 index 00000000..fa4664e5 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000001_b500ab25.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000002_fbaceb0a.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000002_fbaceb0a.szcp new file mode 100644 index 00000000..30859f6f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000002_fbaceb0a.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000003_0f81615e.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000003_0f81615e.szcp new file mode 100644 index 00000000..22a77fb8 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000003_0f81615e.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000004_271347f2.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000004_271347f2.szcp new file mode 100644 index 00000000..06e92dc6 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000004_271347f2.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000005_32f1c00e.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000005_32f1c00e.szcp new file mode 100644 index 00000000..078cc9d2 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000005_32f1c00e.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000006_38f354a8.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000006_38f354a8.szcp new file mode 100644 index 00000000..4dfd6564 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000006_38f354a8.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000007_1f00a21c.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000007_1f00a21c.szcp new file mode 100644 index 00000000..d3a9704a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_042/checkpoints/checkpoint_00000000000000000007_1f00a21c.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/archive/delta_00000000000000000001_0ebdcd03.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/archive/delta_00000000000000000001_0ebdcd03.szar new file mode 100644 index 00000000..dc8a4065 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/archive/delta_00000000000000000001_0ebdcd03.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/archive/delta_00000000000000000002_9b0f6246.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/archive/delta_00000000000000000002_9b0f6246.szar new file mode 100644 index 00000000..fd314094 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/archive/delta_00000000000000000002_9b0f6246.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/archive/delta_00000000000000000003_6aa79591.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/archive/delta_00000000000000000003_6aa79591.szar new file mode 100644 index 00000000..e88ae8d6 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/archive/delta_00000000000000000003_6aa79591.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/checkpoints/checkpoint_00000000000000000001_dcdb064f.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/checkpoints/checkpoint_00000000000000000001_dcdb064f.szcp new file mode 100644 index 00000000..0480b0c7 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/checkpoints/checkpoint_00000000000000000001_dcdb064f.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/checkpoints/checkpoint_00000000000000000002_6b111b19.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/checkpoints/checkpoint_00000000000000000002_6b111b19.szcp new file mode 100644 index 00000000..3cd77794 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/checkpoints/checkpoint_00000000000000000002_6b111b19.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/checkpoints/checkpoint_00000000000000000003_57587303.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/checkpoints/checkpoint_00000000000000000003_57587303.szcp new file mode 100644 index 00000000..5ae2d3d1 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_043/checkpoints/checkpoint_00000000000000000003_57587303.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000001_10099613.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000001_10099613.szar new file mode 100644 index 00000000..88f58c1d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000001_10099613.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000002_561b43cd.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000002_561b43cd.szar new file mode 100644 index 00000000..6ce734fe Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000002_561b43cd.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000003_dcb1d1ef.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000003_dcb1d1ef.szar new file mode 100644 index 00000000..e9afcee8 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000003_dcb1d1ef.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000004_2e770650.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000004_2e770650.szar new file mode 100644 index 00000000..c5055174 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000004_2e770650.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000005_ee4a9c31.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000005_ee4a9c31.szar new file mode 100644 index 00000000..550b9872 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000005_ee4a9c31.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000006_a8c9a294.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000006_a8c9a294.szar new file mode 100644 index 00000000..6a70e3d7 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/archive/delta_00000000000000000006_a8c9a294.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000001_5d0cc1a4.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000001_5d0cc1a4.szcp new file mode 100644 index 00000000..2298672e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000001_5d0cc1a4.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000002_d466465b.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000002_d466465b.szcp new file mode 100644 index 00000000..ae27785e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000002_d466465b.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000003_9e4eca80.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000003_9e4eca80.szcp new file mode 100644 index 00000000..68d31ff5 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000003_9e4eca80.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000004_c505d085.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000004_c505d085.szcp new file mode 100644 index 00000000..2e13e81b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000004_c505d085.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000005_81b2e36a.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000005_81b2e36a.szcp new file mode 100644 index 00000000..229fc7a4 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000005_81b2e36a.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000006_a92f9aa9.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000006_a92f9aa9.szcp new file mode 100644 index 00000000..c860e4eb Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_044/checkpoints/checkpoint_00000000000000000006_a92f9aa9.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000001_02f25bab.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000001_02f25bab.szar new file mode 100644 index 00000000..f5898ef9 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000001_02f25bab.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000002_87b704fc.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000002_87b704fc.szar new file mode 100644 index 00000000..2807ece9 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000002_87b704fc.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000003_68abcef7.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000003_68abcef7.szar new file mode 100644 index 00000000..1f829d28 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000003_68abcef7.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000004_925857d6.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000004_925857d6.szar new file mode 100644 index 00000000..17662a0b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000004_925857d6.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000005_784b1cd6.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000005_784b1cd6.szar new file mode 100644 index 00000000..be608b56 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000005_784b1cd6.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000006_73a6fa2f.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000006_73a6fa2f.szar new file mode 100644 index 00000000..f6ca4f6a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/archive/delta_00000000000000000006_73a6fa2f.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000001_c5e23df2.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000001_c5e23df2.szcp new file mode 100644 index 00000000..47240784 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000001_c5e23df2.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000002_d026eaf6.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000002_d026eaf6.szcp new file mode 100644 index 00000000..a882209e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000002_d026eaf6.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000003_83cb5f49.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000003_83cb5f49.szcp new file mode 100644 index 00000000..5f10165d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000003_83cb5f49.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000004_2f4f97ac.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000004_2f4f97ac.szcp new file mode 100644 index 00000000..971dfcda Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000004_2f4f97ac.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000005_087c1466.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000005_087c1466.szcp new file mode 100644 index 00000000..3747eb39 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000005_087c1466.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000006_6e578a94.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000006_6e578a94.szcp new file mode 100644 index 00000000..694d595d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_045/checkpoints/checkpoint_00000000000000000006_6e578a94.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/archive/delta_00000000000000000001_ff5f9add.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/archive/delta_00000000000000000001_ff5f9add.szar new file mode 100644 index 00000000..a72c747d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/archive/delta_00000000000000000001_ff5f9add.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/archive/delta_00000000000000000002_ff4ff14e.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/archive/delta_00000000000000000002_ff4ff14e.szar new file mode 100644 index 00000000..88476d59 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/archive/delta_00000000000000000002_ff4ff14e.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/archive/delta_00000000000000000003_afaf1730.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/archive/delta_00000000000000000003_afaf1730.szar new file mode 100644 index 00000000..cc5275f8 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/archive/delta_00000000000000000003_afaf1730.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/checkpoints/checkpoint_00000000000000000001_fae968db.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/checkpoints/checkpoint_00000000000000000001_fae968db.szcp new file mode 100644 index 00000000..d791f498 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/checkpoints/checkpoint_00000000000000000001_fae968db.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/checkpoints/checkpoint_00000000000000000002_7a28eac2.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/checkpoints/checkpoint_00000000000000000002_7a28eac2.szcp new file mode 100644 index 00000000..5abc8041 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/checkpoints/checkpoint_00000000000000000002_7a28eac2.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/checkpoints/checkpoint_00000000000000000003_9ac792ef.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/checkpoints/checkpoint_00000000000000000003_9ac792ef.szcp new file mode 100644 index 00000000..8396198c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_046/checkpoints/checkpoint_00000000000000000003_9ac792ef.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/archive/delta_00000000000000000001_0538381b.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/archive/delta_00000000000000000001_0538381b.szar new file mode 100644 index 00000000..6eac08df Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/archive/delta_00000000000000000001_0538381b.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/archive/delta_00000000000000000002_aef711e9.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/archive/delta_00000000000000000002_aef711e9.szar new file mode 100644 index 00000000..7698c375 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/archive/delta_00000000000000000002_aef711e9.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/archive/delta_00000000000000000003_89adea2b.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/archive/delta_00000000000000000003_89adea2b.szar new file mode 100644 index 00000000..60b078d0 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/archive/delta_00000000000000000003_89adea2b.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/archive/delta_00000000000000000004_f78afbbb.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/archive/delta_00000000000000000004_f78afbbb.szar new file mode 100644 index 00000000..9e0def69 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/archive/delta_00000000000000000004_f78afbbb.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/checkpoints/checkpoint_00000000000000000001_91b14ae8.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/checkpoints/checkpoint_00000000000000000001_91b14ae8.szcp new file mode 100644 index 00000000..f40bacc2 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/checkpoints/checkpoint_00000000000000000001_91b14ae8.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/checkpoints/checkpoint_00000000000000000002_5c244315.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/checkpoints/checkpoint_00000000000000000002_5c244315.szcp new file mode 100644 index 00000000..2298b2a0 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/checkpoints/checkpoint_00000000000000000002_5c244315.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/checkpoints/checkpoint_00000000000000000003_4a805475.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/checkpoints/checkpoint_00000000000000000003_4a805475.szcp new file mode 100644 index 00000000..556cdd67 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/checkpoints/checkpoint_00000000000000000003_4a805475.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/checkpoints/checkpoint_00000000000000000004_cca88093.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/checkpoints/checkpoint_00000000000000000004_cca88093.szcp new file mode 100644 index 00000000..8a5583dd Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_047/checkpoints/checkpoint_00000000000000000004_cca88093.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/archive/delta_00000000000000000001_6f2595f0.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/archive/delta_00000000000000000001_6f2595f0.szar new file mode 100644 index 00000000..570a9a50 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/archive/delta_00000000000000000001_6f2595f0.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/archive/delta_00000000000000000002_6fb768be.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/archive/delta_00000000000000000002_6fb768be.szar new file mode 100644 index 00000000..cc28f2ee Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/archive/delta_00000000000000000002_6fb768be.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/archive/delta_00000000000000000003_81da1a15.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/archive/delta_00000000000000000003_81da1a15.szar new file mode 100644 index 00000000..ed2e0a09 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/archive/delta_00000000000000000003_81da1a15.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/archive/delta_00000000000000000004_b3381467.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/archive/delta_00000000000000000004_b3381467.szar new file mode 100644 index 00000000..1d70ed3e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/archive/delta_00000000000000000004_b3381467.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/archive/delta_00000000000000000005_90f4cc98.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/archive/delta_00000000000000000005_90f4cc98.szar new file mode 100644 index 00000000..7dd8d706 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/archive/delta_00000000000000000005_90f4cc98.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/checkpoints/checkpoint_00000000000000000001_1d14d0d9.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/checkpoints/checkpoint_00000000000000000001_1d14d0d9.szcp new file mode 100644 index 00000000..e10bc6f1 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/checkpoints/checkpoint_00000000000000000001_1d14d0d9.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/checkpoints/checkpoint_00000000000000000002_792b0fb1.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/checkpoints/checkpoint_00000000000000000002_792b0fb1.szcp new file mode 100644 index 00000000..ed971226 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/checkpoints/checkpoint_00000000000000000002_792b0fb1.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/checkpoints/checkpoint_00000000000000000003_0104a971.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/checkpoints/checkpoint_00000000000000000003_0104a971.szcp new file mode 100644 index 00000000..82bf9580 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/checkpoints/checkpoint_00000000000000000003_0104a971.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/checkpoints/checkpoint_00000000000000000004_ccddcae7.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/checkpoints/checkpoint_00000000000000000004_ccddcae7.szcp new file mode 100644 index 00000000..5f500ca0 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/checkpoints/checkpoint_00000000000000000004_ccddcae7.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/checkpoints/checkpoint_00000000000000000005_4ada4c42.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/checkpoints/checkpoint_00000000000000000005_4ada4c42.szcp new file mode 100644 index 00000000..95c30da4 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_048/checkpoints/checkpoint_00000000000000000005_4ada4c42.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/archive/delta_00000000000000000001_7497d876.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/archive/delta_00000000000000000001_7497d876.szar new file mode 100644 index 00000000..480612a6 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/archive/delta_00000000000000000001_7497d876.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/archive/delta_00000000000000000002_895bf96e.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/archive/delta_00000000000000000002_895bf96e.szar new file mode 100644 index 00000000..2ef5fe24 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/archive/delta_00000000000000000002_895bf96e.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/archive/delta_00000000000000000003_140c21a3.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/archive/delta_00000000000000000003_140c21a3.szar new file mode 100644 index 00000000..945a7c77 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/archive/delta_00000000000000000003_140c21a3.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/archive/delta_00000000000000000004_9f5cd9fb.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/archive/delta_00000000000000000004_9f5cd9fb.szar new file mode 100644 index 00000000..c5763a30 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/archive/delta_00000000000000000004_9f5cd9fb.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/checkpoints/checkpoint_00000000000000000001_7e064bac.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/checkpoints/checkpoint_00000000000000000001_7e064bac.szcp new file mode 100644 index 00000000..d8cec998 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/checkpoints/checkpoint_00000000000000000001_7e064bac.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/checkpoints/checkpoint_00000000000000000002_22ba37eb.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/checkpoints/checkpoint_00000000000000000002_22ba37eb.szcp new file mode 100644 index 00000000..0ffba58a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/checkpoints/checkpoint_00000000000000000002_22ba37eb.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/checkpoints/checkpoint_00000000000000000003_cef71023.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/checkpoints/checkpoint_00000000000000000003_cef71023.szcp new file mode 100644 index 00000000..ef3c83b0 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/checkpoints/checkpoint_00000000000000000003_cef71023.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/checkpoints/checkpoint_00000000000000000004_fe54a8f3.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/checkpoints/checkpoint_00000000000000000004_fe54a8f3.szcp new file mode 100644 index 00000000..0633f317 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_049/checkpoints/checkpoint_00000000000000000004_fe54a8f3.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/archive/delta_00000000000000000001_99c2fe45.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/archive/delta_00000000000000000001_99c2fe45.szar new file mode 100644 index 00000000..6c93b487 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/archive/delta_00000000000000000001_99c2fe45.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/archive/delta_00000000000000000002_4d71033c.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/archive/delta_00000000000000000002_4d71033c.szar new file mode 100644 index 00000000..c90573c8 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/archive/delta_00000000000000000002_4d71033c.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/archive/delta_00000000000000000003_a943f935.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/archive/delta_00000000000000000003_a943f935.szar new file mode 100644 index 00000000..084d9863 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/archive/delta_00000000000000000003_a943f935.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/archive/delta_00000000000000000004_be11f43b.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/archive/delta_00000000000000000004_be11f43b.szar new file mode 100644 index 00000000..005b5b8c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/archive/delta_00000000000000000004_be11f43b.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/checkpoints/checkpoint_00000000000000000001_66737b74.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/checkpoints/checkpoint_00000000000000000001_66737b74.szcp new file mode 100644 index 00000000..863b0a02 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/checkpoints/checkpoint_00000000000000000001_66737b74.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/checkpoints/checkpoint_00000000000000000002_73dfc222.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/checkpoints/checkpoint_00000000000000000002_73dfc222.szcp new file mode 100644 index 00000000..bc752603 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/checkpoints/checkpoint_00000000000000000002_73dfc222.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/checkpoints/checkpoint_00000000000000000003_d4086482.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/checkpoints/checkpoint_00000000000000000003_d4086482.szcp new file mode 100644 index 00000000..fd2c7e9c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/checkpoints/checkpoint_00000000000000000003_d4086482.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/checkpoints/checkpoint_00000000000000000004_8ce2d866.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/checkpoints/checkpoint_00000000000000000004_8ce2d866.szcp new file mode 100644 index 00000000..7aa3fcbf Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_050/checkpoints/checkpoint_00000000000000000004_8ce2d866.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/archive/delta_00000000000000000001_c8495fa0.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/archive/delta_00000000000000000001_c8495fa0.szar new file mode 100644 index 00000000..216a498e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/archive/delta_00000000000000000001_c8495fa0.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/archive/delta_00000000000000000002_f14ad7f6.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/archive/delta_00000000000000000002_f14ad7f6.szar new file mode 100644 index 00000000..01501df1 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/archive/delta_00000000000000000002_f14ad7f6.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/archive/delta_00000000000000000003_6188d82b.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/archive/delta_00000000000000000003_6188d82b.szar new file mode 100644 index 00000000..535f05ff Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/archive/delta_00000000000000000003_6188d82b.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/checkpoints/checkpoint_00000000000000000001_9f5ded19.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/checkpoints/checkpoint_00000000000000000001_9f5ded19.szcp new file mode 100644 index 00000000..e0020212 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/checkpoints/checkpoint_00000000000000000001_9f5ded19.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/checkpoints/checkpoint_00000000000000000002_2bf890b0.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/checkpoints/checkpoint_00000000000000000002_2bf890b0.szcp new file mode 100644 index 00000000..f0952713 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/checkpoints/checkpoint_00000000000000000002_2bf890b0.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/checkpoints/checkpoint_00000000000000000003_91d1cb6d.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/checkpoints/checkpoint_00000000000000000003_91d1cb6d.szcp new file mode 100644 index 00000000..d157198d Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_051/checkpoints/checkpoint_00000000000000000003_91d1cb6d.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000001_cc80b22f.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000001_cc80b22f.szar new file mode 100644 index 00000000..4dc32296 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000001_cc80b22f.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000002_3e209c56.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000002_3e209c56.szar new file mode 100644 index 00000000..54a9acbb Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000002_3e209c56.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000003_74eecf26.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000003_74eecf26.szar new file mode 100644 index 00000000..47c18152 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000003_74eecf26.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000004_9f386b63.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000004_9f386b63.szar new file mode 100644 index 00000000..d8045324 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000004_9f386b63.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000005_783b5afe.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000005_783b5afe.szar new file mode 100644 index 00000000..c29e54ae Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000005_783b5afe.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000006_9d1ec3d1.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000006_9d1ec3d1.szar new file mode 100644 index 00000000..74ea1471 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/archive/delta_00000000000000000006_9d1ec3d1.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000001_0f94a035.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000001_0f94a035.szcp new file mode 100644 index 00000000..60870bee Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000001_0f94a035.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000002_f618d737.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000002_f618d737.szcp new file mode 100644 index 00000000..6ede9b34 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000002_f618d737.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000003_0ba64f01.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000003_0ba64f01.szcp new file mode 100644 index 00000000..5a8474f6 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000003_0ba64f01.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000004_2240fa8b.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000004_2240fa8b.szcp new file mode 100644 index 00000000..eeaef6fe Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000004_2240fa8b.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000005_34ea378b.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000005_34ea378b.szcp new file mode 100644 index 00000000..773a16f2 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000005_34ea378b.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000006_ea52254e.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000006_ea52254e.szcp new file mode 100644 index 00000000..a8f1dcec Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_052/checkpoints/checkpoint_00000000000000000006_ea52254e.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000001_5c908898.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000001_5c908898.szar new file mode 100644 index 00000000..d5396071 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000001_5c908898.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000002_6ff8836c.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000002_6ff8836c.szar new file mode 100644 index 00000000..3ab14515 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000002_6ff8836c.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000003_dbe0e4c1.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000003_dbe0e4c1.szar new file mode 100644 index 00000000..07dcd171 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000003_dbe0e4c1.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000004_b7292db7.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000004_b7292db7.szar new file mode 100644 index 00000000..d73f96ef Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000004_b7292db7.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000005_93237f06.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000005_93237f06.szar new file mode 100644 index 00000000..233c4a2c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000005_93237f06.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000006_4874b17a.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000006_4874b17a.szar new file mode 100644 index 00000000..1da8d408 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000006_4874b17a.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000007_4e7e7f4a.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000007_4e7e7f4a.szar new file mode 100644 index 00000000..8540b48a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/archive/delta_00000000000000000007_4e7e7f4a.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000001_d9f1c84e.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000001_d9f1c84e.szcp new file mode 100644 index 00000000..3b6c6aaf Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000001_d9f1c84e.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000002_9a1a6b01.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000002_9a1a6b01.szcp new file mode 100644 index 00000000..10e26f5c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000002_9a1a6b01.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000003_db710153.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000003_db710153.szcp new file mode 100644 index 00000000..d1812d3b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000003_db710153.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000004_43db1aaa.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000004_43db1aaa.szcp new file mode 100644 index 00000000..ab521c4b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000004_43db1aaa.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000005_a54f1b57.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000005_a54f1b57.szcp new file mode 100644 index 00000000..6304e83e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000005_a54f1b57.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000006_aa74fcf3.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000006_aa74fcf3.szcp new file mode 100644 index 00000000..7248c254 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000006_aa74fcf3.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000007_bd945e4c.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000007_bd945e4c.szcp new file mode 100644 index 00000000..fdbb855e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_053/checkpoints/checkpoint_00000000000000000007_bd945e4c.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000001_1edc1671.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000001_1edc1671.szar new file mode 100644 index 00000000..374a458c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000001_1edc1671.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000002_f8947ee7.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000002_f8947ee7.szar new file mode 100644 index 00000000..f6e6fefa Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000002_f8947ee7.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000003_63644321.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000003_63644321.szar new file mode 100644 index 00000000..eb83691b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000003_63644321.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000004_1a429b45.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000004_1a429b45.szar new file mode 100644 index 00000000..893c4aab Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000004_1a429b45.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000005_edc29361.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000005_edc29361.szar new file mode 100644 index 00000000..ea94e563 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000005_edc29361.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000006_c53fb656.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000006_c53fb656.szar new file mode 100644 index 00000000..7e77d5db Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000006_c53fb656.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000007_534d6d6b.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000007_534d6d6b.szar new file mode 100644 index 00000000..38d67b19 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/archive/delta_00000000000000000007_534d6d6b.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000001_55fd44b4.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000001_55fd44b4.szcp new file mode 100644 index 00000000..7d96f950 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000001_55fd44b4.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000002_d6cdc8d0.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000002_d6cdc8d0.szcp new file mode 100644 index 00000000..9ca99fab Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000002_d6cdc8d0.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000003_32181189.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000003_32181189.szcp new file mode 100644 index 00000000..b4620786 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000003_32181189.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000004_3c984dde.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000004_3c984dde.szcp new file mode 100644 index 00000000..2cb94a0a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000004_3c984dde.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000005_3da9693d.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000005_3da9693d.szcp new file mode 100644 index 00000000..10b81ff4 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000005_3da9693d.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000006_d0a610e9.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000006_d0a610e9.szcp new file mode 100644 index 00000000..d3344e93 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000006_d0a610e9.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000007_4bf6a263.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000007_4bf6a263.szcp new file mode 100644 index 00000000..86952a67 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_054/checkpoints/checkpoint_00000000000000000007_4bf6a263.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/archive/delta_00000000000000000001_edbe3f5b.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/archive/delta_00000000000000000001_edbe3f5b.szar new file mode 100644 index 00000000..8b541d90 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/archive/delta_00000000000000000001_edbe3f5b.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/archive/delta_00000000000000000002_0de3557d.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/archive/delta_00000000000000000002_0de3557d.szar new file mode 100644 index 00000000..21fffa9a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/archive/delta_00000000000000000002_0de3557d.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/archive/delta_00000000000000000003_b44865a4.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/archive/delta_00000000000000000003_b44865a4.szar new file mode 100644 index 00000000..f18594c2 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/archive/delta_00000000000000000003_b44865a4.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/archive/delta_00000000000000000004_d4fe9e89.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/archive/delta_00000000000000000004_d4fe9e89.szar new file mode 100644 index 00000000..dcd27f94 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/archive/delta_00000000000000000004_d4fe9e89.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/checkpoints/checkpoint_00000000000000000001_fe5a13b6.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/checkpoints/checkpoint_00000000000000000001_fe5a13b6.szcp new file mode 100644 index 00000000..c2435a7b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/checkpoints/checkpoint_00000000000000000001_fe5a13b6.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/checkpoints/checkpoint_00000000000000000002_23aa1c1f.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/checkpoints/checkpoint_00000000000000000002_23aa1c1f.szcp new file mode 100644 index 00000000..f67af10b Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/checkpoints/checkpoint_00000000000000000002_23aa1c1f.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/checkpoints/checkpoint_00000000000000000003_912abd39.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/checkpoints/checkpoint_00000000000000000003_912abd39.szcp new file mode 100644 index 00000000..ffbc7f5e Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/checkpoints/checkpoint_00000000000000000003_912abd39.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/checkpoints/checkpoint_00000000000000000004_fadc9be0.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/checkpoints/checkpoint_00000000000000000004_fadc9be0.szcp new file mode 100644 index 00000000..75e88422 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_055/checkpoints/checkpoint_00000000000000000004_fadc9be0.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000001_3885833d.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000001_3885833d.szar new file mode 100644 index 00000000..f0108d88 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000001_3885833d.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000002_9e3e7de4.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000002_9e3e7de4.szar new file mode 100644 index 00000000..84f2b064 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000002_9e3e7de4.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000003_8f3833d5.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000003_8f3833d5.szar new file mode 100644 index 00000000..32650630 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000003_8f3833d5.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000004_0360aca4.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000004_0360aca4.szar new file mode 100644 index 00000000..8a6e877a Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000004_0360aca4.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000005_d70764ee.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000005_d70764ee.szar new file mode 100644 index 00000000..92f5bd15 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000005_d70764ee.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000006_37332ca3.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000006_37332ca3.szar new file mode 100644 index 00000000..889de040 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000006_37332ca3.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000007_4f284e9c.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000007_4f284e9c.szar new file mode 100644 index 00000000..ff341b58 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/archive/delta_00000000000000000007_4f284e9c.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000001_b75e1fdd.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000001_b75e1fdd.szcp new file mode 100644 index 00000000..2247f562 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000001_b75e1fdd.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000002_8a367033.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000002_8a367033.szcp new file mode 100644 index 00000000..d738a284 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000002_8a367033.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000003_35aa9563.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000003_35aa9563.szcp new file mode 100644 index 00000000..1b8d9527 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000003_35aa9563.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000004_9fdcfe93.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000004_9fdcfe93.szcp new file mode 100644 index 00000000..1a871b7f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000004_9fdcfe93.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000005_5430a29d.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000005_5430a29d.szcp new file mode 100644 index 00000000..39a7b434 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000005_5430a29d.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000006_be3a8e5b.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000006_be3a8e5b.szcp new file mode 100644 index 00000000..bb2644db Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000006_be3a8e5b.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000007_89dd327d.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000007_89dd327d.szcp new file mode 100644 index 00000000..b9b2a460 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_056/checkpoints/checkpoint_00000000000000000007_89dd327d.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/archive/delta_00000000000000000001_82d580da.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/archive/delta_00000000000000000001_82d580da.szar new file mode 100644 index 00000000..310a76b1 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/archive/delta_00000000000000000001_82d580da.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/archive/delta_00000000000000000002_e6db3396.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/archive/delta_00000000000000000002_e6db3396.szar new file mode 100644 index 00000000..df0ad6f3 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/archive/delta_00000000000000000002_e6db3396.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/archive/delta_00000000000000000003_8aa566f2.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/archive/delta_00000000000000000003_8aa566f2.szar new file mode 100644 index 00000000..3b536997 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/archive/delta_00000000000000000003_8aa566f2.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/checkpoints/checkpoint_00000000000000000001_15e518ce.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/checkpoints/checkpoint_00000000000000000001_15e518ce.szcp new file mode 100644 index 00000000..38e489f3 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/checkpoints/checkpoint_00000000000000000001_15e518ce.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/checkpoints/checkpoint_00000000000000000002_8baa77ad.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/checkpoints/checkpoint_00000000000000000002_8baa77ad.szcp new file mode 100644 index 00000000..caa99897 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/checkpoints/checkpoint_00000000000000000002_8baa77ad.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/checkpoints/checkpoint_00000000000000000003_63f371c9.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/checkpoints/checkpoint_00000000000000000003_63f371c9.szcp new file mode 100644 index 00000000..7a14be75 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_057/checkpoints/checkpoint_00000000000000000003_63f371c9.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/archive/delta_00000000000000000001_33488986.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/archive/delta_00000000000000000001_33488986.szar new file mode 100644 index 00000000..4c1b9a6f Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/archive/delta_00000000000000000001_33488986.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/archive/delta_00000000000000000002_3e4ba8ac.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/archive/delta_00000000000000000002_3e4ba8ac.szar new file mode 100644 index 00000000..660403a1 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/archive/delta_00000000000000000002_3e4ba8ac.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/archive/delta_00000000000000000003_be08d430.szar b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/archive/delta_00000000000000000003_be08d430.szar new file mode 100644 index 00000000..023ede2c Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/archive/delta_00000000000000000003_be08d430.szar differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/checkpoints/checkpoint_00000000000000000001_307e307e.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/checkpoints/checkpoint_00000000000000000001_307e307e.szcp new file mode 100644 index 00000000..bb9860c0 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/checkpoints/checkpoint_00000000000000000001_307e307e.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/checkpoints/checkpoint_00000000000000000002_544d4065.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/checkpoints/checkpoint_00000000000000000002_544d4065.szcp new file mode 100644 index 00000000..c63176d5 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/checkpoints/checkpoint_00000000000000000002_544d4065.szcp differ diff --git a/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/checkpoints/checkpoint_00000000000000000003_c7f6fbf2.szcp b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/checkpoints/checkpoint_00000000000000000003_c7f6fbf2.szcp new file mode 100644 index 00000000..385b9f70 Binary files /dev/null and b/results/search/runs/b9c63d13-e9c0-466b-925f-7baffe4ebe7c/topology_058/checkpoints/checkpoint_00000000000000000003_c7f6fbf2.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/metrics.tsv b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/metrics.tsv new file mode 100644 index 00000000..c0109860 --- /dev/null +++ b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/metrics.tsv @@ -0,0 +1,308 @@ +round unix_ns phase topology depth bandit_score worstness before_C before_I after_C after_I improved backend_error archive_cells archive_improvements verified accounted_fp32_steps new_trials kernel_ms transfer_ms wall_ms rex_attempts rex_accepts spsa_attempted spsa_accepted steps_baseline steps_replica steps_adaptive steps_pbt steps_injected verified_baseline verified_replica verified_adaptive verified_pbt verified_injected archive_baseline archive_replica archive_adaptive archive_pbt archive_injected global_baseline global_replica global_adaptive global_pbt global_injected +1 1783757241534953400 DEPTH 56 1 0.81643558783371195 0 2 5 2 5 0 0 223 18 2553 23664861 143040 1003.9357452392578 5.9475999999999996 1522.5687 120960 59079 1 0 5898240 4423680 4423680 4426459 4492800 174 205 162 177 1835 1 1 0 1 15 0 0 0 0 0 +2 1783757242657197100 DEPTH 8 1 0.82652048513770882 0 2 5 2 5 0 0 231 26 2570 23664894 143040 860.14161682128906 5.9169 1106.9694 120960 63614 1 0 5898240 4423680 4423680 4426492 4492800 173 192 180 190 1835 0 0 0 5 21 0 0 0 0 0 +3 1783757243954204300 DEPTH 13 1 0.8366051894304537 0.0090909090909090783 1 6 1 6 0 0 187 31 2500 23664777 143040 823.73002624511719 6.0119999999999996 1276.9468999999999 120960 58247 1 0 5898240 4423680 4423680 4426377 4492800 195 214 173 184 1734 3 2 0 0 26 0 0 0 0 0 +4 1783757245311071900 DEPTH 17 1 0.8466897015597703 0.018181818181818247 0 7 0 7 0 0 202 27 2515 23664877 143040 824.62948608398438 6.2502999999999993 1338.0165999999999 120960 57962 1 0 5898240 4423680 4423680 4426475 4492800 153 178 176 170 1838 2 1 2 0 22 0 0 0 0 0 +5 1783757246682111800 DEPTH 42 1 0.70677402236797593 0.11111111111111109 2 6 2 6 0 0 147 34 2576 23664895 143040 838.10102844238281 6.1120000000000001 1352.9251999999999 120960 58342 1 0 5898240 4423680 4423680 4426495 4492800 156 153 169 176 1922 2 0 3 2 27 0 0 0 0 0 +6 1783757247959641700 DEPTH 31 1 0.71685815269192932 0.11111111111111109 2 6 2 6 0 0 138 31 2560 23664766 143040 827.94313049316406 5.9759000000000002 1257.0724 120960 56497 1 0 5898240 4423680 4423680 4426365 4492800 174 178 182 205 1821 2 3 2 1 23 0 0 0 0 0 +7 1783757249146966400 DEPTH 16 1 0.72694209336307736 0.11111111111111109 2 6 2 6 0 0 192 44 2522 23664841 143040 859.70843505859375 6.1374000000000004 1167.0434 120960 65503 1 0 5898240 4423680 4423680 4426441 4492800 193 207 165 173 1784 1 2 8 3 30 0 0 0 0 0 +8 1783757250445544800 DEPTH 9 1 0.7370258452075007 0.11111111111111109 2 6 2 6 0 0 140 26 2584 23664804 143040 836.24345397949219 5.9635999999999996 1280.7363 120960 57736 1 0 5898240 4423680 4423680 4426403 4492800 170 158 167 206 1883 7 3 1 1 14 0 0 0 0 0 +9 1783757251685968800 DEPTH 33 1 0.74710940904596035 0.12020202020202017 1 7 1 7 0 0 186 34 2547 23664856 143040 844.70306396484375 5.9192999999999998 1222.607 120960 59442 1 0 5898240 4423680 4423680 4426454 4492800 199 208 176 160 1804 1 3 2 4 24 0 0 0 0 0 +10 1783757252983023200 DEPTH 1 1 0.75719278569394266 0.12020202020202017 1 7 1 7 0 0 131 21 2571 23664816 143040 837.02580261230469 6.120000000000001 1282.0172 120960 58154 1 0 5898240 4423680 4423680 4426413 4492800 171 186 162 179 1873 2 1 5 3 10 0 0 0 0 0 +11 1783757254298259600 DEPTH 11 1 0.76727597596170405 0.12929292929292943 0 8 0 8 0 0 108 20 2577 23664807 143040 824.42935180664062 5.9296999999999995 1299.2864999999999 120960 55731 1 0 5898240 4423680 4423680 4426406 4492800 166 205 174 212 1820 2 1 6 1 10 0 0 0 0 0 +12 1783757255570622100 DEPTH 53 1 0.77735898065431508 0.12929292929292943 0 8 0 8 0 0 155 35 2512 23664899 143040 850.50387573242188 5.9073999999999991 1254.1845000000001 120960 64711 1 0 5898240 4423680 4423680 4426496 4492800 208 209 196 198 1701 4 0 0 1 30 0 0 0 0 0 +13 1783757256815670200 DEPTH 46 1 0.73744180057170472 0.22222222222222218 2 7 2 7 0 0 329 37 2586 23664815 143040 850.70553588867188 5.9295 1225.4350999999999 120960 63228 1 0 5898240 4423680 4423680 4426413 4492800 198 186 166 167 1869 3 2 5 4 23 0 0 0 0 0 +14 1783757258103815300 DEPTH 45 1 0.74752443650870415 0.22222222222222218 2 7 2 7 0 0 160 32 2611 23664917 143040 852.3294677734375 5.9994999999999994 1259.8686 120960 64365 1 0 5898240 4423680 4423680 4426516 4492800 162 150 160 186 1953 1 1 0 3 27 0 0 0 0 0 +15 1783757259436102400 DEPTH 44 1 0.75760688925508846 0.22222222222222218 2 7 2 7 0 0 166 23 2594 23664795 143040 840.96920776367188 5.9882999999999997 1315.7411 120960 59991 1 0 5898240 4423680 4423680 4426393 4492800 173 166 164 161 1930 1 1 0 5 16 0 0 0 0 0 +16 1783757260728843300 DEPTH 54 1 0.76768915959562045 0.23131313131313144 1 8 1 8 1 0 119 36 2550 23664768 143040 823.0103759765625 5.9030000000000005 1273.1188 120960 56962 1 0 5898240 4423680 4423680 4426366 4492800 198 183 189 181 1799 6 2 3 0 25 0 0 0 0 1 +17 1783757262021115200 DEPTH 52 1 0.77777124831009159 0.23131313131313144 1 8 1 8 1 0 111 40 2563 23664853 143040 823.10348510742188 6.0702000000000007 1275.3245999999999 120960 55785 1 0 5898240 4423680 4423680 4426452 4492800 168 168 183 175 1869 3 2 5 6 24 0 0 0 0 1 +18 1783757263242010100 DEPTH 32 1 0.78785315617336482 0.23131313131313144 1 8 1 8 1 0 131 69 2585 23664772 143040 832.38729858398438 5.9284999999999997 1191.2280000000001 120960 58906 1 0 5898240 4423680 4423680 4426371 4492800 176 186 168 170 1885 9 4 3 6 47 1 0 0 0 0 +19 1783757264498245400 DEPTH 30 1 0.79793488395541479 0.23131313131313144 1 8 1 8 1 0 146 37 2532 23664753 143040 833.47235107421875 5.9318999999999997 1224.0975000000001 120960 60044 1 0 5898240 4423680 4423680 4426350 4492800 192 180 169 174 1817 1 4 2 3 27 0 1 0 0 0 +20 1783757265793574800 DEPTH 2 1 0.78301643242136854 0.33333333333333343 2 8 2 8 0 0 146 34 2548 23664788 143040 838.54238891601562 6.105599999999999 1273.9599000000001 120960 59462 1 0 5898240 4423680 4423680 4426386 4492800 182 185 167 178 1836 3 0 4 2 25 0 0 0 0 0 +21 1783757267112009300 DEPTH 21 1 0.79309780233154703 0.35151515151515161 0 10 0 10 1 0 183 52 2547 23664785 143040 845.55555725097656 5.9450000000000003 1294.4645 120960 59597 1 0 5898240 4423680 4423680 4426382 4492800 157 172 157 170 1891 9 2 5 4 32 0 0 0 0 1 +22 1783757268169173700 DEPTH 12 1 0.78817899444150352 0.43535353535353549 3 8 3 8 0 0 192 63 2519 23664832 143040 836.66348266601562 5.9720999999999993 1029.7729999999999 120960 58684 1 0 5898240 4423680 4423680 4426432 4492800 190 220 177 188 1744 6 1 6 1 49 0 0 0 0 0 +23 1783757269234699600 DEPTH 39 1 0.79826000950206422 0.43535353535353549 3 8 3 8 0 0 179 42 2536 23664843 143040 853.79379272460938 6.0705999999999998 1046.4459999999999 120960 64314 1 0 5898240 4423680 4423680 4426443 4492800 183 213 157 167 1816 3 2 4 5 28 0 0 0 0 0 +24 1783757270488980000 DEPTH 3 1 0.80834084825936658 0.44444444444444453 2 9 2 9 0 0 148 58 2540 23664871 143040 828.60549926757812 5.9512999999999998 1229.9785999999999 120960 55298 1 0 5898240 4423680 4423680 4426470 4492800 193 173 190 181 1803 3 3 4 3 45 0 0 0 0 0 +25 1783757271806913000 DEPTH 48 1 0.80842151145489916 0.44444444444444453 2 9 2 9 0 0 171 39 2574 23664819 143040 812.43869018554688 5.9957999999999991 1295.5569 120960 55760 1 0 5898240 4423680 4423680 4426417 4492800 186 205 184 166 1833 1 4 2 5 27 0 0 0 0 0 +26 1783757273082574100 DEPTH 50 1 0.80850199982553805 0.44444444444444453 2 9 2 9 0 0 140 47 2630 23664824 143040 815.48818969726562 6.0312999999999999 1253.2038 120960 56398 1 0 5898240 4423680 4423680 4426422 4492800 163 170 150 173 1974 1 0 7 1 38 0 0 0 0 0 +27 1783757274395895400 DEPTH 41 1 0.80858231410358683 0.45353535353535362 1 10 1 10 1 0 113 50 2560 23664925 143040 816.35189819335938 5.9880000000000004 1291.6405 120960 56267 1 0 5898240 4423680 4423680 4426524 4492800 176 175 166 175 1868 11 2 2 3 32 0 0 0 0 1 +28 1783757275470795900 DEPTH 10 1 0.80866245501681244 0.45353535353535362 1 10 1 10 0 0 121 21 2560 23664828 143040 830.54501342773438 5.9610000000000003 1048.2313999999999 120960 54832 1 0 5898240 4423680 4423680 4426426 4492800 173 190 171 195 1831 5 4 3 2 7 0 0 0 0 0 +29 1783757276543067500 DEPTH 38 1 0.79874242328848377 0.55555555555555558 2 10 2 10 0 0 126 58 2540 23664879 143040 827.45262145996094 6.0972 1052.0554999999999 120960 58094 1 0 5898240 4423680 4423680 4426479 4492800 175 189 162 188 1826 5 2 6 3 42 0 0 0 0 0 +30 1783757277850178900 DEPTH 14 1 0.79882221963740707 0.57373737373737377 0 12 0 12 1 0 127 34 2568 23664880 143040 842.48593139648438 6.0150999999999994 1283.9014999999999 120960 59000 1 0 5898240 4423680 4423680 4426479 4492800 165 179 159 190 1875 5 2 3 0 24 0 0 0 0 1 +31 1783757279182882200 DEPTH 56 1 1.0332998475074435 0 2 5 2 5 0 0 224 18 2552 23664822 81600 819.79083251953125 5.9620999999999995 1313.4384 120960 47935 1 0 5898240 4423680 4423680 4426420 4492800 232 199 202 258 1661 0 0 3 0 15 0 0 0 0 0 +32 1783757280304460000 DEPTH 8 1 1.0333752247994321 0 2 5 2 5 0 0 232 30 2551 23664893 81600 855.18232727050781 5.9287000000000001 1094.7762 120960 52962 1 0 5898240 4423680 4423680 4426490 4492800 181 191 220 226 1733 0 2 0 0 28 0 0 0 0 0 +33 1783757281573388800 DEPTH 13 1 1.0334504410118854 0.0090909090909090783 1 6 1 6 0 0 187 20 2497 23664940 81600 821.34750366210938 5.9083000000000006 1239.4521 120960 47737 1 0 5898240 4423680 4423680 4426539 4492800 201 210 182 182 1722 0 0 0 0 20 0 0 0 0 0 +34 1783757282899642700 DEPTH 17 1 1.0335254968101322 0.018181818181818247 0 7 0 7 0 0 203 17 2523 23664849 81600 827.59474182128906 5.9016999999999999 1306.9956 120960 46841 1 0 5898240 4423680 4423680 4426445 4492800 156 173 187 269 1738 0 1 1 0 15 0 0 0 0 0 +35 1783757284281121800 DEPTH 42 1 0.88360039285543812 0.11111111111111109 2 6 2 6 0 0 147 24 2580 23664843 81600 856.49618530273438 6.0056999999999992 1359.2548999999999 120960 47565 1 0 5898240 4423680 4423680 4426442 4492800 157 150 182 221 1870 0 1 1 1 21 0 0 0 0 0 +36 1783757285611033400 DEPTH 31 1 0.88367512980503715 0.11111111111111109 2 6 2 6 0 0 139 14 2582 23664859 81600 834.32363891601562 6.0457000000000001 1311.4942000000001 120960 47235 1 0 5898240 4423680 4423680 4426457 4492800 175 168 268 447 1524 0 0 0 0 14 0 0 0 0 0 +37 1783757286785087900 DEPTH 16 1 0.88374970831216493 0.11111111111111109 2 6 2 6 0 0 193 37 2535 23664782 81600 847.92854309082031 6.0084999999999997 1153.6551999999999 120960 54351 1 0 5898240 4423680 4423680 4426381 4492800 197 207 175 178 1778 1 1 1 1 33 0 0 0 0 0 +38 1783757288145805300 DEPTH 9 1 0.88382412902609064 0.11111111111111109 2 6 2 6 0 0 140 20 2581 23664891 81600 825.299560546875 5.9355000000000002 1304.3715 120960 47702 1 0 5898240 4423680 4423680 4426491 4492800 195 154 187 309 1736 1 0 0 0 19 0 0 0 0 0 +39 1783757289395788800 DEPTH 33 1 0.88389839259214864 0.12020202020202017 1 7 1 7 0 0 186 14 2550 23664863 81600 833.33731079101562 6.0133999999999999 1230.4777999999999 120960 49034 1 0 5898240 4423680 4423680 4426462 4492800 199 197 178 167 1809 0 0 1 0 13 0 0 0 0 0 +40 1783757290689971800 DEPTH 1 1 0.8839724996517706 0.12020202020202017 1 7 1 7 0 0 131 20 2567 23664856 81600 825.61514282226562 5.9337 1278.2872 120960 47736 1 0 5898240 4423680 4423680 4426456 4492800 190 177 184 212 1804 0 0 1 1 18 0 0 0 0 0 +41 1783757292004316000 DEPTH 11 1 0.88404645084251599 0.12929292929292943 0 8 0 8 0 0 108 10 2586 23664816 81600 809.47817993164062 5.9558999999999997 1297.9494 120960 45678 1 0 5898240 4423680 4423680 4426414 4492800 199 188 327 411 1461 0 0 0 0 10 0 0 0 0 0 +42 1783757293280179600 DEPTH 53 1 0.88412024679810342 0.12929292929292943 0 8 0 8 0 0 155 30 2520 23664798 81600 834.31298828125 5.9603000000000002 1255.5761 120960 53117 1 0 5898240 4423680 4423680 4426396 4492800 214 203 199 199 1705 1 0 0 2 27 0 0 0 0 0 +43 1783757294322844700 DEPTH 49 1 0.79270138921720901 0.6575757575757577 3 10 3 10 0 0 134 45 2569 23664848 143040 828.87223815917969 5.9406999999999996 1024.5265999999999 120960 57618 1 0 5898240 4423680 4423680 4426448 4492800 163 187 172 180 1867 6 1 2 4 32 0 0 0 0 0 +44 1783757295398281600 DEPTH 36 1 0.79277885170797591 0.6575757575757577 3 10 3 10 1 0 126 43 2582 23664753 143040 846.29530334472656 7.4802000000000008 1060.4368999999999 120960 61092 1 0 5898240 4423680 4423680 4426352 4492800 178 158 188 171 1887 5 2 4 2 30 0 0 0 0 1 +45 1783757296414728200 DEPTH 5 1 0.7928561525465414 0.66666666666666674 2 11 2 11 0 0 97 40 2598 23664782 143040 801.17660522460938 5.9809000000000001 1002.5830999999999 120960 56396 1 0 5898240 4423680 4423680 4426381 4492800 176 182 168 194 1878 9 4 5 1 21 0 0 0 0 0 +46 1783757297475220000 DEPTH 19 1 0.79293329238502774 0.66666666666666674 2 11 2 11 1 0 137 40 2598 23664904 143040 838.76231384277344 6.0508999999999995 1042.1513 120960 61596 1 0 5898240 4423680 4423680 4426504 4492800 168 162 162 182 1924 4 0 8 2 26 0 0 0 0 2 +47 1783757298799222800 DEPTH 56 1 0.93140552727183434 0 2 5 2 5 0 0 224 13 2571 23664901 81600 813.13343811035156 5.9542999999999999 1322.2824000000001 120960 41053 1 0 5898240 4423680 4423680 4426501 4492800 319 192 231 365 1464 0 0 1 0 12 0 0 0 0 0 +48 1783757299904340400 DEPTH 8 1 0.93147501337655125 0 2 5 2 5 0 0 232 24 2564 23664886 81600 844.05908203125 5.9469000000000003 1103.6885 120960 45291 1 0 5898240 4423680 4423680 4426484 4492800 176 188 195 220 1785 0 0 1 0 23 0 0 0 0 0 +49 1783757301162957100 DEPTH 13 1 0.93154435559981297 0.0090909090909090783 1 6 1 6 0 0 187 22 2502 23664952 81600 817.10966491699219 5.9390999999999998 1256.3451 120960 41264 1 0 5898240 4423680 4423680 4426548 4492800 200 201 183 197 1721 0 0 0 0 22 0 0 0 0 0 +50 1783757302461649100 DEPTH 17 1 0.9316135545175751 0.018181818181818247 0 7 0 7 0 0 203 22 2520 23664831 81600 812.52650451660156 5.9398999999999997 1297.0841 120960 39828 1 0 5898240 4423680 4423680 4426428 4492800 172 169 196 349 1634 0 0 1 0 21 0 0 0 0 0 +51 1783757303690307600 DEPTH 32 1 0.83904322125103004 0.23131313131313144 1 8 1 8 1 0 131 51 2572 23664910 81600 821.98237609863281 5.9355000000000002 1203.2050999999999 120960 47921 1 0 5898240 4423680 4423680 4426510 4492800 187 177 174 180 1854 0 0 0 0 51 0 0 0 0 1 +52 1783757305011074500 DEPTH 52 1 0.83601750258799334 0.23131313131313144 1 8 1 8 0 0 112 27 2561 23664787 81600 810.119873046875 5.9432 1285.0156999999999 120960 45795 1 0 5898240 4423680 4423680 4426386 4492800 177 171 203 196 1814 0 0 0 0 27 0 0 0 0 0 +53 1783757306299629900 DEPTH 30 1 0.83563969418833028 0.23131313131313144 1 8 1 8 0 0 147 26 2542 23664848 81600 822.34037780761719 5.9378999999999991 1266.0014000000001 120960 48985 1 0 5898240 4423680 4423680 4426448 4492800 202 172 205 251 1712 0 0 0 0 26 0 0 0 0 0 +54 1783757307613948800 DEPTH 54 1 0.83504319798502924 0.23131313131313144 1 8 1 8 0 0 120 28 2563 23664945 81600 814.91207885742188 6.1997 1297.0613000000001 120960 46869 1 0 5898240 4423680 4423680 4426544 4492800 205 181 286 204 1687 0 0 0 1 27 0 0 0 0 0 +55 1783757308932706100 DEPTH 56 1 0.84077371203612028 0 2 5 2 5 0 0 224 18 2567 23665009 81600 808.25773620605469 5.9522000000000004 1317.2411 120960 30771 1 0 5898240 4423680 4423680 4426607 4492800 337 192 229 505 1304 0 0 0 0 18 0 0 0 0 0 +56 1783757310222398100 DEPTH 46 1 0.83513743648222327 0.22222222222222218 2 7 2 7 0 0 329 25 2594 23664774 81600 837.88211059570312 5.9125999999999994 1247.0527 120960 52397 1 0 5898240 4423680 4423680 4426371 4492800 267 186 205 208 1728 1 1 0 1 22 0 0 0 0 0 +57 1783757311529188300 DEPTH 45 1 0.83520897743588773 0.22222222222222218 2 7 2 7 0 0 161 28 2624 23664946 81600 841.96649169921875 5.9437999999999995 1269.0863999999999 120960 52980 1 0 5898240 4423680 4423680 4426544 4492800 168 153 171 318 1814 0 0 0 1 27 0 0 0 0 0 +58 1783757312867206000 DEPTH 44 1 0.83528037279558442 0.22222222222222218 2 7 2 7 0 0 167 16 2601 23664874 81600 827.885498046875 5.9194000000000004 1302.2986000000001 120960 49203 1 0 5898240 4423680 4423680 4426473 4492800 179 162 169 176 1915 0 0 0 0 16 0 0 0 0 0 +59 1783757313984632000 DEPTH 8 1 0.87103467789547462 0 2 5 2 5 0 0 232 18 2562 23664814 81600 840.92106628417969 5.9200999999999997 1086.819 120960 33777 1 0 5898240 4423680 4423680 4426411 4492800 179 188 252 316 1627 0 0 0 0 18 0 0 0 0 0 +60 1783757315324736400 DEPTH 42 1 0.87229778619876397 0.11111111111111109 2 6 2 6 0 0 147 19 2585 23664901 81600 822.0108642578125 5.9468000000000005 1322.5174999999999 120960 40597 1 0 5898240 4423680 4423680 4426501 4492800 176 150 220 254 1785 0 0 1 0 18 0 0 0 0 0 +61 1783757316609630800 DEPTH 13 1 0.8811643675410431 0.0090909090909090783 1 6 1 6 0 0 187 24 2507 23664768 81600 812.82974243164062 5.9714 1283.2724000000001 120960 30086 1 0 5898240 4423680 4423680 4426367 4492800 198 198 189 259 1663 0 0 0 0 24 0 0 0 0 0 +62 1783757317915791700 DEPTH 31 1 0.8724329687739325 0.11111111111111109 2 6 2 6 0 0 139 7 2591 23664802 81600 815.87356567382812 5.9306999999999999 1286.6098 120960 40472 1 0 5898240 4423680 4423680 4426401 4492800 186 172 311 746 1176 0 0 0 0 7 0 0 0 0 0 +63 1783757318103368400 REFRESH 49 0 0.72849232847585732 0.6575757575757577 3 10 3 10 0 0 134 7 412 3943871 55200 149.28997802734375 1.0247999999999999 186.37739999999999 20160 14855 0 0 983040 737280 737280 737471 748800 29 26 36 38 283 0 0 0 0 7 0 0 0 0 0 +64 1783757318309568900 REFRESH 28 0 0.79429499920661573 0.67575757575757578 1 12 1 12 0 0 152 8 412 3943923 116640 149.98629760742188 1.0055000000000001 186.52330000000001 20160 14724 0 0 983040 737280 737280 737521 748800 27 25 27 26 307 0 1 0 0 7 0 0 0 0 0 +65 1783757318510716100 REFRESH 22 0 0.78901205609284342 0.76868686868686875 3 11 3 11 0 0 135 9 418 3943908 116640 149.94085693359375 1.0048999999999999 184.61869999999999 20160 14450 0 0 983040 737280 737280 737508 748800 27 29 26 27 309 1 0 1 0 7 0 0 0 0 0 +66 1783757318729348700 REFRESH 52 0 0.71375263241231623 0.23131313131313144 1 8 1 8 0 0 112 5 418 3943898 55200 148.32742309570312 0.98570000000000002 217.1241 20160 14268 0 0 983040 737280 737280 737498 748800 26 26 46 30 290 0 0 0 0 5 0 0 0 0 0 +67 1783757318911398400 REFRESH 36 0 0.75878072348024816 0.6575757575757577 3 10 3 10 0 0 126 11 422 3943900 55200 149.52755737304688 0.98009999999999997 180.5103 20160 14890 0 0 983040 737280 737280 737500 748800 33 26 27 29 307 0 0 0 0 11 0 0 0 0 0 +68 1783757319143974000 REFRESH 42 0 0.69161418661005125 0.11111111111111109 2 6 2 6 0 0 147 10 417 3943920 55200 149.75897216796875 0.99870000000000003 230.9143 20160 13070 0 0 983040 737280 737280 737520 748800 31 26 39 83 238 0 0 0 1 9 0 0 0 0 0 +69 1783757319347749700 REFRESH 14 0 0.78605765045002063 0.57373737373737377 0 12 0 12 0 0 127 3 414 3943899 55200 149.45587158203125 0.98770000000000002 187.4579 20160 15083 0 0 983040 737280 737280 737499 748800 28 25 47 26 288 0 0 0 0 3 0 0 0 0 0 +70 1783757319560530400 REFRESH 23 0 0.78188083525609686 0.99090909090909129 3 13 3 13 0 0 127 9 417 3943902 116640 148.54963684082031 1.0189999999999999 192.0566 20160 14972 0 0 983040 737280 737280 737502 748800 27 28 26 26 310 1 1 0 1 6 0 0 0 0 0 +71 1783757319765770600 REFRESH 40 0 0.79481129402459527 0.67575757575757578 1 12 1 12 0 0 129 11 417 3943882 116640 148.73977661132812 1.0230999999999999 185.0077 20160 14885 0 0 983040 737280 737280 737482 748800 25 26 26 25 315 1 0 1 0 9 0 0 0 0 0 +72 1783757319971742700 REFRESH 6 0 0.7895273217530393 0.76868686868686875 3 11 3 11 0 0 122 12 415 3943910 116640 148.49125671386719 1.0063 190.1403 20160 15272 0 0 983040 737280 737280 737510 748800 27 28 28 26 306 0 0 0 0 12 0 0 0 0 0 +73 1783757320175776000 REFRESH 50 0 0.79633421368490476 0.44444444444444453 2 9 2 9 0 0 140 6 418 3943902 55200 149.13433837890625 0.98839999999999995 186.51759999999999 20160 14966 0 0 983040 737280 737280 737502 748800 33 26 30 59 270 0 0 0 0 6 0 0 0 0 0 +74 1783757320416064200 REFRESH 27 0 0.7896732291718459 0.7959595959595962 0 14 0 14 0 0 159 10 412 3943908 116640 148.18710327148438 1.024 223.41319999999999 20160 14894 0 0 983040 737280 737280 737508 748800 26 29 26 25 306 1 0 0 0 9 0 0 0 0 0 +75 1783757320616041300 REFRESH 10 0 0.7964723605101649 0.45353535353535362 1 10 1 10 0 0 121 8 416 3943942 55200 149.84396362304688 0.98970000000000002 182.77629999999999 20160 14907 0 0 983040 737280 737280 737542 748800 28 25 27 34 302 0 0 0 0 8 0 0 0 0 0 +76 1783757320818299600 REFRESH 55 0 0.79517570478809629 0.67575757575757578 1 12 1 12 0 0 155 18 415 3943917 116640 150.17677307128906 1.0301 185.51830000000001 20160 14814 0 0 983040 737280 737280 737517 748800 27 29 25 26 308 1 0 0 1 16 0 0 0 0 0 +77 1783757321017156900 REFRESH 18 0 0.78239101418025048 1 2 14 2 14 0 0 131 14 418 3943903 116640 149.1937255859375 1.0233000000000001 184.5521 20160 15007 0 0 983040 737280 737280 737503 748800 27 25 26 25 315 0 1 1 0 12 0 0 0 0 0 +78 1783757321207954300 REFRESH 46 0 0.7934951776216862 0.22222222222222218 2 7 2 7 0 0 329 3 416 3943895 55200 150.14297485351562 1.0011000000000001 189.2953 20160 14371 0 0 983040 737280 737280 737495 748800 35 26 31 44 280 0 0 0 0 3 0 0 0 0 0 +79 1783757321406130900 REFRESH 30 0 0.82420644061023907 0.23131313131313144 1 8 1 8 0 0 147 10 416 3943902 55200 149.21626281738281 1.0029999999999999 196.5275 20160 14436 0 0 983040 737280 737280 737502 748800 56 25 41 42 252 0 0 0 0 10 0 0 0 0 0 +80 1783757321617044900 REFRESH 21 0 0.811816836013736 0.35151515151515161 0 10 0 10 0 0 183 8 415 3943892 55200 150.43788146972656 0.99660000000000004 193.66999999999999 20160 14937 0 0 983040 737280 737280 737492 748800 29 26 27 30 303 0 0 0 0 8 0 0 0 0 0 +81 1783757321801373900 REFRESH 32 0 0.82831032526444615 0.23131313131313144 1 8 1 8 0 0 131 8 419 3943927 55200 148.88858032226562 0.98839999999999995 182.94929999999999 20160 14171 0 0 983040 737280 737280 737527 748800 39 25 33 42 280 0 0 1 0 7 0 0 0 0 0 +82 1783757322010698500 REFRESH 29 0 0.79560829854935733 0.67575757575757578 1 12 1 12 0 0 129 12 416 3943891 116640 149.25596618652344 1.0161 186.45820000000001 20160 15045 0 0 983040 737280 737280 737490 748800 27 28 26 26 309 1 1 1 0 9 0 0 0 0 0 +83 1783757322210976900 REFRESH 34 0 0.79032276377469546 0.78686868686868705 1 13 1 13 0 0 110 6 420 3943888 116640 148.00076293945312 1.3596999999999999 186.3526 20160 15270 0 0 983040 737280 737280 737488 748800 26 26 25 25 318 1 0 0 0 5 0 0 0 0 0 +84 1783757322426642200 REFRESH 1 0 0.87388494912788084 0.12020202020202017 1 7 1 7 0 0 132 5 413 3943904 55200 149.41285705566406 1.0298 201.40180000000001 20160 14373 0 0 983040 737280 737280 737503 748800 54 26 33 30 270 0 0 0 0 5 0 0 0 0 0 +85 1783757322638977500 REFRESH 44 0 0.82394947036679222 0.22222222222222218 2 7 2 7 0 0 168 4 419 3943888 55200 150.23001098632812 0.99160000000000004 210.8732 20160 14213 0 0 983040 737280 737280 737488 748800 65 26 39 31 258 0 0 0 0 4 0 0 0 0 0 +86 1783757322835673000 REFRESH 39 0 0.79722256970263206 0.43535353535353549 3 8 3 8 0 0 179 8 413 3943907 55200 149.40467834472656 0.98699999999999999 180.3965 20160 14899 0 0 983040 737280 737280 737507 748800 27 26 26 28 306 0 0 0 0 8 0 0 0 0 0 +87 1783757323040635800 REFRESH 3 0 0.79728997916806399 0.44444444444444453 2 9 2 9 0 0 148 7 416 3943921 55200 149.21932983398438 0.98729999999999996 186.6962 20160 15005 0 0 983040 737280 737280 737521 748800 53 26 50 31 256 0 0 0 0 7 0 0 0 0 0 +88 1783757323239523800 REFRESH 4 0 0.79067873188451421 0.78686868686868705 1 13 1 13 0 0 66 8 416 3943884 116640 147.52972412109375 1.0045999999999999 180.22829999999999 20160 15222 0 0 983040 737280 737280 737484 748800 26 25 26 25 314 2 1 0 1 4 0 0 0 0 0 +89 1783757323446171100 REFRESH 20 0 0.79610665750742793 0.66666666666666674 2 11 2 11 0 0 125 6 414 3943905 116640 148.41651916503906 1.0266 185.95419999999999 20160 15271 0 0 983040 737280 737280 737505 748800 29 26 25 25 309 0 0 0 0 6 0 0 0 0 0 +90 1783757323670486700 REFRESH 48 0 0.7974914309315182 0.44444444444444453 2 9 2 9 0 0 172 12 418 3943910 55200 148.50457763671875 0.98829999999999996 207.05590000000001 20160 15038 0 0 983040 737280 737280 737510 748800 31 26 26 31 304 0 0 0 1 11 0 0 0 0 0 +91 1783757323862688200 REFRESH 8 0 1.0032363579642853 0 2 5 2 5 0 0 232 3 414 3943886 55200 149.98736572265625 0.99080000000000001 190.90350000000001 20160 12129 0 0 983040 737280 737280 737486 748800 27 26 26 46 289 0 0 0 0 3 0 0 0 0 0 +92 1783757324072740900 REFRESH 47 0 0.79631819323329422 0.66666666666666674 2 11 2 11 0 0 120 8 422 3943915 116640 149.23554992675781 1.0012000000000001 187.29839999999999 20160 14981 0 0 983040 737280 737280 737515 748800 26 26 26 26 318 0 0 0 0 8 0 0 0 0 0 +93 1783757324273429000 REFRESH 54 0 0.8245055459064341 0.23131313131313144 1 8 1 8 0 0 121 5 417 3943919 55200 149.54710388183594 0.99860000000000004 199.072 20160 14364 0 0 983040 737280 737280 737519 748800 68 26 36 60 227 0 0 0 0 5 0 0 0 0 0 +94 1783757324514203300 REFRESH 56 0 1.003411694806623 0 2 5 2 5 0 0 224 8 416 3943891 55200 149.53677368164062 0.98770000000000002 223.5547 20160 12252 0 0 983040 737280 737280 737491 748800 59 26 39 120 172 0 0 0 0 8 0 0 0 0 0 +95 1783757324706288700 REFRESH 31 0 0.86029220827707886 0.11111111111111109 2 6 2 6 0 0 141 4 420 3943904 55200 148.53939819335938 1.0138 190.67850000000001 20160 13095 0 0 983040 737280 737280 737504 748800 34 26 38 75 247 0 0 0 0 4 0 0 0 0 0 +96 1783757324902598600 REFRESH 45 0 0.82465107825710426 0.22222222222222218 2 7 2 7 0 0 161 7 423 3943917 55200 150.39488220214844 0.98999999999999999 194.97300000000001 20160 14445 0 0 983040 737280 737280 737516 748800 26 26 68 28 275 0 0 0 0 7 0 0 0 0 0 +97 1783757325119936300 REFRESH 41 0 0.79802238315985663 0.45353535353535362 1 10 1 10 0 0 113 7 414 3943927 55200 149.607421875 0.98699999999999999 192.95920000000001 20160 15016 0 0 983040 737280 737280 737527 748800 28 26 38 28 294 0 0 0 0 7 0 0 0 0 0 +98 1783757325321510700 REFRESH 26 0 0.79673765288530451 0.67575757575757578 1 12 1 12 0 0 107 10 418 3943915 116640 148.94796752929688 1.0159 184.50919999999999 20160 15032 0 0 983040 737280 737280 737515 748800 25 26 27 25 315 1 0 1 1 7 0 0 0 0 0 +99 1783757325549118400 REFRESH 57 0 0.7914499574910111 0.77777777777777779 2 12 2 12 0 0 143 10 414 3943939 116640 148.495361328125 1.0235000000000001 191.40710000000001 20160 15074 0 0 983040 737280 737280 737539 748800 28 28 26 26 306 0 1 0 0 9 0 0 0 0 0 +100 1783757325748651600 REFRESH 37 0 0.79687641696140721 0.67575757575757578 1 12 1 12 0 0 143 10 417 3943945 116640 148.98585510253906 1.0095000000000001 182.87899999999999 20160 15192 0 0 983040 737280 737280 737545 748800 27 28 26 26 310 1 1 0 1 7 0 0 0 0 0 +101 1783757325959667700 REFRESH 35 0 0.79694560320193453 0.66666666666666674 2 11 2 11 0 0 172 6 415 3943905 116640 149.43846130371094 1.0055000000000001 190.63829999999999 20160 14912 0 0 983040 737280 737280 737505 748800 27 27 26 26 309 1 2 0 0 3 0 0 0 0 0 +102 1783757326149180900 REFRESH 13 0 1.003874410151965 0.0090909090909090783 1 6 1 6 0 0 187 0 415 3943895 55200 148.89164733886719 0.98839999999999995 188.33320000000001 20160 12084 0 0 983040 737280 737280 737495 748800 47 26 65 130 147 0 0 0 0 0 0 0 0 0 0 +103 1783757326333405400 REFRESH 19 0 0.78120884560597159 0.66666666666666674 2 11 2 11 0 0 138 9 417 3943911 55200 150.04365539550781 0.99129999999999996 183.10919999999999 20160 14987 0 0 983040 737280 737280 737510 748800 27 26 28 30 306 0 0 1 0 8 0 0 0 0 0 +104 1783757326549112000 REFRESH 16 0 0.87515220904100899 0.11111111111111109 2 6 2 6 0 0 195 9 416 3943882 55200 150.18598937988281 1.0019 192.8117 20160 14249 0 0 983040 737280 737280 737482 748800 35 26 59 26 270 0 0 0 0 9 0 0 0 0 0 +105 1783757326755594900 REFRESH 7 0 0.79722105388458253 0.67575757575757578 1 12 1 12 0 0 138 12 417 3943901 116640 148.79852294921875 1.0247999999999999 186.28290000000001 20160 15050 0 0 983040 737280 737280 737501 748800 29 28 27 27 306 2 0 0 0 10 0 0 0 0 0 +106 1783757326993648200 REFRESH 17 0 1.0139513183306077 0.018181818181818247 0 7 0 7 0 0 203 1 412 3943902 55200 148.75135803222656 0.99139999999999995 236.8879 20160 13355 0 0 983040 737280 737280 737502 748800 34 26 32 88 232 0 0 0 0 1 0 0 0 0 0 +107 1783757327212069800 REFRESH 2 0 0.81361154575235295 0.33333333333333343 2 8 2 8 0 0 146 9 416 3943926 55200 149.65657043457031 0.999 194.8099 20160 14953 0 0 983040 737280 737280 737525 748800 27 26 29 44 290 0 0 0 0 9 0 0 0 0 0 +108 1783757327418675900 REFRESH 53 0 0.87539997136350478 0.12929292929292943 0 8 0 8 0 0 155 4 414 3943895 55200 149.09336853027344 0.98809999999999998 189.73830000000001 20160 14309 0 0 983040 737280 737280 737495 748800 33 26 37 33 285 0 0 0 0 4 0 0 0 0 0 +109 1783757327653769500 REFRESH 33 0 0.87546162451298015 0.12020202020202017 1 7 1 7 0 0 186 6 420 3943890 55200 150.24333190917969 1.0023 193.3115 20160 14258 0 0 983040 737280 737280 737489 748800 29 26 28 41 296 0 0 0 0 6 0 0 0 0 0 +110 1783757327854040300 REFRESH 43 0 0.79220534716210378 0.76868686868686875 3 11 3 11 0 0 147 9 409 3943896 116640 148.28031921386719 1.0345 183.63480000000001 20160 15351 0 0 983040 737280 737280 737496 748800 28 27 26 26 302 0 0 0 0 9 0 0 0 0 0 +111 1783757328065045500 REFRESH 5 0 0.78172709950697916 0.66666666666666674 2 11 2 11 0 0 97 5 408 3943912 55200 148.2557373046875 1.0019 186.88919999999999 20160 14950 0 0 983040 737280 737280 737512 748800 31 26 32 43 276 0 0 0 0 5 0 0 0 0 0 +112 1783757328273560300 REFRESH 0 0 0.79769818109519475 0.67575757575757578 1 12 1 12 0 0 94 7 422 3943896 116640 148.18092346191406 1.0084 185.7577 20160 15335 0 0 983040 737280 737280 737496 748800 27 25 25 26 319 1 0 0 0 6 0 0 0 0 0 +113 1783757328477634000 REFRESH 15 0 0.79240869628387312 0.76868686868686875 3 11 3 11 0 0 107 9 417 3943933 116640 148.89794921875 1.0096000000000001 186.72229999999999 20160 15104 0 0 983040 737280 737280 737533 748800 27 29 26 26 309 0 1 0 0 8 0 0 0 0 0 +114 1783757328682834300 REFRESH 12 0 0.79906251524598693 0.43535353535353549 3 8 3 8 0 0 192 11 414 3943937 55200 149.02169799804688 1.0386 188.8013 20160 14984 0 0 983040 737280 737280 737536 748800 35 26 27 65 261 0 0 0 0 11 0 0 0 0 0 +115 1783757328888339400 REFRESH 25 0 0.79254363961537522 0.76868686868686875 3 11 3 11 0 0 124 7 414 3943894 116640 149.19346618652344 1.0259 188.7696 20160 15026 0 0 983040 737280 737280 737494 748800 27 26 26 26 309 0 0 0 0 7 0 0 0 0 0 +116 1783757329085675000 REFRESH 38 0 0.78919029895382597 0.55555555555555558 2 10 2 10 0 0 126 14 416 3943910 55200 149.97503662109375 0.99639999999999995 182.1019 20160 14943 0 0 983040 737280 737280 737510 748800 40 26 37 34 279 0 0 0 0 14 0 0 0 0 0 +117 1783757329295972100 REFRESH 58 0 0.79267808887162805 0.77777777777777779 2 12 2 12 0 0 133 13 418 3943895 116640 149.39546203613281 1.0077 186.7072 20160 15049 0 0 983040 737280 737280 737495 748800 26 26 26 27 313 1 0 0 1 11 0 0 0 0 0 +118 1783757329498462900 REFRESH 24 0 0.78857846264804909 0.87070707070707098 4 11 4 11 0 0 154 13 417 3943901 116640 149.09440612792969 1.0081 187.2347 20160 14772 0 0 983040 737280 737280 737501 748800 28 29 26 26 308 2 0 1 1 9 0 0 0 0 0 +119 1783757329709011100 REFRESH 51 0 0.79281204754622681 0.76868686868686875 3 11 3 11 0 0 105 16 413 3943926 116640 148.687744140625 1.0054000000000001 190.00800000000001 20160 14968 0 0 983040 737280 737280 737526 748800 26 26 26 26 309 1 1 0 0 14 0 0 0 0 0 +120 1783757329925581500 REFRESH 9 0 0.87613236432422159 0.11111111111111109 2 6 2 6 0 0 140 7 420 3943903 55200 148.93875122070312 0.98729999999999996 196.1026 20160 14328 0 0 983040 737280 737280 737503 748800 33 26 36 28 297 0 0 0 0 7 0 0 0 0 0 +121 1783757330177268100 REFRESH 11 0 0.87619267422057334 0.12929292929292943 0 8 0 8 0 0 109 2 417 3943894 55200 149.00837707519531 1.0081 234.3451 20160 14230 0 0 983040 737280 737280 737492 748800 27 26 51 99 214 0 1 0 0 1 0 0 0 0 0 +122 1783757331522753500 DEPTH 56 1 0.99426235351166647 0 2 5 2 5 0 0 224 20 2553 23664792 81600 848.13186645507812 6.0062999999999995 1343.9487999999999 120960 59902 1 0 5898240 4423680 4423680 4426390 4492800 175 150 167 289 1772 0 0 0 0 20 0 0 0 0 0 +123 1783757332622942200 DEPTH 8 1 0.9893156189493677 0 2 5 2 5 0 0 233 19 2559 23664860 81600 859.87699890136719 5.9262000000000006 1098.6736000000001 120960 61380 1 0 5898240 4423680 4423680 4426459 4492800 162 156 156 169 1916 0 0 0 0 19 0 0 0 0 0 +124 1783757333947722900 DEPTH 13 1 0.95636878810975934 0.0090909090909090783 1 6 1 6 0 0 187 26 2493 23664930 81600 851.34303283691406 6.0409000000000006 1307.8486 120960 59713 1 0 5898240 4423680 4423680 4426527 4492800 159 156 161 156 1861 0 0 0 0 26 0 0 0 0 0 +125 1783757335323309200 DEPTH 17 1 0.93616699844109164 0.018181818181818247 0 7 0 7 0 0 203 16 2529 23664810 81600 849.57804870605469 6.1857000000000006 1355.1146000000001 120960 65446 1 0 5898240 4423680 4423680 4426408 4492800 161 151 152 240 1825 0 0 0 0 16 0 0 0 0 0 +126 1783757336613886700 DEPTH 1 1 0.86011580786937758 0.12020202020202017 1 7 1 7 0 0 132 25 2554 23664774 81600 853.44108581542969 5.9231999999999996 1274.0691999999999 120960 69635 1 0 5898240 4423680 4423680 4426373 4492800 180 151 150 162 1911 0 0 0 0 25 0 0 0 0 0 +127 1783757337996883700 DEPTH 42 1 0.85527685450877811 0.11111111111111109 2 6 2 6 0 0 147 21 2566 23664852 81600 853.51321411132812 5.9873999999999992 1365.5963999999999 120960 65744 1 0 5898240 4423680 4423680 4426450 4492800 155 151 156 167 1937 0 0 0 0 21 0 0 0 0 0 +128 1783757339272094900 DEPTH 31 1 0.84663163458321666 0.11111111111111109 2 6 2 6 0 0 141 27 2561 23664761 81600 850.45854187011719 5.9455999999999998 1270.2864 120960 65602 1 0 5898240 4423680 4423680 4426358 4492800 166 150 157 252 1836 0 0 0 0 27 0 0 0 0 0 +129 1783757340526646200 DEPTH 32 1 0.81744458216108862 0.23131313131313144 1 8 1 8 0 0 132 59 2572 23664792 81600 850.44398498535156 5.9564999999999992 1218.7698 120960 68808 1 0 5898240 4423680 4423680 4426392 4492800 166 150 153 153 1950 1 0 3 0 55 0 0 0 0 0 +130 1783757341698466600 DEPTH 16 1 0.86434367183316585 0.11111111111111109 2 6 2 6 1 0 195 37 2526 23664795 81600 860.32638549804688 5.9532999999999996 1127.2415000000001 120960 69466 1 0 5898240 4423680 4423680 4426394 4492800 162 155 170 156 1883 0 0 0 0 37 0 0 0 0 1 +131 1783757342996572700 DEPTH 53 1 0.83940038322826549 0.12929292929292943 0 8 0 8 0 0 155 31 2517 23664861 81600 853.58779907226562 6.0737000000000005 1260.6042 120960 68867 1 0 5898240 4423680 4423680 4426459 4492800 162 156 161 169 1869 0 0 0 0 31 0 0 0 0 0 +132 1783757344264772400 DEPTH 33 1 0.84145699348923952 0.12020202020202017 1 7 1 7 0 0 186 22 2542 23664804 81600 856.55305480957031 5.9695999999999998 1246.4244000000001 120960 69588 1 0 5898240 4423680 4423680 4426402 4492800 159 155 153 162 1913 0 0 0 0 22 0 0 0 0 0 +133 1783757345594120000 DEPTH 56 1 0.84718485795345633 0 2 5 2 5 0 0 225 13 2553 23664901 81600 840.96345520019531 5.9333999999999998 1310.0501999999999 120960 48862 1 0 5898240 4423680 4423680 4426498 4492800 179 150 166 367 1691 0 0 0 0 13 0 0 0 0 0 +134 1783757346804156100 DEPTH 30 1 0.81615129753004412 0.23131313131313144 1 8 1 8 0 0 149 28 2522 23664893 81600 852.23826599121094 5.9386999999999999 1208.2668000000001 120960 69438 1 0 5898240 4423680 4423680 4426491 4492800 193 150 180 176 1823 0 0 3 0 25 0 0 0 0 0 +135 1783757348100805700 DEPTH 45 1 0.81262622094805803 0.22222222222222218 2 7 2 7 0 0 161 25 2617 23664870 81600 857.85354614257812 5.9374000000000002 1265.6593 120960 69536 1 0 5898240 4423680 4423680 4426470 4492800 150 150 189 153 1975 0 0 0 0 25 0 0 0 0 0 +136 1783757349415194900 DEPTH 52 1 0.81162826506712771 0.23131313131313144 1 8 1 8 0 0 112 20 2562 23664858 81600 847.49281311035156 5.9258000000000006 1312.3607999999999 120960 68971 1 0 5898240 4423680 4423680 4426456 4492800 155 156 172 162 1917 0 0 0 0 20 0 0 0 0 0 +137 1783757350708017700 DEPTH 54 1 0.81077845875879628 0.23131313131313144 1 8 1 8 0 0 121 33 2546 23664817 81600 849.3851318359375 6.0335000000000001 1291.2560000000001 120960 68818 1 0 5898240 4423680 4423680 4426416 4492800 184 150 181 163 1868 0 0 0 0 33 0 0 0 0 0 +138 1783757351821918100 DEPTH 8 1 0.88293623465009208 0 2 5 2 5 0 0 233 19 2565 23664961 81600 853.76637268066406 5.9630000000000001 1112.454 120960 49467 1 0 5898240 4423680 4423680 4426559 4492800 162 156 156 170 1921 0 0 0 0 19 0 0 0 0 0 +139 1783757353122916400 DEPTH 13 1 0.88028624385772958 0.0090909090909090783 1 6 1 6 0 0 187 24 2490 23664829 81600 842.99446105957031 5.9381000000000004 1271.9141999999999 120960 48173 1 0 5898240 4423680 4423680 4426427 4492800 161 156 165 156 1852 0 1 0 0 23 0 0 0 0 0 +140 1783757354433413000 DEPTH 17 1 0.88910667046038494 0.018181818181818247 0 7 0 7 0 0 203 29 2517 23664794 81600 840.87167358398438 5.9398000000000009 1309.068 120960 53581 1 0 5898240 4423680 4423680 4426390 4492800 162 150 156 332 1717 0 0 0 0 29 0 0 0 0 0 +141 1783757355745525900 DEPTH 44 1 0.80996199179743766 0.22222222222222218 2 7 2 7 0 0 169 22 2578 23664850 81600 852.33000183105469 5.9220999999999995 1310.6043 120960 69021 1 0 5898240 4423680 4423680 4426449 4492800 175 150 180 151 1922 0 0 0 0 22 0 0 0 0 0 +142 1783757357020657300 DEPTH 46 1 0.80901760961961355 0.22222222222222218 2 7 2 7 0 0 329 16 2577 23664811 81600 858.14463806152344 5.9630999999999998 1256.3508999999999 120960 70064 1 0 5898240 4423680 4423680 4426409 4492800 183 156 175 220 1843 0 0 1 0 15 0 0 0 0 0 +143 1783757358332393700 DEPTH 2 1 0.80149248103997073 0.33333333333333343 2 8 2 8 0 0 146 24 2544 23664972 81600 855.82832336425781 6.1499000000000006 1263.3027999999999 120960 69566 1 0 5898240 4423680 4423680 4426570 4492800 166 156 160 175 1887 0 0 0 1 23 0 0 0 0 0 +144 1783757359644802100 DEPTH 21 1 0.80055169677967442 0.35151515151515161 0 10 0 10 0 0 183 38 2553 23664765 81600 856.96096801757812 5.9502000000000006 1288.8726999999999 120960 69988 1 0 5898240 4423680 4423680 4426363 4492800 155 150 152 157 1939 0 0 0 0 38 0 0 0 0 0 +145 1783757360950799600 DEPTH 9 1 0.8631838800545184 0.11111111111111109 2 6 2 6 0 0 141 14 2574 23664853 81600 850.51615905761719 5.9319000000000006 1280.7813000000001 120960 69021 1 0 5898240 4423680 4423680 4426453 4492800 171 150 166 171 1916 0 0 0 0 14 0 0 0 0 0 +146 1783757362249518900 DEPTH 56 1 0.86085593530076177 0 2 5 2 5 0 0 225 26 2568 23664819 81600 835.43394470214844 5.9550999999999998 1297.2089000000001 120960 38521 1 0 5898240 4423680 4423680 4426418 4492800 186 150 165 438 1629 0 0 0 0 26 0 0 0 0 0 +147 1783757363598853300 DEPTH 11 1 0.85829424443083735 0.12929292929292943 0 8 0 8 0 0 109 14 2560 23664797 81600 847.09672546386719 5.9643000000000006 1330.2113999999999 120960 69058 1 0 5898240 4423680 4423680 4426395 4492800 158 154 192 366 1690 0 0 0 0 14 0 0 0 0 0 +148 1783757364721818700 DEPTH 8 1 0.82690134751633393 0 2 5 2 5 0 0 233 17 2547 23664857 81600 849.44985961914062 5.9417000000000009 1092.9869000000001 120960 39568 1 0 5898240 4423680 4423680 4426457 4492800 162 156 156 221 1852 0 0 0 0 17 0 0 0 0 0 +149 1783757366023641000 DEPTH 1 1 0.83195984779099741 0.12020202020202017 1 7 1 7 0 0 132 20 2566 23664810 81600 844.85060119628906 5.9402999999999997 1282.8652 120960 57680 1 0 5898240 4423680 4423680 4426410 4492800 189 150 150 162 1915 0 0 0 0 20 0 0 0 0 0 +150 1783757367328621600 DEPTH 13 1 0.83456642912964063 0.0090909090909090783 1 6 1 6 0 0 187 17 2493 23664823 81600 838.6219482421875 5.9588000000000001 1283.9641999999999 120960 38827 1 0 5898240 4423680 4423680 4426423 4492800 160 156 165 157 1855 0 0 0 0 17 0 0 0 0 0 +151 1783757368685938200 DEPTH 17 1 0.84258957465696793 0.018181818181818247 0 7 0 7 0 0 204 14 2527 23664855 81600 837.37882995605469 5.9672999999999998 1336.9077 120960 41640 1 0 5898240 4423680 4423680 4426455 4492800 165 150 156 326 1730 0 0 0 0 14 0 0 0 0 0 +152 1783757369755873900 DEPTH 12 1 0.78800986262974038 0.43535353535353549 3 8 3 8 0 0 193 52 2507 23664857 81600 851.536865234375 5.9733999999999998 1051.6578 120960 69314 1 0 5898240 4423680 4423680 4426456 4492800 167 155 156 171 1858 0 0 0 0 52 0 0 0 0 0 +153 1783757371109594900 DEPTH 48 1 0.78806685328115089 0.44444444444444453 2 9 2 9 1 0 174 26 2562 23664938 81600 850.06205749511719 6.0109000000000004 1296.6094000000001 120960 69282 1 0 5898240 4423680 4423680 4426537 4492800 156 156 156 160 1934 0 0 0 1 25 0 0 0 0 1 +154 1783757371306073500 REFRESH 37 0 0.78439018997103005 0.67575757575757578 1 12 1 12 0 0 144 11 416 3943913 55200 148.50968933105469 1.0089999999999999 182.6071 20160 14781 0 0 983040 737280 737280 737513 748800 28 26 26 26 310 0 0 0 0 11 0 0 0 0 0 +155 1783757371510397400 REFRESH 41 0 0.78523937142681755 0.45353535353535362 1 10 1 10 0 0 113 8 413 3943909 55200 148.78720092773438 0.98540000000000005 191.25200000000001 20160 14677 0 0 983040 737280 737280 737509 748800 28 26 38 26 295 0 0 0 0 8 0 0 0 0 0 +156 1783757371733599300 REFRESH 25 0 0.77615207903757233 0.76868686868686875 3 11 3 11 0 0 124 10 418 3943901 55200 149.21113586425781 0.99070000000000003 181.3323 20160 14708 0 0 983040 737280 737280 737501 748800 28 26 26 26 312 0 0 0 0 10 0 0 0 0 0 +157 1783757371932873200 REFRESH 40 0 0.7845685850067774 0.67575757575757578 1 12 1 12 0 0 131 14 416 3943932 55200 149.56544494628906 1.0001 185.93430000000001 20160 14735 0 0 983040 737280 737280 737532 748800 26 26 27 25 312 0 0 0 0 14 0 0 0 0 0 +158 1783757372143041600 REFRESH 9 0 0.73423085924548226 0.11111111111111109 2 6 2 6 0 0 141 5 421 3943943 55200 149.83168029785156 1.0085 208.0958 20160 12958 0 0 983040 737280 737280 737543 748800 42 26 46 30 277 1 0 0 0 4 0 0 0 0 0 +159 1783757372332827100 REFRESH 45 0 0.79428274647865704 0.22222222222222218 2 7 2 7 0 0 161 12 419 3943927 55200 149.79890441894531 0.99209999999999998 188.02459999999999 20160 13056 0 0 983040 737280 737280 737527 748800 27 26 123 31 212 0 0 0 0 12 0 0 0 0 0 +160 1783757372537285900 REFRESH 39 0 0.78646306132780519 0.43535353535353549 3 8 3 8 0 0 179 6 412 3943904 55200 149.98323059082031 0.98370000000000002 181.23660000000001 20160 14595 0 0 983040 737280 737280 737504 748800 27 26 26 27 306 0 0 0 0 6 0 0 0 0 0 +161 1783757372736154500 REFRESH 22 0 0.7784478834477232 0.76868686868686875 3 11 3 11 0 0 136 10 422 3943934 55200 150.96421813964844 0.99429999999999996 186.68469999999999 20160 14686 0 0 983040 737280 737280 737533 748800 27 26 26 27 316 0 0 0 0 10 0 0 0 0 0 +162 1783757372960345500 REFRESH 42 0 0.84832104935854513 0.11111111111111109 2 6 2 6 0 0 147 6 421 3943897 55200 148.9039306640625 1.0058 222.51920000000001 20160 12229 0 0 983040 737280 737280 737496 748800 50 26 52 116 177 0 0 0 0 6 0 0 0 0 0 +163 1783757373175960100 REFRESH 12 0 0.63716358279253649 0.43535353535353549 3 8 3 8 0 0 193 5 413 3943934 55200 150.05506896972656 0.98819999999999997 181.9051 20160 14171 0 0 983040 737280 737280 737533 748800 49 26 32 82 224 0 0 0 0 5 0 0 0 0 0 +164 1783757373373311800 REFRESH 57 0 0.77962416201700357 0.77777777777777779 2 12 2 12 0 0 143 11 411 3943900 55200 149.465087890625 0.99790000000000001 182.8503 20160 14705 0 0 983040 737280 737280 737499 748800 31 26 27 26 301 0 0 0 0 11 0 0 0 0 0 +165 1783757373571405300 REFRESH 58 0 0.77968272283483209 0.77777777777777779 2 12 2 12 0 0 134 11 417 3943914 55200 150.08767700195312 0.9869 183.3305 20160 14711 0 0 983040 737280 737280 737514 748800 26 26 26 26 313 0 0 0 1 10 0 0 0 0 0 +166 1783757373770987400 REFRESH 4 0 0.77774118484176691 0.78686868686868705 1 13 1 13 0 0 66 6 420 3943929 55200 148.49842834472656 1.0059 186.518 20160 14694 0 0 983040 737280 737280 737529 748800 26 25 26 25 318 0 0 0 1 5 0 0 0 0 0 +167 1783757373960507000 REFRESH 53 0 0.85199468659772726 0.12929292929292943 0 8 0 8 0 0 155 2 410 3943907 55200 149.27769470214844 0.98880000000000001 187.29419999999999 20160 13017 0 0 983040 737280 737280 737507 748800 35 26 39 53 257 0 0 0 0 2 0 0 0 0 0 +168 1783757374156419200 REFRESH 10 0 0.78691013000480869 0.45353535353535362 1 10 1 10 0 0 121 7 421 3943888 55200 150.46041870117188 1.0471999999999999 182.69290000000001 20160 14608 0 0 983040 737280 737280 737488 748800 28 25 27 35 306 0 0 0 0 7 0 0 0 0 0 +169 1783757374391066700 REFRESH 54 0 0.80303273191032043 0.23131313131313144 1 8 1 8 0 0 121 5 419 3943928 55200 149.62380981445312 0.98829999999999996 214.41370000000001 20160 13116 0 0 983040 737280 737280 737527 748800 113 25 41 58 182 0 0 0 0 5 0 0 0 0 0 +170 1783757374609165700 REFRESH 14 0 0.77202219686226414 0.57373737373737377 0 12 0 12 0 0 127 10 417 3943954 55200 149.88493347167969 0.9879 195.13759999999999 20160 14600 0 0 983040 737280 737280 737554 748800 28 25 47 26 291 0 0 0 0 10 0 0 0 0 0 +171 1783757374809835900 REFRESH 6 0 0.78003202395256288 0.76868686868686875 3 11 3 11 0 0 123 7 417 3943905 55200 148.93260192871094 0.99239999999999995 184.62020000000001 20160 14703 0 0 983040 737280 737280 737505 748800 27 26 30 26 308 0 0 0 1 6 0 0 0 0 0 +172 1783757375005470800 REFRESH 31 0 0.84098390711870319 0.11111111111111109 2 6 2 6 0 0 141 5 425 3943899 55200 148.72268676757812 0.98660000000000003 194.07339999999999 20160 12155 0 0 983040 737280 737280 737498 748800 50 26 50 97 202 0 0 0 0 5 0 0 0 0 0 +173 1783757375205053700 REFRESH 13 0 0.94983715081461062 0.0090909090909090783 1 6 1 6 0 0 187 3 414 3943924 55200 150.3109130859375 0.99790000000000001 198.4161 20160 12280 0 0 983040 737280 737280 737523 748800 67 26 63 94 164 0 0 0 0 3 0 0 0 0 0 +174 1783757375412250200 REFRESH 3 0 0.7862415043925135 0.44444444444444453 2 9 2 9 0 0 149 6 418 3943885 55200 150.10585021972656 0.98440000000000005 185.58109999999999 20160 14786 0 0 983040 737280 737280 737485 748800 62 26 63 32 235 0 0 0 0 6 0 0 0 0 0 +175 1783757375629884400 REFRESH 30 0 0.80832436294777676 0.23131313131313144 1 8 1 8 0 0 149 5 414 3943908 55200 149.83987426757812 0.98980000000000001 200.57570000000001 20160 13037 0 0 983040 737280 737280 737508 748800 98 25 51 53 187 0 0 0 0 5 0 0 0 0 0 +176 1783757375824386500 REFRESH 8 0 0.97215665279254049 0 2 5 2 5 0 0 233 6 414 3943901 55200 150.64883422851562 1.0015000000000001 193.40520000000001 20160 11929 0 0 983040 737280 737280 737500 748800 27 26 26 54 281 0 0 0 0 6 0 0 0 0 0 +177 1783757376030600800 REFRESH 5 0 0.76726309521581804 0.66666666666666674 2 11 2 11 0 0 97 5 408 3943915 55200 149.34083557128906 0.98819999999999997 181.26740000000001 20160 14845 0 0 983040 737280 737280 737515 748800 34 26 44 58 246 0 0 0 0 5 0 0 0 0 0 +178 1783757376220237900 REFRESH 32 0 0.80989408611595604 0.23131313131313144 1 8 1 8 0 0 132 7 419 3943917 55200 148.96844482421875 0.98829999999999996 188.47999999999999 20160 12977 0 0 983040 737280 737280 737517 748800 54 25 36 47 257 0 0 0 0 7 0 0 0 0 0 +179 1783757376426433100 REFRESH 29 0 0.78584948671919574 0.67575757575757578 1 12 1 12 0 0 129 9 414 3943902 55200 149.77740478515625 0.98740000000000006 182.86349999999999 20160 14632 0 0 983040 737280 737280 737502 748800 26 26 26 26 310 0 0 0 0 9 0 0 0 0 0 +180 1783757376634361800 REFRESH 26 0 0.78590659855909417 0.67575757575757578 1 12 1 12 0 0 107 9 420 3943926 55200 149.83885192871094 1.1076999999999999 191.21979999999999 20160 14778 0 0 983040 737280 737280 737526 748800 25 26 26 26 317 0 0 0 0 9 0 0 0 0 0 +181 1783757376835515500 REFRESH 20 0 0.78196361626901834 0.66666666666666674 2 11 2 11 0 0 125 11 415 3943920 55200 149.67808532714844 1.0042 183.0033 20160 14729 0 0 983040 737280 737280 737519 748800 29 26 25 25 310 1 0 0 0 10 0 0 0 0 0 +182 1783757377044253600 REFRESH 34 0 0.7766633972921263 0.78686868686868705 1 13 1 13 0 0 111 3 420 3943896 55200 148.17893981933594 0.98799999999999999 186.19120000000001 20160 14760 0 0 983040 737280 737280 737495 748800 26 25 25 25 319 0 0 0 0 3 0 0 0 0 0 +183 1783757377241878700 REFRESH 18 0 0.77322022764158704 1 2 14 2 14 0 0 131 10 421 3943918 55200 149.67500305175781 0.98780000000000001 181.6514 20160 14730 0 0 983040 737280 737280 737518 748800 27 25 26 25 318 0 0 0 0 10 0 0 0 0 0 +184 1783757377442150400 REFRESH 35 0 0.78213410761487467 0.66666666666666674 2 11 2 11 0 0 172 13 413 3943919 55200 149.86758422851562 0.98899999999999999 184.173 20160 14805 0 0 983040 737280 737280 737519 748800 27 26 26 26 308 0 0 0 0 13 0 0 0 0 0 +185 1783757377642761000 REFRESH 1 0 0.84539245604608548 0.12020202020202017 1 7 1 7 0 0 132 5 413 3943906 55200 149.78970336914062 1.0021 199.2071 20160 12073 0 0 983040 737280 737280 737506 748800 123 26 33 30 201 0 0 0 0 5 0 0 0 0 0 +186 1783757377836687900 REFRESH 16 0 0.85745558043351566 0.11111111111111109 2 6 2 6 0 0 195 2 417 3943921 55200 150.30886840820312 0.98860000000000003 192.3683 20160 13043 0 0 983040 737280 737280 737521 748800 51 26 95 30 215 0 0 0 0 2 0 0 0 0 0 +187 1783757378065355500 REFRESH 56 0 0.97628191025587552 0 2 5 2 5 0 0 225 6 411 3943926 55200 149.47430419921875 1.0038 227.4211 20160 12129 0 0 983040 737280 737280 737526 748800 100 26 38 115 132 0 0 0 0 6 0 0 0 0 0 +188 1783757378287181000 REFRESH 27 0 0.78100298678980329 0.7959595959595962 0 14 0 14 0 0 159 10 413 3943888 55200 149.41285705566406 0.98770000000000002 180.6189 20160 14676 0 0 983040 737280 737280 737488 748800 26 26 26 25 310 1 0 0 0 9 0 0 0 0 0 +189 1783757378487569700 REFRESH 51 0 0.78105926215277099 0.76868686868686875 3 11 3 11 0 0 105 14 416 3943919 55200 149.27871704101562 0.99719999999999998 183.31200000000001 20160 14703 0 0 983040 737280 737280 737519 748800 26 26 27 26 311 0 0 0 0 14 0 0 0 0 0 +190 1783757378682410000 REFRESH 15 0 0.78011544603816274 0.76868686868686875 3 11 3 11 0 0 107 11 419 3943918 55200 149.14559936523438 1.0024999999999999 181.1172 20160 14678 0 0 983040 737280 737280 737518 748800 28 26 27 28 310 0 0 0 0 11 0 0 0 0 0 +191 1783757378894213100 REFRESH 55 0 0.78652868159097356 0.67575757575757578 1 12 1 12 0 0 156 8 416 3943891 55200 150.11737060546875 1.0053000000000001 189.4606 20160 14704 0 0 983040 737280 737280 737491 748800 27 26 25 26 312 0 0 0 0 8 0 0 0 0 0 +192 1783757379095034400 REFRESH 38 0 0.78021611327959595 0.55555555555555558 2 10 2 10 0 0 126 7 415 3943907 55200 149.47532653808594 0.98340000000000005 183.3674 20160 14713 0 0 983040 737280 737280 737506 748800 42 26 39 33 275 0 0 0 0 7 0 0 0 0 0 +193 1783757379295539800 REFRESH 36 0 0.77313296244578655 0.6575757575757577 3 10 3 10 0 0 126 8 421 3943905 55200 150.24128723144531 0.99099999999999999 184.60720000000001 20160 14791 0 0 983040 737280 737280 737505 748800 33 26 27 28 307 0 0 0 0 8 0 0 0 0 0 +194 1783757379496910900 REFRESH 43 0 0.78033927254095692 0.76868686868686875 3 11 3 11 0 0 147 10 413 3943873 55200 148.77491760253906 0.99990000000000001 188.06 20160 14656 0 0 983040 737280 737280 737473 748800 30 26 28 27 302 0 0 0 0 10 0 0 0 0 0 +195 1783757379720389900 REFRESH 44 0 0.80339399317279614 0.22222222222222218 2 7 2 7 0 0 169 10 414 3943925 55200 149.83782958984375 0.99109999999999998 221.86799999999999 20160 13021 0 0 983040 737280 737280 737525 748800 83 26 48 33 224 0 0 0 0 10 0 0 0 0 0 +196 1783757379935483200 REFRESH 28 0 0.78480778720490707 0.67575757575757578 1 12 1 12 0 0 152 6 417 3943890 55200 150.52163696289062 1.0027999999999999 189.27690000000001 20160 14708 0 0 983040 737280 737280 737490 748800 27 25 26 26 313 0 0 0 0 6 0 0 0 0 0 +197 1783757380138698100 REFRESH 19 0 0.7723393911286095 0.66666666666666674 2 11 2 11 1 0 138 6 420 3943918 55200 150.26687622070312 0.99270000000000003 183.36879999999999 20160 14579 0 0 983040 737280 737280 737517 748800 27 26 28 32 307 0 0 0 0 6 0 0 0 0 1 +198 1783757380338666100 REFRESH 49 0 0.77039182483080315 0.6575757575757577 3 10 3 10 0 0 134 6 415 3943935 55200 149.03706359863281 0.98450000000000004 182.30070000000001 20160 14667 0 0 983040 737280 737280 737535 748800 26 26 28 32 303 0 0 0 0 6 0 0 0 0 0 +199 1783757380543989900 REFRESH 24 0 0.77745036490610642 0.87070707070707098 4 11 4 11 0 0 154 6 413 3943911 55200 150.45120239257812 0.98680000000000001 185.87430000000001 20160 14631 0 0 983040 737280 737280 737510 748800 27 26 26 26 308 0 0 0 0 6 0 0 0 0 0 +200 1783757380747886300 REFRESH 47 0 0.78502945915291189 0.66666666666666674 2 11 2 11 0 0 120 3 419 3943874 55200 148.64486694335938 0.99050000000000005 188.01349999999999 20160 14741 0 0 983040 737280 737280 737474 748800 25 25 26 26 317 0 0 0 0 3 0 0 0 0 0 +201 1783757380948918400 REFRESH 2 0 0.79323721939150005 0.33333333333333343 2 8 2 8 0 0 146 10 417 3943945 55200 149.87571716308594 1.0092000000000001 199.43379999999999 20160 14118 0 0 983040 737280 737280 737545 748800 34 26 34 69 254 0 0 0 0 10 0 0 0 0 0 +202 1783757381178653800 REFRESH 11 0 0.85193395624025525 0.12929292929292943 0 8 0 8 0 0 109 3 416 3943928 55200 150.49932861328125 0.98970000000000002 228.30179999999999 20160 12830 0 0 983040 737280 737280 737527 748800 34 26 62 129 165 0 0 0 0 3 0 0 0 0 0 +203 1783757381367028000 REFRESH 33 0 0.85558221231593534 0.12020202020202017 1 7 1 7 0 0 186 7 414 3943883 55200 149.90232849121094 0.98380000000000001 187.2439 20160 12939 0 0 983040 737280 737280 737483 748800 59 26 32 80 217 0 0 0 0 7 0 0 0 0 0 +204 1783757381599371400 REFRESH 17 0 0.97855526394197101 0.018181818181818247 0 7 0 7 0 0 204 4 413 3943925 55200 150.90911865234375 0.98380000000000001 230.6686 20160 12668 0 0 983040 737280 737280 737525 748800 41 26 38 109 199 0 0 0 0 4 0 0 0 0 0 +205 1783757381807390800 REFRESH 48 0 0.77939808445500658 0.44444444444444453 2 9 2 9 0 0 175 11 418 3943898 55200 149.02067565917969 1.1353 206.50299999999999 20160 14124 0 0 983040 737280 737280 737498 748800 37 26 27 52 276 0 0 0 0 11 0 0 0 0 0 +206 1783757382008980300 REFRESH 46 0 0.80302652068199287 0.22222222222222218 2 7 2 7 0 0 329 6 416 3943891 55200 149.59207153320312 0.98709999999999998 199.84620000000001 20160 12920 0 0 983040 737280 737280 737491 748800 37 26 32 57 264 0 0 0 0 6 0 0 0 0 0 +207 1783757382241753100 REFRESH 7 0 0.78741399270463541 0.67575757575757578 1 12 1 12 0 0 139 7 424 3943921 55200 150.21055603027344 1.0159 182.2826 20160 14723 0 0 983040 737280 737280 737521 748800 32 26 27 26 313 0 0 0 0 7 0 0 0 0 0 +208 1783757382432535600 REFRESH 21 0 0.79268888616788902 0.35151515151515161 0 10 0 10 0 0 183 5 417 3943903 55200 148.79647827148438 0.98340000000000005 189.0042 20160 14099 0 0 983040 737280 737280 737503 748800 31 26 29 29 302 0 0 0 0 5 0 0 0 0 0 +209 1783757382632382800 REFRESH 0 0 0.78452307696265089 0.67575757575757578 1 12 1 12 0 0 95 7 423 3943937 55200 149.53062438964844 0.98640000000000005 182.9195 20160 14751 0 0 983040 737280 737280 737537 748800 27 25 26 27 318 0 0 0 0 7 0 0 0 0 0 +210 1783757382841808300 REFRESH 23 0 0.77372034715343696 0.99090909090909129 3 13 3 13 0 0 127 6 411 3943926 55200 149.92179870605469 0.98699999999999999 192.56989999999999 20160 14742 0 0 983040 737280 737280 737526 748800 27 26 27 27 304 0 0 0 0 6 0 0 0 0 0 +211 1783757383080604800 REFRESH 52 0 0.80591676725574501 0.23131313131313144 1 8 1 8 0 0 112 3 417 3943917 55200 149.06367492675781 1.0019 236.99430000000001 20160 13009 0 0 983040 737280 737280 737517 748800 30 26 58 36 267 0 0 0 0 3 0 0 0 0 0 +212 1783757383303935400 REFRESH 50 0 0.78726623397172335 0.44444444444444453 2 9 2 9 0 0 142 9 417 3943914 55200 148.41343688964844 0.99050000000000005 187.44649999999999 20160 14654 0 0 983040 737280 737280 737514 748800 33 26 32 58 268 0 0 0 0 9 0 0 0 0 0 +213 1783757384657606700 DEPTH 56 1 0.96735625531164804 0 2 5 2 5 0 0 225 25 2559 23664860 81600 849.77922058105469 5.9340999999999999 1352.2429 120960 57528 1 0 5898240 4423680 4423680 4426460 4492800 215 150 168 326 1700 0 0 0 0 25 0 0 0 0 0 +214 1783757385768283100 DEPTH 8 1 0.96411605804950318 0 2 5 2 5 0 0 233 26 2562 23664836 81600 861.77313232421875 5.9537000000000004 1109.2806 120960 56649 1 0 5898240 4423680 4423680 4426435 4492800 162 156 156 178 1910 0 0 0 0 26 0 0 0 0 0 +215 1783757387098859300 DEPTH 13 1 0.95918799768160878 0.0090909090909090783 1 6 1 6 0 0 187 21 2494 23664835 81600 855.41444396972656 6.1017000000000001 1305.1876999999999 120960 58026 1 0 5898240 4423680 4423680 4426433 4492800 161 156 167 156 1854 0 0 0 0 21 0 0 0 0 0 +216 1783757388455441200 DEPTH 9 1 0.84345887487207982 0.11111111111111109 2 6 2 6 0 0 141 17 2572 23664874 81600 852.92204284667969 5.9470000000000001 1291.9509 120960 64499 1 0 5898240 4423680 4423680 4426473 4492800 185 150 170 173 1894 2 0 0 0 15 0 0 0 0 0 +217 1783757389617791000 DEPTH 16 1 0.84212828722845767 0.11111111111111109 2 6 2 6 0 0 195 23 2535 23664787 81600 858.67720031738281 6.2244999999999999 1160.9712999999999 120960 65424 1 0 5898240 4423680 4423680 4426387 4492800 162 153 172 154 1894 0 0 0 0 23 0 0 0 0 0 +218 1783757391019823400 DEPTH 42 1 0.83898132934078851 0.11111111111111109 2 6 2 6 0 0 149 27 2574 23664873 81600 854.783203125 6.1449999999999996 1360.0182 120960 60873 1 0 5898240 4423680 4423680 4426473 4492800 163 150 156 196 1909 0 1 0 0 26 0 0 0 0 0 +219 1783757392266443600 DEPTH 53 1 0.83816511734451482 0.12929292929292943 0 8 0 8 1 0 155 36 2510 23664870 81600 854.61817932128906 5.8807999999999998 1244.4862000000001 120960 64772 1 0 5898240 4423680 4423680 4426469 4492800 169 156 166 176 1843 0 0 0 0 36 0 0 0 0 1 +220 1783757393576381400 DEPTH 1 1 0.83442387300890797 0.12020202020202017 1 7 1 7 0 0 132 22 2564 23664876 81600 854.86546325683594 5.9565999999999999 1307.9553000000001 120960 60111 1 0 5898240 4423680 4423680 4426476 4492800 227 150 156 156 1875 0 0 0 0 22 0 0 0 0 0 +221 1783757394939539200 DEPTH 17 1 0.88726668194334868 0.018181818181818247 0 7 0 7 0 0 204 17 2508 23664817 81600 852.87147521972656 6.020900000000001 1328.3099999999999 120960 58735 1 0 5898240 4423680 4423680 4426416 4492800 168 151 156 295 1738 0 0 0 0 17 0 0 0 0 0 +222 1783757396233556600 DEPTH 31 1 0.83110914513436152 0.11111111111111109 2 6 2 6 0 0 141 27 2552 23664845 81600 853.0880126953125 5.9635000000000007 1277.3644999999999 120960 60408 1 0 5898240 4423680 4423680 4426443 4492800 176 150 162 256 1808 0 0 0 0 27 0 0 0 0 0 +223 1783757397458887500 DEPTH 32 1 0.79995354402851815 0.23131313131313144 1 8 1 8 1 0 133 39 2567 23664926 81600 851.81155395507812 5.9413999999999998 1209.9074000000001 120960 65379 1 0 5898240 4423680 4423680 4426526 4492800 170 150 156 161 1930 0 0 1 0 38 0 0 0 0 1 +224 1783757398737133400 DEPTH 45 1 0.79882078133361645 0.22222222222222218 2 7 2 7 0 0 161 30 2613 23664865 81600 857.9656982421875 7.2660999999999998 1264.0527999999999 120960 64882 1 0 5898240 4423680 4423680 4426464 4492800 150 150 219 153 1941 0 0 0 0 30 0 0 0 0 0 +225 1783757400002730300 DEPTH 30 1 0.79676662728511771 0.23131313131313144 1 8 1 8 0 0 151 23 2537 23664832 81600 852.68617248535156 5.9225000000000003 1252.2855999999999 120960 64909 1 0 5898240 4423680 4423680 4426430 4492800 212 150 190 186 1799 0 0 0 0 23 0 0 0 0 0 +226 1783757401372419400 DEPTH 44 1 0.79648055946098784 0.22222222222222218 2 7 2 7 0 0 170 15 2592 23664797 81600 853.38101196289062 5.9588000000000001 1313.5225 120960 65054 1 0 5898240 4423680 4423680 4426396 4492800 176 150 183 163 1920 0 0 0 0 15 0 0 0 0 0 +227 1783757402721347600 DEPTH 56 1 0.85266599637651208 0 2 5 2 5 0 0 225 16 2549 23664833 81600 841.22627258300781 5.9355000000000002 1314.5536999999999 120960 46515 1 0 5898240 4423680 4423680 4426432 4492800 221 150 168 373 1637 0 0 0 0 16 0 0 0 0 0 +228 1783757404075487500 DEPTH 54 1 0.79241239577574596 0.23131313131313144 1 8 1 8 0 0 121 15 2549 23664766 81600 849.06051635742188 5.9534000000000002 1318.8967 120960 64502 1 0 5898240 4423680 4423680 4426366 4492800 297 150 204 185 1713 0 0 1 0 14 0 0 0 0 0 +229 1783757405219651600 DEPTH 8 1 0.85979025655383279 0 2 5 2 5 0 0 233 20 2551 23664778 81600 854.58151245117188 6.0701000000000001 1124.2438999999999 120960 45790 1 0 5898240 4423680 4423680 4426376 4492800 164 156 156 188 1887 0 0 0 0 20 0 0 0 0 0 +230 1783757406523623500 DEPTH 13 1 0.85535705348252644 0.0090909090909090783 1 6 1 6 1 0 187 12 2494 23664901 81600 843.44413757324219 5.9882999999999997 1276.3791000000001 120960 47000 1 0 5898240 4423680 4423680 4426501 4492800 163 156 171 158 1846 0 0 0 0 12 0 0 0 0 1 +231 1783757407774239800 DEPTH 33 1 0.8453238005986814 0.12020202020202017 1 7 1 7 0 0 186 21 2529 23664849 81600 857.56915283203125 5.9426999999999994 1248.9492 120960 65197 1 0 5898240 4423680 4423680 4426448 4492800 163 156 153 161 1896 0 0 0 0 21 0 0 0 0 0 +232 1783757409120053800 DEPTH 11 1 0.83812824402756558 0.12929292929292943 0 8 0 8 0 0 109 8 2565 23664808 81600 848.23135375976562 5.9342999999999995 1325.9201 120960 64772 1 0 5898240 4423680 4423680 4426405 4492800 162 151 210 378 1664 0 0 0 0 8 0 0 0 0 0 +233 1783757410448675600 DEPTH 17 1 0.83274832399203313 0.018181818181818247 0 7 0 7 0 0 204 21 2519 23664826 81600 844.0457763671875 5.9357999999999995 1327.2666999999999 120960 47027 1 0 5898240 4423680 4423680 4426424 4492800 168 150 156 348 1697 0 0 0 0 21 0 0 0 0 0 +234 1783757411723884500 DEPTH 2 1 0.78483119352170061 0.33333333333333343 2 8 2 8 0 0 147 27 2542 23664777 81600 852.19479370117188 9.1847999999999992 1273.9016999999999 120960 68942 1 0 5898240 4423680 4423680 4426374 4492800 179 155 166 223 1819 0 0 0 0 27 0 0 0 0 0 +235 1783757413040514100 DEPTH 41 1 0.77615704128014418 0.45353535353535362 1 10 1 10 1 0 114 29 2550 23664827 81600 850.06912231445312 5.964599999999999 1297.4773 120960 70064 1 0 5898240 4423680 4423680 4426424 4492800 162 150 181 156 1901 0 0 0 0 29 0 0 0 0 1 +236 1783757414118878300 DEPTH 10 1 0.77605180652698613 0.45353535353535362 1 10 1 10 0 0 121 13 2557 23664804 81600 851.77003479003906 5.9249000000000001 1046.5064 120960 70559 1 0 5898240 4423680 4423680 4426404 4492800 157 150 152 164 1934 0 0 0 0 13 0 0 0 0 0 +237 1783757415433037600 DEPTH 56 1 0.80808163179915338 0 2 5 2 5 0 0 225 18 2560 23664822 81600 838.31568908691406 5.9344999999999999 1312.6264000000001 120960 37302 1 0 5898240 4423680 4423680 4426421 4492800 253 150 167 482 1508 0 0 0 0 18 0 0 0 0 0 +238 1783757416752472500 DEPTH 9 1 0.80715773903112153 0.11111111111111109 2 6 2 6 0 0 141 13 2583 23664870 81600 845.87940979003906 6.0072999999999999 1318.0056999999999 120960 52994 1 0 5898240 4423680 4423680 4426470 4492800 186 150 173 184 1890 0 0 0 0 13 0 0 0 0 0 +239 1783757418049514600 DEPTH 46 1 0.79224746092806231 0.22222222222222218 2 7 2 7 0 0 330 18 2594 23664858 81600 856.62471008300781 6.3419000000000008 1281.0567000000001 120960 65597 1 0 5898240 4423680 4423680 4426458 4492800 207 156 182 274 1775 0 0 0 0 18 0 0 0 0 0 +240 1783757419423736100 DEPTH 52 1 0.79167749384433417 0.23131313131313144 1 8 1 8 0 0 114 25 2571 23664844 81600 846.09580993652344 5.9692999999999996 1314.9911 120960 64472 1 0 5898240 4423680 4423680 4426443 4492800 162 156 174 175 1904 0 0 0 0 25 0 0 0 0 0 +241 1783757420562997900 DEPTH 16 1 0.82604652734530803 0.11111111111111109 2 6 2 6 0 0 195 24 2520 23664833 81600 850.7962646484375 6.0243999999999991 1137.6957 120960 53392 1 0 5898240 4423680 4423680 4426432 4492800 165 155 174 156 1870 0 0 0 0 24 0 0 0 0 0 +242 1783757421692203800 DEPTH 8 1 0.83560810221775961 0 2 5 2 5 0 0 233 22 2562 23664813 81600 850.59625244140625 5.9620999999999995 1111.991 120960 36309 1 0 5898240 4423680 4423680 4426411 4492800 168 156 156 201 1881 0 0 0 0 22 0 0 0 0 0 +243 1783757423004829100 DEPTH 21 1 0.77943297203147255 0.35151515151515161 0 10 0 10 1 0 184 35 2548 23664884 81600 855.70486450195312 5.9405999999999999 1287.3798999999999 120960 69504 1 0 5898240 4423680 4423680 4426484 4492800 159 150 151 156 1932 0 0 0 0 35 0 0 0 0 1 +244 1783757424259314900 DEPTH 50 1 0.7766309212585728 0.44444444444444453 2 9 2 9 0 0 143 33 2624 23664849 81600 851.51863098144531 5.9142000000000001 1229.1876999999999 120960 70297 1 0 5898240 4423680 4423680 4426446 4492800 156 150 150 170 1998 0 1 0 0 32 0 0 0 0 0 +245 1783757424494600800 REFRESH 52 0 0.58488528583127475 0.23131313131313144 1 8 1 8 0 0 114 8 419 3943914 55200 148.76261901855469 1.0136000000000001 233.8931 20160 12079 0 0 983040 737280 737280 737513 748800 41 26 70 35 247 0 0 0 0 8 0 0 0 0 0 +246 1783757424685735800 REFRESH 34 0 0.75987786867082907 0.78686868686868705 1 13 1 13 1 0 113 11 418 3943900 55200 148.748291015625 0.98809999999999998 176.72929999999999 20160 14724 0 0 983040 737280 737280 737500 748800 26 25 25 25 317 0 0 0 0 11 0 0 0 0 1 +247 1783757424869915000 REFRESH 10 0 0.6269126512755866 0.45353535353535362 1 10 1 10 0 0 121 8 421 3943921 55200 149.18144226074219 0.97950000000000004 182.864 20160 13856 0 0 983040 737280 737280 737521 748800 30 25 26 39 301 0 0 0 0 8 0 0 0 0 0 +248 1783757425097404200 REFRESH 21 0 0.57135462520540004 0.35151515151515161 0 10 0 10 0 0 184 6 416 3943882 55200 150.46234130859375 0.98340000000000005 191.5145 20160 12763 0 0 983040 737280 737280 737482 748800 38 26 32 31 289 0 0 0 0 6 0 0 0 0 0 +249 1783757425286747500 REFRESH 50 0 0.56718262394050467 0.44444444444444453 2 9 2 9 0 0 143 3 422 3943888 55200 148.86297607421875 1.0019 187.6216 20160 13972 0 0 983040 737280 737280 737488 748800 39 26 39 77 241 0 0 0 0 3 0 0 0 0 0 +250 1783757425494027400 REFRESH 53 0 0.83277677988764409 0.12929292929292943 0 8 0 8 0 0 155 8 411 3943920 55200 150.15922546386719 0.99739999999999995 203.00319999999999 20160 11997 0 0 983040 737280 737280 737518 748800 60 26 45 59 221 0 0 0 0 8 0 0 0 0 0 +251 1783757425700031500 REFRESH 25 0 0.76802221376276814 0.76868686868686875 3 11 3 11 0 0 124 6 417 3943904 55200 149.77127075195312 0.98680000000000001 180.79220000000001 20160 14688 0 0 983040 737280 737280 737504 748800 27 26 27 26 311 0 0 0 0 6 0 0 0 0 0 +252 1783757425907775200 REFRESH 36 0 0.76246841162171619 0.6575757575757577 3 10 3 10 0 0 126 6 416 3943892 55200 149.06777954101562 1.0111000000000001 186.10769999999999 20160 14635 0 0 983040 737280 737280 737492 748800 36 26 27 31 296 0 0 0 0 6 0 0 0 0 0 +253 1783757426106759100 REFRESH 37 0 0.77617658670988587 0.67575757575757578 1 12 1 12 0 0 144 13 414 3943918 55200 149.95864868164062 1.0038 182.6575 20160 14808 0 0 983040 737280 737280 737518 748800 29 26 26 26 307 0 0 0 0 13 0 0 0 0 0 +254 1783757426354299700 REFRESH 17 0 0.91882021799216962 0.018181818181818247 0 7 0 7 0 0 204 3 416 3943921 55200 149.79379272460938 0.98170000000000002 228.2193 20160 12103 0 0 983040 737280 737280 737521 748800 59 26 41 111 179 0 0 0 0 3 0 0 0 0 0 +255 1783757426554514800 REFRESH 49 0 0.75790198027898958 0.6575757575757577 3 10 3 10 0 0 134 4 411 3943926 55200 149.2357177734375 0.99619999999999997 184.62799999999999 20160 14641 0 0 983040 737280 737280 737526 748800 27 26 28 31 299 0 0 0 0 4 0 0 0 0 0 +256 1783757426765039200 REFRESH 14 0 0.76549225710323809 0.57373737373737377 0 12 0 12 0 0 127 5 416 3943926 55200 148.81689453125 1.0327999999999999 189.09649999999999 20160 14514 0 0 983040 737280 737280 737526 748800 28 25 45 26 292 0 0 0 0 5 0 0 0 0 0 +257 1783757426952771300 REFRESH 12 0 0.76667985228830304 0.43535353535353549 3 8 3 8 0 0 193 5 414 3943919 55200 148.88563537597656 1.0023 185.96789999999999 20160 13904 0 0 983040 737280 737280 737519 748800 51 26 34 87 216 0 0 0 0 5 0 0 0 0 0 +258 1783757427148960300 REFRESH 4 0 0.76526126374637515 0.78686868686868705 1 13 1 13 0 0 66 7 414 3943896 55200 149.47430419921875 0.98760000000000003 177.8039 20160 14823 0 0 983040 737280 737280 737496 748800 26 25 26 25 312 1 0 0 0 6 0 0 0 0 0 +259 1783757427357069000 REFRESH 55 0 0.77446655702095735 0.67575757575757578 1 12 1 12 0 0 156 11 417 3943892 55200 149.93919372558594 0.99409999999999998 183.4666 20160 14821 0 0 983040 737280 737280 737492 748800 28 26 25 26 312 0 0 0 0 11 0 0 0 0 0 +260 1783757427586973000 REFRESH 5 0 0.75533282330798468 0.66666666666666674 2 11 2 11 0 0 97 6 409 3943893 55200 149.10771179199219 0.9929 178.5025 20160 14493 0 0 983040 737280 737280 737493 748800 32 26 45 68 238 0 0 0 0 6 0 0 0 0 0 +261 1783757427791687000 REFRESH 41 0 0.7677662300224799 0.45353535353535362 1 10 1 10 0 0 114 4 414 3943895 55200 148.8721923828125 0.98799999999999999 203.1173 20160 14002 0 0 983040 737280 737280 737495 748800 37 26 50 26 275 0 0 0 0 4 0 0 0 0 0 +262 1783757428010893300 REFRESH 48 0 0.77195509422949793 0.44444444444444453 2 9 2 9 0 0 175 8 417 3943888 55200 148.64588928222656 1.0038 217.5222 20160 14001 0 0 983040 737280 737280 737488 748800 36 26 27 49 279 0 0 0 0 8 0 0 0 0 0 +263 1783757428212776900 REFRESH 22 0 0.77040131070289253 0.76868686868686875 3 11 3 11 0 0 136 5 420 3943906 55200 150.45513916015625 1.0027999999999999 183.30410000000001 20160 14761 0 0 983040 737280 737280 737506 748800 28 26 26 27 313 0 0 0 0 5 0 0 0 0 0 +264 1783757428424890200 REFRESH 51 0 0.77134910955434688 0.76868686868686875 3 11 3 11 0 0 107 13 412 3943918 55200 149.51936340332031 0.99019999999999997 188.80439999999999 20160 14751 0 0 983040 737280 737280 737518 748800 26 26 27 27 306 0 0 0 0 13 0 0 0 0 0 +265 1783757428633731100 REFRESH 23 0 0.75899683868928192 0.99090909090909129 3 13 3 13 0 0 128 8 413 3943914 55200 150.17984008789062 0.98850000000000005 183.06360000000001 20160 14755 0 0 983040 737280 737280 737514 748800 30 26 27 30 300 0 0 0 0 8 0 0 0 0 0 +266 1783757428864257500 REFRESH 54 0 0.78689468194988155 0.23131313131313144 1 8 1 8 0 0 121 3 419 3943908 55200 148.94694519042969 0.98919999999999997 211.26570000000001 20160 12043 0 0 983040 737280 737280 737506 748800 136 25 39 63 156 0 0 0 0 3 0 0 0 0 0 +267 1783757429080147300 REFRESH 38 0 0.76929603051458861 0.55555555555555558 2 10 2 10 0 0 126 6 419 3943899 55200 148.93875122070312 1.0091000000000001 188.19589999999999 20160 14681 0 0 983040 737280 737280 737499 748800 45 26 37 37 274 0 0 0 0 6 0 0 0 0 0 +268 1783757429277534600 REFRESH 47 0 0.76809675261748755 0.66666666666666674 2 11 2 11 0 0 120 8 417 3943944 55200 149.43971252441406 0.98880000000000001 182.40280000000001 20160 14735 0 0 983040 737280 737280 737543 748800 25 25 26 26 315 0 0 0 0 8 0 0 0 0 0 +269 1783757429469923900 REFRESH 8 0 0.95209827086644183 0 2 5 2 5 0 0 233 3 414 3943901 55200 150.26278686523438 1.0387 191.14959999999999 20160 12077 0 0 983040 737280 737280 737501 748800 43 26 26 64 255 0 0 0 0 3 0 0 0 0 0 +270 1783757429667582400 REFRESH 0 0 0.77129158833778144 0.67575757575757578 1 12 1 12 0 0 96 8 423 3943909 55200 150.04365539550781 0.98770000000000002 181.78809999999999 20160 14811 0 0 983040 737280 737280 737508 748800 27 25 26 27 318 0 0 0 0 8 0 0 0 0 0 +271 1783757429896503800 REFRESH 56 0 0.9545582930605635 0 2 5 2 5 0 0 226 11 417 3943917 55200 149.48760986328125 0.98599999999999999 227.34790000000001 20160 12157 0 0 983040 737280 737280 737517 748800 121 26 35 105 130 0 0 0 0 11 0 0 0 0 0 +272 1783757430153750300 REFRESH 11 0 0.83112221982716672 0.12929292929292943 0 8 0 8 0 0 109 3 420 3943913 55200 149.11590576171875 1.0153000000000001 233.01159999999999 20160 12017 0 0 983040 737280 737280 737513 748800 37 26 68 135 154 0 0 0 0 3 0 0 0 0 0 +273 1783757430343697400 REFRESH 33 0 0.83967862101603064 0.12020202020202017 1 7 1 7 0 0 186 3 418 3943895 55200 149.51936340332031 1.0004 188.5377 20160 12171 0 0 983040 737280 737280 737495 748800 54 26 32 69 237 0 0 0 0 3 0 0 0 0 0 +274 1783757430541322600 REFRESH 31 0 0.827153704667279 0.11111111111111109 2 6 2 6 0 0 141 4 418 3943904 55200 149.6494140625 0.98419999999999996 195.72970000000001 20160 12860 0 0 983040 737280 737280 737504 748800 58 26 47 82 205 0 0 0 0 4 0 0 0 0 0 +275 1783757430742602800 REFRESH 28 0 0.77142748141175832 0.67575757575757578 1 12 1 12 0 0 152 8 414 3943885 55200 150.35801696777344 0.98919999999999997 183.29650000000001 20160 14678 0 0 983040 737280 737280 737485 748800 27 25 26 26 310 1 0 0 0 7 0 0 0 0 0 +276 1783757430938657600 REFRESH 16 0 0.83094104122332713 0.11111111111111109 2 6 2 6 0 0 195 4 413 3943910 55200 149.38522338867188 1.0067999999999999 194.0941 20160 11979 0 0 983040 737280 737280 737510 748800 78 26 92 28 189 0 0 0 0 4 0 0 0 0 0 +277 1783757431165232900 REFRESH 44 0 0.79108164530439495 0.22222222222222218 2 7 2 7 0 0 170 6 425 3943913 55200 149.77127075195312 1.0105 224.81549999999999 20160 11950 0 0 983040 737280 737280 737513 748800 76 26 40 33 250 0 0 0 0 6 0 0 0 0 0 +278 1783757431438377900 REFRESH 15 0 0.77111106174095345 0.76868686868686875 3 11 3 11 0 0 107 8 417 3943896 55200 149.570556640625 1.0004999999999999 188.74770000000001 20160 14729 0 0 983040 737280 737280 737496 748800 30 26 29 27 305 0 0 0 0 8 0 0 0 0 0 +279 1783757431644227200 REFRESH 7 0 0.77441497801269266 0.67575757575757578 1 12 1 12 0 0 139 10 416 3943888 55200 149.77023315429688 1.0056 182.54239999999999 20160 14777 0 0 983040 737280 737280 737488 748800 31 26 26 26 307 0 0 0 0 10 0 0 0 0 0 +280 1783757431840167900 REFRESH 18 0 0.76460454172339321 1 2 14 2 14 0 0 131 12 418 3943907 55200 149.62074279785156 0.98829999999999996 179.5093 20160 14801 0 0 983040 737280 737280 737507 748800 28 25 27 25 313 1 0 0 0 11 0 0 0 0 0 +281 1783757432038403300 REFRESH 29 0 0.77650832448668372 0.67575757575757578 1 12 1 12 0 0 129 3 414 3943897 55200 149.42617797851562 0.98960000000000004 181.15559999999999 20160 14658 0 0 983040 737280 737280 737497 748800 27 26 26 26 309 0 0 0 0 3 0 0 0 0 0 +282 1783757432235280900 REFRESH 40 0 0.77755489791543353 0.67575757575757578 1 12 1 12 0 0 131 13 418 3943899 55200 149.13331604003906 0.98680000000000001 179.7834 20160 14716 0 0 983040 737280 737280 737499 748800 25 26 30 25 312 0 0 0 0 13 0 0 0 0 0 +283 1783757432440732600 REFRESH 1 0 0.83056455148892683 0.12020202020202017 1 7 1 7 0 0 132 6 420 3943896 55200 150.38362121582031 1.0019 204.2072 20160 12282 0 0 983040 737280 737280 737496 748800 157 26 33 29 175 0 0 0 0 6 0 0 0 0 0 +284 1783757432641958700 REFRESH 20 0 0.77404784607416433 0.66666666666666674 2 11 2 11 0 0 125 11 414 3943932 55200 150.24435424804688 0.9879 180.42910000000001 20160 14890 0 0 983040 737280 737280 737532 748800 31 26 29 25 303 0 0 0 0 11 0 0 0 0 0 +285 1783757432858237600 REFRESH 19 0 0.7610667800871761 0.66666666666666674 2 11 2 11 0 0 138 8 422 3943924 55200 149.60537719726562 0.98670000000000002 180.84729999999999 20160 14605 0 0 983040 737280 737280 737524 748800 27 26 28 34 307 0 0 0 0 8 0 0 0 0 0 +286 1783757433053545800 REFRESH 26 0 0.77674053051609793 0.67575757575757578 1 12 1 12 0 0 108 5 420 3943897 55200 148.97068786621094 0.99929999999999997 179.29060000000001 20160 14699 0 0 983040 737280 737280 737497 748800 25 26 28 26 315 0 0 0 0 5 0 0 0 0 0 +287 1783757433241749700 REFRESH 32 0 0.79499252668112586 0.23131313131313144 1 8 1 8 0 0 133 5 420 3943895 55200 149.37088012695312 0.98819999999999997 186.98599999999999 20160 12028 0 0 983040 737280 737280 737495 748800 71 25 35 48 241 0 0 0 0 5 0 0 0 0 0 +288 1783757433440904000 REFRESH 58 0 0.77247580983158415 0.77777777777777779 2 12 2 12 0 0 134 7 418 3943926 55200 150.19725036621094 0.98750000000000004 182.20570000000001 20160 14746 0 0 983040 737280 737280 737526 748800 26 26 27 26 313 1 0 0 0 6 0 0 0 0 0 +289 1783757433639105100 REFRESH 46 0 0.78723023252651614 0.22222222222222218 2 7 2 7 0 0 330 4 419 3943927 55200 150.02931213378906 0.98960000000000004 196.45830000000001 20160 12043 0 0 983040 737280 737280 737527 748800 61 26 35 80 217 0 0 0 0 4 0 0 0 0 0 +290 1783757433843047200 REFRESH 27 0 0.77256797117065201 0.7959595959595962 0 14 0 14 0 0 160 16 413 3943938 55200 150.24946594238281 1.0023 186.8347 20160 14733 0 0 983040 737280 737280 737538 748800 26 26 26 26 309 2 0 0 0 14 0 0 0 0 0 +291 1783757434047617200 REFRESH 57 0 0.77261395447308878 0.77777777777777779 2 12 2 12 0 0 143 7 416 3943920 55200 149.43437194824219 0.98570000000000002 181.20910000000001 20160 14678 0 0 983040 737280 737280 737519 748800 35 26 27 27 301 0 0 0 0 7 0 0 0 0 0 +292 1783757434284376000 REFRESH 43 0 0.77175987310027916 0.76868686868686875 3 11 3 11 0 0 147 6 418 3943918 55200 149.38931274414062 1.0001 188.9111 20160 14814 0 0 983040 737280 737280 737518 748800 31 26 27 27 307 0 0 0 0 6 0 0 0 0 0 +293 1783757434487057300 REFRESH 13 0 0.95364606823580989 0.0090909090909090783 1 6 1 6 0 0 187 3 414 3943918 55200 149.1988525390625 1.0347 201.0274 20160 12115 0 0 983040 737280 737280 737518 748800 83 26 64 103 138 0 0 0 0 3 0 0 0 0 0 +294 1783757434698467000 REFRESH 3 0 0.7768018414399942 0.44444444444444453 2 9 2 9 0 0 149 6 415 3943929 55200 149.61868286132812 0.99939999999999996 189.05789999999999 20160 14639 0 0 983040 737280 737280 737529 748800 56 26 58 34 241 0 0 0 0 6 0 0 0 0 0 +295 1783757434926433600 REFRESH 42 0 0.83520355869418905 0.11111111111111109 2 6 2 6 0 0 149 7 425 3943903 55200 149.4886474609375 0.98619999999999997 226.50899999999999 20160 12308 0 0 983040 737280 737280 737503 748800 63 26 56 102 178 0 0 0 0 7 0 0 0 0 0 +296 1783757435132571200 REFRESH 45 0 0.79402110453646613 0.22222222222222218 2 7 2 7 0 0 161 3 424 3943910 55200 150.37440490722656 0.98680000000000001 189.5866 20160 12031 0 0 983040 737280 737280 737510 748800 27 26 84 29 258 0 0 0 0 3 0 0 0 0 0 +297 1783757435345153600 REFRESH 39 0 0.7778329948004199 0.43535353535353549 3 8 3 8 0 0 179 3 409 3943893 55200 149.78662109375 0.9859 179.8356 20160 14555 0 0 983040 737280 737280 737493 748800 27 26 26 29 301 0 0 0 0 3 0 0 0 0 0 +298 1783757435536161100 REFRESH 30 0 0.79220997548089078 0.23131313131313144 1 8 1 8 0 0 151 8 415 3943890 55200 148.77183532714844 0.99299999999999999 189.57660000000001 20160 12138 0 0 983040 737280 737280 737490 748800 106 25 49 52 183 0 0 0 0 8 0 0 0 0 0 +299 1783757435740428800 REFRESH 35 0 0.77473665015417681 0.66666666666666674 2 11 2 11 0 0 172 9 413 3943920 55200 150.67750549316406 1.0024 188.89320000000001 20160 14786 0 0 983040 737280 737280 737520 748800 27 26 26 26 308 0 0 0 0 9 0 0 0 0 0 +300 1783757435941953700 REFRESH 24 0 0.76485824814023662 0.87070707070707098 4 11 4 11 0 0 154 9 411 3943933 55200 150.18496704101562 1.0102 184.928 20160 14796 0 0 983040 737280 737280 737532 748800 30 26 26 26 303 1 0 0 0 8 0 0 0 0 0 +301 1783757436134849600 REFRESH 2 0 0.7787923321160658 0.33333333333333343 2 8 2 8 0 0 147 10 418 3943931 55200 150.24537658691406 1.0586 191.4545 20160 12905 0 0 983040 737280 737280 737530 748800 41 26 38 74 239 0 0 0 0 10 0 0 0 0 0 +302 1783757436341416300 REFRESH 6 0 0.77011554065294141 0.76868686868686875 3 11 3 11 1 0 123 12 419 3943913 55200 149.24595642089844 1.0355000000000001 180.3109 20160 14748 0 0 983040 737280 737280 737512 748800 26 26 33 27 307 0 0 0 0 12 0 0 0 0 1 +303 1783757436563227800 REFRESH 9 0 0.83308667076861409 0.11111111111111109 2 6 2 6 0 0 141 5 418 3943939 55200 149.80928039550781 0.98509999999999998 204.60419999999999 20160 12564 0 0 983040 737280 737280 737539 748800 85 26 53 38 216 0 0 0 0 5 0 0 0 0 0 +304 1783757437916920200 DEPTH 56 1 0.95110692489382331 0 2 5 2 5 0 0 226 13 2555 23664703 81600 850.30294799804688 5.9495000000000005 1351.9025999999999 120960 57214 1 0 5898240 4423680 4423680 4426300 4492800 322 150 172 400 1511 0 0 0 0 13 0 0 0 0 0 +305 1783757439277016900 DEPTH 17 1 0.9490920809905885 0.018181818181818247 0 7 0 7 0 0 204 12 2522 23664926 81600 852.09187316894531 5.9550999999999998 1333.1967999999999 120960 58227 1 0 5898240 4423680 4423680 4426523 4492800 168 151 156 365 1682 0 0 0 0 12 0 0 0 0 0 +306 1783757440370236500 DEPTH 8 1 0.94201831683419401 0 2 5 2 5 0 0 233 16 2563 23664859 81600 860.94349670410156 5.8870999999999993 1091.7157999999999 120960 57162 1 0 5898240 4423680 4423680 4426457 4492800 169 156 156 182 1900 0 0 0 0 16 0 0 0 0 0 +307 1783757441208467300 DEPTH 33 1 0.8272000264306304 0.12020202020202017 1 7 1 7 0 0 186 17 1686 15776576 58560 588.82867431640625 3.9355000000000002 836.99699999999996 80640 42260 0 0 3932160 2949120 2949120 2950976 2995200 107 104 102 107 1266 0 0 0 0 17 0 0 0 0 0 diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/run.tsv b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/run.tsv new file mode 100644 index 00000000..21c93e03 --- /dev/null +++ b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/run.tsv @@ -0,0 +1,32 @@ +format szilassi-global-search-v4 +run_id dc1cc850-7e70-4d8b-8658-3252b04a8e61 +node_id LOOKICH +seed 496976786 +topology_from 0 +topology_to 58 +backend cuda-fp32 +objective_version 4 +cuda_math standard-fp32 +cuda_chains_requested 0 +cuda_chains_effective 61440 +cuda_iterations_per_batch 64 +cuda_depth_batches 6 +cuda_session_cache 59 +algorithm hybrid-quality-diversity-v1 +control_baseline_fraction 0.25 +strategy_weights baseline:4,replica:3,adaptive:3,pbt:3,injected:3 +fresh_fractions depth:1/4,breadth:7/8,injected-protected +replica_exchange group:8,temperature-ratio:16 +pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04 +verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1 +accounted_fp32_steps proposal-iterations-plus-injection-pbt;setup-retries-excluded +map_elites_bins determinant:8,edge:8,turn:8,extent:8 +map_elites_max_cells_per_topology 4096 +cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only +spsa adam:6,cpu-double,fp32-roundtrip,final-canonical-dd-gate +topology_scheduler ucb-plus-reward-plus-staleness,full-refresh-every-5 +topology_scheduler_mode quality-first +worst_priority_coefficient 0.65 +cpu_iterations_per_trial 50000 +degeneracy_formula worst-plus-0.05-rest +degeneracy_weight 0.01 diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/archive/delta_00000000000000000001_d6706eb3.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/archive/delta_00000000000000000001_d6706eb3.szar new file mode 100644 index 00000000..26d27b16 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/archive/delta_00000000000000000001_d6706eb3.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/archive/delta_00000000000000000002_f85440db.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/archive/delta_00000000000000000002_f85440db.szar new file mode 100644 index 00000000..9e5f4288 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/archive/delta_00000000000000000002_f85440db.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/archive/delta_00000000000000000003_f3e9dc83.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/archive/delta_00000000000000000003_f3e9dc83.szar new file mode 100644 index 00000000..4b8cfbe8 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/archive/delta_00000000000000000003_f3e9dc83.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/checkpoints/checkpoint_00000000000000000001_be10bc39.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/checkpoints/checkpoint_00000000000000000001_be10bc39.szcp new file mode 100644 index 00000000..6d4d11fb Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/checkpoints/checkpoint_00000000000000000001_be10bc39.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/checkpoints/checkpoint_00000000000000000002_632815a7.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/checkpoints/checkpoint_00000000000000000002_632815a7.szcp new file mode 100644 index 00000000..89673e83 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/checkpoints/checkpoint_00000000000000000002_632815a7.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/checkpoints/checkpoint_00000000000000000003_1e1eb909.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/checkpoints/checkpoint_00000000000000000003_1e1eb909.szcp new file mode 100644 index 00000000..2cf15b0d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_000/checkpoints/checkpoint_00000000000000000003_1e1eb909.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000001_4b373af3.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000001_4b373af3.szar new file mode 100644 index 00000000..a901a778 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000001_4b373af3.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000002_92bac425.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000002_92bac425.szar new file mode 100644 index 00000000..0cc9a149 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000002_92bac425.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000003_20641989.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000003_20641989.szar new file mode 100644 index 00000000..4f25a3b6 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000003_20641989.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000004_5419e286.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000004_5419e286.szar new file mode 100644 index 00000000..6f73d2ee Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000004_5419e286.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000005_0902746b.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000005_0902746b.szar new file mode 100644 index 00000000..5ebe6bce Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000005_0902746b.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000006_cd54c0b5.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000006_cd54c0b5.szar new file mode 100644 index 00000000..497d404e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000006_cd54c0b5.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000007_b9233284.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000007_b9233284.szar new file mode 100644 index 00000000..55645762 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/archive/delta_00000000000000000007_b9233284.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000001_b44e9770.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000001_b44e9770.szcp new file mode 100644 index 00000000..ae13b97e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000001_b44e9770.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000002_23b4c416.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000002_23b4c416.szcp new file mode 100644 index 00000000..b6b7e14a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000002_23b4c416.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000003_eff96a99.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000003_eff96a99.szcp new file mode 100644 index 00000000..fdb6d549 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000003_eff96a99.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000004_b1f31e9f.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000004_b1f31e9f.szcp new file mode 100644 index 00000000..177b8d52 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000004_b1f31e9f.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000005_05261371.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000005_05261371.szcp new file mode 100644 index 00000000..6c316463 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000005_05261371.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000006_f1bff9e8.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000006_f1bff9e8.szcp new file mode 100644 index 00000000..55e19219 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000006_f1bff9e8.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000007_7d363d10.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000007_7d363d10.szcp new file mode 100644 index 00000000..9a294de9 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_001/checkpoints/checkpoint_00000000000000000007_7d363d10.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000001_8d5620c3.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000001_8d5620c3.szar new file mode 100644 index 00000000..ecd62a7d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000001_8d5620c3.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000002_775852fa.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000002_775852fa.szar new file mode 100644 index 00000000..fea70c21 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000002_775852fa.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000003_e6599a74.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000003_e6599a74.szar new file mode 100644 index 00000000..3ebcdf31 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000003_e6599a74.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000004_da81fdce.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000004_da81fdce.szar new file mode 100644 index 00000000..a036018a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000004_da81fdce.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000005_3104d2ce.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000005_3104d2ce.szar new file mode 100644 index 00000000..083e8fe2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000005_3104d2ce.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000006_f033115a.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000006_f033115a.szar new file mode 100644 index 00000000..4dd52930 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/archive/delta_00000000000000000006_f033115a.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000001_ec3c290e.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000001_ec3c290e.szcp new file mode 100644 index 00000000..37a9d739 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000001_ec3c290e.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000002_fba16bac.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000002_fba16bac.szcp new file mode 100644 index 00000000..248f4fa4 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000002_fba16bac.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000003_131448ca.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000003_131448ca.szcp new file mode 100644 index 00000000..e6b9b8fb Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000003_131448ca.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000004_7eeaf13b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000004_7eeaf13b.szcp new file mode 100644 index 00000000..96a56fb6 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000004_7eeaf13b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000005_66e36d84.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000005_66e36d84.szcp new file mode 100644 index 00000000..4dd4a2c0 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000005_66e36d84.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000006_e33403c2.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000006_e33403c2.szcp new file mode 100644 index 00000000..e2b8e693 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_002/checkpoints/checkpoint_00000000000000000006_e33403c2.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/archive/delta_00000000000000000001_00c8b258.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/archive/delta_00000000000000000001_00c8b258.szar new file mode 100644 index 00000000..e1c1920f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/archive/delta_00000000000000000001_00c8b258.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/archive/delta_00000000000000000002_7384dcb2.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/archive/delta_00000000000000000002_7384dcb2.szar new file mode 100644 index 00000000..542f11d5 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/archive/delta_00000000000000000002_7384dcb2.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/archive/delta_00000000000000000003_a68ae316.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/archive/delta_00000000000000000003_a68ae316.szar new file mode 100644 index 00000000..b6c9aed7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/archive/delta_00000000000000000003_a68ae316.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/archive/delta_00000000000000000004_236edaeb.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/archive/delta_00000000000000000004_236edaeb.szar new file mode 100644 index 00000000..b4795931 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/archive/delta_00000000000000000004_236edaeb.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/checkpoints/checkpoint_00000000000000000001_9cb2ed87.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/checkpoints/checkpoint_00000000000000000001_9cb2ed87.szcp new file mode 100644 index 00000000..eedda5d4 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/checkpoints/checkpoint_00000000000000000001_9cb2ed87.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/checkpoints/checkpoint_00000000000000000002_6eb21821.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/checkpoints/checkpoint_00000000000000000002_6eb21821.szcp new file mode 100644 index 00000000..c93c6abf Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/checkpoints/checkpoint_00000000000000000002_6eb21821.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/checkpoints/checkpoint_00000000000000000003_434046fa.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/checkpoints/checkpoint_00000000000000000003_434046fa.szcp new file mode 100644 index 00000000..6cf14321 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/checkpoints/checkpoint_00000000000000000003_434046fa.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/checkpoints/checkpoint_00000000000000000004_56be52e3.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/checkpoints/checkpoint_00000000000000000004_56be52e3.szcp new file mode 100644 index 00000000..5932baa2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_003/checkpoints/checkpoint_00000000000000000004_56be52e3.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/archive/delta_00000000000000000001_d824fef3.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/archive/delta_00000000000000000001_d824fef3.szar new file mode 100644 index 00000000..c999bb4e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/archive/delta_00000000000000000001_d824fef3.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/archive/delta_00000000000000000002_e7b626ba.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/archive/delta_00000000000000000002_e7b626ba.szar new file mode 100644 index 00000000..a6780c1c Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/archive/delta_00000000000000000002_e7b626ba.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/archive/delta_00000000000000000003_23e79cef.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/archive/delta_00000000000000000003_23e79cef.szar new file mode 100644 index 00000000..7856b466 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/archive/delta_00000000000000000003_23e79cef.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/checkpoints/checkpoint_00000000000000000001_2f7b5fc3.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/checkpoints/checkpoint_00000000000000000001_2f7b5fc3.szcp new file mode 100644 index 00000000..6dd13564 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/checkpoints/checkpoint_00000000000000000001_2f7b5fc3.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/checkpoints/checkpoint_00000000000000000002_c0962c4c.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/checkpoints/checkpoint_00000000000000000002_c0962c4c.szcp new file mode 100644 index 00000000..ee51c9c1 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/checkpoints/checkpoint_00000000000000000002_c0962c4c.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/checkpoints/checkpoint_00000000000000000003_40460c83.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/checkpoints/checkpoint_00000000000000000003_40460c83.szcp new file mode 100644 index 00000000..899c0bed Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_004/checkpoints/checkpoint_00000000000000000003_40460c83.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/archive/delta_00000000000000000001_631cf267.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/archive/delta_00000000000000000001_631cf267.szar new file mode 100644 index 00000000..bc7f385a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/archive/delta_00000000000000000001_631cf267.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/archive/delta_00000000000000000002_79be1dce.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/archive/delta_00000000000000000002_79be1dce.szar new file mode 100644 index 00000000..4a08e37a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/archive/delta_00000000000000000002_79be1dce.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/archive/delta_00000000000000000003_3dd33c77.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/archive/delta_00000000000000000003_3dd33c77.szar new file mode 100644 index 00000000..935cec3f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/archive/delta_00000000000000000003_3dd33c77.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/archive/delta_00000000000000000004_f827fd8b.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/archive/delta_00000000000000000004_f827fd8b.szar new file mode 100644 index 00000000..f8ca7738 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/archive/delta_00000000000000000004_f827fd8b.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/checkpoints/checkpoint_00000000000000000001_6672cc7d.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/checkpoints/checkpoint_00000000000000000001_6672cc7d.szcp new file mode 100644 index 00000000..be72b578 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/checkpoints/checkpoint_00000000000000000001_6672cc7d.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/checkpoints/checkpoint_00000000000000000002_f482ad16.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/checkpoints/checkpoint_00000000000000000002_f482ad16.szcp new file mode 100644 index 00000000..30b72047 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/checkpoints/checkpoint_00000000000000000002_f482ad16.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/checkpoints/checkpoint_00000000000000000003_7ac3ae82.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/checkpoints/checkpoint_00000000000000000003_7ac3ae82.szcp new file mode 100644 index 00000000..220a2429 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/checkpoints/checkpoint_00000000000000000003_7ac3ae82.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/checkpoints/checkpoint_00000000000000000004_caede4fd.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/checkpoints/checkpoint_00000000000000000004_caede4fd.szcp new file mode 100644 index 00000000..7b927931 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_005/checkpoints/checkpoint_00000000000000000004_caede4fd.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/archive/delta_00000000000000000001_38b90516.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/archive/delta_00000000000000000001_38b90516.szar new file mode 100644 index 00000000..f63441a2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/archive/delta_00000000000000000001_38b90516.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/archive/delta_00000000000000000002_43ad4d3d.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/archive/delta_00000000000000000002_43ad4d3d.szar new file mode 100644 index 00000000..5b2f62e9 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/archive/delta_00000000000000000002_43ad4d3d.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/archive/delta_00000000000000000003_66062325.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/archive/delta_00000000000000000003_66062325.szar new file mode 100644 index 00000000..ed79a277 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/archive/delta_00000000000000000003_66062325.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/checkpoints/checkpoint_00000000000000000001_7f4abf2e.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/checkpoints/checkpoint_00000000000000000001_7f4abf2e.szcp new file mode 100644 index 00000000..fcdbc191 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/checkpoints/checkpoint_00000000000000000001_7f4abf2e.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/checkpoints/checkpoint_00000000000000000002_d2c7bc88.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/checkpoints/checkpoint_00000000000000000002_d2c7bc88.szcp new file mode 100644 index 00000000..9f2fa3ab Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/checkpoints/checkpoint_00000000000000000002_d2c7bc88.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/checkpoints/checkpoint_00000000000000000003_1c7205cb.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/checkpoints/checkpoint_00000000000000000003_1c7205cb.szcp new file mode 100644 index 00000000..b6d83dfa Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_006/checkpoints/checkpoint_00000000000000000003_1c7205cb.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/archive/delta_00000000000000000001_9b026b4e.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/archive/delta_00000000000000000001_9b026b4e.szar new file mode 100644 index 00000000..7b2b342b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/archive/delta_00000000000000000001_9b026b4e.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/archive/delta_00000000000000000002_064d046f.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/archive/delta_00000000000000000002_064d046f.szar new file mode 100644 index 00000000..9b36517c Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/archive/delta_00000000000000000002_064d046f.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/archive/delta_00000000000000000003_4535405b.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/archive/delta_00000000000000000003_4535405b.szar new file mode 100644 index 00000000..b26926e2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/archive/delta_00000000000000000003_4535405b.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/checkpoints/checkpoint_00000000000000000001_3155bb10.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/checkpoints/checkpoint_00000000000000000001_3155bb10.szcp new file mode 100644 index 00000000..6acc37ba Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/checkpoints/checkpoint_00000000000000000001_3155bb10.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/checkpoints/checkpoint_00000000000000000002_7e8ab152.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/checkpoints/checkpoint_00000000000000000002_7e8ab152.szcp new file mode 100644 index 00000000..0c8b7fb5 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/checkpoints/checkpoint_00000000000000000002_7e8ab152.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/checkpoints/checkpoint_00000000000000000003_1959de06.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/checkpoints/checkpoint_00000000000000000003_1959de06.szcp new file mode 100644 index 00000000..9bad6a1d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_007/checkpoints/checkpoint_00000000000000000003_1959de06.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000001_bcf9d2a8.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000001_bcf9d2a8.szar new file mode 100644 index 00000000..54504e73 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000001_bcf9d2a8.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000002_d0b3d510.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000002_d0b3d510.szar new file mode 100644 index 00000000..23b1256b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000002_d0b3d510.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000003_ee5c26ff.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000003_ee5c26ff.szar new file mode 100644 index 00000000..9ec85ebf Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000003_ee5c26ff.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000004_7af30486.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000004_7af30486.szar new file mode 100644 index 00000000..20ad1234 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000004_7af30486.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000005_669e8a49.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000005_669e8a49.szar new file mode 100644 index 00000000..b10315ea Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000005_669e8a49.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000006_f3ebcef6.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000006_f3ebcef6.szar new file mode 100644 index 00000000..05b28cc7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000006_f3ebcef6.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000007_1b424afb.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000007_1b424afb.szar new file mode 100644 index 00000000..242217c5 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000007_1b424afb.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000008_2d576292.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000008_2d576292.szar new file mode 100644 index 00000000..abe3f856 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/archive/delta_00000000000000000008_2d576292.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000001_6b44e843.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000001_6b44e843.szcp new file mode 100644 index 00000000..67f28e46 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000001_6b44e843.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000002_cc3ef019.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000002_cc3ef019.szcp new file mode 100644 index 00000000..01b97322 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000002_cc3ef019.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000003_57775fb9.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000003_57775fb9.szcp new file mode 100644 index 00000000..2194149a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000003_57775fb9.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000004_1e744898.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000004_1e744898.szcp new file mode 100644 index 00000000..a45af59c Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000004_1e744898.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000005_c791aeb1.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000005_c791aeb1.szcp new file mode 100644 index 00000000..7678ff3f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000005_c791aeb1.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000006_f2c1c955.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000006_f2c1c955.szcp new file mode 100644 index 00000000..3919b1d6 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000006_f2c1c955.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000007_7f3aa03a.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000007_7f3aa03a.szcp new file mode 100644 index 00000000..9638efd2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000007_7f3aa03a.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000008_9fdceec7.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000008_9fdceec7.szcp new file mode 100644 index 00000000..02f8da3e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_008/checkpoints/checkpoint_00000000000000000008_9fdceec7.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000001_b1002e28.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000001_b1002e28.szar new file mode 100644 index 00000000..a9fc5252 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000001_b1002e28.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000002_3d2fca95.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000002_3d2fca95.szar new file mode 100644 index 00000000..bf10ba01 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000002_3d2fca95.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000003_11e7e2cd.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000003_11e7e2cd.szar new file mode 100644 index 00000000..0e00ba72 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000003_11e7e2cd.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000004_bf2e2b29.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000004_bf2e2b29.szar new file mode 100644 index 00000000..c3de0b77 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000004_bf2e2b29.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000005_e5fc42ac.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000005_e5fc42ac.szar new file mode 100644 index 00000000..0c4e6609 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000005_e5fc42ac.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000006_238f7c6e.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000006_238f7c6e.szar new file mode 100644 index 00000000..f9ebd482 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000006_238f7c6e.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000007_ecee18ab.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000007_ecee18ab.szar new file mode 100644 index 00000000..84b3f547 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/archive/delta_00000000000000000007_ecee18ab.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000001_22402636.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000001_22402636.szcp new file mode 100644 index 00000000..d427cbea Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000001_22402636.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000002_16cc3f81.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000002_16cc3f81.szcp new file mode 100644 index 00000000..28c96394 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000002_16cc3f81.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000003_594eff76.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000003_594eff76.szcp new file mode 100644 index 00000000..61335979 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000003_594eff76.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000004_af504fe8.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000004_af504fe8.szcp new file mode 100644 index 00000000..05ff5513 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000004_af504fe8.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000005_54974cae.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000005_54974cae.szcp new file mode 100644 index 00000000..3089f6eb Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000005_54974cae.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000006_947b9437.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000006_947b9437.szcp new file mode 100644 index 00000000..3c993147 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000006_947b9437.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000007_95aef573.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000007_95aef573.szcp new file mode 100644 index 00000000..c382b354 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_009/checkpoints/checkpoint_00000000000000000007_95aef573.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/archive/delta_00000000000000000001_94d950f2.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/archive/delta_00000000000000000001_94d950f2.szar new file mode 100644 index 00000000..db11924d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/archive/delta_00000000000000000001_94d950f2.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/archive/delta_00000000000000000002_e961bf11.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/archive/delta_00000000000000000002_e961bf11.szar new file mode 100644 index 00000000..c170ef37 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/archive/delta_00000000000000000002_e961bf11.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/archive/delta_00000000000000000003_e0b79eb7.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/archive/delta_00000000000000000003_e0b79eb7.szar new file mode 100644 index 00000000..e87065de Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/archive/delta_00000000000000000003_e0b79eb7.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/archive/delta_00000000000000000004_e0763a91.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/archive/delta_00000000000000000004_e0763a91.szar new file mode 100644 index 00000000..281dad71 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/archive/delta_00000000000000000004_e0763a91.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/archive/delta_00000000000000000005_f8467034.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/archive/delta_00000000000000000005_f8467034.szar new file mode 100644 index 00000000..106984bb Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/archive/delta_00000000000000000005_f8467034.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/checkpoints/checkpoint_00000000000000000001_845bc34b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/checkpoints/checkpoint_00000000000000000001_845bc34b.szcp new file mode 100644 index 00000000..e8468d82 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/checkpoints/checkpoint_00000000000000000001_845bc34b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/checkpoints/checkpoint_00000000000000000002_a2954a1c.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/checkpoints/checkpoint_00000000000000000002_a2954a1c.szcp new file mode 100644 index 00000000..570134a7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/checkpoints/checkpoint_00000000000000000002_a2954a1c.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/checkpoints/checkpoint_00000000000000000003_a42913e2.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/checkpoints/checkpoint_00000000000000000003_a42913e2.szcp new file mode 100644 index 00000000..bf7ce070 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/checkpoints/checkpoint_00000000000000000003_a42913e2.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/checkpoints/checkpoint_00000000000000000004_6cba4d24.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/checkpoints/checkpoint_00000000000000000004_6cba4d24.szcp new file mode 100644 index 00000000..8c191f9f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/checkpoints/checkpoint_00000000000000000004_6cba4d24.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/checkpoints/checkpoint_00000000000000000005_b8fc3efa.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/checkpoints/checkpoint_00000000000000000005_b8fc3efa.szcp new file mode 100644 index 00000000..578c203f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_010/checkpoints/checkpoint_00000000000000000005_b8fc3efa.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000001_4b75b329.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000001_4b75b329.szar new file mode 100644 index 00000000..2a42650a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000001_4b75b329.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000002_df8ae6c4.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000002_df8ae6c4.szar new file mode 100644 index 00000000..3d0ebe11 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000002_df8ae6c4.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000003_3da8f156.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000003_3da8f156.szar new file mode 100644 index 00000000..8ceb652a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000003_3da8f156.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000004_de86eaa7.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000004_de86eaa7.szar new file mode 100644 index 00000000..8b010cd2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000004_de86eaa7.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000005_cd416a9c.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000005_cd416a9c.szar new file mode 100644 index 00000000..f2bb6418 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000005_cd416a9c.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000006_0de684a8.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000006_0de684a8.szar new file mode 100644 index 00000000..58b752f7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000006_0de684a8.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000007_5e65c6fb.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000007_5e65c6fb.szar new file mode 100644 index 00000000..c410473e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/archive/delta_00000000000000000007_5e65c6fb.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000001_1bcc02e9.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000001_1bcc02e9.szcp new file mode 100644 index 00000000..7c87889b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000001_1bcc02e9.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000002_adc101e1.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000002_adc101e1.szcp new file mode 100644 index 00000000..c3a1c0f5 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000002_adc101e1.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000003_177a7185.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000003_177a7185.szcp new file mode 100644 index 00000000..15494b21 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000003_177a7185.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000004_7e25d791.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000004_7e25d791.szcp new file mode 100644 index 00000000..0958d621 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000004_7e25d791.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000005_0f67b45c.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000005_0f67b45c.szcp new file mode 100644 index 00000000..5094a493 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000005_0f67b45c.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000006_db6e7b5e.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000006_db6e7b5e.szcp new file mode 100644 index 00000000..68bf0cd1 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000006_db6e7b5e.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000007_6b4040e1.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000007_6b4040e1.szcp new file mode 100644 index 00000000..865b3de3 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_011/checkpoints/checkpoint_00000000000000000007_6b4040e1.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/archive/delta_00000000000000000001_f4ad3412.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/archive/delta_00000000000000000001_f4ad3412.szar new file mode 100644 index 00000000..ecc0d331 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/archive/delta_00000000000000000001_f4ad3412.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/archive/delta_00000000000000000002_3f3e99c6.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/archive/delta_00000000000000000002_3f3e99c6.szar new file mode 100644 index 00000000..04a308e3 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/archive/delta_00000000000000000002_3f3e99c6.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/archive/delta_00000000000000000003_9fe2fc69.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/archive/delta_00000000000000000003_9fe2fc69.szar new file mode 100644 index 00000000..c46e1b81 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/archive/delta_00000000000000000003_9fe2fc69.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/archive/delta_00000000000000000004_012d8169.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/archive/delta_00000000000000000004_012d8169.szar new file mode 100644 index 00000000..1b7e3ebd Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/archive/delta_00000000000000000004_012d8169.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/archive/delta_00000000000000000005_81639965.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/archive/delta_00000000000000000005_81639965.szar new file mode 100644 index 00000000..665668ec Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/archive/delta_00000000000000000005_81639965.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/checkpoints/checkpoint_00000000000000000001_78f1003b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/checkpoints/checkpoint_00000000000000000001_78f1003b.szcp new file mode 100644 index 00000000..fedd8c5b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/checkpoints/checkpoint_00000000000000000001_78f1003b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/checkpoints/checkpoint_00000000000000000002_1a4914ff.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/checkpoints/checkpoint_00000000000000000002_1a4914ff.szcp new file mode 100644 index 00000000..0a966321 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/checkpoints/checkpoint_00000000000000000002_1a4914ff.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/checkpoints/checkpoint_00000000000000000003_ff83bc67.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/checkpoints/checkpoint_00000000000000000003_ff83bc67.szcp new file mode 100644 index 00000000..b0783e4f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/checkpoints/checkpoint_00000000000000000003_ff83bc67.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/checkpoints/checkpoint_00000000000000000004_704a92bb.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/checkpoints/checkpoint_00000000000000000004_704a92bb.szcp new file mode 100644 index 00000000..5d037546 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/checkpoints/checkpoint_00000000000000000004_704a92bb.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/checkpoints/checkpoint_00000000000000000005_e8c2276b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/checkpoints/checkpoint_00000000000000000005_e8c2276b.szcp new file mode 100644 index 00000000..7e4efb8a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_012/checkpoints/checkpoint_00000000000000000005_e8c2276b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000001_e8816958.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000001_e8816958.szar new file mode 100644 index 00000000..dc63f2e5 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000001_e8816958.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000002_a7cde36a.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000002_a7cde36a.szar new file mode 100644 index 00000000..c4e84e43 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000002_a7cde36a.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000003_8cac60e4.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000003_8cac60e4.szar new file mode 100644 index 00000000..c9bafda8 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000003_8cac60e4.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000004_68478b15.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000004_68478b15.szar new file mode 100644 index 00000000..97164421 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000004_68478b15.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000005_76caeff5.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000005_76caeff5.szar new file mode 100644 index 00000000..1dc7c257 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000005_76caeff5.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000006_9b435c55.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000006_9b435c55.szar new file mode 100644 index 00000000..3dfab543 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000006_9b435c55.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000007_d45f2101.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000007_d45f2101.szar new file mode 100644 index 00000000..d135ed47 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000007_d45f2101.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000008_7e3a6d4a.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000008_7e3a6d4a.szar new file mode 100644 index 00000000..4ffb2048 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/archive/delta_00000000000000000008_7e3a6d4a.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000001_9877e359.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000001_9877e359.szcp new file mode 100644 index 00000000..39e40a09 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000001_9877e359.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000002_cc9fad3b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000002_cc9fad3b.szcp new file mode 100644 index 00000000..3c3d5b74 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000002_cc9fad3b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000003_edddc58f.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000003_edddc58f.szcp new file mode 100644 index 00000000..19cff3f2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000003_edddc58f.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000004_fb8b051e.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000004_fb8b051e.szcp new file mode 100644 index 00000000..f31b75a2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000004_fb8b051e.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000005_ab9eed41.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000005_ab9eed41.szcp new file mode 100644 index 00000000..691cb3d0 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000005_ab9eed41.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000006_e71123e0.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000006_e71123e0.szcp new file mode 100644 index 00000000..9d7b73ac Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000006_e71123e0.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000007_5143ad2d.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000007_5143ad2d.szcp new file mode 100644 index 00000000..7e9fc088 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000007_5143ad2d.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000008_467f3fc1.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000008_467f3fc1.szcp new file mode 100644 index 00000000..3a542b87 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_013/checkpoints/checkpoint_00000000000000000008_467f3fc1.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/archive/delta_00000000000000000001_11bb54c0.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/archive/delta_00000000000000000001_11bb54c0.szar new file mode 100644 index 00000000..c1d415a0 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/archive/delta_00000000000000000001_11bb54c0.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/archive/delta_00000000000000000002_b1f917a2.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/archive/delta_00000000000000000002_b1f917a2.szar new file mode 100644 index 00000000..89f1f056 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/archive/delta_00000000000000000002_b1f917a2.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/archive/delta_00000000000000000003_9ab74603.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/archive/delta_00000000000000000003_9ab74603.szar new file mode 100644 index 00000000..86b6d9db Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/archive/delta_00000000000000000003_9ab74603.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/archive/delta_00000000000000000004_1eb61cf3.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/archive/delta_00000000000000000004_1eb61cf3.szar new file mode 100644 index 00000000..6d8d0120 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/archive/delta_00000000000000000004_1eb61cf3.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/checkpoints/checkpoint_00000000000000000001_cc84ddd3.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/checkpoints/checkpoint_00000000000000000001_cc84ddd3.szcp new file mode 100644 index 00000000..d4e5910b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/checkpoints/checkpoint_00000000000000000001_cc84ddd3.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/checkpoints/checkpoint_00000000000000000002_e09b9c9c.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/checkpoints/checkpoint_00000000000000000002_e09b9c9c.szcp new file mode 100644 index 00000000..08b471d2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/checkpoints/checkpoint_00000000000000000002_e09b9c9c.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/checkpoints/checkpoint_00000000000000000003_97797883.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/checkpoints/checkpoint_00000000000000000003_97797883.szcp new file mode 100644 index 00000000..74c1f75c Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/checkpoints/checkpoint_00000000000000000003_97797883.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/checkpoints/checkpoint_00000000000000000004_2c594f73.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/checkpoints/checkpoint_00000000000000000004_2c594f73.szcp new file mode 100644 index 00000000..dd93618d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_014/checkpoints/checkpoint_00000000000000000004_2c594f73.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/archive/delta_00000000000000000001_e288b108.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/archive/delta_00000000000000000001_e288b108.szar new file mode 100644 index 00000000..e434ddf2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/archive/delta_00000000000000000001_e288b108.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/archive/delta_00000000000000000002_008ba4dd.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/archive/delta_00000000000000000002_008ba4dd.szar new file mode 100644 index 00000000..5df67710 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/archive/delta_00000000000000000002_008ba4dd.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/archive/delta_00000000000000000003_b4ef272a.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/archive/delta_00000000000000000003_b4ef272a.szar new file mode 100644 index 00000000..a577af0a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/archive/delta_00000000000000000003_b4ef272a.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/checkpoints/checkpoint_00000000000000000001_5d595cd5.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/checkpoints/checkpoint_00000000000000000001_5d595cd5.szcp new file mode 100644 index 00000000..ef24e311 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/checkpoints/checkpoint_00000000000000000001_5d595cd5.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/checkpoints/checkpoint_00000000000000000002_21268e54.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/checkpoints/checkpoint_00000000000000000002_21268e54.szcp new file mode 100644 index 00000000..b705ff41 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/checkpoints/checkpoint_00000000000000000002_21268e54.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/checkpoints/checkpoint_00000000000000000003_690d8d26.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/checkpoints/checkpoint_00000000000000000003_690d8d26.szcp new file mode 100644 index 00000000..01284fcd Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_015/checkpoints/checkpoint_00000000000000000003_690d8d26.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000001_5474a06e.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000001_5474a06e.szar new file mode 100644 index 00000000..845e11a1 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000001_5474a06e.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000002_5b6cf95a.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000002_5b6cf95a.szar new file mode 100644 index 00000000..106f38b5 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000002_5b6cf95a.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000003_bc5bdb81.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000003_bc5bdb81.szar new file mode 100644 index 00000000..9a8191c2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000003_bc5bdb81.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000004_bb0f966e.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000004_bb0f966e.szar new file mode 100644 index 00000000..d2857723 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000004_bb0f966e.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000005_d7f06651.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000005_d7f06651.szar new file mode 100644 index 00000000..7780604f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000005_d7f06651.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000006_2a3cb871.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000006_2a3cb871.szar new file mode 100644 index 00000000..bb74049c Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000006_2a3cb871.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000007_9f36e798.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000007_9f36e798.szar new file mode 100644 index 00000000..098740dd Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/archive/delta_00000000000000000007_9f36e798.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000001_db4a5e41.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000001_db4a5e41.szcp new file mode 100644 index 00000000..f1d85459 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000001_db4a5e41.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000002_26693538.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000002_26693538.szcp new file mode 100644 index 00000000..a998d313 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000002_26693538.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000003_288947f4.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000003_288947f4.szcp new file mode 100644 index 00000000..35643df9 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000003_288947f4.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000004_e653fb17.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000004_e653fb17.szcp new file mode 100644 index 00000000..c756810a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000004_e653fb17.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000005_c263ea37.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000005_c263ea37.szcp new file mode 100644 index 00000000..e6185ac8 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000005_c263ea37.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000006_713ae15d.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000006_713ae15d.szcp new file mode 100644 index 00000000..2fac90c1 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000006_713ae15d.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000007_17f5ffad.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000007_17f5ffad.szcp new file mode 100644 index 00000000..1f4e891e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_016/checkpoints/checkpoint_00000000000000000007_17f5ffad.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000001_6df6e8c4.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000001_6df6e8c4.szar new file mode 100644 index 00000000..25bb1308 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000001_6df6e8c4.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000002_54fe16f2.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000002_54fe16f2.szar new file mode 100644 index 00000000..20bd4df1 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000002_54fe16f2.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000003_2f84e254.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000003_2f84e254.szar new file mode 100644 index 00000000..124fca84 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000003_2f84e254.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000004_3e599e0d.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000004_3e599e0d.szar new file mode 100644 index 00000000..456fb44b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000004_3e599e0d.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000005_ff4dc369.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000005_ff4dc369.szar new file mode 100644 index 00000000..cf98a222 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000005_ff4dc369.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000006_548710c6.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000006_548710c6.szar new file mode 100644 index 00000000..a593e101 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000006_548710c6.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000007_b5fec697.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000007_b5fec697.szar new file mode 100644 index 00000000..d4baca7f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000007_b5fec697.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000008_8a399cfe.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000008_8a399cfe.szar new file mode 100644 index 00000000..1abf5382 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/archive/delta_00000000000000000008_8a399cfe.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000001_76d5e163.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000001_76d5e163.szcp new file mode 100644 index 00000000..2d64abea Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000001_76d5e163.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000002_e8d9bcff.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000002_e8d9bcff.szcp new file mode 100644 index 00000000..7641c425 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000002_e8d9bcff.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000003_a07caedf.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000003_a07caedf.szcp new file mode 100644 index 00000000..6b1cc037 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000003_a07caedf.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000004_1bec685a.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000004_1bec685a.szcp new file mode 100644 index 00000000..a20bfd5e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000004_1bec685a.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000005_4d3ed5d8.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000005_4d3ed5d8.szcp new file mode 100644 index 00000000..a70397f7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000005_4d3ed5d8.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000006_308a7736.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000006_308a7736.szcp new file mode 100644 index 00000000..e2ce0741 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000006_308a7736.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000007_a36c8c5e.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000007_a36c8c5e.szcp new file mode 100644 index 00000000..b6edfd5c Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000007_a36c8c5e.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000008_90216e22.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000008_90216e22.szcp new file mode 100644 index 00000000..5bd475a1 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_017/checkpoints/checkpoint_00000000000000000008_90216e22.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/archive/delta_00000000000000000001_37c7e197.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/archive/delta_00000000000000000001_37c7e197.szar new file mode 100644 index 00000000..99b322af Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/archive/delta_00000000000000000001_37c7e197.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/archive/delta_00000000000000000002_be05d22e.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/archive/delta_00000000000000000002_be05d22e.szar new file mode 100644 index 00000000..3162ef19 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/archive/delta_00000000000000000002_be05d22e.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/archive/delta_00000000000000000003_de06a5dc.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/archive/delta_00000000000000000003_de06a5dc.szar new file mode 100644 index 00000000..6c5413bc Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/archive/delta_00000000000000000003_de06a5dc.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/checkpoints/checkpoint_00000000000000000001_5ead6d52.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/checkpoints/checkpoint_00000000000000000001_5ead6d52.szcp new file mode 100644 index 00000000..51cecb91 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/checkpoints/checkpoint_00000000000000000001_5ead6d52.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/checkpoints/checkpoint_00000000000000000002_e6162d7c.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/checkpoints/checkpoint_00000000000000000002_e6162d7c.szcp new file mode 100644 index 00000000..dfbdfb5b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/checkpoints/checkpoint_00000000000000000002_e6162d7c.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/checkpoints/checkpoint_00000000000000000003_247ddb6a.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/checkpoints/checkpoint_00000000000000000003_247ddb6a.szcp new file mode 100644 index 00000000..8371c323 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_018/checkpoints/checkpoint_00000000000000000003_247ddb6a.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/archive/delta_00000000000000000001_33c70127.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/archive/delta_00000000000000000001_33c70127.szar new file mode 100644 index 00000000..2d37a4d6 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/archive/delta_00000000000000000001_33c70127.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/archive/delta_00000000000000000002_031a48d9.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/archive/delta_00000000000000000002_031a48d9.szar new file mode 100644 index 00000000..a21aa515 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/archive/delta_00000000000000000002_031a48d9.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/archive/delta_00000000000000000003_e9cd19d9.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/archive/delta_00000000000000000003_e9cd19d9.szar new file mode 100644 index 00000000..9869f59e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/archive/delta_00000000000000000003_e9cd19d9.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/archive/delta_00000000000000000004_f06a48b2.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/archive/delta_00000000000000000004_f06a48b2.szar new file mode 100644 index 00000000..7460da71 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/archive/delta_00000000000000000004_f06a48b2.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/checkpoints/checkpoint_00000000000000000001_8d1a746f.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/checkpoints/checkpoint_00000000000000000001_8d1a746f.szcp new file mode 100644 index 00000000..b86928ba Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/checkpoints/checkpoint_00000000000000000001_8d1a746f.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/checkpoints/checkpoint_00000000000000000002_48eb91c0.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/checkpoints/checkpoint_00000000000000000002_48eb91c0.szcp new file mode 100644 index 00000000..468bdd3a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/checkpoints/checkpoint_00000000000000000002_48eb91c0.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/checkpoints/checkpoint_00000000000000000003_0c55685e.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/checkpoints/checkpoint_00000000000000000003_0c55685e.szcp new file mode 100644 index 00000000..fe48573d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/checkpoints/checkpoint_00000000000000000003_0c55685e.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/checkpoints/checkpoint_00000000000000000004_adaf0b92.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/checkpoints/checkpoint_00000000000000000004_adaf0b92.szcp new file mode 100644 index 00000000..d0e8c922 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_019/checkpoints/checkpoint_00000000000000000004_adaf0b92.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/archive/delta_00000000000000000001_a151085c.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/archive/delta_00000000000000000001_a151085c.szar new file mode 100644 index 00000000..61f0813d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/archive/delta_00000000000000000001_a151085c.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/archive/delta_00000000000000000002_fbbffa3e.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/archive/delta_00000000000000000002_fbbffa3e.szar new file mode 100644 index 00000000..fce7dff8 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/archive/delta_00000000000000000002_fbbffa3e.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/archive/delta_00000000000000000003_c7c256f4.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/archive/delta_00000000000000000003_c7c256f4.szar new file mode 100644 index 00000000..2dab9ab7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/archive/delta_00000000000000000003_c7c256f4.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/checkpoints/checkpoint_00000000000000000001_efd3a9a4.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/checkpoints/checkpoint_00000000000000000001_efd3a9a4.szcp new file mode 100644 index 00000000..cb2ab656 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/checkpoints/checkpoint_00000000000000000001_efd3a9a4.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/checkpoints/checkpoint_00000000000000000002_5de8eb02.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/checkpoints/checkpoint_00000000000000000002_5de8eb02.szcp new file mode 100644 index 00000000..f2e7da74 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/checkpoints/checkpoint_00000000000000000002_5de8eb02.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/checkpoints/checkpoint_00000000000000000003_2fb0035d.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/checkpoints/checkpoint_00000000000000000003_2fb0035d.szcp new file mode 100644 index 00000000..8235102b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_020/checkpoints/checkpoint_00000000000000000003_2fb0035d.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000001_6ade098a.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000001_6ade098a.szar new file mode 100644 index 00000000..9d21dd4f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000001_6ade098a.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000002_579276cd.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000002_579276cd.szar new file mode 100644 index 00000000..c879a113 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000002_579276cd.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000003_6212892c.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000003_6212892c.szar new file mode 100644 index 00000000..6edbe79c Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000003_6212892c.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000004_6f1d70c3.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000004_6f1d70c3.szar new file mode 100644 index 00000000..2e1a8dd5 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000004_6f1d70c3.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000005_8b49a263.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000005_8b49a263.szar new file mode 100644 index 00000000..c954fc01 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000005_8b49a263.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000006_22358bb3.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000006_22358bb3.szar new file mode 100644 index 00000000..c869fca1 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/archive/delta_00000000000000000006_22358bb3.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000001_0ee6a10c.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000001_0ee6a10c.szcp new file mode 100644 index 00000000..fa044c1f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000001_0ee6a10c.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000002_93af2209.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000002_93af2209.szcp new file mode 100644 index 00000000..b634cd22 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000002_93af2209.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000003_4df5a8c4.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000003_4df5a8c4.szcp new file mode 100644 index 00000000..fec3d38c Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000003_4df5a8c4.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000004_03b4cf7b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000004_03b4cf7b.szcp new file mode 100644 index 00000000..b24cd1a5 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000004_03b4cf7b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000005_593b23cb.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000005_593b23cb.szcp new file mode 100644 index 00000000..85843647 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000005_593b23cb.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000006_79da1c66.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000006_79da1c66.szcp new file mode 100644 index 00000000..5566dcb1 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_021/checkpoints/checkpoint_00000000000000000006_79da1c66.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/archive/delta_00000000000000000001_9f144858.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/archive/delta_00000000000000000001_9f144858.szar new file mode 100644 index 00000000..8c4dca7f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/archive/delta_00000000000000000001_9f144858.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/archive/delta_00000000000000000002_f093e542.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/archive/delta_00000000000000000002_f093e542.szar new file mode 100644 index 00000000..309706de Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/archive/delta_00000000000000000002_f093e542.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/archive/delta_00000000000000000003_0cf03ac5.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/archive/delta_00000000000000000003_0cf03ac5.szar new file mode 100644 index 00000000..35a0e107 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/archive/delta_00000000000000000003_0cf03ac5.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/checkpoints/checkpoint_00000000000000000001_5c44b786.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/checkpoints/checkpoint_00000000000000000001_5c44b786.szcp new file mode 100644 index 00000000..57b4282e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/checkpoints/checkpoint_00000000000000000001_5c44b786.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/checkpoints/checkpoint_00000000000000000002_40d7306a.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/checkpoints/checkpoint_00000000000000000002_40d7306a.szcp new file mode 100644 index 00000000..00ca9908 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/checkpoints/checkpoint_00000000000000000002_40d7306a.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/checkpoints/checkpoint_00000000000000000003_0bc0d63c.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/checkpoints/checkpoint_00000000000000000003_0bc0d63c.szcp new file mode 100644 index 00000000..7b7293bd Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_022/checkpoints/checkpoint_00000000000000000003_0bc0d63c.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/archive/delta_00000000000000000001_0391f6d1.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/archive/delta_00000000000000000001_0391f6d1.szar new file mode 100644 index 00000000..9b299b51 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/archive/delta_00000000000000000001_0391f6d1.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/archive/delta_00000000000000000002_6f6e5f81.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/archive/delta_00000000000000000002_6f6e5f81.szar new file mode 100644 index 00000000..00884105 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/archive/delta_00000000000000000002_6f6e5f81.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/archive/delta_00000000000000000003_63111b61.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/archive/delta_00000000000000000003_63111b61.szar new file mode 100644 index 00000000..88864d5b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/archive/delta_00000000000000000003_63111b61.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/checkpoints/checkpoint_00000000000000000001_41136365.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/checkpoints/checkpoint_00000000000000000001_41136365.szcp new file mode 100644 index 00000000..7835af57 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/checkpoints/checkpoint_00000000000000000001_41136365.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/checkpoints/checkpoint_00000000000000000002_6872567b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/checkpoints/checkpoint_00000000000000000002_6872567b.szcp new file mode 100644 index 00000000..778c7417 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/checkpoints/checkpoint_00000000000000000002_6872567b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/checkpoints/checkpoint_00000000000000000003_4845cf6d.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/checkpoints/checkpoint_00000000000000000003_4845cf6d.szcp new file mode 100644 index 00000000..9607d65b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_023/checkpoints/checkpoint_00000000000000000003_4845cf6d.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/archive/delta_00000000000000000001_35f8b059.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/archive/delta_00000000000000000001_35f8b059.szar new file mode 100644 index 00000000..3872627c Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/archive/delta_00000000000000000001_35f8b059.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/archive/delta_00000000000000000002_18cde656.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/archive/delta_00000000000000000002_18cde656.szar new file mode 100644 index 00000000..103b3633 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/archive/delta_00000000000000000002_18cde656.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/archive/delta_00000000000000000003_5aebf46a.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/archive/delta_00000000000000000003_5aebf46a.szar new file mode 100644 index 00000000..9f03e785 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/archive/delta_00000000000000000003_5aebf46a.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/checkpoints/checkpoint_00000000000000000001_0ce1c6b3.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/checkpoints/checkpoint_00000000000000000001_0ce1c6b3.szcp new file mode 100644 index 00000000..e9f95e8b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/checkpoints/checkpoint_00000000000000000001_0ce1c6b3.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/checkpoints/checkpoint_00000000000000000002_0df8311e.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/checkpoints/checkpoint_00000000000000000002_0df8311e.szcp new file mode 100644 index 00000000..ab62d151 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/checkpoints/checkpoint_00000000000000000002_0df8311e.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/checkpoints/checkpoint_00000000000000000003_d4e807b5.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/checkpoints/checkpoint_00000000000000000003_d4e807b5.szcp new file mode 100644 index 00000000..6225497a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_024/checkpoints/checkpoint_00000000000000000003_d4e807b5.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/archive/delta_00000000000000000001_d3c46fd5.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/archive/delta_00000000000000000001_d3c46fd5.szar new file mode 100644 index 00000000..cba26681 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/archive/delta_00000000000000000001_d3c46fd5.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/archive/delta_00000000000000000002_071e5744.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/archive/delta_00000000000000000002_071e5744.szar new file mode 100644 index 00000000..828b6432 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/archive/delta_00000000000000000002_071e5744.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/archive/delta_00000000000000000003_19639712.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/archive/delta_00000000000000000003_19639712.szar new file mode 100644 index 00000000..0684c1fb Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/archive/delta_00000000000000000003_19639712.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/checkpoints/checkpoint_00000000000000000001_8d8dd8b1.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/checkpoints/checkpoint_00000000000000000001_8d8dd8b1.szcp new file mode 100644 index 00000000..4169b645 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/checkpoints/checkpoint_00000000000000000001_8d8dd8b1.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/checkpoints/checkpoint_00000000000000000002_d68cb6e2.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/checkpoints/checkpoint_00000000000000000002_d68cb6e2.szcp new file mode 100644 index 00000000..7ed65fb4 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/checkpoints/checkpoint_00000000000000000002_d68cb6e2.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/checkpoints/checkpoint_00000000000000000003_2a4ec0ab.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/checkpoints/checkpoint_00000000000000000003_2a4ec0ab.szcp new file mode 100644 index 00000000..0f7fc7ba Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_025/checkpoints/checkpoint_00000000000000000003_2a4ec0ab.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/archive/delta_00000000000000000001_d953930e.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/archive/delta_00000000000000000001_d953930e.szar new file mode 100644 index 00000000..92f514c3 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/archive/delta_00000000000000000001_d953930e.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/archive/delta_00000000000000000002_8b28f559.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/archive/delta_00000000000000000002_8b28f559.szar new file mode 100644 index 00000000..b931c52a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/archive/delta_00000000000000000002_8b28f559.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/archive/delta_00000000000000000003_55963984.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/archive/delta_00000000000000000003_55963984.szar new file mode 100644 index 00000000..07386090 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/archive/delta_00000000000000000003_55963984.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/checkpoints/checkpoint_00000000000000000001_7771985b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/checkpoints/checkpoint_00000000000000000001_7771985b.szcp new file mode 100644 index 00000000..e8730267 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/checkpoints/checkpoint_00000000000000000001_7771985b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/checkpoints/checkpoint_00000000000000000002_a0847798.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/checkpoints/checkpoint_00000000000000000002_a0847798.szcp new file mode 100644 index 00000000..524130b4 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/checkpoints/checkpoint_00000000000000000002_a0847798.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/checkpoints/checkpoint_00000000000000000003_031df067.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/checkpoints/checkpoint_00000000000000000003_031df067.szcp new file mode 100644 index 00000000..3cb1a92b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_026/checkpoints/checkpoint_00000000000000000003_031df067.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/archive/delta_00000000000000000001_d765913e.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/archive/delta_00000000000000000001_d765913e.szar new file mode 100644 index 00000000..f8ec9bdf Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/archive/delta_00000000000000000001_d765913e.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/archive/delta_00000000000000000002_5009ee6c.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/archive/delta_00000000000000000002_5009ee6c.szar new file mode 100644 index 00000000..2f98f0ab Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/archive/delta_00000000000000000002_5009ee6c.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/archive/delta_00000000000000000003_08d41e3a.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/archive/delta_00000000000000000003_08d41e3a.szar new file mode 100644 index 00000000..eff1597a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/archive/delta_00000000000000000003_08d41e3a.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/checkpoints/checkpoint_00000000000000000001_89af3c1a.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/checkpoints/checkpoint_00000000000000000001_89af3c1a.szcp new file mode 100644 index 00000000..9bc6b082 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/checkpoints/checkpoint_00000000000000000001_89af3c1a.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/checkpoints/checkpoint_00000000000000000002_d1e30435.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/checkpoints/checkpoint_00000000000000000002_d1e30435.szcp new file mode 100644 index 00000000..39db10bc Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/checkpoints/checkpoint_00000000000000000002_d1e30435.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/checkpoints/checkpoint_00000000000000000003_c4a74fd3.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/checkpoints/checkpoint_00000000000000000003_c4a74fd3.szcp new file mode 100644 index 00000000..d0aae90b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_027/checkpoints/checkpoint_00000000000000000003_c4a74fd3.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/archive/delta_00000000000000000001_3d520374.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/archive/delta_00000000000000000001_3d520374.szar new file mode 100644 index 00000000..98e41238 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/archive/delta_00000000000000000001_3d520374.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/archive/delta_00000000000000000002_36ea7a5c.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/archive/delta_00000000000000000002_36ea7a5c.szar new file mode 100644 index 00000000..39f004c8 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/archive/delta_00000000000000000002_36ea7a5c.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/archive/delta_00000000000000000003_014a5c99.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/archive/delta_00000000000000000003_014a5c99.szar new file mode 100644 index 00000000..9e4dad3e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/archive/delta_00000000000000000003_014a5c99.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/checkpoints/checkpoint_00000000000000000001_50ce5646.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/checkpoints/checkpoint_00000000000000000001_50ce5646.szcp new file mode 100644 index 00000000..52c676a6 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/checkpoints/checkpoint_00000000000000000001_50ce5646.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/checkpoints/checkpoint_00000000000000000002_f4cdfd4e.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/checkpoints/checkpoint_00000000000000000002_f4cdfd4e.szcp new file mode 100644 index 00000000..76197d56 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/checkpoints/checkpoint_00000000000000000002_f4cdfd4e.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/checkpoints/checkpoint_00000000000000000003_2c2a82d0.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/checkpoints/checkpoint_00000000000000000003_2c2a82d0.szcp new file mode 100644 index 00000000..6de76bf7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_028/checkpoints/checkpoint_00000000000000000003_2c2a82d0.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/archive/delta_00000000000000000001_b363ea07.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/archive/delta_00000000000000000001_b363ea07.szar new file mode 100644 index 00000000..7c68e877 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/archive/delta_00000000000000000001_b363ea07.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/archive/delta_00000000000000000002_56e42b21.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/archive/delta_00000000000000000002_56e42b21.szar new file mode 100644 index 00000000..0c2ee41a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/archive/delta_00000000000000000002_56e42b21.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/archive/delta_00000000000000000003_cbaa04e4.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/archive/delta_00000000000000000003_cbaa04e4.szar new file mode 100644 index 00000000..5781ea01 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/archive/delta_00000000000000000003_cbaa04e4.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/checkpoints/checkpoint_00000000000000000001_2e9dd6ad.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/checkpoints/checkpoint_00000000000000000001_2e9dd6ad.szcp new file mode 100644 index 00000000..342edf18 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/checkpoints/checkpoint_00000000000000000001_2e9dd6ad.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/checkpoints/checkpoint_00000000000000000002_9efbf20c.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/checkpoints/checkpoint_00000000000000000002_9efbf20c.szcp new file mode 100644 index 00000000..657b9969 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/checkpoints/checkpoint_00000000000000000002_9efbf20c.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/checkpoints/checkpoint_00000000000000000003_68b0e732.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/checkpoints/checkpoint_00000000000000000003_68b0e732.szcp new file mode 100644 index 00000000..12d3ed84 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_029/checkpoints/checkpoint_00000000000000000003_68b0e732.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000001_54ef23ea.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000001_54ef23ea.szar new file mode 100644 index 00000000..5292be78 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000001_54ef23ea.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000002_5416fb3b.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000002_5416fb3b.szar new file mode 100644 index 00000000..623c2ebb Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000002_5416fb3b.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000003_42df9ef5.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000003_42df9ef5.szar new file mode 100644 index 00000000..f53a96fd Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000003_42df9ef5.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000004_87ece083.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000004_87ece083.szar new file mode 100644 index 00000000..6e82741e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000004_87ece083.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000005_c807f905.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000005_c807f905.szar new file mode 100644 index 00000000..e71798f5 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000005_c807f905.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000006_750f36a1.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000006_750f36a1.szar new file mode 100644 index 00000000..c7e66f4d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000006_750f36a1.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000007_2f06f3db.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000007_2f06f3db.szar new file mode 100644 index 00000000..a57419c1 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/archive/delta_00000000000000000007_2f06f3db.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000001_58bed69f.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000001_58bed69f.szcp new file mode 100644 index 00000000..2bc8cd53 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000001_58bed69f.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000002_0d5db562.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000002_0d5db562.szcp new file mode 100644 index 00000000..37c198b4 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000002_0d5db562.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000003_7106694a.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000003_7106694a.szcp new file mode 100644 index 00000000..ca20357d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000003_7106694a.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000004_860c5f3e.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000004_860c5f3e.szcp new file mode 100644 index 00000000..04a02a88 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000004_860c5f3e.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000005_2fa96101.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000005_2fa96101.szcp new file mode 100644 index 00000000..6fe5ea68 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000005_2fa96101.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000006_9180f324.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000006_9180f324.szcp new file mode 100644 index 00000000..e96579c2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000006_9180f324.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000007_9e22fb46.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000007_9e22fb46.szcp new file mode 100644 index 00000000..52cb889d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_030/checkpoints/checkpoint_00000000000000000007_9e22fb46.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000001_11d28bb8.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000001_11d28bb8.szar new file mode 100644 index 00000000..fead2bd7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000001_11d28bb8.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000002_9dae4a8b.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000002_9dae4a8b.szar new file mode 100644 index 00000000..6cb7be9c Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000002_9dae4a8b.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000003_24b48dbb.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000003_24b48dbb.szar new file mode 100644 index 00000000..85e30811 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000003_24b48dbb.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000004_d03983cf.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000004_d03983cf.szar new file mode 100644 index 00000000..3f867013 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000004_d03983cf.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000005_9707187b.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000005_9707187b.szar new file mode 100644 index 00000000..3a069c92 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000005_9707187b.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000006_a7bee660.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000006_a7bee660.szar new file mode 100644 index 00000000..0ec1f8c3 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000006_a7bee660.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000007_b2f4e6e6.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000007_b2f4e6e6.szar new file mode 100644 index 00000000..7fff59a7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/archive/delta_00000000000000000007_b2f4e6e6.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000001_9d03c6b5.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000001_9d03c6b5.szcp new file mode 100644 index 00000000..39223389 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000001_9d03c6b5.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000002_04dab327.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000002_04dab327.szcp new file mode 100644 index 00000000..bf0db4c4 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000002_04dab327.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000003_1bf9153a.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000003_1bf9153a.szcp new file mode 100644 index 00000000..fea7d624 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000003_1bf9153a.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000004_3d257f5b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000004_3d257f5b.szcp new file mode 100644 index 00000000..ea2193d5 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000004_3d257f5b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000005_f5b9d195.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000005_f5b9d195.szcp new file mode 100644 index 00000000..0f55ae76 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000005_f5b9d195.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000006_2586ee60.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000006_2586ee60.szcp new file mode 100644 index 00000000..0c9e78e1 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000006_2586ee60.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000007_58266451.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000007_58266451.szcp new file mode 100644 index 00000000..fc7762e3 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_031/checkpoints/checkpoint_00000000000000000007_58266451.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000001_2dbe41b3.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000001_2dbe41b3.szar new file mode 100644 index 00000000..51aae24d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000001_2dbe41b3.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000002_d70f35c8.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000002_d70f35c8.szar new file mode 100644 index 00000000..dae2e41b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000002_d70f35c8.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000003_c02149f4.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000003_c02149f4.szar new file mode 100644 index 00000000..e7c25845 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000003_c02149f4.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000004_2e9d89b9.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000004_2e9d89b9.szar new file mode 100644 index 00000000..ded49066 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000004_2e9d89b9.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000005_36bc8567.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000005_36bc8567.szar new file mode 100644 index 00000000..53429e4d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000005_36bc8567.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000006_75ad677e.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000006_75ad677e.szar new file mode 100644 index 00000000..7b0e0c65 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000006_75ad677e.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000007_e452deb9.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000007_e452deb9.szar new file mode 100644 index 00000000..bcf0b831 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/archive/delta_00000000000000000007_e452deb9.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000001_bfd89428.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000001_bfd89428.szcp new file mode 100644 index 00000000..e43c3bb4 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000001_bfd89428.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000002_5dd4b7cd.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000002_5dd4b7cd.szcp new file mode 100644 index 00000000..8553828a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000002_5dd4b7cd.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000003_4368bed7.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000003_4368bed7.szcp new file mode 100644 index 00000000..87cd6298 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000003_4368bed7.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000004_81a21cc4.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000004_81a21cc4.szcp new file mode 100644 index 00000000..62b75f42 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000004_81a21cc4.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000005_668835ec.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000005_668835ec.szcp new file mode 100644 index 00000000..e615413d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000005_668835ec.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000006_bc4429bc.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000006_bc4429bc.szcp new file mode 100644 index 00000000..da2da7c2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000006_bc4429bc.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000007_39902d6a.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000007_39902d6a.szcp new file mode 100644 index 00000000..e953c5f0 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_032/checkpoints/checkpoint_00000000000000000007_39902d6a.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000001_521f4a47.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000001_521f4a47.szar new file mode 100644 index 00000000..5ccc72ed Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000001_521f4a47.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000002_f71b41fc.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000002_f71b41fc.szar new file mode 100644 index 00000000..6415ec65 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000002_f71b41fc.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000003_66a91508.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000003_66a91508.szar new file mode 100644 index 00000000..5faf920f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000003_66a91508.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000004_dd020ef8.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000004_dd020ef8.szar new file mode 100644 index 00000000..9de85753 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000004_dd020ef8.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000005_2f5475c5.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000005_2f5475c5.szar new file mode 100644 index 00000000..9b4be274 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000005_2f5475c5.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000006_8ef2b581.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000006_8ef2b581.szar new file mode 100644 index 00000000..17b868dc Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000006_8ef2b581.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000007_804e2fd3.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000007_804e2fd3.szar new file mode 100644 index 00000000..95ad0b99 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/archive/delta_00000000000000000007_804e2fd3.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000001_41900bbf.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000001_41900bbf.szcp new file mode 100644 index 00000000..52f2c2bc Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000001_41900bbf.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000002_36c6185e.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000002_36c6185e.szcp new file mode 100644 index 00000000..cd1facbf Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000002_36c6185e.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000003_5ac221e1.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000003_5ac221e1.szcp new file mode 100644 index 00000000..c9cacff7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000003_5ac221e1.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000004_2ce904b5.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000004_2ce904b5.szcp new file mode 100644 index 00000000..c69baa81 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000004_2ce904b5.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000005_9009b5b7.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000005_9009b5b7.szcp new file mode 100644 index 00000000..a61962d8 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000005_9009b5b7.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000006_49b829be.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000006_49b829be.szcp new file mode 100644 index 00000000..b3aa0cce Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000006_49b829be.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000007_5957e555.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000007_5957e555.szcp new file mode 100644 index 00000000..21676b2b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_033/checkpoints/checkpoint_00000000000000000007_5957e555.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/archive/delta_00000000000000000001_14afc10d.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/archive/delta_00000000000000000001_14afc10d.szar new file mode 100644 index 00000000..bf4f28a7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/archive/delta_00000000000000000001_14afc10d.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/archive/delta_00000000000000000002_fa9d4f9c.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/archive/delta_00000000000000000002_fa9d4f9c.szar new file mode 100644 index 00000000..50814c01 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/archive/delta_00000000000000000002_fa9d4f9c.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/archive/delta_00000000000000000003_ed7bd5e0.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/archive/delta_00000000000000000003_ed7bd5e0.szar new file mode 100644 index 00000000..7c3ce8be Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/archive/delta_00000000000000000003_ed7bd5e0.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/checkpoints/checkpoint_00000000000000000001_4834045b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/checkpoints/checkpoint_00000000000000000001_4834045b.szcp new file mode 100644 index 00000000..50b300db Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/checkpoints/checkpoint_00000000000000000001_4834045b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/checkpoints/checkpoint_00000000000000000002_31896706.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/checkpoints/checkpoint_00000000000000000002_31896706.szcp new file mode 100644 index 00000000..a3e669a7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/checkpoints/checkpoint_00000000000000000002_31896706.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/checkpoints/checkpoint_00000000000000000003_02fc768c.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/checkpoints/checkpoint_00000000000000000003_02fc768c.szcp new file mode 100644 index 00000000..fbb18f12 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_034/checkpoints/checkpoint_00000000000000000003_02fc768c.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/archive/delta_00000000000000000001_c2844a86.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/archive/delta_00000000000000000001_c2844a86.szar new file mode 100644 index 00000000..b285b7cd Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/archive/delta_00000000000000000001_c2844a86.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/archive/delta_00000000000000000002_8e38828d.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/archive/delta_00000000000000000002_8e38828d.szar new file mode 100644 index 00000000..56df0cd6 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/archive/delta_00000000000000000002_8e38828d.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/archive/delta_00000000000000000003_66a24a1f.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/archive/delta_00000000000000000003_66a24a1f.szar new file mode 100644 index 00000000..4c0e187f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/archive/delta_00000000000000000003_66a24a1f.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/checkpoints/checkpoint_00000000000000000001_30c32c7a.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/checkpoints/checkpoint_00000000000000000001_30c32c7a.szcp new file mode 100644 index 00000000..25edb6a4 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/checkpoints/checkpoint_00000000000000000001_30c32c7a.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/checkpoints/checkpoint_00000000000000000002_1abe8ab5.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/checkpoints/checkpoint_00000000000000000002_1abe8ab5.szcp new file mode 100644 index 00000000..232b32a0 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/checkpoints/checkpoint_00000000000000000002_1abe8ab5.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/checkpoints/checkpoint_00000000000000000003_3dd0e0e8.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/checkpoints/checkpoint_00000000000000000003_3dd0e0e8.szcp new file mode 100644 index 00000000..85704766 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_035/checkpoints/checkpoint_00000000000000000003_3dd0e0e8.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/archive/delta_00000000000000000001_cc056399.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/archive/delta_00000000000000000001_cc056399.szar new file mode 100644 index 00000000..a9462f70 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/archive/delta_00000000000000000001_cc056399.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/archive/delta_00000000000000000002_8fd4086a.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/archive/delta_00000000000000000002_8fd4086a.szar new file mode 100644 index 00000000..c6fa9020 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/archive/delta_00000000000000000002_8fd4086a.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/archive/delta_00000000000000000003_4ef2a8ee.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/archive/delta_00000000000000000003_4ef2a8ee.szar new file mode 100644 index 00000000..5b899179 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/archive/delta_00000000000000000003_4ef2a8ee.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/archive/delta_00000000000000000004_df890388.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/archive/delta_00000000000000000004_df890388.szar new file mode 100644 index 00000000..d9776a97 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/archive/delta_00000000000000000004_df890388.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/checkpoints/checkpoint_00000000000000000001_ed2e41ba.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/checkpoints/checkpoint_00000000000000000001_ed2e41ba.szcp new file mode 100644 index 00000000..bd744b2b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/checkpoints/checkpoint_00000000000000000001_ed2e41ba.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/checkpoints/checkpoint_00000000000000000002_8fd86d1d.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/checkpoints/checkpoint_00000000000000000002_8fd86d1d.szcp new file mode 100644 index 00000000..fa28e6dd Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/checkpoints/checkpoint_00000000000000000002_8fd86d1d.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/checkpoints/checkpoint_00000000000000000003_a6f8984a.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/checkpoints/checkpoint_00000000000000000003_a6f8984a.szcp new file mode 100644 index 00000000..ebeb8029 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/checkpoints/checkpoint_00000000000000000003_a6f8984a.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/checkpoints/checkpoint_00000000000000000004_9d24bc3b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/checkpoints/checkpoint_00000000000000000004_9d24bc3b.szcp new file mode 100644 index 00000000..402cbc80 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_036/checkpoints/checkpoint_00000000000000000004_9d24bc3b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/archive/delta_00000000000000000001_242383a9.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/archive/delta_00000000000000000001_242383a9.szar new file mode 100644 index 00000000..9faa31ed Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/archive/delta_00000000000000000001_242383a9.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/archive/delta_00000000000000000002_77ccd37d.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/archive/delta_00000000000000000002_77ccd37d.szar new file mode 100644 index 00000000..67e3447f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/archive/delta_00000000000000000002_77ccd37d.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/archive/delta_00000000000000000003_642f0dba.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/archive/delta_00000000000000000003_642f0dba.szar new file mode 100644 index 00000000..4ae7e0f0 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/archive/delta_00000000000000000003_642f0dba.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/checkpoints/checkpoint_00000000000000000001_91048cca.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/checkpoints/checkpoint_00000000000000000001_91048cca.szcp new file mode 100644 index 00000000..910ded77 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/checkpoints/checkpoint_00000000000000000001_91048cca.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/checkpoints/checkpoint_00000000000000000002_ff1296b5.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/checkpoints/checkpoint_00000000000000000002_ff1296b5.szcp new file mode 100644 index 00000000..f04272c3 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/checkpoints/checkpoint_00000000000000000002_ff1296b5.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/checkpoints/checkpoint_00000000000000000003_616d99ae.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/checkpoints/checkpoint_00000000000000000003_616d99ae.szcp new file mode 100644 index 00000000..74deb91b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_037/checkpoints/checkpoint_00000000000000000003_616d99ae.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/archive/delta_00000000000000000001_a282ea4f.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/archive/delta_00000000000000000001_a282ea4f.szar new file mode 100644 index 00000000..9f23810e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/archive/delta_00000000000000000001_a282ea4f.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/archive/delta_00000000000000000002_c6e1123d.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/archive/delta_00000000000000000002_c6e1123d.szar new file mode 100644 index 00000000..7fedfa7f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/archive/delta_00000000000000000002_c6e1123d.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/archive/delta_00000000000000000003_5297f3c4.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/archive/delta_00000000000000000003_5297f3c4.szar new file mode 100644 index 00000000..06c47e45 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/archive/delta_00000000000000000003_5297f3c4.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/archive/delta_00000000000000000004_eed536fa.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/archive/delta_00000000000000000004_eed536fa.szar new file mode 100644 index 00000000..aa8adaab Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/archive/delta_00000000000000000004_eed536fa.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/checkpoints/checkpoint_00000000000000000001_b425b97b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/checkpoints/checkpoint_00000000000000000001_b425b97b.szcp new file mode 100644 index 00000000..d413eed7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/checkpoints/checkpoint_00000000000000000001_b425b97b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/checkpoints/checkpoint_00000000000000000002_42c81fa7.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/checkpoints/checkpoint_00000000000000000002_42c81fa7.szcp new file mode 100644 index 00000000..5bafa0e4 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/checkpoints/checkpoint_00000000000000000002_42c81fa7.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/checkpoints/checkpoint_00000000000000000003_d8813f95.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/checkpoints/checkpoint_00000000000000000003_d8813f95.szcp new file mode 100644 index 00000000..5308e930 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/checkpoints/checkpoint_00000000000000000003_d8813f95.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/checkpoints/checkpoint_00000000000000000004_9151acb3.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/checkpoints/checkpoint_00000000000000000004_9151acb3.szcp new file mode 100644 index 00000000..a15c1c46 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_038/checkpoints/checkpoint_00000000000000000004_9151acb3.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/archive/delta_00000000000000000001_da587043.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/archive/delta_00000000000000000001_da587043.szar new file mode 100644 index 00000000..b825ffac Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/archive/delta_00000000000000000001_da587043.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/archive/delta_00000000000000000002_5d02a7ac.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/archive/delta_00000000000000000002_5d02a7ac.szar new file mode 100644 index 00000000..e2c9f09b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/archive/delta_00000000000000000002_5d02a7ac.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/archive/delta_00000000000000000003_0a4c4088.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/archive/delta_00000000000000000003_0a4c4088.szar new file mode 100644 index 00000000..ac0ecb32 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/archive/delta_00000000000000000003_0a4c4088.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/archive/delta_00000000000000000004_02f70c58.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/archive/delta_00000000000000000004_02f70c58.szar new file mode 100644 index 00000000..cee5b80a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/archive/delta_00000000000000000004_02f70c58.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/checkpoints/checkpoint_00000000000000000001_ca8b909e.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/checkpoints/checkpoint_00000000000000000001_ca8b909e.szcp new file mode 100644 index 00000000..149fa9e4 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/checkpoints/checkpoint_00000000000000000001_ca8b909e.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/checkpoints/checkpoint_00000000000000000002_04df5186.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/checkpoints/checkpoint_00000000000000000002_04df5186.szcp new file mode 100644 index 00000000..d7b000cd Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/checkpoints/checkpoint_00000000000000000002_04df5186.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/checkpoints/checkpoint_00000000000000000003_dd1181e5.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/checkpoints/checkpoint_00000000000000000003_dd1181e5.szcp new file mode 100644 index 00000000..a1fe95d6 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/checkpoints/checkpoint_00000000000000000003_dd1181e5.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/checkpoints/checkpoint_00000000000000000004_d6d74d8d.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/checkpoints/checkpoint_00000000000000000004_d6d74d8d.szcp new file mode 100644 index 00000000..3061cb09 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_039/checkpoints/checkpoint_00000000000000000004_d6d74d8d.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/archive/delta_00000000000000000001_87eae718.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/archive/delta_00000000000000000001_87eae718.szar new file mode 100644 index 00000000..cddc3dd9 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/archive/delta_00000000000000000001_87eae718.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/archive/delta_00000000000000000002_aa214ab0.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/archive/delta_00000000000000000002_aa214ab0.szar new file mode 100644 index 00000000..060f294d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/archive/delta_00000000000000000002_aa214ab0.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/archive/delta_00000000000000000003_3641eacb.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/archive/delta_00000000000000000003_3641eacb.szar new file mode 100644 index 00000000..ec572eb6 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/archive/delta_00000000000000000003_3641eacb.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/checkpoints/checkpoint_00000000000000000001_506130b4.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/checkpoints/checkpoint_00000000000000000001_506130b4.szcp new file mode 100644 index 00000000..1927028f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/checkpoints/checkpoint_00000000000000000001_506130b4.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/checkpoints/checkpoint_00000000000000000002_9f278a96.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/checkpoints/checkpoint_00000000000000000002_9f278a96.szcp new file mode 100644 index 00000000..a8df122c Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/checkpoints/checkpoint_00000000000000000002_9f278a96.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/checkpoints/checkpoint_00000000000000000003_23e793dc.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/checkpoints/checkpoint_00000000000000000003_23e793dc.szcp new file mode 100644 index 00000000..5e1d69e1 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_040/checkpoints/checkpoint_00000000000000000003_23e793dc.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/archive/delta_00000000000000000001_0c96d283.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/archive/delta_00000000000000000001_0c96d283.szar new file mode 100644 index 00000000..489a70fd Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/archive/delta_00000000000000000001_0c96d283.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/archive/delta_00000000000000000002_f02dad35.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/archive/delta_00000000000000000002_f02dad35.szar new file mode 100644 index 00000000..801cdf9e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/archive/delta_00000000000000000002_f02dad35.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/archive/delta_00000000000000000003_b9141883.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/archive/delta_00000000000000000003_b9141883.szar new file mode 100644 index 00000000..62f0e8ef Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/archive/delta_00000000000000000003_b9141883.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/archive/delta_00000000000000000004_8297815b.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/archive/delta_00000000000000000004_8297815b.szar new file mode 100644 index 00000000..b6a38bfa Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/archive/delta_00000000000000000004_8297815b.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/archive/delta_00000000000000000005_7d1ec066.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/archive/delta_00000000000000000005_7d1ec066.szar new file mode 100644 index 00000000..bd13fa0d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/archive/delta_00000000000000000005_7d1ec066.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/checkpoints/checkpoint_00000000000000000001_f3bad385.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/checkpoints/checkpoint_00000000000000000001_f3bad385.szcp new file mode 100644 index 00000000..40039b01 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/checkpoints/checkpoint_00000000000000000001_f3bad385.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/checkpoints/checkpoint_00000000000000000002_215d8eb7.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/checkpoints/checkpoint_00000000000000000002_215d8eb7.szcp new file mode 100644 index 00000000..4b65992e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/checkpoints/checkpoint_00000000000000000002_215d8eb7.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/checkpoints/checkpoint_00000000000000000003_72d6b1aa.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/checkpoints/checkpoint_00000000000000000003_72d6b1aa.szcp new file mode 100644 index 00000000..9431fa1a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/checkpoints/checkpoint_00000000000000000003_72d6b1aa.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/checkpoints/checkpoint_00000000000000000004_2718120b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/checkpoints/checkpoint_00000000000000000004_2718120b.szcp new file mode 100644 index 00000000..63a8b078 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/checkpoints/checkpoint_00000000000000000004_2718120b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/checkpoints/checkpoint_00000000000000000005_b017dc6b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/checkpoints/checkpoint_00000000000000000005_b017dc6b.szcp new file mode 100644 index 00000000..dc75bb99 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_041/checkpoints/checkpoint_00000000000000000005_b017dc6b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000001_b7d35f26.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000001_b7d35f26.szar new file mode 100644 index 00000000..6b4d4b7b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000001_b7d35f26.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000002_47b6e0b0.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000002_47b6e0b0.szar new file mode 100644 index 00000000..cfd5e7af Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000002_47b6e0b0.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000003_af0b98dd.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000003_af0b98dd.szar new file mode 100644 index 00000000..55047377 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000003_af0b98dd.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000004_ce0007a2.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000004_ce0007a2.szar new file mode 100644 index 00000000..5a5ec1df Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000004_ce0007a2.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000005_fa7984c4.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000005_fa7984c4.szar new file mode 100644 index 00000000..b3a557e2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000005_fa7984c4.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000006_3ff682fe.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000006_3ff682fe.szar new file mode 100644 index 00000000..a68c05e8 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000006_3ff682fe.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000007_953bb589.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000007_953bb589.szar new file mode 100644 index 00000000..a0d2488f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/archive/delta_00000000000000000007_953bb589.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000001_196d49fb.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000001_196d49fb.szcp new file mode 100644 index 00000000..dd956c8a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000001_196d49fb.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000002_322b950f.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000002_322b950f.szcp new file mode 100644 index 00000000..e929ac4a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000002_322b950f.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000003_3e68f7e8.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000003_3e68f7e8.szcp new file mode 100644 index 00000000..6a873899 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000003_3e68f7e8.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000004_40a46a84.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000004_40a46a84.szcp new file mode 100644 index 00000000..1305f235 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000004_40a46a84.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000005_760d9bac.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000005_760d9bac.szcp new file mode 100644 index 00000000..89d08daa Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000005_760d9bac.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000006_7f8a0f15.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000006_7f8a0f15.szcp new file mode 100644 index 00000000..97a7e523 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000006_7f8a0f15.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000007_2256a7c9.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000007_2256a7c9.szcp new file mode 100644 index 00000000..18357e89 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_042/checkpoints/checkpoint_00000000000000000007_2256a7c9.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/archive/delta_00000000000000000001_e07b5e22.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/archive/delta_00000000000000000001_e07b5e22.szar new file mode 100644 index 00000000..f795c4d0 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/archive/delta_00000000000000000001_e07b5e22.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/archive/delta_00000000000000000002_eba7a799.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/archive/delta_00000000000000000002_eba7a799.szar new file mode 100644 index 00000000..518a839b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/archive/delta_00000000000000000002_eba7a799.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/archive/delta_00000000000000000003_a39cedbb.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/archive/delta_00000000000000000003_a39cedbb.szar new file mode 100644 index 00000000..1e595b81 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/archive/delta_00000000000000000003_a39cedbb.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/checkpoints/checkpoint_00000000000000000001_78ee6265.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/checkpoints/checkpoint_00000000000000000001_78ee6265.szcp new file mode 100644 index 00000000..55285dfd Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/checkpoints/checkpoint_00000000000000000001_78ee6265.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/checkpoints/checkpoint_00000000000000000002_7df36438.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/checkpoints/checkpoint_00000000000000000002_7df36438.szcp new file mode 100644 index 00000000..36955e07 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/checkpoints/checkpoint_00000000000000000002_7df36438.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/checkpoints/checkpoint_00000000000000000003_e0a25496.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/checkpoints/checkpoint_00000000000000000003_e0a25496.szcp new file mode 100644 index 00000000..ed513701 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_043/checkpoints/checkpoint_00000000000000000003_e0a25496.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000001_d6e0b76e.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000001_d6e0b76e.szar new file mode 100644 index 00000000..fc8ce663 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000001_d6e0b76e.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000002_480875f7.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000002_480875f7.szar new file mode 100644 index 00000000..fe0f2cc4 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000002_480875f7.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000003_b1ffb5f0.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000003_b1ffb5f0.szar new file mode 100644 index 00000000..8082f2ce Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000003_b1ffb5f0.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000004_c9e113a0.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000004_c9e113a0.szar new file mode 100644 index 00000000..e65df306 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000004_c9e113a0.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000005_136bf16d.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000005_136bf16d.szar new file mode 100644 index 00000000..4012005a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000005_136bf16d.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000006_33376908.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000006_33376908.szar new file mode 100644 index 00000000..2a595987 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/archive/delta_00000000000000000006_33376908.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000001_eda46464.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000001_eda46464.szcp new file mode 100644 index 00000000..0c72bff4 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000001_eda46464.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000002_1dfeca38.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000002_1dfeca38.szcp new file mode 100644 index 00000000..94f1bbdc Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000002_1dfeca38.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000003_e475f166.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000003_e475f166.szcp new file mode 100644 index 00000000..0092319a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000003_e475f166.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000004_4d22a659.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000004_4d22a659.szcp new file mode 100644 index 00000000..604b6bb1 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000004_4d22a659.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000005_8d4f77b8.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000005_8d4f77b8.szcp new file mode 100644 index 00000000..6037dec7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000005_8d4f77b8.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000006_d382f6cf.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000006_d382f6cf.szcp new file mode 100644 index 00000000..f0154196 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_044/checkpoints/checkpoint_00000000000000000006_d382f6cf.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000001_b31c6cde.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000001_b31c6cde.szar new file mode 100644 index 00000000..3c45fbe2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000001_b31c6cde.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000002_7ee787c1.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000002_7ee787c1.szar new file mode 100644 index 00000000..c40790e9 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000002_7ee787c1.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000003_46b9beab.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000003_46b9beab.szar new file mode 100644 index 00000000..f0777d1a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000003_46b9beab.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000004_1c99de18.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000004_1c99de18.szar new file mode 100644 index 00000000..76a6b02a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000004_1c99de18.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000005_ffba67a8.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000005_ffba67a8.szar new file mode 100644 index 00000000..b55f3f29 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000005_ffba67a8.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000006_1e125b09.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000006_1e125b09.szar new file mode 100644 index 00000000..91d45ef1 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/archive/delta_00000000000000000006_1e125b09.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000001_46b97a4e.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000001_46b97a4e.szcp new file mode 100644 index 00000000..98f86971 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000001_46b97a4e.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000002_4b76855f.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000002_4b76855f.szcp new file mode 100644 index 00000000..672e6880 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000002_4b76855f.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000003_b8e277e0.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000003_b8e277e0.szcp new file mode 100644 index 00000000..ae59b421 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000003_b8e277e0.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000004_22cb8d40.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000004_22cb8d40.szcp new file mode 100644 index 00000000..44f6c25a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000004_22cb8d40.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000005_e10b1e6f.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000005_e10b1e6f.szcp new file mode 100644 index 00000000..cd0f62e8 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000005_e10b1e6f.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000006_feb20b1c.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000006_feb20b1c.szcp new file mode 100644 index 00000000..5b6a8db6 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_045/checkpoints/checkpoint_00000000000000000006_feb20b1c.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000001_63eb74b9.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000001_63eb74b9.szar new file mode 100644 index 00000000..b315487c Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000001_63eb74b9.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000002_ebd4048b.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000002_ebd4048b.szar new file mode 100644 index 00000000..38808e39 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000002_ebd4048b.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000003_e5ece3ac.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000003_e5ece3ac.szar new file mode 100644 index 00000000..ad3721a6 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000003_e5ece3ac.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000004_e387f2dd.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000004_e387f2dd.szar new file mode 100644 index 00000000..641144a7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000004_e387f2dd.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000005_91624b21.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000005_91624b21.szar new file mode 100644 index 00000000..8eceb39a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000005_91624b21.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000006_e4cf5db1.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000006_e4cf5db1.szar new file mode 100644 index 00000000..90ce666b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000006_e4cf5db1.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000007_ec43a92d.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000007_ec43a92d.szar new file mode 100644 index 00000000..a8375c86 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/archive/delta_00000000000000000007_ec43a92d.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000001_9ec1c3dc.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000001_9ec1c3dc.szcp new file mode 100644 index 00000000..eb25a789 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000001_9ec1c3dc.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000002_bb049189.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000002_bb049189.szcp new file mode 100644 index 00000000..3ef282c9 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000002_bb049189.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000003_fdd58e87.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000003_fdd58e87.szcp new file mode 100644 index 00000000..b853d9b5 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000003_fdd58e87.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000004_391149cb.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000004_391149cb.szcp new file mode 100644 index 00000000..c7ef7709 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000004_391149cb.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000005_1f072dea.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000005_1f072dea.szcp new file mode 100644 index 00000000..aa70a235 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000005_1f072dea.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000006_54275a0f.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000006_54275a0f.szcp new file mode 100644 index 00000000..f2388379 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000006_54275a0f.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000007_1f7c8f66.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000007_1f7c8f66.szcp new file mode 100644 index 00000000..51b8e2d2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_046/checkpoints/checkpoint_00000000000000000007_1f7c8f66.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/archive/delta_00000000000000000001_cb9c3efd.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/archive/delta_00000000000000000001_cb9c3efd.szar new file mode 100644 index 00000000..a8846839 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/archive/delta_00000000000000000001_cb9c3efd.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/archive/delta_00000000000000000002_c4bb6fce.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/archive/delta_00000000000000000002_c4bb6fce.szar new file mode 100644 index 00000000..f30dfaf5 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/archive/delta_00000000000000000002_c4bb6fce.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/archive/delta_00000000000000000003_53c80f7f.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/archive/delta_00000000000000000003_53c80f7f.szar new file mode 100644 index 00000000..e7d9451b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/archive/delta_00000000000000000003_53c80f7f.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/checkpoints/checkpoint_00000000000000000001_fbf1756b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/checkpoints/checkpoint_00000000000000000001_fbf1756b.szcp new file mode 100644 index 00000000..cfad9613 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/checkpoints/checkpoint_00000000000000000001_fbf1756b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/checkpoints/checkpoint_00000000000000000002_28de24d9.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/checkpoints/checkpoint_00000000000000000002_28de24d9.szcp new file mode 100644 index 00000000..3f9b230c Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/checkpoints/checkpoint_00000000000000000002_28de24d9.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/checkpoints/checkpoint_00000000000000000003_34ba871f.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/checkpoints/checkpoint_00000000000000000003_34ba871f.szcp new file mode 100644 index 00000000..4986fadf Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_047/checkpoints/checkpoint_00000000000000000003_34ba871f.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/archive/delta_00000000000000000001_2b6636b9.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/archive/delta_00000000000000000001_2b6636b9.szar new file mode 100644 index 00000000..c46b4f9e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/archive/delta_00000000000000000001_2b6636b9.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/archive/delta_00000000000000000002_a71699e4.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/archive/delta_00000000000000000002_a71699e4.szar new file mode 100644 index 00000000..35e64576 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/archive/delta_00000000000000000002_a71699e4.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/archive/delta_00000000000000000003_f04bcecd.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/archive/delta_00000000000000000003_f04bcecd.szar new file mode 100644 index 00000000..306df5ad Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/archive/delta_00000000000000000003_f04bcecd.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/archive/delta_00000000000000000004_2a6facc4.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/archive/delta_00000000000000000004_2a6facc4.szar new file mode 100644 index 00000000..f710f56f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/archive/delta_00000000000000000004_2a6facc4.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/archive/delta_00000000000000000005_133681d9.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/archive/delta_00000000000000000005_133681d9.szar new file mode 100644 index 00000000..84b2a5fd Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/archive/delta_00000000000000000005_133681d9.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/checkpoints/checkpoint_00000000000000000001_60ab6bd6.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/checkpoints/checkpoint_00000000000000000001_60ab6bd6.szcp new file mode 100644 index 00000000..4d36bb81 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/checkpoints/checkpoint_00000000000000000001_60ab6bd6.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/checkpoints/checkpoint_00000000000000000002_e170f340.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/checkpoints/checkpoint_00000000000000000002_e170f340.szcp new file mode 100644 index 00000000..3e1efbd5 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/checkpoints/checkpoint_00000000000000000002_e170f340.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/checkpoints/checkpoint_00000000000000000003_e48c97dc.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/checkpoints/checkpoint_00000000000000000003_e48c97dc.szcp new file mode 100644 index 00000000..491338d9 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/checkpoints/checkpoint_00000000000000000003_e48c97dc.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/checkpoints/checkpoint_00000000000000000004_e4d3ddcb.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/checkpoints/checkpoint_00000000000000000004_e4d3ddcb.szcp new file mode 100644 index 00000000..ec8e76fb Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/checkpoints/checkpoint_00000000000000000004_e4d3ddcb.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/checkpoints/checkpoint_00000000000000000005_9de28990.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/checkpoints/checkpoint_00000000000000000005_9de28990.szcp new file mode 100644 index 00000000..e259c123 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_048/checkpoints/checkpoint_00000000000000000005_9de28990.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/archive/delta_00000000000000000001_e2464787.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/archive/delta_00000000000000000001_e2464787.szar new file mode 100644 index 00000000..5c5854a5 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/archive/delta_00000000000000000001_e2464787.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/archive/delta_00000000000000000002_36bebdfb.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/archive/delta_00000000000000000002_36bebdfb.szar new file mode 100644 index 00000000..b1f2e072 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/archive/delta_00000000000000000002_36bebdfb.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/archive/delta_00000000000000000003_6cb65fc2.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/archive/delta_00000000000000000003_6cb65fc2.szar new file mode 100644 index 00000000..6fcc88f8 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/archive/delta_00000000000000000003_6cb65fc2.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/archive/delta_00000000000000000004_b413f337.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/archive/delta_00000000000000000004_b413f337.szar new file mode 100644 index 00000000..a9d5f0c0 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/archive/delta_00000000000000000004_b413f337.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/checkpoints/checkpoint_00000000000000000001_8f5c53c9.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/checkpoints/checkpoint_00000000000000000001_8f5c53c9.szcp new file mode 100644 index 00000000..79406dc3 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/checkpoints/checkpoint_00000000000000000001_8f5c53c9.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/checkpoints/checkpoint_00000000000000000002_ff088409.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/checkpoints/checkpoint_00000000000000000002_ff088409.szcp new file mode 100644 index 00000000..a249d4a5 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/checkpoints/checkpoint_00000000000000000002_ff088409.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/checkpoints/checkpoint_00000000000000000003_641551ac.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/checkpoints/checkpoint_00000000000000000003_641551ac.szcp new file mode 100644 index 00000000..8f0377d1 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/checkpoints/checkpoint_00000000000000000003_641551ac.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/checkpoints/checkpoint_00000000000000000004_f039d4d1.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/checkpoints/checkpoint_00000000000000000004_f039d4d1.szcp new file mode 100644 index 00000000..ef938866 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_049/checkpoints/checkpoint_00000000000000000004_f039d4d1.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/archive/delta_00000000000000000001_6b091a2a.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/archive/delta_00000000000000000001_6b091a2a.szar new file mode 100644 index 00000000..14036e70 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/archive/delta_00000000000000000001_6b091a2a.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/archive/delta_00000000000000000002_9272b85d.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/archive/delta_00000000000000000002_9272b85d.szar new file mode 100644 index 00000000..6a5f4ef6 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/archive/delta_00000000000000000002_9272b85d.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/archive/delta_00000000000000000003_b19292b1.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/archive/delta_00000000000000000003_b19292b1.szar new file mode 100644 index 00000000..a2de98d9 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/archive/delta_00000000000000000003_b19292b1.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/archive/delta_00000000000000000004_3bdaf99d.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/archive/delta_00000000000000000004_3bdaf99d.szar new file mode 100644 index 00000000..6af3ba12 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/archive/delta_00000000000000000004_3bdaf99d.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/archive/delta_00000000000000000005_ca47c5d7.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/archive/delta_00000000000000000005_ca47c5d7.szar new file mode 100644 index 00000000..a9467202 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/archive/delta_00000000000000000005_ca47c5d7.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/checkpoints/checkpoint_00000000000000000001_b4dc2893.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/checkpoints/checkpoint_00000000000000000001_b4dc2893.szcp new file mode 100644 index 00000000..3b036c24 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/checkpoints/checkpoint_00000000000000000001_b4dc2893.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/checkpoints/checkpoint_00000000000000000002_4a066b08.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/checkpoints/checkpoint_00000000000000000002_4a066b08.szcp new file mode 100644 index 00000000..274f5cfd Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/checkpoints/checkpoint_00000000000000000002_4a066b08.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/checkpoints/checkpoint_00000000000000000003_e6cbc67e.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/checkpoints/checkpoint_00000000000000000003_e6cbc67e.szcp new file mode 100644 index 00000000..5e1347c7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/checkpoints/checkpoint_00000000000000000003_e6cbc67e.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/checkpoints/checkpoint_00000000000000000004_3e1d3adf.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/checkpoints/checkpoint_00000000000000000004_3e1d3adf.szcp new file mode 100644 index 00000000..9a3d7ee1 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/checkpoints/checkpoint_00000000000000000004_3e1d3adf.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/checkpoints/checkpoint_00000000000000000005_6128f00b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/checkpoints/checkpoint_00000000000000000005_6128f00b.szcp new file mode 100644 index 00000000..8b229e7b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_050/checkpoints/checkpoint_00000000000000000005_6128f00b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/archive/delta_00000000000000000001_f961ec35.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/archive/delta_00000000000000000001_f961ec35.szar new file mode 100644 index 00000000..f1cc2683 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/archive/delta_00000000000000000001_f961ec35.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/archive/delta_00000000000000000002_ce88b724.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/archive/delta_00000000000000000002_ce88b724.szar new file mode 100644 index 00000000..e43a5171 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/archive/delta_00000000000000000002_ce88b724.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/archive/delta_00000000000000000003_90953af7.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/archive/delta_00000000000000000003_90953af7.szar new file mode 100644 index 00000000..a523cd1a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/archive/delta_00000000000000000003_90953af7.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/checkpoints/checkpoint_00000000000000000001_c511ba84.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/checkpoints/checkpoint_00000000000000000001_c511ba84.szcp new file mode 100644 index 00000000..59aa9e92 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/checkpoints/checkpoint_00000000000000000001_c511ba84.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/checkpoints/checkpoint_00000000000000000002_12fec831.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/checkpoints/checkpoint_00000000000000000002_12fec831.szcp new file mode 100644 index 00000000..d8d192c6 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/checkpoints/checkpoint_00000000000000000002_12fec831.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/checkpoints/checkpoint_00000000000000000003_a2f0eebe.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/checkpoints/checkpoint_00000000000000000003_a2f0eebe.szcp new file mode 100644 index 00000000..980bfb78 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_051/checkpoints/checkpoint_00000000000000000003_a2f0eebe.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000001_ec1d133c.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000001_ec1d133c.szar new file mode 100644 index 00000000..693861fa Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000001_ec1d133c.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000002_2ce848a1.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000002_2ce848a1.szar new file mode 100644 index 00000000..2dacacda Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000002_2ce848a1.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000003_407b4ee4.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000003_407b4ee4.szar new file mode 100644 index 00000000..280091f7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000003_407b4ee4.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000004_04f90d6a.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000004_04f90d6a.szar new file mode 100644 index 00000000..7295ae91 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000004_04f90d6a.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000005_ada69468.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000005_ada69468.szar new file mode 100644 index 00000000..c45544b7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000005_ada69468.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000006_17fe00db.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000006_17fe00db.szar new file mode 100644 index 00000000..c58a928c Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/archive/delta_00000000000000000006_17fe00db.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000001_08bddfb6.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000001_08bddfb6.szcp new file mode 100644 index 00000000..4a423e0b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000001_08bddfb6.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000002_e4155d2e.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000002_e4155d2e.szcp new file mode 100644 index 00000000..fdcac899 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000002_e4155d2e.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000003_0801aaae.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000003_0801aaae.szcp new file mode 100644 index 00000000..8beb73bd Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000003_0801aaae.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000004_e347d0ed.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000004_e347d0ed.szcp new file mode 100644 index 00000000..5581dc6a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000004_e347d0ed.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000005_613b5cf7.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000005_613b5cf7.szcp new file mode 100644 index 00000000..38595218 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000005_613b5cf7.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000006_d1856532.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000006_d1856532.szcp new file mode 100644 index 00000000..3b4cfa87 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_052/checkpoints/checkpoint_00000000000000000006_d1856532.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000001_cc25a309.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000001_cc25a309.szar new file mode 100644 index 00000000..2db4bdf3 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000001_cc25a309.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000002_da29a77a.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000002_da29a77a.szar new file mode 100644 index 00000000..06b99d74 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000002_da29a77a.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000003_51ea5340.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000003_51ea5340.szar new file mode 100644 index 00000000..64e4d38f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000003_51ea5340.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000004_f144a934.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000004_f144a934.szar new file mode 100644 index 00000000..0f3fb0e0 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000004_f144a934.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000005_e97db54c.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000005_e97db54c.szar new file mode 100644 index 00000000..9e73f99c Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000005_e97db54c.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000006_fea1e1d6.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000006_fea1e1d6.szar new file mode 100644 index 00000000..22ed53ef Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000006_fea1e1d6.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000007_0473c3ce.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000007_0473c3ce.szar new file mode 100644 index 00000000..ab600668 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/archive/delta_00000000000000000007_0473c3ce.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000001_113b79ab.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000001_113b79ab.szcp new file mode 100644 index 00000000..26e63117 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000001_113b79ab.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000002_8792c6a0.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000002_8792c6a0.szcp new file mode 100644 index 00000000..c9df79c4 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000002_8792c6a0.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000003_444c04ac.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000003_444c04ac.szcp new file mode 100644 index 00000000..38e4862b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000003_444c04ac.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000004_c56a1138.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000004_c56a1138.szcp new file mode 100644 index 00000000..9fee9192 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000004_c56a1138.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000005_f1ec999e.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000005_f1ec999e.szcp new file mode 100644 index 00000000..d4f05853 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000005_f1ec999e.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000006_9f67a2d1.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000006_9f67a2d1.szcp new file mode 100644 index 00000000..4ea5fed0 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000006_9f67a2d1.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000007_33389b1a.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000007_33389b1a.szcp new file mode 100644 index 00000000..b39b6c2a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_053/checkpoints/checkpoint_00000000000000000007_33389b1a.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000001_56ef8e99.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000001_56ef8e99.szar new file mode 100644 index 00000000..cabbf772 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000001_56ef8e99.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000002_99933a1a.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000002_99933a1a.szar new file mode 100644 index 00000000..bf17292d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000002_99933a1a.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000003_a5ac4eae.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000003_a5ac4eae.szar new file mode 100644 index 00000000..534ee6ea Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000003_a5ac4eae.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000004_dcce661e.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000004_dcce661e.szar new file mode 100644 index 00000000..82bb081b Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000004_dcce661e.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000005_c534fed1.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000005_c534fed1.szar new file mode 100644 index 00000000..176e4ea3 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000005_c534fed1.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000006_40f1e864.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000006_40f1e864.szar new file mode 100644 index 00000000..c70ce548 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/archive/delta_00000000000000000006_40f1e864.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000001_b4dfd519.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000001_b4dfd519.szcp new file mode 100644 index 00000000..d1002956 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000001_b4dfd519.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000002_9a698eb4.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000002_9a698eb4.szcp new file mode 100644 index 00000000..ea1a3a09 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000002_9a698eb4.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000003_525e10f2.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000003_525e10f2.szcp new file mode 100644 index 00000000..0454119d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000003_525e10f2.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000004_4113b6d6.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000004_4113b6d6.szcp new file mode 100644 index 00000000..d529e0fc Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000004_4113b6d6.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000005_7a25b827.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000005_7a25b827.szcp new file mode 100644 index 00000000..48f53ea2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000005_7a25b827.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000006_2a7a9725.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000006_2a7a9725.szcp new file mode 100644 index 00000000..9345981d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_054/checkpoints/checkpoint_00000000000000000006_2a7a9725.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/archive/delta_00000000000000000001_3fc89795.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/archive/delta_00000000000000000001_3fc89795.szar new file mode 100644 index 00000000..35c1ae0e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/archive/delta_00000000000000000001_3fc89795.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/archive/delta_00000000000000000002_00c6ee29.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/archive/delta_00000000000000000002_00c6ee29.szar new file mode 100644 index 00000000..45379322 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/archive/delta_00000000000000000002_00c6ee29.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/archive/delta_00000000000000000003_8846a112.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/archive/delta_00000000000000000003_8846a112.szar new file mode 100644 index 00000000..1f3c9d36 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/archive/delta_00000000000000000003_8846a112.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/checkpoints/checkpoint_00000000000000000001_82e9f31b.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/checkpoints/checkpoint_00000000000000000001_82e9f31b.szcp new file mode 100644 index 00000000..11ffa3ab Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/checkpoints/checkpoint_00000000000000000001_82e9f31b.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/checkpoints/checkpoint_00000000000000000002_70e00459.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/checkpoints/checkpoint_00000000000000000002_70e00459.szcp new file mode 100644 index 00000000..652d2e9d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/checkpoints/checkpoint_00000000000000000002_70e00459.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/checkpoints/checkpoint_00000000000000000003_be9e8ac6.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/checkpoints/checkpoint_00000000000000000003_be9e8ac6.szcp new file mode 100644 index 00000000..3076677d Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_055/checkpoints/checkpoint_00000000000000000003_be9e8ac6.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000001_0e0c2626.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000001_0e0c2626.szar new file mode 100644 index 00000000..df7c4713 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000001_0e0c2626.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000002_5714e7eb.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000002_5714e7eb.szar new file mode 100644 index 00000000..b38589ae Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000002_5714e7eb.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000003_0d923c14.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000003_0d923c14.szar new file mode 100644 index 00000000..f2f38d5e Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000003_0d923c14.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000004_a7e06ad9.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000004_a7e06ad9.szar new file mode 100644 index 00000000..ac1f41de Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000004_a7e06ad9.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000005_bc9fbf2a.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000005_bc9fbf2a.szar new file mode 100644 index 00000000..0a037be9 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000005_bc9fbf2a.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000006_9d0f2baa.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000006_9d0f2baa.szar new file mode 100644 index 00000000..f87a2ddd Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000006_9d0f2baa.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000007_430362c7.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000007_430362c7.szar new file mode 100644 index 00000000..060366fd Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000007_430362c7.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000008_0ebd261a.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000008_0ebd261a.szar new file mode 100644 index 00000000..d443c280 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/archive/delta_00000000000000000008_0ebd261a.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000001_f8129203.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000001_f8129203.szcp new file mode 100644 index 00000000..976fad91 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000001_f8129203.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000002_89262b8c.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000002_89262b8c.szcp new file mode 100644 index 00000000..cfefc2a3 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000002_89262b8c.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000003_d2d5d5ac.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000003_d2d5d5ac.szcp new file mode 100644 index 00000000..f6ab2565 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000003_d2d5d5ac.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000004_ce5943b6.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000004_ce5943b6.szcp new file mode 100644 index 00000000..333b8265 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000004_ce5943b6.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000005_ae0e44c5.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000005_ae0e44c5.szcp new file mode 100644 index 00000000..0f2fc7f3 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000005_ae0e44c5.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000006_addfd3be.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000006_addfd3be.szcp new file mode 100644 index 00000000..06c21b1f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000006_addfd3be.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000007_421803b7.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000007_421803b7.szcp new file mode 100644 index 00000000..0d718f94 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000007_421803b7.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000008_9bd6e30a.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000008_9bd6e30a.szcp new file mode 100644 index 00000000..75a0ed3f Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_056/checkpoints/checkpoint_00000000000000000008_9bd6e30a.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/archive/delta_00000000000000000001_fbe4b59d.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/archive/delta_00000000000000000001_fbe4b59d.szar new file mode 100644 index 00000000..349b1881 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/archive/delta_00000000000000000001_fbe4b59d.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/archive/delta_00000000000000000002_edb2457d.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/archive/delta_00000000000000000002_edb2457d.szar new file mode 100644 index 00000000..6adf9b5a Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/archive/delta_00000000000000000002_edb2457d.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/archive/delta_00000000000000000003_6e30b237.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/archive/delta_00000000000000000003_6e30b237.szar new file mode 100644 index 00000000..23efbac9 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/archive/delta_00000000000000000003_6e30b237.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/checkpoints/checkpoint_00000000000000000001_67735184.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/checkpoints/checkpoint_00000000000000000001_67735184.szcp new file mode 100644 index 00000000..d4045660 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/checkpoints/checkpoint_00000000000000000001_67735184.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/checkpoints/checkpoint_00000000000000000002_8f6221b5.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/checkpoints/checkpoint_00000000000000000002_8f6221b5.szcp new file mode 100644 index 00000000..32cb0ffd Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/checkpoints/checkpoint_00000000000000000002_8f6221b5.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/checkpoints/checkpoint_00000000000000000003_8a099a0c.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/checkpoints/checkpoint_00000000000000000003_8a099a0c.szcp new file mode 100644 index 00000000..4a900173 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_057/checkpoints/checkpoint_00000000000000000003_8a099a0c.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/archive/delta_00000000000000000001_8c6a5052.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/archive/delta_00000000000000000001_8c6a5052.szar new file mode 100644 index 00000000..c49776a1 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/archive/delta_00000000000000000001_8c6a5052.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/archive/delta_00000000000000000002_fc5a5c4f.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/archive/delta_00000000000000000002_fc5a5c4f.szar new file mode 100644 index 00000000..4b9b98c2 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/archive/delta_00000000000000000002_fc5a5c4f.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/archive/delta_00000000000000000003_fca90d59.szar b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/archive/delta_00000000000000000003_fca90d59.szar new file mode 100644 index 00000000..f517f4c7 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/archive/delta_00000000000000000003_fca90d59.szar differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/checkpoints/checkpoint_00000000000000000001_8459c305.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/checkpoints/checkpoint_00000000000000000001_8459c305.szcp new file mode 100644 index 00000000..238c3619 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/checkpoints/checkpoint_00000000000000000001_8459c305.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/checkpoints/checkpoint_00000000000000000002_e893370c.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/checkpoints/checkpoint_00000000000000000002_e893370c.szcp new file mode 100644 index 00000000..9eba79e6 Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/checkpoints/checkpoint_00000000000000000002_e893370c.szcp differ diff --git a/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/checkpoints/checkpoint_00000000000000000003_24962e65.szcp b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/checkpoints/checkpoint_00000000000000000003_24962e65.szcp new file mode 100644 index 00000000..18d1f3de Binary files /dev/null and b/results/search/runs/dc1cc850-7e70-4d8b-8658-3252b04a8e61/topology_058/checkpoints/checkpoint_00000000000000000003_24962e65.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/metrics.tsv b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/metrics.tsv new file mode 100644 index 00000000..0bf76c00 --- /dev/null +++ b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/metrics.tsv @@ -0,0 +1,677 @@ +round unix_ns phase topology depth bandit_score worstness before_C before_I after_C after_I improved backend_error archive_cells archive_improvements verified accounted_fp32_steps new_trials kernel_ms transfer_ms wall_ms rex_attempts rex_accepts spsa_attempted spsa_accepted steps_baseline steps_replica steps_adaptive steps_pbt steps_injected verified_baseline verified_replica verified_adaptive verified_pbt verified_injected archive_baseline archive_replica archive_adaptive archive_pbt archive_injected global_baseline global_replica global_adaptive global_pbt global_injected +1 1783756340351097400 DEPTH 18 1 1.1664355878337118 1 4 15 4 15 1 0 109 45 2599 23664766 143040 984.75772094726562 5.9426000000000005 1225.9838999999999 120960 56854 1 0 5898240 4423680 4423680 4426365 4492800 174 159 218 215 1833 3 3 5 1 33 0 0 0 0 3 +2 1783756341397143800 DEPTH 46 1 1.0756756310670483 0.84485407066052232 2 15 2 15 1 0 116 42 2573 23664863 143040 846.23074340820312 5.9401999999999999 1032.8408999999999 120960 61837 1 0 5898240 4423680 4423680 4426461 4492800 183 162 166 163 1899 3 2 5 8 24 1 0 0 0 1 +3 1783756342435699300 DEPTH 23 1 1.0812672478021896 0.83794162826420893 3 14 3 14 1 0 112 71 2526 23664834 143040 842.22114562988281 5.9148000000000005 1025.7225000000001 120960 60901 1 0 5898240 4423680 4423680 4426433 4492800 183 150 178 180 1835 5 1 7 5 53 0 0 0 0 2 +4 1783756343455722700 DEPTH 32 1 1.0409293328961757 0.76036866359446997 2 14 2 14 1 0 124 36 2563 23664829 143040 815.90467834472656 5.9779 998.22130000000004 120960 57197 1 0 5898240 4423680 4423680 4426427 4492800 163 157 182 165 1896 4 1 1 1 29 0 0 0 0 1 +5 1783756344488357500 DEPTH 43 1 0.99160505155384393 0.66897081413210457 3 12 3 12 0 0 136 43 2543 23664919 143040 837.65090942382812 5.9212000000000007 1019.6762 120960 60310 1 0 5898240 4423680 4423680 4426519 4492800 182 182 174 171 1834 3 1 4 5 30 0 0 0 0 0 +6 1783756345496963700 DEPTH 51 1 1.0016891818777973 0.66897081413210457 3 12 3 12 0 0 94 52 2560 23664810 143040 813.1280517578125 5.9752000000000001 995.35550000000001 120960 56627 1 0 5898240 4423680 4423680 4426410 4492800 182 151 169 189 1869 5 4 5 6 32 0 0 0 0 0 +7 1783756346550408200 DEPTH 15 1 1.0117731225489455 0.66897081413210457 3 12 3 12 0 0 100 51 2540 23664845 143040 839.37249755859375 5.9449000000000005 1030.8729000000001 120960 60339 1 0 5898240 4423680 4423680 4426445 4492800 179 184 181 195 1801 3 2 6 3 37 0 0 0 0 0 +8 1783756347596788100 DEPTH 24 1 1.017363786835765 0.66205837173579118 4 11 4 11 0 0 139 71 2542 23664841 143040 848.33161926269531 5.9667999999999992 1032.0594000000001 120960 64048 1 0 5898240 4423680 4423680 4426438 4492800 189 210 174 179 1790 9 4 3 8 47 0 0 0 0 0 +9 1783756348632260900 DEPTH 27 1 0.99050418631170545 0.6052227342549924 0 14 0 14 1 0 156 61 2567 23664793 143040 838.01882934570312 5.9525000000000006 1022.6704999999999 120960 58519 1 0 5898240 4423680 4423680 4426391 4492800 184 168 177 178 1860 15 1 5 6 34 1 0 0 0 0 +10 1783756349620320600 DEPTH 4 1 0.99609447540208407 0.59831029185867901 1 13 1 13 1 0 52 12 2596 23664920 143040 789.53718566894531 5.9256999999999991 966.41510000000005 120960 53803 1 0 5898240 4423680 4423680 4426518 4492800 162 176 154 166 1938 2 0 4 1 5 0 0 0 0 1 +11 1783756350608370700 DEPTH 34 1 1.0061776656698456 0.59831029185867901 1 13 1 13 0 0 105 34 2598 23664809 143040 801.40873718261719 5.9354000000000005 974.26969999999994 120960 55161 1 0 5898240 4423680 4423680 4426408 4492800 184 195 157 165 1897 5 2 3 3 21 0 0 0 0 0 +12 1783756351629402100 DEPTH 26 1 1.0162606703624566 0.59831029185867901 1 13 1 13 1 0 92 46 2604 23664807 143040 820.08148193359375 5.9363000000000001 997.01400000000001 120960 55207 1 0 5898240 4423680 4423680 4426405 4492800 166 166 159 176 1937 6 2 2 4 32 0 0 0 0 1 +13 1783756352673758100 DEPTH 57 1 1.0218504027222424 0.59139784946236551 2 12 2 12 1 0 128 69 2514 23664887 143040 828.40968322753906 6.0041000000000011 1017.9019 120960 59506 1 0 5898240 4423680 4423680 4426484 4492800 198 201 184 195 1736 2 4 5 1 57 0 0 0 0 3 +14 1783756353714131300 DEPTH 58 1 1.0319330386592416 0.59139784946236551 2 12 2 12 0 0 125 41 2599 23664820 143040 835.06343078613281 5.9829999999999997 1024.2012 120960 58558 1 0 5898240 4423680 4423680 4426420 4492800 172 187 162 150 1928 6 5 3 2 25 0 0 0 0 0 +15 1783756354734307500 DEPTH 6 1 1.0375224038480224 0.58448540706605223 3 11 3 11 1 0 120 42 2605 23664895 143040 822.86256408691406 5.9199999999999999 999.54880000000003 120960 53876 1 0 5898240 4423680 4423680 4426493 4492800 156 182 176 182 1909 6 3 3 3 27 0 2 0 0 1 +16 1783756355780760600 DEPTH 25 1 1.0476046741885543 0.58448540706605223 3 11 3 11 0 0 118 32 2573 23664879 143040 834.05856323242188 5.9491999999999994 1023.2088 120960 59097 1 0 5898240 4423680 4423680 4426479 4492800 172 176 164 169 1892 4 0 4 4 20 0 0 0 0 0 +17 1783756356829949700 DEPTH 22 1 1.0576867629030255 0.58448540706605223 3 11 3 11 1 0 126 39 2599 23664849 143040 851.94424438476562 5.9825000000000008 1033.4671000000001 120960 63258 1 0 5898240 4423680 4423680 4426446 4492800 168 187 168 168 1908 9 5 2 1 22 0 0 0 0 1 +18 1783756357846641000 DEPTH 0 1 1.0218393312885721 0.51382488479262667 1 12 1 12 0 0 91 27 2565 23664880 143040 817.84083557128906 5.9298999999999999 994.32299999999998 120960 54163 1 0 5898240 4423680 4423680 4426480 4492800 171 217 174 183 1820 4 2 1 1 19 0 0 0 0 0 +19 1783756358882086000 DEPTH 29 1 1.031921059070622 0.51382488479262667 1 12 1 12 1 0 128 63 2585 23664800 143040 825.60481262207031 5.9359999999999999 1011.9784 120960 58814 1 0 5898240 4423680 4423680 4426399 4492800 167 205 172 176 1865 7 3 9 2 42 0 0 0 0 1 +20 1783756359913344800 DEPTH 37 1 1.0420026075365758 0.51382488479262667 1 12 1 12 0 0 142 23 2603 23664846 143040 828.79566955566406 5.9806000000000008 1013.4501 120960 57433 1 0 5898240 4423680 4423680 4426446 4492800 167 161 159 178 1938 5 2 1 2 13 0 0 0 0 0 +21 1783756360943838700 DEPTH 40 1 1.0520839774467543 0.51382488479262667 1 12 1 12 1 0 123 64 2544 23664820 143040 833.74652099609375 5.9735000000000005 1010.4764 120960 57247 1 0 5898240 4423680 4423680 4426418 4492800 185 207 195 187 1770 5 6 2 6 45 0 0 0 0 1 +22 1783756361987066500 DEPTH 7 1 1.0621651695567109 0.51382488479262667 1 12 1 12 1 0 132 57 2580 23664828 143040 837.65472412109375 5.9215999999999998 1026.6613 120960 61858 1 0 5898240 4423680 4423680 4426427 4492800 164 199 176 177 1864 2 1 2 1 51 0 1 0 0 3 +23 1783756363048575400 DEPTH 55 1 1.0722461846172715 0.51382488479262667 1 12 1 12 1 0 152 55 2564 23664857 143040 853.40328979492188 5.9318 1037.1404 120960 62540 1 0 5898240 4423680 4423680 4426456 4492800 174 173 181 176 1860 5 5 7 5 33 0 0 0 1 1 +24 1783756364100692400 DEPTH 28 1 1.0823270233745741 0.51382488479262667 1 12 1 12 0 0 148 53 2536 23664857 143040 849.70631408691406 5.9293000000000005 1030.9845 120960 64398 1 0 5898240 4423680 4423680 4426456 4492800 156 180 160 169 1871 5 1 3 3 41 0 0 0 0 0 +25 1783756365122003400 DEPTH 5 1 1.0779145990125027 0.50691244239631339 2 11 2 11 1 0 96 43 2600 23664754 143040 801.77299499511719 6.0098000000000003 992.01779999999997 120960 55676 1 0 5898240 4423680 4423680 4426354 4492800 170 207 187 165 1871 1 2 4 3 33 0 0 0 0 1 +26 1783756366145827600 DEPTH 19 1 1.0779950873831416 0.50691244239631339 2 11 2 11 1 0 134 42 2614 23664821 143040 830.76394653320312 5.9444999999999997 1008.1079 120960 58153 1 0 5898240 4423680 4423680 4426419 4492800 153 186 157 196 1922 5 2 0 2 33 0 0 0 0 1 +27 1783756367199063300 DEPTH 35 1 1.0780754016611904 0.50691244239631339 2 11 2 11 0 0 168 65 2526 23664859 143040 844.09228515625 5.9230999999999998 1027.4498000000001 120960 62805 1 0 5898240 4423680 4423680 4426456 4492800 191 215 180 168 1772 7 2 2 3 51 0 0 0 0 0 +28 1783756368245592700 DEPTH 20 1 1.0781555425744163 0.50691244239631339 2 11 2 11 0 0 122 55 2557 23664893 143040 821.65742492675781 5.9654000000000007 1020.7148999999999 120960 57003 1 0 5898240 4423680 4423680 4426493 4492800 173 156 197 199 1832 6 1 5 6 37 0 0 0 0 0 +29 1783756369284248800 DEPTH 47 1 1.0782355108460875 0.50691244239631339 2 11 2 11 0 0 114 46 2600 23664835 143040 827.40968322753906 5.9486999999999997 1020.1292999999999 120960 59376 1 0 5898240 4423680 4423680 4426434 4492800 151 153 160 160 1976 3 4 6 4 29 0 0 0 0 0 +30 1783756370322185500 DEPTH 49 1 1.073822219637407 0.5 3 10 3 10 1 0 133 65 2562 23665031 143040 831.12635803222656 5.9782000000000002 1016.4279 120960 59933 1 0 5898240 4423680 4423680 4426631 4492800 182 150 167 172 1891 3 0 7 2 53 0 0 0 0 2 +31 1783756371346420600 DEPTH 18 1 1.3833402164767681 1 4 15 4 15 1 0 110 25 2614 23664840 81600 815.27188110351562 5.9457999999999993 999.57770000000005 120960 46240 1 0 5898240 4423680 4423680 4426438 4492800 185 155 459 541 1274 0 0 0 0 25 0 0 0 0 2 +32 1783756372387509900 DEPTH 46 1 1.2825371964897485 0.84485407066052232 2 15 2 15 0 0 116 35 2569 23664869 81600 837.38418579101562 5.8872999999999998 1018.1061 120960 52507 1 0 5898240 4423680 4423680 4426467 4492800 190 158 168 183 1870 3 0 0 1 31 0 0 0 0 0 +33 1783756373420422100 DEPTH 23 1 1.2781774082939756 0.83794162826420893 3 14 3 14 1 0 115 60 2520 23664870 81600 835.68026733398438 5.9781000000000004 1014.1974 120960 51650 1 0 5898240 4423680 4423680 4426470 4492800 180 150 176 195 1819 0 1 2 0 57 0 0 0 0 2 +34 1783756374448685900 DEPTH 32 1 1.2277702450478005 0.76036866359446997 2 14 2 14 1 0 124 13 2579 23664850 81600 812.62124633789062 5.9962 1002.2965 120960 45795 1 0 5898240 4423680 4423680 4426450 4492800 187 156 332 279 1625 0 0 0 0 13 0 0 0 0 1 +35 1783756375485591000 DEPTH 43 1 1.1684314220413061 0.66897081413210457 3 12 3 12 1 0 136 45 2548 23664898 81600 835.48428344726562 5.9130000000000003 1014.7842000000001 120960 49823 1 0 5898240 4423680 4423680 4426498 4492800 204 179 203 217 1745 3 0 1 5 36 0 0 0 0 1 +36 1783756376489213500 DEPTH 51 1 1.1685061589909052 0.66897081413210457 3 12 3 11 1 0 95 33 2579 23664909 81600 808.50344848632812 5.9068000000000005 986.43550000000005 120960 45971 1 0 5898240 4423680 4423680 4426509 4492800 213 153 221 398 1594 3 1 0 0 29 1 0 0 0 0 +37 1783756377540837000 DEPTH 15 1 1.1685807374980328 0.66897081413210457 3 12 3 12 0 0 101 54 2548 23664820 81600 834.78396606445312 5.9424999999999999 1025.5432000000001 120960 50697 1 0 5898240 4423680 4423680 4426418 4492800 181 176 201 273 1717 0 3 0 0 51 0 0 0 0 0 +38 1783756378585051600 DEPTH 24 1 1.164162070654355 0.66205837173579118 4 11 4 11 0 0 140 50 2533 23664728 81600 838.51922607421875 5.9809999999999999 1019.0939 120960 53055 1 0 5898240 4423680 4423680 4426326 4492800 194 208 189 191 1751 0 0 0 1 49 0 0 0 0 0 +39 1783756379611070400 DEPTH 27 1 1.1273165129340419 0.6052227342549924 0 14 0 14 0 0 156 40 2556 23664796 81600 832.09173583984375 5.9181999999999997 1007.6391 120960 49557 1 0 5898240 4423680 4423680 4426395 4492800 182 174 186 181 1833 3 0 0 0 37 0 0 0 0 0 +40 1783756380605974700 DEPTH 4 1 1.1228749674292762 0.59831029185867901 1 13 1 13 1 0 55 12 2566 23664854 81600 785.84393310546875 5.9584999999999999 970.67690000000005 120960 43650 1 0 5898240 4423680 4423680 4426454 4492800 165 157 168 194 1882 0 0 2 1 9 0 0 0 0 3 +41 1783756381657714800 DEPTH 36 1 1.0746888337937988 0.5 3 10 3 10 0 0 118 48 2588 23664778 143040 844.56930541992188 5.9204000000000008 1028.4337 120960 61735 1 0 5898240 4423680 4423680 4426377 4492800 180 185 165 161 1897 7 0 4 4 33 0 0 0 0 0 +42 1783756382647486200 DEPTH 34 1 1.1230219365062448 0.59831029185867901 1 13 1 13 1 0 105 20 2595 23664867 81600 797.88728332519531 6.3179999999999996 973.68470000000002 120960 44778 1 0 5898240 4423680 4423680 4426465 4492800 194 176 159 215 1851 1 0 0 0 19 0 0 0 0 1 +43 1783756383665101800 DEPTH 26 1 1.1230955778759113 0.59831029185867901 1 13 1 13 0 0 95 35 2608 23664824 81600 811.08061218261719 6.0270000000000001 1001.5552 120960 45262 1 0 5898240 4423680 4423680 4426424 4492800 164 156 185 273 1830 0 1 1 1 32 0 0 0 0 0 +44 1783756384686003500 DEPTH 57 1 1.1188806636491955 0.59139784946236551 2 12 2 12 0 0 130 68 2513 23664807 81600 824.28303527832031 5.9199000000000002 1000.6855 120960 48668 1 0 5898240 4423680 4423680 4426406 4492800 201 195 192 281 1644 0 0 2 0 66 0 0 0 0 0 +45 1783756385763179600 DEPTH 58 1 1.118749311684667 0.59139784946236551 2 12 2 12 1 0 125 31 2594 23664808 81600 829.17791748046875 5.9451000000000001 1007.6654 120960 48964 1 0 5898240 4423680 4423680 4426408 4492800 172 182 164 150 1926 2 0 0 4 25 0 0 0 0 1 +46 1783756387034303000 DEPTH 14 1 1.0336398976077621 0.43625192012288788 0 12 0 12 0 0 123 21 2563 23664887 143040 839.86712646484375 5.9429999999999996 1253.6881000000001 120960 60779 1 0 5898240 4423680 4423680 4426487 4492800 193 164 166 184 1856 1 2 2 0 16 0 0 0 0 0 +47 1783756388024053900 DEPTH 18 1 1.2814580939451377 1 4 15 4 15 1 0 111 35 2626 23664841 81600 813.580322265625 5.8974000000000002 988.57650000000001 120960 40008 1 0 5898240 4423680 4423680 4426440 4492800 182 150 537 801 956 0 0 0 2 33 0 0 0 0 1 +48 1783756389039184000 DEPTH 46 1 1.1806363024907698 0.84485407066052232 2 15 2 15 0 0 116 28 2570 23664847 81600 834.32241821289062 5.9104000000000001 1013.9501 120960 44411 1 0 5898240 4423680 4423680 4426447 4492800 194 156 168 191 1861 1 0 0 1 26 0 0 0 0 0 +49 1783756390056848500 DEPTH 23 1 1.1763085204556485 0.83794162826420893 3 14 3 13 1 0 118 67 2509 23664941 81600 834.43052673339844 5.9561000000000011 1016.5356 120960 43446 1 0 5898240 4423680 4423680 4426540 4492800 174 150 171 193 1821 0 0 0 0 67 0 0 0 0 3 +50 1783756391073448300 DEPTH 6 1 1.1146826389084188 0.58448540706605223 3 11 3 11 1 0 120 27 2566 23664838 81600 816.26792907714844 5.8970000000000002 992.76679999999999 120960 44936 1 0 5898240 4423680 4423680 4426438 4492800 170 175 233 242 1746 2 0 1 0 24 0 0 0 0 1 +51 1783756392121779000 DEPTH 22 1 1.1146931145236196 0.58448540706605223 3 11 3 11 0 0 126 34 2604 23664806 81600 841.99209594726562 5.9151000000000007 1023.3853 120960 52787 1 0 5898240 4423680 4423680 4426405 4492800 171 179 194 187 1873 1 0 2 1 30 0 0 0 0 0 +52 1783756393159552500 DEPTH 25 1 1.1147653197453615 0.58448540706605223 3 11 3 11 0 0 118 22 2576 23664849 81600 831.17256164550781 5.9138999999999999 1013.371 120960 49684 1 0 5898240 4423680 4423680 4426448 4492800 188 168 178 196 1846 0 0 0 0 22 0 0 0 0 0 +53 1783756394146930300 DEPTH 32 1 1.1560653590395122 0.76036866359446997 2 14 2 12 1 0 124 13 2569 23664878 81600 808.67794799804688 5.9494000000000007 986.27610000000004 120960 38561 1 0 5898240 4423680 4423680 4426477 4492800 207 159 416 396 1391 0 2 0 0 11 0 2 0 0 1 +54 1783756395177802300 DEPTH 7 1 1.0690337231780267 0.51382488479262667 1 12 1 12 0 0 135 52 2579 23664871 81600 830.96286010742188 5.9920999999999998 1014.9530999999999 120960 50621 1 0 5898240 4423680 4423680 4426470 4492800 166 186 174 217 1836 0 0 2 0 50 0 0 0 0 0 +55 1783756396179222700 DEPTH 18 1 1.1908585900062212 1 4 15 4 15 1 0 112 36 2617 23664910 81600 811.26473999023438 5.9404000000000003 1000.2788 120960 29069 1 0 5898240 4423680 4423680 4426508 4492800 183 150 496 1039 749 0 0 4 5 27 0 0 0 0 2 +56 1783756397175651900 DEPTH 51 1 1.1519412850287878 0.58448540706605223 3 11 3 11 1 0 97 55 2593 23664825 81600 813.14363098144531 5.9156000000000004 995.27679999999998 120960 39371 1 0 5898240 4423680 4423680 4426424 4492800 238 150 295 684 1226 0 0 1 1 53 0 0 0 0 4 +57 1783756398189608100 DEPTH 23 1 1.1307429003988239 0.75345622119815692 3 13 3 13 1 0 119 54 2504 23664881 81600 831.25657653808594 6.0011999999999999 1012.8081 120960 32620 1 0 5898240 4423680 4423680 4426480 4492800 179 150 177 217 1781 0 0 0 0 54 0 0 0 0 2 +58 1783756399210644500 DEPTH 43 1 1.1370282792030624 0.66897081413210457 3 12 3 12 1 0 136 55 2579 23664852 81600 831.35873413085938 5.9025999999999996 1019.7945 120960 42859 1 0 5898240 4423680 4423680 4426451 4492800 195 164 191 240 1789 0 0 2 4 49 0 0 0 0 1 +59 1783756400225461900 DEPTH 15 1 1.127061018581478 0.66897081413210457 3 12 3 12 0 0 101 52 2545 23664924 81600 832.631591796875 5.8974000000000002 1013.6959000000001 120960 43742 1 0 5898240 4423680 4423680 4426523 4492800 186 168 234 403 1554 0 0 0 1 51 0 0 0 0 0 +60 1783756401237706100 DEPTH 46 1 1.1302602631883643 0.84485407066052232 2 15 2 15 1 0 117 27 2578 23664822 81600 830.25592041015625 5.9094999999999995 1011.024 120960 32896 1 0 5898240 4423680 4423680 4426422 4492800 213 156 168 195 1846 1 0 0 0 26 0 0 0 0 3 +61 1783756402277738900 DEPTH 24 1 1.1327033874408881 0.66205837173579118 4 11 4 11 0 0 140 58 2537 23664858 81600 836.02314758300781 5.9038000000000004 1014.5765 120960 45120 1 0 5898240 4423680 4423680 4426457 4492800 203 201 206 202 1725 2 0 0 0 56 0 0 0 0 0 +62 1783756403332558600 DEPTH 55 1 1.0695733308058513 0.51382488479262667 1 12 1 12 0 0 152 36 2563 23664881 81600 845.68618774414062 5.9058000000000002 1023.8799 120960 52338 1 0 5898240 4423680 4423680 4426481 4492800 177 168 198 206 1814 0 0 0 2 34 0 0 0 0 0 +63 1783756403549169700 REFRESH 35 0 1.0651282731763181 0.50691244239631339 2 11 2 11 0 0 169 12 413 3943905 55200 149.54188537597656 0.9869 185.6799 20160 14828 0 0 983040 737280 737280 737505 748800 30 26 27 28 302 0 0 0 1 11 0 0 0 0 0 +64 1783756403730061500 REFRESH 36 0 1.0407057193289977 0.5 3 10 3 10 0 0 118 10 419 3943919 55200 149.11283874511719 0.98580000000000001 179.6892 20160 14982 0 0 983040 737280 737280 737517 748800 28 26 27 32 306 0 0 0 0 10 0 0 0 0 0 +65 1783756403910638300 REFRESH 43 0 0.96630228865241818 0.66897081413210457 3 12 3 12 0 0 139 17 414 3943886 55200 149.67167663574219 0.98019999999999996 179.4075 20160 13072 0 0 983040 737280 737280 737486 748800 44 26 31 35 278 1 0 0 1 15 0 0 0 0 0 +66 1783756404125412800 REFRESH 2 0 0.91633265087942717 0.25345622119815675 2 8 2 8 0 0 145 8 413 3943891 116640 149.83576965332031 1.0054000000000001 189.91900000000001 20160 14885 0 0 983040 737280 737280 737490 748800 27 25 26 26 309 1 0 0 0 7 0 0 0 0 0 +67 1783756404305832100 REFRESH 15 0 0.97638134186471681 0.66897081413210457 3 12 3 12 0 0 101 5 417 3943908 55200 149.93510437011719 0.98470000000000002 179.28909999999999 20160 13200 0 0 983040 737280 737280 737507 748800 29 26 28 95 239 0 0 0 0 5 0 0 0 0 0 +68 1783756404506731800 REFRESH 14 0 0.98955019120454568 0.43625192012288788 0 12 0 12 0 0 124 10 412 3943911 55200 149.90745544433594 0.98729999999999996 184.81219999999999 20160 14931 0 0 983040 737280 737280 737511 748800 29 26 26 36 295 0 0 0 0 10 0 0 0 0 0 +69 1783756404722098900 REFRESH 48 0 0.97146943183050227 0.33794162826420893 2 9 2 9 0 0 168 7 416 3943909 116640 148.06243896484375 1.0044 199.12559999999999 20160 15143 0 0 983040 737280 737280 737509 748800 26 26 25 26 313 0 1 0 1 5 0 0 0 0 0 +70 1783756404956967500 REFRESH 44 0 0.86171186444196468 0.16897081413210441 2 7 2 7 0 0 161 9 423 3943924 116640 148.94560241699219 1.0464 208.38730000000001 20160 15082 0 0 983040 737280 737280 737524 748800 26 27 25 26 319 1 0 0 0 8 0 0 0 0 0 +71 1783756405138774200 REFRESH 55 0 0.89704116960950819 0.51382488479262667 1 12 1 12 0 0 152 14 416 3943910 55200 150.76556396484375 0.98109999999999997 180.45079999999999 20160 14512 0 0 983040 737280 737280 737510 748800 29 26 35 61 265 0 0 0 0 14 0 0 0 0 0 +72 1783756405352253800 REFRESH 3 0 0.97168938012477513 0.33794162826420893 2 9 2 9 0 0 148 10 414 3943917 116640 148.68582153320312 1.0165 186.22309999999999 20160 15207 0 0 983040 737280 737280 737517 748800 27 27 26 26 308 1 1 0 0 8 0 0 0 0 0 +73 1783756405579804300 REFRESH 50 0 0.97176240594161767 0.33794162826420893 2 9 2 9 0 0 137 10 421 3943894 116640 148.09388732910156 1.3713 195.31729999999999 20160 15227 0 0 983040 737280 737280 737494 748800 26 25 26 26 318 1 1 0 0 8 0 0 0 0 0 +74 1783756405777812500 REFRESH 38 0 1.0267508021365157 0.42242703533026116 2 10 2 10 1 0 125 13 414 3943927 116640 147.42732238769531 1.0059 181.48439999999999 20160 15079 0 0 983040 737280 737280 737527 748800 26 29 26 26 307 2 0 1 1 9 0 0 0 0 1 +75 1783756405959144400 REFRESH 24 0 1.032395708093516 0.66205837173579118 4 11 4 11 0 0 142 13 413 3943924 55200 149.29612731933594 0.98470000000000002 180.19460000000001 20160 13288 0 0 983040 737280 737280 737524 748800 44 26 45 85 213 1 0 0 0 12 0 0 0 0 0 +76 1783756406169902600 REFRESH 16 0 0.80723407652388746 0.084485407066052204 2 6 2 6 0 0 188 5 415 3943941 116640 150.53414916992188 1.0101 188.20699999999999 20160 14444 0 0 983040 737280 737280 737541 748800 27 26 26 26 310 0 0 0 0 5 0 0 0 0 0 +77 1783756406400392300 REFRESH 11 0 0.81629270388839181 0.098310291858679053 0 8 0 8 0 0 108 7 417 3943900 116640 147.92611694335938 1.0129999999999999 206.8869 20160 15221 0 0 983040 737280 737280 737500 748800 27 25 26 26 313 1 0 0 0 6 0 0 0 0 0 +78 1783756406621206100 REFRESH 49 0 1.0617014123112694 0.5 3 10 3 10 0 0 133 12 414 3943918 55200 149.38726806640625 0.98450000000000004 178.92320000000001 20160 14751 0 0 983040 737280 737280 737518 748800 29 26 32 29 298 0 0 0 0 12 0 0 0 0 0 +79 1783756406828100500 REFRESH 41 0 0.97669063905503284 0.34485407066052232 1 10 1 10 0 0 113 6 413 3943905 116640 147.91270446777344 1.0078 191.18600000000001 20160 15138 0 0 983040 737280 737280 737504 748800 26 27 26 26 308 0 0 1 0 5 0 0 0 0 0 +80 1783756407009390500 REFRESH 22 0 1.1035411880253216 0.58448540706605223 3 11 3 11 0 0 128 14 422 3943922 55200 149.47943115234375 0.98650000000000004 180.2022 20160 14237 0 0 983040 737280 737280 737521 748800 36 27 39 35 285 0 0 0 0 14 0 0 0 0 0 +81 1783756407189996800 REFRESH 46 0 1.2118899654962845 0.84485407066052232 2 15 2 15 0 0 117 10 406 3943908 55200 150.12760925292969 0.98099999999999998 179.4957 20160 12189 0 0 983040 737280 737280 737507 748800 33 26 25 42 280 0 0 0 0 10 0 0 0 0 0 +82 1783756407404880000 REFRESH 9 0 0.80766667028514849 0.084485407066052204 2 6 2 6 0 0 139 7 421 3943907 116640 148.94796752929688 0.99929999999999997 190.81829999999999 20160 15015 0 0 983040 737280 737280 737507 748800 27 25 28 26 315 0 0 1 0 6 0 0 0 0 0 +83 1783756407639770200 REFRESH 21 0 0.9265554826687048 0.26728110599078347 0 10 0 10 0 0 180 8 414 3943900 116640 149.50297546386719 1.0096000000000001 189.3741 20160 15028 0 0 983040 737280 737280 737500 748800 27 29 25 26 307 1 0 1 0 6 0 0 0 0 0 +84 1783756407817364400 REFRESH 26 0 1.112786638853418 0.59831029185867901 1 13 1 13 0 0 96 8 426 3943897 55200 148.07040405273438 0.98470000000000002 176.4357 20160 14221 0 0 983040 737280 737280 737497 748800 39 26 37 62 262 0 0 1 0 7 0 0 0 0 0 +85 1783756407995559500 REFRESH 34 0 1.1128576726216139 0.59831029185867901 1 13 1 13 0 0 106 8 422 3943921 55200 149.07557678222656 0.99080000000000001 177.03659999999999 20160 14311 0 0 983040 737280 737280 737521 748800 33 25 51 33 280 0 0 1 0 7 0 0 0 0 0 +86 1783756408178354800 REFRESH 6 0 1.1039954386631523 0.58448540706605223 3 11 3 11 0 0 120 10 411 3943919 55200 150.347900390625 0.9889 181.709 20160 14335 0 0 983040 737280 737280 737517 748800 29 25 37 53 267 1 0 0 2 7 0 0 0 0 0 +87 1783756408386881800 REFRESH 10 0 0.97726295877780622 0.34485407066052232 1 10 1 10 0 0 120 9 416 3943892 116640 149.6494140625 1.0048999999999999 183.81399999999999 20160 15166 0 0 983040 737280 737280 737492 748800 27 25 26 27 311 0 0 1 0 8 0 0 0 0 0 +88 1783756408626439400 REFRESH 30 0 0.86750284862798588 0.17588325652841791 1 8 1 8 0 0 143 7 413 3943890 116640 148.45814514160156 1.0105 187.0881 20160 15124 0 0 983040 737280 737280 737490 748800 28 26 26 26 307 0 0 0 1 6 0 0 0 0 0 +89 1783756408832296700 REFRESH 33 0 0.81265811680082267 0.091397849462365552 1 7 1 7 0 0 185 8 419 3943902 116640 149.13433837890625 1.0038 187.50219999999999 20160 14962 0 0 983040 737280 737280 737502 748800 27 32 26 26 308 0 0 0 0 8 0 0 0 0 0 +90 1783756409012528800 REFRESH 58 0 1.1086945494778953 0.59139784946236551 2 12 2 12 0 0 125 16 410 3943921 55200 149.96479797363281 0.98619999999999997 179.04810000000001 20160 14360 0 0 983040 737280 737280 737520 748800 27 26 25 28 304 0 0 0 0 16 0 0 0 0 0 +91 1783756409212206800 REFRESH 12 0 0.96855964420799057 0.33102918586789559 3 8 3 8 0 0 187 10 413 3943907 116640 149.52316284179688 1.0022 183.8382 20160 15160 0 0 983040 737280 737280 737507 748800 27 26 26 26 308 1 0 0 1 8 0 0 0 0 0 +92 1783756409453615000 REFRESH 17 0 0.76244722549135879 0.013824884792626776 0 7 0 7 0 0 199 1 416 3943955 116640 148.34994506835938 1.0064 213.43279999999999 20160 15235 0 0 983040 737280 737280 737555 748800 27 28 26 26 309 0 0 0 0 1 0 0 0 0 0 +93 1783756409655739300 REFRESH 28 0 1.0716779029222885 0.51382488479262667 1 12 1 12 0 0 148 5 412 3943923 55200 149.55520629882812 0.98380000000000001 179.8185 20160 15044 0 0 983040 737280 737280 737523 748800 27 26 29 26 304 0 0 0 0 5 0 0 0 0 0 +94 1783756409885784600 REFRESH 52 0 0.8679255187958389 0.17588325652841791 1 8 1 8 0 0 110 11 415 3943942 116640 148.33132934570312 0.999 212.53319999999999 20160 15167 0 0 983040 737280 737280 737542 748800 26 28 26 25 310 1 0 0 0 10 0 0 0 0 0 +95 1783756410080856000 REFRESH 5 0 1.0673180857892619 0.50691244239631339 2 11 2 11 0 0 97 6 412 3943889 55200 148.75852966308594 0.98019999999999996 176.66409999999999 20160 14944 0 0 983040 737280 737280 737489 748800 28 26 37 34 287 0 0 1 1 4 0 0 0 0 0 +96 1783756410276393800 REFRESH 20 0 1.0673839701119248 0.50691244239631339 2 11 2 11 0 0 122 5 416 3943926 55200 149.22650146484375 1.0028999999999999 181.31960000000001 20160 15014 0 0 983040 737280 737280 737526 748800 29 26 53 43 265 0 0 0 0 5 0 0 0 0 0 +97 1783756410470543100 REFRESH 27 0 1.1181299199043351 0.6052227342549924 0 14 0 14 0 0 157 12 408 3943919 55200 149.50604248046875 0.98470000000000002 178.63890000000001 20160 14433 0 0 983040 737280 737280 737519 748800 41 26 45 28 268 0 0 0 0 12 0 0 0 0 0 +98 1783756410692802700 REFRESH 56 0 0.7538805100281617 0 2 5 2 5 0 0 221 6 415 3943928 116640 148.92544555664062 1.0399 198.4871 20160 15011 0 0 983040 737280 737280 737528 748800 27 26 26 26 310 1 0 0 0 5 0 0 0 0 0 +99 1783756410901728600 REFRESH 13 0 0.75844304504861482 0.0069124423963133532 1 6 1 6 0 0 187 5 413 3943906 116640 147.96389770507812 1.0008999999999999 186.88999999999999 20160 15149 0 0 983040 737280 737280 737506 748800 27 29 26 27 304 1 0 0 0 4 0 0 0 0 0 +100 1783756411080927800 REFRESH 57 0 1.1094954066164937 0.59139784946236551 2 12 2 12 0 0 130 8 410 3943932 55200 148.98381042480469 0.98309999999999997 178.0095 20160 14360 0 0 983040 737280 737280 737531 748800 32 26 29 31 292 0 0 1 0 7 0 0 0 0 0 +101 1783756411261082700 REFRESH 18 0 1.3539078590813061 1 4 15 4 15 0 0 112 8 432 3943914 55200 149.35676574707031 0.98740000000000006 179.05109999999999 20160 12195 0 0 983040 737280 737280 737514 748800 67 25 100 143 97 0 0 2 1 5 0 0 0 0 0 +102 1783756411454710500 REFRESH 19 0 1.0677790896332324 0.50691244239631339 2 11 2 11 0 0 134 9 419 3943913 55200 149.50079345703125 0.98560000000000003 178.62530000000001 20160 14974 0 0 983040 737280 737280 737513 748800 27 26 31 56 279 0 0 0 0 9 0 0 0 0 0 +103 1783756411647003700 REFRESH 4 0 1.1140065667558035 0.59831029185867901 1 13 1 13 1 0 55 5 410 3943919 55200 148.32949829101562 0.98509999999999998 177.24789999999999 20160 14249 0 0 983040 737280 737280 737519 748800 25 25 26 29 305 0 0 1 2 2 0 0 0 0 1 +104 1783756411869446400 REFRESH 29 0 1.0724030701750609 0.51382488479262667 1 12 1 12 0 0 128 8 412 3943928 55200 149.03091430664062 0.9869 178.26990000000001 20160 14923 0 0 983040 737280 737280 737528 748800 27 26 27 29 303 0 0 0 0 8 0 0 0 0 0 +105 1783756412099921400 REFRESH 0 0 1.0724677936463747 0.51382488479262667 1 12 1 12 0 0 91 8 421 3943883 55200 149.18861389160156 0.98119999999999996 177.99459999999999 20160 14997 0 0 983040 737280 737280 737483 748800 28 26 32 50 285 0 0 1 0 7 0 0 0 0 0 +106 1783756412296212700 REFRESH 47 0 1.0680397302086915 0.50691244239631339 2 11 2 11 0 0 114 8 417 3943897 55200 148.60800170898438 0.97650000000000003 177.86619999999999 20160 14875 0 0 983040 737280 737280 737497 748800 27 25 26 25 314 0 0 0 0 8 0 0 0 0 0 +107 1783756412506962400 REFRESH 54 0 0.86882498308724576 0.17588325652841791 1 8 1 8 1 0 116 6 415 3943896 116640 148.10829162597656 1.006 190.57650000000001 20160 15136 0 0 983040 737280 737280 737496 748800 27 29 25 29 305 0 0 0 0 6 0 0 0 0 1 +108 1783756412727485400 REFRESH 1 0 0.81397775526443572 0.091397849462365552 1 7 1 7 0 0 129 6 413 3943910 116640 148.83328247070312 1.0106999999999999 191.50720000000001 20160 14636 0 0 983040 737280 737280 737509 748800 25 25 26 26 311 0 0 1 0 5 0 0 0 0 0 +109 1783756412911454200 REFRESH 51 0 1.1873805042006276 0.58448540706605223 3 11 3 11 0 0 97 14 422 3943904 55200 149.11077880859375 0.98560000000000003 182.80250000000001 20160 13157 0 0 983040 737280 737280 737504 748800 71 26 79 137 109 0 0 0 0 14 0 0 0 0 0 +110 1783756413092733200 REFRESH 23 0 1.2852053353320834 0.75345622119815692 3 13 3 13 0 0 120 11 405 3943882 55200 150.2391357421875 0.98160000000000003 180.21520000000001 20160 12319 0 0 983040 737280 737280 737482 748800 60 26 32 34 253 0 1 0 0 10 0 0 0 0 0 +111 1783756413273422100 REFRESH 25 0 1.1055001033722114 0.58448540706605223 3 11 3 11 0 0 118 16 417 3943905 55200 150.36416625976562 0.99890000000000001 179.48609999999999 20160 14405 0 0 983040 737280 737280 737505 748800 37 25 37 31 287 0 1 0 0 15 0 0 0 0 0 +112 1783756413492938400 REFRESH 42 0 0.80975655283098591 0.084485407066052204 2 6 2 6 0 0 147 8 423 3943888 116640 148.97663879394531 1.0051000000000001 199.1515 20160 15106 0 0 983040 737280 737280 737488 748800 27 26 25 26 319 0 1 0 0 7 0 0 0 0 0 +113 1783756413701889800 REFRESH 40 0 1.0729846260373188 0.51382488479262667 1 12 1 12 0 0 124 10 415 3943934 55200 149.180419921875 0.98819999999999997 178.65360000000001 20160 14957 0 0 983040 737280 737280 737534 748800 27 26 34 32 296 0 0 0 0 10 0 0 0 0 0 +114 1783756413890324400 REFRESH 37 0 1.0730486903611942 0.51382488479262667 1 12 1 12 0 0 142 10 413 3943904 55200 148.52607727050781 1.0034000000000001 176.9787 20160 15041 0 0 983040 737280 737280 737503 748800 31 26 26 36 294 0 0 0 0 10 0 0 0 0 0 +115 1783756414108195100 REFRESH 31 0 0.80995915420830922 0.084485407066052204 2 6 2 6 0 0 135 4 419 3943888 116640 148.79830932617188 1.0013000000000001 190.7458 20160 15177 0 0 983040 737280 737280 737488 748800 27 28 25 26 313 1 0 0 0 3 0 0 0 0 0 +116 1783756414315686400 REFRESH 8 0 0.75511092578369698 0 2 5 2 5 0 0 231 6 414 3943895 116640 149.91360473632812 0.99950000000000006 184.98519999999999 20160 14561 0 0 983040 737280 737280 737495 748800 27 25 26 25 311 1 1 0 1 3 0 0 0 0 0 +117 1783756414523258600 REFRESH 39 0 0.97034705968576018 0.33102918586789559 3 8 3 8 0 0 176 8 417 3943954 116640 149.3780517578125 1.0081 183.44 20160 14679 0 0 983040 737280 737280 737554 748800 27 25 25 26 314 1 0 0 0 7 0 0 0 0 0 +118 1783756414717464500 REFRESH 7 0 1.0600458592786501 0.51382488479262667 1 12 1 12 0 0 135 7 419 3943902 55200 149.25106811523438 0.98250000000000004 179.1748 20160 14401 0 0 983040 737280 737280 737502 748800 32 26 36 67 258 0 0 0 0 7 0 0 0 0 0 +119 1783756414925238600 REFRESH 53 0 0.81921373725436819 0.098310291858679053 0 8 0 8 0 0 153 7 417 3943916 116640 149.18963623046875 1.0048999999999999 190.19210000000001 20160 14718 0 0 983040 737280 737280 737516 748800 27 29 26 26 309 2 0 0 0 5 0 0 0 0 0 +120 1783756415104265800 REFRESH 32 0 1.2991844070883045 0.59139784946236551 2 12 2 12 0 0 124 10 412 3943936 55200 148.69708251953125 0.98340000000000005 177.0154 20160 13196 0 0 983040 737280 737280 737536 748800 46 25 64 59 218 0 0 0 0 10 0 0 0 0 0 +121 1783756415324261100 REFRESH 45 0 0.86527654828214573 0.16897081413210441 2 7 2 7 0 0 160 8 425 3943928 116640 149.63507080078125 1.0069999999999999 191.14019999999999 20160 14838 0 0 983040 737280 737280 737528 748800 28 28 26 26 317 0 1 0 0 7 0 0 0 0 0 +122 1783756416366369700 DEPTH 18 1 1.3043441700628671 1 4 15 4 14 1 0 113 27 2600 23664797 81600 853.05718994140625 5.9155999999999995 1026.8463999999999 120960 61074 1 0 5898240 4423680 4423680 4426396 4492800 232 150 440 669 1109 0 0 2 1 24 0 0 1 0 0 +123 1783756417417520500 DEPTH 46 1 1.2962290766983964 0.92281879194630889 2 15 2 15 0 0 118 35 2556 23664849 81600 855.90278625488281 5.9000000000000004 1036.0255 120960 60870 1 0 5898240 4423680 4423680 4426448 4492800 163 150 150 150 1943 1 0 0 0 34 0 0 0 0 0 +124 1783756418461702000 DEPTH 43 1 1.1801141461767186 0.73070469798657733 3 12 3 11 1 0 139 71 2622 23664865 81600 854.09860229492188 6.3039999999999994 1043.0625 120960 65717 1 0 5898240 4423680 4423680 4426463 4492800 163 150 161 150 1998 2 0 1 0 68 0 0 1 0 3 +125 1783756419493834900 DEPTH 23 1 1.2133788395011567 0.82298657718120838 3 13 3 13 1 0 122 54 2506 23664842 81600 857.26957702636719 5.9423000000000004 1030.819 120960 60723 1 0 5898240 4423680 4423680 4426440 4492800 153 150 152 161 1890 0 2 0 0 52 0 0 0 0 1 +126 1783756420536632700 DEPTH 24 1 1.1752723114798731 0.72315436241610753 4 11 4 11 0 0 144 47 2512 23664904 81600 857.15353393554688 5.9343000000000004 1040.645 120960 66368 1 0 5898240 4423680 4423680 4426503 4492800 180 156 155 174 1847 0 0 0 0 47 0 0 0 0 0 +127 1783756421595101800 DEPTH 15 1 1.1752349082000535 0.73070469798657733 3 12 3 12 0 0 101 41 2539 23664911 81600 858.77415466308594 5.9249999999999989 1043.2409 120960 66412 1 0 5898240 4423680 4423680 4426509 4492800 168 150 157 212 1852 0 0 0 0 41 0 0 0 0 0 +128 1783756422648335500 DEPTH 27 1 1.1449468387046511 0.66107382550335592 0 14 0 14 0 0 157 32 2566 23664924 81600 856.14637756347656 5.8935999999999993 1037.5306 120960 69803 1 0 5898240 4423680 4423680 4426523 4492800 159 156 150 150 1951 0 0 0 0 32 0 0 0 0 0 +129 1783756423690445000 DEPTH 34 1 1.1380829887015804 0.65352348993288611 1 13 1 13 1 0 108 10 2596 23664754 81600 848.7130126953125 6.0592999999999995 1030.0372 120960 69327 1 0 5898240 4423680 4423680 4426353 4492800 165 150 177 152 1952 1 0 0 0 9 0 0 0 0 2 +130 1783756424719450600 DEPTH 18 1 1.2671065912673081 1 4 14 4 14 0 0 114 29 2609 23664867 81600 849.92510986328125 5.9085999999999999 1027.7182 120960 49999 1 0 5898240 4423680 4423680 4426464 4492800 277 150 454 847 881 0 0 2 0 27 0 0 0 0 0 +131 1783756425768814000 DEPTH 51 1 1.1744728502688155 0.6384228187919464 3 11 3 11 1 0 98 114 2590 23664702 81600 855.99409484863281 5.9178999999999995 1037.2954 120960 66128 1 0 5898240 4423680 4423680 4426301 4492800 166 150 158 288 1828 0 0 0 0 114 0 0 0 0 4 +132 1783756426811885400 DEPTH 32 1 1.1754367255363634 0.6459731543624162 2 12 1 12 1 0 124 62 2601 23664867 81600 856.07821655273438 5.9277000000000006 1041.8936000000001 120960 65989 1 0 5898240 4423680 4423680 4426466 4492800 166 150 228 186 1871 0 0 0 0 62 0 0 0 0 3 +133 1783756427843852300 DEPTH 26 1 1.1383037714370747 0.65352348993288611 1 13 1 13 1 0 96 25 2611 23664889 81600 851.44732666015625 5.9001999999999999 1030.8289 120960 69397 1 0 5898240 4423680 4423680 4426489 4492800 156 152 153 211 1939 0 0 0 1 24 0 0 0 0 1 +134 1783756428886500900 DEPTH 58 1 1.1354666204623467 0.6459731543624162 2 12 2 12 0 0 126 23 2596 23664924 81600 855.62042236328125 5.9567000000000005 1041.299 120960 69921 1 0 5898240 4423680 4423680 4426523 4492800 150 155 150 150 1991 0 0 0 0 23 0 0 0 0 0 +135 1783756429903081300 DEPTH 4 1 1.1354298977100619 0.65352348993288611 1 13 1 13 1 0 55 7 2553 23664829 81600 846.34112548828125 5.9425999999999997 1015.4201 120960 69286 1 0 5898240 4423680 4423680 4426429 4492800 154 150 156 186 1907 0 0 0 0 7 0 0 0 0 3 +136 1783756430936884600 DEPTH 57 1 1.1337307761228805 0.6459731543624162 2 12 2 12 1 0 132 64 2507 23664869 81600 852.02116394042969 5.9149000000000003 1032.5707 120960 69104 1 0 5898240 4423680 4423680 4426468 4492800 171 156 156 157 1867 0 0 1 0 63 0 0 0 0 1 +137 1783756431962396100 DEPTH 6 1 1.1307728235518977 0.6384228187919464 3 11 3 11 1 0 122 37 2545 23664731 81600 851.6473388671875 5.9220000000000006 1024.4241999999999 120960 69864 1 0 5898240 4423680 4423680 4426330 4492800 154 150 174 180 1887 1 0 0 1 35 0 0 0 0 2 +138 1783756433005009500 DEPTH 18 1 1.2505372067762477 1 4 14 4 14 1 0 115 19 2605 23664858 81600 846.99363708496094 5.9260999999999999 1025.7316000000001 120960 39805 1 0 5898240 4423680 4423680 4426457 4492800 295 150 408 920 832 0 0 1 0 18 0 0 0 0 1 +139 1783756434086994600 DEPTH 46 1 1.1991915773083652 0.92281879194630889 2 15 2 15 0 0 118 37 2551 23664904 81600 847.913818359375 5.9838000000000005 1039.4304 120960 50093 1 0 5898240 4423680 4423680 4426502 4492800 172 150 150 152 1927 0 0 0 0 37 0 0 0 0 0 +140 1783756435128151100 DEPTH 23 1 1.1981039194159098 0.82298657718120838 3 13 3 13 1 0 122 66 2505 23664846 81600 848.45718383789062 5.9139000000000008 1023.8762 120960 49760 1 0 5898240 4423680 4423680 4426446 4492800 155 150 152 168 1880 0 0 0 0 66 0 0 0 0 1 +141 1783756436176360000 DEPTH 32 1 1.1640692588879691 0.56124161073825507 1 12 1 12 1 0 127 95 2626 23664915 81600 845.56903076171875 5.9016999999999999 1022.2800999999999 120960 53925 1 0 5898240 4423680 4423680 4426515 4492800 150 150 150 150 2026 0 0 0 0 95 0 0 0 0 3 +142 1783756437240476100 DEPTH 22 1 1.1309925004891213 0.6384228187919464 3 11 3 11 1 0 129 28 2588 23664785 81600 856.53303527832031 5.9190000000000005 1037.5681 120960 69494 1 0 5898240 4423680 4423680 4426382 4492800 170 152 189 167 1910 0 0 0 1 27 0 0 0 0 1 +143 1783756438302626000 DEPTH 25 1 1.1310479622648919 0.6384228187919464 3 11 3 11 0 0 118 21 2577 23664878 81600 857.29335021972656 5.9407999999999994 1047.5547999999999 120960 69540 1 0 5898240 4423680 4423680 4426477 4492800 156 150 160 152 1959 0 0 0 1 20 0 0 0 0 0 +144 1783756439347935600 DEPTH 43 1 1.1624270449987686 0.6384228187919464 3 11 3 11 1 0 141 58 2614 23664728 81600 846.41177368164062 5.9243000000000006 1024.3518999999999 120960 54215 1 0 5898240 4423680 4423680 4426328 4492800 166 150 162 151 1985 0 1 0 0 57 0 0 0 0 1 +145 1783756440384666700 DEPTH 40 1 1.0924152059722332 0.56124161073825507 1 12 1 12 1 0 126 77 2561 23664833 81600 857.54244995117188 5.8963999999999999 1035.5335 120960 69335 1 0 5898240 4423680 4423680 4426431 4492800 157 155 161 168 1920 0 2 0 0 75 0 0 0 0 2 +146 1783756441431478700 DEPTH 18 1 1.2355178238830677 1 4 14 4 14 0 0 115 24 2613 23664795 81600 844.81556701660156 5.9046000000000003 1024.6434999999999 120960 28342 1 0 5898240 4423680 4423680 4426395 4492800 288 150 346 1088 741 0 0 0 0 24 0 0 0 0 0 +147 1783756442484476800 DEPTH 24 1 1.1276161947689582 0.72315436241610753 4 11 4 11 0 0 144 43 2506 23664819 81600 850.32597351074219 5.9104999999999999 1031.9196999999999 120960 54519 1 0 5898240 4423680 4423680 4426417 4492800 180 156 155 191 1824 0 0 0 0 43 0 0 0 0 0 +148 1783756443538301100 DEPTH 15 1 1.1280748685368358 0.73070469798657733 3 12 3 12 1 0 101 46 2538 23664893 81600 850.85203552246094 5.9281000000000006 1030.5808 120960 54547 1 0 5898240 4423680 4423680 4426492 4492800 168 150 160 260 1800 0 0 0 0 46 0 0 0 0 1 +149 1783756444604510500 DEPTH 46 1 1.1325169510915132 0.92281879194630889 2 15 2 15 0 0 118 25 2548 23664766 81600 843.82469177246094 5.897800000000001 1025.2053000000001 120960 39690 1 0 5898240 4423680 4423680 4426366 4492800 184 150 150 162 1902 0 0 0 0 25 0 0 0 0 0 +150 1783756445659695300 DEPTH 23 1 1.1340623887593704 0.82298657718120838 3 13 3 13 0 0 122 61 2505 23664856 81600 847.95179748535156 5.9138999999999999 1031.4483 120960 39841 1 0 5898240 4423680 4423680 4426453 4492800 155 150 162 167 1871 0 0 0 0 61 0 0 0 0 0 +151 1783756446728745900 DEPTH 37 1 1.0927598206062632 0.56124161073825507 1 12 1 12 0 0 142 13 2606 23664879 81600 852.72573852539062 5.9890000000000008 1035.5555999999999 120960 69570 1 0 5898240 4423680 4423680 4426476 4492800 156 150 150 152 1998 0 0 0 0 13 0 0 0 0 0 +152 1783756447748270400 DEPTH 32 1 1.1515245567528092 0.56124161073825507 1 12 1 12 1 0 127 66 2614 23664841 81600 841.95437622070312 5.9095000000000004 1018.1744 120960 40970 1 0 5898240 4423680 4423680 4426440 4492800 150 150 150 150 2014 0 0 0 0 66 0 0 0 0 4 +153 1783756448788769700 DEPTH 29 1 1.0908742801557711 0.56124161073825507 1 12 1 12 1 0 128 33 2557 23664878 81600 851.55393981933594 5.9084000000000003 1027.8949 120960 69888 1 0 5898240 4423680 4423680 4426478 4492800 150 156 150 150 1951 1 0 0 0 32 0 0 0 0 1 +154 1783756448968616900 REFRESH 7 0 1.0785280095155967 0.56124161073825507 1 12 1 12 0 0 135 9 416 3943902 55200 149.032958984375 0.98660000000000003 178.72139999999999 20160 14136 0 0 983040 737280 737280 737502 748800 30 26 32 51 277 0 0 0 0 9 0 0 0 0 0 +155 1783756449152024800 REFRESH 25 0 0.9917494964840643 0.6384228187919464 3 11 3 11 0 0 118 8 418 3943908 55200 149.89004516601562 0.98350000000000004 181.10599999999999 20160 13013 0 0 983040 737280 737280 737508 748800 69 25 41 33 250 0 0 0 0 8 0 0 0 0 0 +156 1783756449358913400 REFRESH 41 0 0.98249268306441806 0.37667785234899337 1 10 1 10 0 0 113 5 413 3943922 55200 149.00735473632812 1.0048999999999999 192.23650000000001 20160 14640 0 0 983040 737280 737280 737522 748800 26 26 26 26 309 0 0 0 1 4 0 0 0 0 0 +157 1783756449540135300 REFRESH 23 0 1.0911595810394805 0.82298657718120838 3 13 3 13 0 0 123 11 401 3943910 55200 150.3662109375 0.97970000000000002 180.07419999999999 20160 12139 0 0 983040 737280 737280 737510 748800 107 26 31 37 200 0 0 0 0 11 0 0 0 0 0 +158 1783756449718684600 REFRESH 34 0 1.1299490833669537 0.65352348993288611 1 13 1 13 0 0 108 7 418 3943910 55200 149.05255126953125 0.97560000000000002 177.31440000000001 20160 12930 0 0 983040 737280 737280 737509 748800 50 25 61 40 242 0 0 0 0 7 0 0 0 0 0 +159 1783756449937800500 REFRESH 42 0 0.79981308583662503 0.09228187919463085 2 6 2 6 0 0 147 7 422 3943915 55200 149.90232849121094 0.98640000000000005 197.13409999999999 20160 14782 0 0 983040 737280 737280 737515 748800 28 26 26 27 315 0 0 0 0 7 0 0 0 0 0 +160 1783756450117720500 REFRESH 22 0 1.0520099935999894 0.6384228187919464 3 11 3 11 0 0 129 12 423 3943928 55200 149.80198669433594 0.98660000000000003 178.7886 20160 13008 0 0 983040 737280 737280 737528 748800 36 27 40 37 283 0 0 0 0 12 0 0 0 0 0 +161 1783756450299133100 REFRESH 29 0 0.91013000499113772 0.56124161073825507 1 12 1 12 0 0 128 8 409 3943900 55200 149.72898864746094 0.98660000000000003 179.548 20160 14120 0 0 983040 737280 737280 737500 748800 35 26 29 41 278 0 0 0 0 8 0 0 0 0 0 +162 1783756450502300800 REFRESH 13 0 0.74191446077088163 0.0075503355704697878 1 6 1 6 0 0 187 3 415 3943910 55200 149.64326477050781 0.98060000000000003 187.56039999999999 20160 14706 0 0 983040 737280 737280 737510 748800 27 26 27 27 308 0 0 0 0 3 0 0 0 0 0 +163 1783756450706284000 REFRESH 16 0 0.79704872354053913 0.09228187919463085 2 6 2 6 0 0 188 5 416 3943893 55200 150.40829467773438 0.98770000000000002 188.6858 20160 14738 0 0 983040 737280 737280 737493 748800 27 26 26 26 311 0 0 0 0 5 0 0 0 0 0 +164 1783756450906627700 REFRESH 54 0 0.86303828079255718 0.19211409395973164 1 8 1 8 0 0 116 8 415 3943907 55200 148.24549865722656 0.98609999999999998 187.66290000000001 20160 14788 0 0 983040 737280 737280 737507 748800 27 26 25 28 309 0 0 0 0 8 0 0 0 0 0 +165 1783756451086685400 REFRESH 32 0 1.1414987634075557 0.56124161073825507 1 12 1 12 0 0 128 12 416 3943929 55200 149.82861328125 0.98660000000000003 178.88050000000001 20160 13341 0 0 983040 737280 737280 737529 748800 25 25 25 25 316 0 0 0 0 12 0 0 0 0 0 +166 1783756451283528000 REFRESH 45 0 0.86020762779478699 0.1845637583892617 2 7 2 7 1 0 160 8 421 3943887 55200 150.16423034667969 0.98709999999999998 184.51689999999999 20160 14669 0 0 983040 737280 737280 737487 748800 30 26 26 26 313 0 0 0 0 8 0 0 0 0 1 +167 1783756451464772200 REFRESH 43 0 1.1772340512831214 0.6384228187919464 3 11 3 11 0 0 141 9 421 3943880 55200 150.29862976074219 0.98660000000000003 180.0214 20160 12057 0 0 983040 737280 737280 737479 748800 47 26 33 36 279 0 0 0 0 9 0 0 0 0 0 +168 1783756451662125500 REFRESH 57 0 1.1257511709377663 0.6459731543624162 2 12 2 12 1 0 132 9 410 3943897 55200 149.53575134277344 0.98340000000000005 179.7774 20160 13070 0 0 983040 737280 737280 737496 748800 55 26 31 50 248 0 0 0 0 9 0 0 0 0 1 +169 1783756451839837500 REFRESH 4 0 1.1248105578554586 0.65352348993288611 1 13 1 13 0 0 55 3 410 3943922 55200 148.68287658691406 0.9859 176.43979999999999 20160 13014 0 0 983040 737280 737280 737522 748800 26 25 26 32 301 0 0 0 0 3 0 0 0 0 0 +170 1783756452059150200 REFRESH 52 0 0.86734821226472048 0.19211409395973164 1 8 1 8 0 0 110 7 417 3943934 55200 148.86093139648438 0.99719999999999998 205.42570000000001 20160 14743 0 0 983040 737280 737280 737534 748800 26 26 26 25 314 0 0 1 0 6 0 0 0 0 0 +171 1783756452259888000 REFRESH 2 0 0.92048168838209321 0.27684563758389275 2 8 2 8 0 0 146 7 415 3943914 55200 149.65965270996094 0.98609999999999998 186.23840000000001 20160 14696 0 0 983040 737280 737280 737514 748800 27 26 26 26 310 0 0 0 0 7 0 0 0 0 0 +172 1783756452454527000 REFRESH 28 0 1.0889384624024283 0.56124161073825507 1 12 1 12 0 0 148 7 407 3943914 55200 150.01193237304688 0.98870000000000002 180.88640000000001 20160 14720 0 0 983040 737280 737280 737513 748800 27 26 29 27 298 0 0 0 0 7 0 0 0 0 0 +173 1783756452692615600 REFRESH 17 0 0.74346311533700815 0.01510067114093965 0 7 0 7 0 0 199 4 410 3943895 55200 149.22956848144531 0.98429999999999995 201.4787 20160 14787 0 0 983040 737280 737280 737495 748800 27 26 26 30 301 0 0 0 0 4 0 0 0 0 0 +174 1783756452890500700 REFRESH 14 0 1.0389730480166746 0.47651006711409399 0 12 0 12 0 0 124 8 419 3943915 55200 148.80256652832031 0.98529999999999995 184.2414 20160 14703 0 0 983040 737280 737280 737515 748800 29 26 27 42 295 0 0 0 0 8 0 0 0 0 0 +175 1783756453088505300 REFRESH 31 0 0.79674617062306774 0.09228187919463085 2 6 2 6 0 0 136 10 419 3943904 55200 149.7548828125 0.98319999999999996 184.2825 20160 14741 0 0 983040 737280 737280 737504 748800 27 26 25 28 313 0 0 2 0 8 0 0 0 0 0 +176 1783756453291921200 REFRESH 9 0 0.79980366201455022 0.09228187919463085 2 6 2 6 0 0 139 6 420 3943931 55200 148.85784912109375 0.98750000000000004 187.40090000000001 20160 14722 0 0 983040 737280 737280 737531 748800 27 25 29 29 310 0 1 0 1 4 0 0 0 0 0 +177 1783756453495913900 REFRESH 1 0 0.80376877618129916 0.099832214765100638 1 7 1 7 0 0 131 9 415 3943900 55200 149.49990844726562 0.98660000000000003 189.56379999999999 20160 14688 0 0 983040 737280 737280 737500 748800 25 25 26 29 310 0 0 0 0 9 0 0 0 0 0 +178 1783756453678447400 REFRESH 58 0 1.1278474278759554 0.6459731543624162 2 12 2 12 0 0 126 12 408 3943896 55200 149.34220886230469 0.9869 181.2002 20160 13049 0 0 983040 737280 737280 737495 748800 29 26 25 29 299 0 0 0 0 12 0 0 0 0 0 +179 1783756453909477200 REFRESH 39 0 0.97601751164728778 0.36157718120805377 3 8 3 8 0 0 176 8 414 3943899 55200 150.35289001464844 0.98899999999999999 180.3475 20160 14900 0 0 983040 737280 737280 737499 748800 27 25 25 26 311 0 0 0 0 8 0 0 0 0 0 +180 1783756454089933000 REFRESH 55 0 1.0828871956947894 0.56124161073825507 1 12 1 12 0 0 152 11 421 3943886 55200 149.88082885742188 0.98089999999999999 179.30520000000001 20160 14187 0 0 983040 737280 737280 737486 748800 30 26 36 62 267 0 0 0 0 11 0 0 0 0 0 +181 1783756454289585600 REFRESH 10 0 0.98694707743872123 0.37667785234899337 1 10 1 10 0 0 120 5 419 3943889 55200 149.78764343261719 0.98460000000000003 179.51060000000001 20160 14676 0 0 983040 737280 737280 737489 748800 27 25 26 27 314 1 0 0 0 4 0 0 0 0 0 +182 1783756454484793600 REFRESH 36 0 1.0846698345491026 0.54614093959731547 3 10 3 10 0 0 119 10 418 3943904 55200 149.15072631835938 0.98640000000000005 180.0728 20160 14729 0 0 983040 737280 737280 737504 748800 31 26 27 32 302 0 0 0 0 10 0 0 0 0 0 +183 1783756454693203700 REFRESH 30 0 0.86509438871541255 0.19211409395973164 1 8 1 8 0 0 143 7 417 3943897 55200 149.46611022949219 0.98939999999999995 186.4718 20160 14699 0 0 983040 737280 737280 737496 748800 27 26 26 26 312 0 0 0 0 7 0 0 0 0 0 +184 1783756454886435200 REFRESH 19 0 1.0886860027670542 0.55369127516778527 2 11 2 11 0 0 134 8 419 3943903 55200 148.69914245605469 0.98729999999999996 178.20070000000001 20160 14833 0 0 983040 737280 737280 737503 748800 27 26 31 52 283 0 0 0 0 8 0 0 0 0 0 +185 1783756455064058300 REFRESH 6 0 1.1233306327596058 0.6384228187919464 3 11 3 11 0 0 122 9 411 3943900 55200 148.98892211914062 0.98150000000000004 176.5829 20160 13095 0 0 983040 737280 737280 737500 748800 31 25 37 50 268 0 0 0 0 9 0 0 0 0 0 +186 1783756455266588900 REFRESH 0 0 1.0927014810002726 0.56124161073825507 1 12 1 12 0 0 91 4 422 3943936 55200 149.468994140625 0.98250000000000004 178.1455 20160 14533 0 0 983040 737280 737280 737535 748800 28 26 31 40 297 0 0 0 0 4 0 0 0 0 0 +187 1783756455463034900 REFRESH 12 0 0.97847178744529317 0.36157718120805377 3 8 3 8 0 0 188 6 410 3943907 55200 149.92076110839844 0.98299999999999998 180.0864 20160 14705 0 0 983040 737280 737280 737507 748800 28 26 26 26 304 0 0 0 0 6 0 0 0 0 0 +188 1783756455656987400 REFRESH 47 0 1.0879013385516436 0.55369127516778527 2 11 2 11 0 0 114 10 417 3943897 55200 149.30943298339844 0.98880000000000001 179.50069999999999 20160 14795 0 0 983040 737280 737280 737497 748800 27 25 25 25 315 0 0 0 0 10 0 0 0 0 0 +189 1783756455861520200 REFRESH 40 0 1.0833349711214395 0.56124161073825507 1 12 1 12 0 0 126 10 419 3943908 55200 149.94023132324219 0.98340000000000005 188.93860000000001 20160 14101 0 0 983040 737280 737280 737507 748800 28 26 35 36 294 0 0 0 0 10 0 0 0 0 0 +190 1783756456070587400 REFRESH 21 0 0.9313805467093037 0.29194630872483229 0 10 0 10 1 0 180 8 416 3943899 55200 149.71186828613281 0.9819 185.03399999999999 20160 14757 0 0 983040 737280 737280 737499 748800 27 26 25 26 312 0 0 0 0 8 0 0 0 0 1 +191 1783756456251646100 REFRESH 24 0 1.1618223932386949 0.72315436241610753 4 11 4 11 0 0 145 10 414 3943911 55200 150.01087951660156 0.97460000000000002 179.87100000000001 20160 11896 0 0 983040 737280 737280 737511 748800 69 26 46 82 191 0 0 0 0 10 0 0 0 0 0 +192 1783756456478636600 REFRESH 11 0 0.81052619824440797 0.10738255033557058 0 8 0 8 0 0 108 7 415 3943911 55200 149.52653503417969 0.98209999999999997 201.74250000000001 20160 14689 0 0 983040 737280 737280 737510 748800 28 25 28 26 308 0 0 0 0 7 0 0 0 0 0 +193 1783756456656972300 REFRESH 26 0 1.1317116058610435 0.65352348993288611 1 13 1 13 0 0 96 6 425 3943936 55200 148.92338562011719 0.998 176.89089999999999 20160 12966 0 0 983040 737280 737280 737536 748800 49 26 38 82 230 0 0 0 0 6 0 0 0 0 0 +194 1783756456837381100 REFRESH 51 0 1.1908333865657716 0.6384228187919464 3 11 3 11 0 0 98 14 423 3943898 55200 149.92384338378906 0.98660000000000003 179.13300000000001 20160 12219 0 0 983040 737280 737280 737498 748800 78 26 78 130 111 0 0 0 0 14 0 0 0 0 0 +195 1783756457020082200 REFRESH 15 0 1.1628747990814781 0.73070469798657733 3 12 3 12 0 0 102 13 419 3943902 55200 151.41375732421875 0.98609999999999998 181.60329999999999 20160 11909 0 0 983040 737280 737280 737502 748800 32 26 31 104 226 0 0 0 0 13 0 0 0 0 0 +196 1783756457200651500 REFRESH 27 0 1.138557797253704 0.66107382550335592 0 14 0 14 0 0 157 8 411 3943907 55200 149.76101684570312 0.98450000000000004 179.08369999999999 20160 13001 0 0 983040 737280 737280 737507 748800 49 26 48 26 262 0 0 0 0 8 0 0 0 0 0 +197 1783756457403201000 REFRESH 20 0 1.0853811295894118 0.55369127516778527 2 11 2 11 0 0 123 13 416 3943922 55200 149.59228515625 0.98180000000000001 177.90280000000001 20160 14668 0 0 983040 737280 737280 737522 748800 30 26 60 50 250 0 0 1 0 12 0 0 0 0 0 +198 1783756457606016600 REFRESH 49 0 1.0855468564257977 0.54614093959731547 3 10 3 10 0 0 133 8 415 3943912 55200 149.30767822265625 0.9849 179.38470000000001 20160 14783 0 0 983040 737280 737280 737512 748800 29 26 34 31 295 0 0 0 0 8 0 0 0 0 0 +199 1783756457812210000 REFRESH 44 0 0.86308347452579315 0.1845637583892617 2 7 2 7 0 0 162 9 420 3943933 55200 149.88185119628906 0.98599999999999999 190.73339999999999 20160 14892 0 0 983040 737280 737280 737533 748800 26 26 29 26 313 0 0 1 1 7 0 0 0 0 0 +200 1783756458010304700 REFRESH 8 0 0.74017231629576896 0 2 5 2 5 0 0 231 5 415 3943880 55200 150.32115173339844 0.98629999999999995 182.94110000000001 20160 14703 0 0 983040 737280 737280 737479 748800 27 25 26 25 312 0 0 0 0 5 0 0 0 0 0 +201 1783756458189948900 REFRESH 37 0 1.0839442663713659 0.56124161073825507 1 12 1 12 0 0 142 6 412 3943914 55200 149.3043212890625 0.98750000000000004 178.5359 20160 14274 0 0 983040 737280 737280 737514 748800 39 26 27 42 278 0 0 0 0 6 0 0 0 0 0 +202 1783756458404860100 REFRESH 48 0 0.98121550677056302 0.36912751677852357 2 9 2 9 0 0 169 10 414 3943902 55200 148.93034362792969 0.98819999999999997 195.2167 20160 14831 0 0 983040 737280 737280 737502 748800 26 26 27 26 309 0 0 0 0 10 0 0 0 0 0 +203 1783756458617405700 REFRESH 56 0 0.74033764125612489 0 2 5 2 5 0 0 221 5 411 3943909 55200 149.56646728515625 0.98109999999999997 192.40870000000001 20160 14709 0 0 983040 737280 737280 737509 748800 27 26 27 26 305 0 0 1 0 4 0 0 0 0 0 +204 1783756458797807800 REFRESH 18 0 1.3939553641747664 1 4 14 4 14 0 0 116 5 431 3943896 55200 149.06880187988281 0.9869 179.23480000000001 20160 12529 0 0 983040 737280 737280 737496 748800 105 25 88 128 85 0 1 0 0 4 0 0 0 0 0 +205 1783756458998067900 REFRESH 33 0 0.80733835920635233 0.099832214765100638 1 7 1 7 0 0 185 4 417 3943903 55200 150.39692687988281 0.98950000000000005 185.15690000000001 20160 14693 0 0 983040 737280 737280 737503 748800 27 26 26 26 312 0 0 0 0 4 0 0 0 0 0 +206 1783756459193065100 REFRESH 35 0 1.0908540300937486 0.55369127516778527 2 11 2 11 0 0 169 13 413 3943904 55200 150.45733642578125 0.99260000000000004 180.28659999999999 20160 14744 0 0 983040 737280 737280 737504 748800 30 26 27 28 302 1 0 0 0 12 0 0 0 0 0 +207 1783756459393667200 REFRESH 53 0 0.81135550756561337 0.10738255033557058 0 8 0 8 0 0 153 7 415 3943928 55200 150.13690185546875 0.9869 185.01320000000001 20160 14668 0 0 983040 737280 737280 737528 748800 27 26 27 26 309 0 0 0 0 7 0 0 0 0 0 +208 1783756459606233000 REFRESH 50 0 0.9845443209974778 0.36912751677852357 2 9 2 9 0 0 137 2 415 3943896 55200 149.33401489257812 0.98050000000000004 184.2843 20160 14706 0 0 983040 737280 737280 737496 748800 27 26 26 26 310 0 0 0 0 2 0 0 0 0 0 +209 1783756459800829300 REFRESH 5 0 1.0870105023324983 0.55369127516778527 2 11 2 11 0 0 97 8 411 3943898 55200 148.177978515625 0.98780000000000001 177.16999999999999 20160 14742 0 0 983040 737280 737280 737498 748800 28 26 39 35 283 0 0 0 0 8 0 0 0 0 0 +210 1783756459982367100 REFRESH 46 0 1.2786082555490135 0.92281879194630889 2 15 2 15 0 0 118 11 406 3943910 55200 149.3411865234375 0.98799999999999999 180.30709999999999 20160 11931 0 0 983040 737280 737280 737510 748800 72 26 25 61 222 0 0 0 0 11 0 0 0 0 0 +211 1783756460182557300 REFRESH 3 0 0.98470756040380303 0.36912751677852357 2 9 2 9 0 0 148 5 416 3943911 55200 149.92282104492188 1.0145 184.23869999999999 20160 14820 0 0 983040 737280 737280 737511 748800 26 26 27 26 311 0 0 0 0 5 0 0 0 0 0 +212 1783756460378915900 REFRESH 38 0 1.0447483951391936 0.46140939597315445 2 10 2 10 0 0 125 10 417 3943907 55200 148.78413391113281 0.98740000000000006 179.65860000000001 20160 14729 0 0 983040 737280 737280 737507 748800 28 26 27 27 309 0 0 1 0 9 0 0 0 0 0 +213 1783756461423520700 DEPTH 23 1 1.2614380248936081 0.82298657718120838 3 13 3 13 1 0 123 54 2515 23664856 81600 859.65788269042969 5.9025999999999996 1043.4554000000001 120960 56923 1 0 5898240 4423680 4423680 4426455 4492800 156 150 174 164 1871 0 0 0 0 54 0 0 0 0 3 +214 1783756462471965400 DEPTH 32 1 1.23568038188609 0.56124161073825507 1 12 1 10 1 0 129 49 2577 23664820 81600 855.91511535644531 5.9039999999999999 1047.3801000000001 120960 62067 1 0 5898240 4423680 4423680 4426419 4492800 150 150 150 150 1977 0 0 0 0 49 0 0 0 0 4 +215 1783756463541421600 DEPTH 18 1 1.2364689585399986 1 4 14 4 14 1 0 116 22 2614 23664812 81600 858.85658264160156 5.9528000000000008 1047.2254 120960 59693 1 0 5898240 4423680 4423680 4426410 4492800 483 150 409 799 773 0 0 1 0 21 0 0 0 0 1 +216 1783756464632353100 DEPTH 43 1 1.1820535597872732 0.6384228187919464 3 11 3 11 0 0 141 45 2609 23664775 81600 856.49671936035156 5.9117999999999995 1042.6990000000001 120960 58397 1 0 5898240 4423680 4423680 4426373 4492800 183 150 162 152 1962 0 0 0 0 45 0 0 0 0 0 +217 1783756465687298000 DEPTH 24 1 1.1557249622942902 0.72315436241610753 4 11 4 11 0 0 145 43 2529 23664844 81600 858.00570678710938 5.9205000000000005 1038.5201 120960 57059 1 0 5898240 4423680 4423680 4426441 4492800 182 154 150 180 1863 0 0 0 0 43 0 0 0 0 0 +218 1783756466727447100 DEPTH 34 1 1.1211752025066342 0.65352348993288611 1 13 1 13 1 0 108 12 2583 23664871 81600 848.76422119140625 5.9094999999999995 1019.1495 120960 64955 1 0 5898240 4423680 4423680 4426462 4492800 172 150 174 169 1918 0 0 0 0 12 0 0 0 0 2 +219 1783756467777647700 DEPTH 58 1 1.1209191357604675 0.6459731543624162 2 12 2 12 0 0 130 30 2586 23664867 81600 855.79263305664062 5.9317999999999991 1035.6908000000001 120960 65339 1 0 5898240 4423680 4423680 4426467 4492800 150 156 150 157 1973 0 0 0 0 30 0 0 0 0 0 +220 1783756468823081700 DEPTH 57 1 1.1185396396027889 0.6459731543624162 2 12 2 12 0 0 134 59 2508 23664865 81600 853.19769287109375 5.9252999999999991 1032.2569000000001 120960 64911 1 0 5898240 4423680 4423680 4426462 4492800 174 156 156 173 1849 0 0 0 0 59 0 0 0 0 0 +221 1783756469881101800 DEPTH 51 1 1.1764772362295519 0.6384228187919464 3 11 3 11 1 0 99 96 2579 23664867 81600 855.43936157226562 5.9012000000000002 1032.4366 120960 60606 1 0 5898240 4423680 4423680 4426465 4492800 150 150 150 197 1932 0 0 0 0 96 0 0 0 0 5 +222 1783756470915925800 DEPTH 18 1 1.1854278292686244 1 4 14 4 14 1 0 117 27 2620 23664731 81600 850.34596252441406 5.9013999999999998 1033.732 120960 49119 1 0 5898240 4423680 4423680 4426328 4492800 517 150 385 919 649 2 0 3 0 22 0 0 0 0 1 +223 1783756471974659400 DEPTH 15 1 1.1572525850806716 0.73070469798657733 3 12 3 12 0 0 103 36 2538 23664867 81600 858.30552673339844 5.9146000000000001 1035.1815999999999 120960 58199 1 0 5898240 4423680 4423680 4426466 4492800 168 150 161 249 1810 0 0 0 0 36 0 0 0 0 0 +224 1783756473024160700 DEPTH 46 1 1.1629938641844992 0.92281879194630889 2 15 2 15 1 0 119 27 2542 23664772 81600 857.32820129394531 5.9384000000000006 1034.5983000000001 120960 56710 1 0 5898240 4423680 4423680 4426370 4492800 184 150 150 159 1899 0 0 0 0 27 0 0 0 0 1 +225 1783756474074058600 DEPTH 27 1 1.1290090069775307 0.66107382550335592 0 14 0 14 0 0 158 32 2551 23664753 81600 856.12458801269531 5.8905000000000003 1031.4956999999999 120960 65246 1 0 5898240 4423680 4423680 4426351 4492800 162 156 158 151 1924 0 0 1 0 31 0 0 0 0 0 +226 1783756475161897700 DEPTH 26 1 1.1205334912516356 0.65352348993288611 1 13 1 12 1 0 101 29 2607 23664894 81600 853.114501953125 5.9108999999999998 1031.3968 120960 64220 1 0 5898240 4423680 4423680 4426492 4492800 173 152 156 239 1887 1 0 1 0 27 1 0 0 0 2 +227 1783756476222275000 DEPTH 22 1 1.1163607315708255 0.6384228187919464 3 11 3 11 0 0 130 26 2590 23664834 81600 856.18585205078125 5.9241000000000001 1044.4653000000001 120960 65286 1 0 5898240 4423680 4423680 4426431 4492800 171 151 202 182 1884 0 0 0 0 26 0 0 0 0 0 +228 1783756477289661800 DEPTH 6 1 1.115453658285769 0.6384228187919464 3 11 3 11 0 0 122 29 2538 23664855 81600 852.37107849121094 5.9210000000000003 1021.7251 120960 65404 1 0 5898240 4423680 4423680 4426452 4492800 158 150 182 183 1865 0 0 0 0 29 0 0 0 0 0 +229 1783756478374377100 DEPTH 32 1 1.1909376556165348 0.37667785234899337 1 10 1 10 1 0 131 67 2575 23664824 81600 845.06623840332031 5.9001000000000001 1083.5795000000001 120960 51011 1 0 5898240 4423680 4423680 4426422 4492800 150 150 150 150 1975 0 0 0 0 67 0 0 0 0 3 +230 1783756479429305100 DEPTH 18 1 1.1852331621130952 1 4 14 2 15 1 0 120 43 2627 23664877 81600 851.52743530273438 5.9600999999999997 1032.5916 120960 38310 1 0 5898240 4423680 4423680 4426475 4492800 347 150 339 790 1001 2 0 0 0 41 0 0 0 0 1 +231 1783756480458947900 DEPTH 23 1 1.2257401773673118 0.89181818181818207 3 13 3 13 1 0 125 56 2517 23664806 81600 851.62783813476562 5.9123999999999999 1028.5231000000001 120960 46115 1 0 5898240 4423680 4423680 4426404 4492800 157 150 172 186 1852 0 0 0 0 56 0 0 0 0 2 +232 1783756481499461600 DEPTH 25 1 1.1492900622093838 0.69181818181818178 3 11 3 11 0 0 120 34 2573 23664841 81600 857.20046997070312 5.9354999999999993 1039.2572 120960 65369 1 1 5898240 4423680 4423680 4426440 4492800 159 150 166 155 1943 0 0 0 1 32 0 0 0 0 0 +233 1783756482532477200 DEPTH 4 1 1.1482419374681585 0.70818181818181825 1 13 1 13 1 0 59 17 2530 23664856 81600 846.53656005859375 5.9095999999999993 1017.2114 120960 65679 1 0 5898240 4423680 4423680 4426456 4492800 156 150 161 199 1864 0 0 0 0 17 0 0 0 0 2 +234 1783756483585961100 DEPTH 47 1 1.1089563083929916 0.59999999999999998 2 11 2 11 0 0 115 28 2601 23664816 81600 855.0059814453125 5.9049999999999994 1031.9023999999999 120960 69855 1 0 5898240 4423680 4423680 4426416 4492800 150 150 150 150 2001 0 0 0 0 28 0 0 0 0 0 +235 1783756484657636000 DEPTH 28 1 1.1086222755685231 0.60818181818181816 1 12 1 12 0 0 148 40 2521 23664883 81600 858.31552124023438 5.9714 1041.2986000000001 120960 70675 1 0 5898240 4423680 4423680 4426482 4492800 156 150 159 164 1892 0 0 0 1 39 0 0 0 0 0 +236 1783756485730367600 DEPTH 0 1 1.1083699883451681 0.60818181818181816 1 12 1 12 1 0 93 25 2564 23664780 81600 851.81803894042969 5.9135000000000009 1026.2523000000001 120960 70213 1 0 5898240 4423680 4423680 4426379 4492800 162 156 165 198 1883 0 0 2 0 23 0 0 0 0 1 +237 1783756486757298900 DEPTH 18 1 1.2657726157040139 1 2 15 2 15 0 0 122 52 2624 23664868 81600 848.84361267089844 5.8966000000000003 1025.7719 120960 26529 1 0 5898240 4423680 4423680 4426468 4492800 226 150 321 842 1085 1 0 0 0 51 0 0 0 0 0 +238 1783756487786858600 DEPTH 46 1 1.2079253483961145 1 2 15 2 15 1 0 119 36 2543 23664828 81600 849.09706115722656 5.9174000000000007 1028.2842000000001 120960 46269 1 0 5898240 4423680 4423680 4426426 4492800 193 150 150 171 1879 0 0 0 0 36 0 0 0 0 2 +239 1783756488822650700 DEPTH 43 1 1.1828830668496066 0.69181818181818178 3 11 3 11 0 0 145 52 2603 23664896 81600 847.00202941894531 5.9219999999999997 1034.3268 120960 47037 1 0 5898240 4423680 4423680 4426495 4492800 209 150 165 158 1921 2 0 0 0 50 0 0 0 0 0 +240 1783756489857131500 DEPTH 24 1 1.1693027463000965 0.78363636363636369 4 11 4 11 0 0 145 36 2527 23664941 81600 852.82931518554688 6.0244999999999997 1033.0861 120960 46110 1 0 5898240 4423680 4423680 4426538 4492800 193 154 150 187 1843 0 0 0 0 36 0 0 0 0 0 +241 1783756490917652400 DEPTH 35 1 1.1110892891390372 0.59999999999999998 2 11 2 11 0 0 169 47 2519 23664738 81600 856.76997375488281 5.9103000000000003 1038.5545999999999 120960 70485 1 0 5898240 4423680 4423680 4426337 4492800 156 150 150 150 1913 4 0 0 0 43 0 0 0 0 0 +242 1783756491939937500 DEPTH 51 1 1.1585314977887911 0.69181818181818178 3 11 3 11 1 0 99 53 2549 23664803 81600 843.72853088378906 5.9276999999999997 1021.0244 120960 49647 1 0 5898240 4423680 4423680 4426402 4492800 150 150 150 150 1949 0 0 0 0 53 0 0 0 0 2 +243 1783756492991126500 DEPTH 19 1 1.1082839325102827 0.59999999999999998 2 11 2 11 1 0 135 34 2608 23664831 81600 854.59535217285156 5.9337 1030.29 120960 70113 1 0 5898240 4423680 4423680 4426429 4492800 150 150 151 188 1969 0 0 0 0 34 0 0 0 0 1 +244 1783756494059959600 DEPTH 20 1 1.1067309212585728 0.59999999999999998 2 11 2 11 0 0 123 30 2568 23664854 81600 854.18280029296875 6.0797000000000008 1035.8436999999999 120960 70609 1 0 5898240 4423680 4423680 4426453 4492800 151 150 242 236 1789 0 0 1 0 29 0 0 0 0 0 +245 1783756494242445900 REFRESH 22 0 1.0738230893658587 0.69181818181818178 3 11 3 11 0 0 130 6 417 3943902 55200 149.47737121582031 0.98429999999999995 180.9408 20160 12090 0 0 983040 737280 737280 737502 748800 64 27 42 41 243 0 0 0 0 6 0 0 0 0 0 +246 1783756494441920900 REFRESH 16 0 0.78847786867082903 0.099999999999999964 2 6 2 6 0 0 189 7 414 3943934 55200 150.42048645019531 0.98599999999999999 183.28999999999999 20160 14755 0 0 983040 737280 737280 737534 748800 27 26 26 26 309 0 0 0 0 7 0 0 0 0 0 +247 1783756494686512800 REFRESH 12 0 0.98370870183910619 0.39181818181818184 3 8 3 8 0 0 189 7 411 3943900 55200 149.49580383300781 0.98550000000000004 178.92519999999999 20160 14739 0 0 983040 737280 737280 737500 748800 29 26 26 26 304 0 0 0 1 6 0 0 0 0 0 +248 1783756494888996200 REFRESH 21 0 0.93491218912093776 0.3163636363636364 0 10 0 10 0 0 180 8 413 3943901 55200 149.2623291015625 0.98380000000000001 186.03739999999999 20160 14638 0 0 983040 737280 737280 737501 748800 27 26 25 26 309 1 0 0 0 7 0 0 0 0 0 +249 1783756495070215900 REFRESH 23 0 1.2161209149554144 0.89181818181818207 3 13 3 13 0 0 125 6 415 3943903 55200 150.57305908203125 0.98119999999999996 180.08580000000001 20160 12181 0 0 983040 737280 737280 737503 748800 137 26 32 37 183 0 0 0 0 6 0 0 0 0 0 +250 1783756495250737100 REFRESH 18 0 1.3072102121533837 1 2 15 2 15 0 0 122 14 434 3943931 55200 150.32710266113281 0.98409999999999997 179.33770000000001 20160 12839 0 0 983040 737280 737280 737531 748800 88 25 66 98 157 0 0 0 0 14 0 0 0 0 0 +251 1783756495450135600 REFRESH 3 0 0.9882222137627682 0.40000000000000002 2 9 2 9 0 0 148 8 415 3943923 55200 149.73619079589844 0.98750000000000004 184.10839999999999 20160 14791 0 0 983040 737280 737280 737522 748800 26 26 27 26 310 0 0 0 0 8 0 0 0 0 0 +252 1783756495659374500 REFRESH 14 0 1.0552418750146144 0.51636363636363636 0 12 0 12 0 0 124 6 415 3943893 55200 149.51014709472656 0.98960000000000004 184.92740000000001 20160 14556 0 0 983040 737280 737280 737493 748800 29 26 28 49 283 0 0 0 0 6 0 0 0 0 0 +253 1783756495898854500 REFRESH 13 0 0.72713762567092488 0.0081818181818181686 1 6 1 6 0 0 187 3 414 3943931 55200 149.18759155273438 0.97999999999999998 184.93530000000001 20160 14632 0 0 983040 737280 737280 737531 748800 27 26 28 27 306 0 0 0 0 3 0 0 0 0 0 +254 1783756496103702700 REFRESH 48 0 0.99066795088613502 0.40000000000000002 2 9 2 9 0 0 169 9 417 3943907 55200 148.83634948730469 0.98150000000000004 190.0419 20160 14765 0 0 983040 737280 737280 737507 748800 27 26 28 27 309 0 0 0 1 8 0 0 0 0 0 +255 1783756496284568000 REFRESH 27 0 1.158408480417235 0.71636363636363642 0 14 0 14 0 0 158 10 410 3943917 55200 149.04339599609375 0.98699999999999999 179.709 20160 12025 0 0 983040 737280 737280 737517 748800 74 26 50 29 231 0 0 0 0 10 0 0 0 0 0 +256 1783756496465779700 REFRESH 19 0 0.97902626916651381 0.59999999999999998 2 11 2 11 0 0 136 9 421 3943890 55200 149.71171569824219 0.98599999999999999 180.11519999999999 20160 13953 0 0 983040 737280 737280 737490 748800 35 26 34 77 249 0 0 0 1 8 0 0 0 0 0 +257 1783756496658119800 REFRESH 10 0 0.99293122423134628 0.4081818181818182 1 10 1 10 0 0 121 12 418 3943945 55200 149.84602355957031 0.98609999999999998 180.4598 20160 14693 0 0 983040 737280 737280 737545 748800 27 25 26 28 312 1 0 0 0 11 0 0 0 0 0 +258 1783756496883507600 REFRESH 54 0 0.86331540749611224 0.20818181818181827 1 8 1 8 0 0 117 7 415 3943912 55200 149.90950012207031 0.97960000000000003 189.76750000000001 20160 14712 0 0 983040 737280 737280 737511 748800 27 26 25 29 308 0 0 0 0 7 0 0 0 0 0 +259 1783756497060418100 REFRESH 4 0 1.142690422720819 0.70818181818181825 1 13 1 13 0 0 59 4 407 3943920 55200 148.38783264160156 0.98229999999999995 175.7946 20160 11999 0 0 983040 737280 737280 737520 748800 26 25 28 36 292 0 0 0 0 4 0 0 0 0 0 +260 1783756497253086800 REFRESH 7 0 1.1034700082678799 0.60818181818181816 1 12 1 12 0 0 135 14 424 3943910 55200 150.27302551269531 0.9839 180.77420000000001 20160 13933 0 0 983040 737280 737280 737510 748800 32 26 37 73 256 0 0 0 0 14 0 0 0 0 0 +261 1783756497447981600 REFRESH 39 0 0.98458732124030213 0.39181818181818184 3 8 3 8 0 0 178 9 414 3943905 55200 149.78866577148438 0.98640000000000005 181.86789999999999 20160 14695 0 0 983040 737280 737280 737505 748800 27 25 25 26 311 0 0 0 0 9 0 0 0 0 0 +262 1783756497637968600 REFRESH 38 0 1.0587564761582673 0.5 2 10 2 10 0 0 126 9 415 3943926 55200 148.6929931640625 0.98640000000000005 178.0873 20160 14685 0 0 983040 737280 737280 737526 748800 27 26 28 32 302 0 0 0 0 9 0 0 0 0 0 +263 1783756497835540700 REFRESH 58 0 1.149898283862147 0.69999999999999996 2 12 2 12 0 0 130 12 413 3943897 55200 149.93919372558594 1.0247999999999999 181.25729999999999 20160 12101 0 0 983040 737280 737280 737497 748800 28 26 25 33 301 0 0 0 0 12 0 0 0 0 0 +264 1783756498046454400 REFRESH 56 0 0.72524910955434696 0 2 5 2 5 1 0 222 9 413 3943893 55200 148.85273742675781 0.98219999999999996 193.39599999999999 20160 14680 0 0 983040 737280 737280 737493 748800 27 26 29 27 304 0 0 1 1 7 0 0 0 0 1 +265 1783756498227757100 REFRESH 24 0 1.1840481639436862 0.78363636363636369 4 11 4 11 0 0 145 8 412 3943919 55200 150.25970458984375 0.98319999999999996 180.11099999999999 20160 11958 0 0 983040 737280 737280 737519 748800 106 26 49 81 150 0 0 0 0 8 0 0 0 0 0 +266 1783756498427340000 REFRESH 49 0 1.1049507918033514 0.5918181818181818 3 10 3 10 0 0 133 5 412 3943877 55200 149.75897216796875 0.98399999999999999 178.85740000000001 20160 14644 0 0 983040 737280 737280 737477 748800 29 26 50 33 274 0 0 0 0 5 0 0 0 0 0 +267 1783756498606968000 REFRESH 40 0 1.1074393505740838 0.60818181818181816 1 12 1 12 0 0 126 6 420 3943913 55200 149.34835815429688 0.98370000000000002 178.428 20160 13968 0 0 983040 737280 737280 737513 748800 30 26 49 57 258 0 0 0 0 6 0 0 0 0 0 +268 1783756498844668700 REFRESH 44 0 0.86213960976034465 0.19999999999999993 2 7 2 7 0 0 162 8 416 3943915 55200 150.03750610351562 0.98829999999999996 213.035 20160 14774 0 0 983040 737280 737280 737515 748800 26 25 25 25 315 0 0 0 0 8 0 0 0 0 0 +269 1783756499025758700 REFRESH 32 0 1.2699956797791225 0.4081818181818182 1 10 1 10 0 0 131 14 419 3943923 55200 149.17648315429688 0.98599999999999999 179.94579999999999 20160 12428 0 0 983040 737280 737280 737523 748800 27 25 29 25 313 0 0 0 0 14 0 0 0 0 0 +270 1783756499209126500 REFRESH 35 0 1.1022514599734892 0.59999999999999998 2 11 2 11 0 0 169 8 412 3943889 55200 150.27200317382812 0.98860000000000003 182.1568 20160 14113 0 0 983040 737280 737280 737489 748800 48 26 29 35 274 0 0 0 0 8 0 0 0 0 0 +271 1783756499397614000 REFRESH 5 0 1.1068779307833334 0.59999999999999998 2 11 2 11 0 0 97 10 414 3943896 55200 149.00531005859375 0.98440000000000005 177.17830000000001 20160 14648 0 0 983040 737280 737280 737496 748800 28 26 43 37 280 0 0 0 0 10 0 0 0 0 0 +272 1783756499576881100 REFRESH 51 0 1.1869417344680671 0.69181818181818178 3 11 3 11 0 0 99 14 408 3943905 55200 148.76979064941406 0.98939999999999995 178.0737 20160 13012 0 0 983040 737280 737280 737505 748800 80 25 44 105 154 0 0 0 0 14 0 0 0 0 0 +273 1783756499803964100 REFRESH 52 0 0.86659436725425298 0.20818181818181827 1 8 1 8 0 0 110 10 420 3943896 55200 149.51936340332031 0.98760000000000003 213.49619999999999 20160 14742 0 0 983040 737280 737280 737496 748800 26 26 27 25 316 0 0 0 0 10 0 0 0 0 0 +274 1783756500020623900 REFRESH 2 0 0.9245232958871239 0.30000000000000004 2 8 2 8 0 0 146 8 413 3943898 55200 149.607421875 0.98650000000000004 192.035 20160 14659 0 0 983040 737280 737280 737498 748800 27 26 26 27 307 0 0 0 0 8 0 0 0 0 0 +275 1783756500199292300 REFRESH 0 0 1.1007666895945216 0.60818181818181816 1 12 1 12 0 0 93 9 422 3943892 55200 148.99507141113281 0.98499999999999999 177.63159999999999 20160 14060 0 0 983040 737280 737280 737492 748800 30 26 37 63 266 0 0 1 0 8 0 0 0 0 0 +276 1783756500379913700 REFRESH 47 0 1.100891660823919 0.59999999999999998 2 11 2 11 0 0 117 10 421 3943939 55200 149.837890625 0.98529999999999995 179.4503 20160 14018 0 0 983040 737280 737280 737539 748800 31 25 26 25 314 0 0 0 0 10 0 0 0 0 0 +277 1783756500560805500 REFRESH 15 0 1.1927837675880852 0.79181818181818187 3 12 3 12 0 0 104 9 419 3943921 55200 150.44607543945312 0.98180000000000001 179.65690000000001 20160 12166 0 0 983040 737280 737280 737521 748800 32 26 28 100 233 0 1 0 0 8 0 0 0 0 0 +278 1783756500739500400 REFRESH 37 0 1.1039160783640507 0.60818181818181816 1 12 1 12 0 0 143 8 407 3943913 55200 148.90599060058594 0.98499999999999999 177.5171 20160 13997 0 0 983040 737280 737280 737513 748800 47 26 28 48 258 0 0 0 0 8 0 0 0 0 0 +279 1783756500931441800 REFRESH 36 0 1.1075195097880983 0.5918181818181818 3 10 3 10 0 0 119 8 421 3943903 55200 150.00373840332031 0.99029999999999996 180.2389 20160 14757 0 0 983040 737280 737280 737503 748800 32 26 27 33 303 0 0 0 0 8 0 0 0 0 0 +280 1783756501111767000 REFRESH 57 0 1.1484038376503947 0.69999999999999996 2 12 2 12 0 0 134 9 414 3943910 55200 149.06573486328125 0.99019999999999997 178.86920000000001 20160 12012 0 0 983040 737280 737280 737510 748800 64 26 32 58 234 0 0 0 0 9 0 0 0 0 0 +281 1783756501334121900 REFRESH 42 0 0.79485118162954083 0.099999999999999964 2 6 2 6 0 0 147 5 421 3943912 55200 150.13247680664062 0.98719999999999997 207.34440000000001 20160 14657 0 0 983040 737280 737280 737512 748800 28 26 26 26 315 0 0 0 0 5 0 0 0 0 0 +282 1783756501537239700 REFRESH 9 0 0.79299775505829062 0.099999999999999964 2 6 2 6 0 0 139 7 417 3943900 55200 149.48966979980469 0.98070000000000002 189.13120000000001 20160 14716 0 0 983040 737280 737280 737500 748800 29 25 31 29 303 0 0 0 2 5 0 0 0 0 0 +283 1783756501736192400 REFRESH 45 0 0.86099411773366519 0.19999999999999993 2 7 2 7 0 0 160 6 422 3943900 55200 149.68934631347656 0.98550000000000004 185.5565 20160 14743 0 0 983040 737280 737280 737500 748800 30 26 26 26 314 0 0 0 0 6 0 0 0 0 0 +284 1783756501917079300 REFRESH 43 0 1.191036896819486 0.69181818181818178 3 11 3 11 0 0 146 11 420 3943933 55200 150.5587158203125 0.98470000000000002 179.73660000000001 20160 12305 0 0 983040 737280 737280 737532 748800 85 26 35 42 232 0 0 0 0 11 0 0 0 0 0 +285 1783756502136414200 REFRESH 53 0 0.80477344194820655 0.11636363636363646 0 8 0 8 0 0 153 2 420 3943924 55200 150.91404724121094 0.98440000000000005 186.67779999999999 20160 14638 0 0 983040 737280 737280 737524 748800 27 26 27 26 314 1 0 0 0 1 0 0 0 0 0 +286 1783756502315530400 REFRESH 26 0 1.1860951767534056 0.60818181818181816 1 12 1 12 0 0 102 5 429 3943906 55200 148.27212524414062 0.98919999999999997 177.9401 20160 12041 0 0 983040 737280 737280 737506 748800 69 26 42 77 215 0 0 1 0 4 0 0 0 0 0 +287 1783756502525258100 REFRESH 50 0 0.98692963143892487 0.40000000000000002 2 9 2 9 0 0 138 8 419 3943891 55200 149.5889892578125 0.98499999999999999 184.69390000000001 20160 14693 0 0 983040 737280 737280 737490 748800 27 26 26 26 314 0 0 0 0 8 0 0 0 0 0 +288 1783756502727667400 REFRESH 30 0 0.86459399164976602 0.20818181818181827 1 8 1 8 0 0 143 6 411 3943920 55200 149.03500366210938 0.98270000000000002 184.54910000000001 20160 14634 0 0 983040 737280 737280 737520 748800 28 26 26 27 304 0 0 0 0 6 0 0 0 0 0 +289 1783756502921944200 REFRESH 55 0 1.1084025113151146 0.60818181818181816 1 12 1 12 0 0 152 15 414 3943898 55200 150.18496704101562 0.98209999999999997 179.8321 20160 14005 0 0 983040 737280 737280 737498 748800 32 26 36 74 246 0 0 0 0 15 0 0 0 0 0 +290 1783756503127662700 REFRESH 31 0 0.79466797117065191 0.099999999999999964 2 6 2 6 1 0 136 4 424 3943902 55200 149.05036926269531 0.98660000000000003 182.88069999999999 20160 14694 0 0 983040 737280 737280 737502 748800 28 26 25 28 317 0 0 0 0 4 0 0 0 0 1 +291 1783756503305977700 REFRESH 20 0 1.0991024771990223 0.59999999999999998 2 11 2 11 0 0 123 11 418 3943931 55200 148.90599060058594 0.9839 177.15610000000001 20160 14000 0 0 983040 737280 737280 737531 748800 31 26 83 77 201 0 0 1 0 10 0 0 0 0 0 +292 1783756503508548300 REFRESH 41 0 0.99187805491846104 0.4081818181818182 1 10 1 10 1 0 113 8 414 3943900 55200 149.51443481445312 0.98799999999999999 188.38939999999999 20160 14802 0 0 983040 737280 737280 737499 748800 28 26 26 27 307 0 0 0 0 8 0 0 0 0 1 +293 1783756503689365700 REFRESH 29 0 1.1049951489248069 0.60818181818181816 1 12 1 12 0 0 128 6 407 3943890 55200 149.17747497558594 0.98480000000000001 179.7133 20160 13886 0 0 983040 737280 737280 737490 748800 35 26 27 38 281 0 0 0 0 6 0 0 0 0 0 +294 1783756503913092000 REFRESH 11 0 0.80518788066945135 0.11636363636363646 0 8 0 8 0 0 108 4 414 3943919 55200 149.53164672851562 0.98299999999999998 208.31610000000001 20160 14669 0 0 983040 737280 737280 737519 748800 29 25 28 26 306 0 0 0 0 4 0 0 0 0 0 +295 1783756504105141400 REFRESH 34 0 1.1523658265980725 0.70818181818181825 1 13 1 13 0 0 109 10 426 3943894 55200 148.95103454589844 0.98080000000000001 176.8348 20160 11989 0 0 983040 737280 737280 737494 748800 66 25 82 43 210 0 0 0 0 10 0 0 0 0 0 +296 1783756504304277300 REFRESH 33 0 0.79786108618850493 0.10818181818181814 1 7 1 7 0 0 185 8 416 3943911 55200 150.12864685058594 0.98519999999999996 186.86619999999999 20160 14726 0 0 983040 737280 737280 737511 748800 27 26 26 27 310 0 0 0 0 8 0 0 0 0 0 +297 1783756504503854600 REFRESH 8 0 0.72678850225040947 0 2 5 2 5 0 0 231 5 414 3943902 55200 150.53721618652344 0.98629999999999995 182.0428 20160 14696 0 0 983040 737280 737280 737502 748800 27 25 28 25 309 0 0 0 0 5 0 0 0 0 0 +298 1783756504680964200 REFRESH 6 0 1.1451118517027326 0.69181818181818178 3 11 3 11 1 0 122 5 410 3943926 55200 147.97721862792969 0.98709999999999998 175.93770000000001 20160 12087 0 0 983040 737280 737280 737526 748800 28 25 35 35 287 0 0 0 0 5 0 0 0 0 1 +299 1783756504865249500 REFRESH 25 0 1.1442069024759194 0.69181818181818178 3 11 3 11 0 0 121 6 419 3943910 55200 150.5218505859375 1.044 183.06379999999999 20160 12213 0 0 983040 737280 737280 737509 748800 106 25 39 32 217 0 0 0 0 6 0 0 0 0 0 +300 1783756505083829600 REFRESH 17 0 0.73206127844326696 0.016363636363636417 0 7 0 7 0 0 199 7 412 3943915 55200 149.87673950195312 0.97989999999999999 205.874 20160 14725 0 0 983040 737280 737280 737515 748800 27 26 28 31 300 0 0 0 0 7 0 0 0 0 0 +301 1783756505306177700 REFRESH 1 0 0.80128844102040253 0.10818181818181814 1 7 1 7 0 0 131 9 416 3943921 55200 149.20191955566406 0.98460000000000003 190.1995 20160 14705 0 0 983040 737280 737280 737521 748800 25 25 28 30 308 0 0 0 0 9 0 0 0 0 0 +302 1783756505487861600 REFRESH 46 0 1.314740122774688 1 2 15 2 15 0 0 119 8 412 3943918 55200 149.64122009277344 0.98699999999999999 180.43379999999999 20160 12122 0 0 983040 737280 737280 737517 748800 84 26 25 61 216 0 0 0 0 8 0 0 0 0 0 +303 1783756505669546500 REFRESH 28 0 1.1022236463275672 0.60818181818181816 1 12 1 12 0 0 148 8 401 3943910 55200 149.69036865234375 0.9869 179.68440000000001 20160 14013 0 0 983040 737280 737280 737510 748800 30 26 36 28 281 0 0 0 0 8 0 0 0 0 0 +304 1783756506721634400 DEPTH 18 1 1.4115454499739315 1 2 15 2 15 1 0 122 40 2615 23664869 81600 862.45799255371094 5.9158999999999997 1040.5481 120960 61368 1 0 5898240 4423680 4423680 4426468 4492800 257 150 357 620 1231 0 0 0 3 37 0 0 0 0 1 +305 1783756507785016900 DEPTH 23 1 1.2745029075599315 0.89181818181818207 3 13 3 13 0 0 125 59 2520 23664843 81600 859.89645385742188 5.9262999999999995 1041.2734 120960 57061 1 0 5898240 4423680 4423680 4426443 4492800 163 151 170 173 1863 0 0 0 0 59 0 0 0 0 0 +306 1783756508899131100 DEPTH 32 1 1.2322227655733768 0.4081818181818182 1 10 1 9 1 0 131 51 2593 23664909 81600 854.94975280761719 6.2473000000000001 1112.9668999999999 120960 61205 1 0 5898240 4423680 4423680 4426508 4492800 150 150 150 150 1993 0 0 0 0 51 0 0 0 0 3 +307 1783756509953736600 DEPTH 15 1 1.1869426395156073 0.79181818181818187 3 12 3 12 0 0 104 39 2541 23664950 81600 862.94705200195312 6.0515000000000008 1043.3212000000001 120960 57976 1 0 5898240 4423680 4423680 4426548 4492800 175 150 162 304 1750 0 0 0 0 39 0 0 0 0 0 +308 1783756510995881200 DEPTH 24 1 1.1777427082587861 0.78363636363636369 4 11 4 11 0 0 148 44 2533 23664784 81600 860.16423034667969 5.9055 1041.0114000000001 120960 56579 1 0 5898240 4423680 4423680 4426384 4492800 198 154 153 208 1820 0 0 0 0 44 0 0 0 0 0 +309 1783756512031439600 DEPTH 51 1 1.1764252584031103 0.69181818181818178 3 11 3 11 0 0 99 35 2553 23664885 81600 855.96014404296875 5.9497999999999998 1034.4090000000001 120960 60967 1 0 5898240 4423680 4423680 4426484 4492800 150 150 150 150 1953 0 0 0 0 35 0 0 0 0 0 +310 1783756513095489700 DEPTH 27 1 1.1533947475455086 0.71636363636363642 0 14 0 14 0 0 159 44 2555 23664949 81600 856.26356506347656 5.9461999999999993 1039.9758999999999 120960 59480 1 0 5898240 4423680 4423680 4426546 4492800 165 156 161 150 1923 0 1 1 0 42 0 0 0 0 0 +311 1783756514185669900 DEPTH 58 1 1.1444123495135206 0.69999999999999996 2 12 2 12 0 0 131 25 2583 23664929 81600 857.40144348144531 5.9183000000000003 1031.8996 120960 59658 1 0 5898240 4423680 4423680 4426528 4492800 150 156 150 164 1963 0 0 0 0 25 0 0 0 0 0 +312 1783756515265001900 DEPTH 18 1 1.2258725638693875 1 2 15 2 15 0 0 122 37 2610 23664818 81600 851.87571716308594 5.9088999999999992 1041.6774 120960 50263 1 0 5898240 4423680 4423680 4426416 4492800 274 150 340 738 1108 0 0 0 3 34 0 0 0 0 0 +313 1783756516334581300 DEPTH 43 1 1.179605640759928 0.69181818181818178 3 11 3 11 1 0 146 35 2600 23664793 81600 858.12910461425781 5.8963999999999999 1034.164 120960 58316 1 0 5898240 4423680 4423680 4426390 4492800 225 150 180 156 1889 0 0 0 2 33 0 0 0 0 2 +314 1783756517363458000 DEPTH 26 1 1.1652983409346103 0.60818181818181816 1 12 1 12 1 0 102 27 2596 23664897 81600 853.18528747558594 5.9962999999999997 1027.7762 120960 59312 1 0 5898240 4423680 4423680 4426495 4492800 199 153 171 266 1807 0 0 0 0 27 0 0 0 0 1 +315 1783756518411246400 DEPTH 46 1 1.1879533824503326 1 2 15 2 15 0 0 119 21 2570 23664792 81600 858.73945617675781 5.9993999999999996 1046.598 120960 57026 1 0 5898240 4423680 4423680 4426391 4492800 205 150 150 167 1898 0 0 0 0 21 0 0 0 0 0 +316 1783756519442593300 DEPTH 57 1 1.1416329367095965 0.69999999999999996 2 12 2 12 0 0 135 64 2513 23664819 81600 855.69851684570312 5.9010999999999996 1030.1214 120960 59560 1 0 5898240 4423680 4423680 4426417 4492800 176 156 156 195 1830 0 0 0 0 64 0 0 0 0 0 +317 1783756520484572900 DEPTH 22 1 1.1353067568706949 0.69181818181818178 3 11 3 11 1 0 130 28 2591 23664758 81600 855.67533874511719 5.9207000000000001 1037.8043 120960 60126 1 0 5898240 4423680 4423680 4426358 4492800 181 151 201 187 1871 0 0 2 1 25 0 0 0 0 1 +318 1783756521519955300 DEPTH 4 1 1.1328631482752549 0.70818181818181825 1 13 1 13 1 0 62 25 2498 23664875 81600 849.04014587402344 5.9212000000000007 1020.066 120960 60490 1 0 5898240 4423680 4423680 4426474 4492800 156 150 173 228 1791 0 0 0 0 25 0 0 0 0 3 +319 1783756522544039300 DEPTH 5 1 1.0992735309925119 0.59999999999999998 2 11 2 11 0 0 97 25 2584 23664880 81600 847.15621948242188 5.9229000000000003 1022.859 120960 70215 1 0 5898240 4423680 4423680 4426480 4492800 150 156 163 190 1925 0 0 1 1 23 0 0 0 0 0 +320 1783756523586773800 DEPTH 18 1 1.2114814504283009 1 2 15 2 15 1 0 122 35 2588 23664893 81600 847.44548034667969 5.8879999999999999 1027.9984999999999 120960 40450 1 0 5898240 4423680 4423680 4426493 4492800 261 150 336 932 909 0 0 0 1 34 0 0 0 0 3 +321 1783756524698071300 DEPTH 23 1 1.1765392476527587 0.89181818181818207 3 13 3 13 0 0 125 64 2525 23664876 81600 851.42832946777344 5.9194000000000004 1040.9547 120960 46375 1 0 5898240 4423680 4423680 4426476 4492800 172 151 167 176 1859 3 0 0 0 61 0 0 0 0 0 +322 1783756525720640300 DEPTH 34 1 1.1464165975140668 0.70818181818181825 1 13 1 13 1 0 109 15 2585 23664868 81600 849.70050048828125 5.9142999999999999 1021.2213 120960 60451 1 0 5898240 4423680 4423680 4426464 4492800 182 150 221 189 1843 0 0 0 0 15 0 0 0 0 1 +323 1783756526905717300 DEPTH 32 1 1.1523550614665332 0.30818181818181822 1 9 1 9 0 0 131 65 2577 23664863 81600 848.66880798339844 5.9190000000000005 1142.7727 120960 50092 1 0 5898240 4423680 4423680 4426463 4492800 150 150 150 150 1977 0 0 0 0 65 0 0 0 0 0 +324 1783756527969726100 DEPTH 6 1 1.1338025265964349 0.69181818181818178 3 11 3 11 1 0 122 24 2548 23664875 81600 852.78416442871094 5.9131999999999998 1039.6565000000001 120960 59529 1 0 5898240 4423680 4423680 4426473 4492800 168 150 190 182 1858 0 0 0 0 24 0 0 0 0 1 +325 1783756529018931300 DEPTH 46 1 1.1535093395757252 1 2 15 2 15 1 0 119 17 2557 23664863 81600 849.98757934570312 5.9067999999999996 1029.9902 120960 46282 1 0 5898240 4423680 4423680 4426463 4492800 223 150 150 193 1841 0 0 0 0 17 0 0 0 0 1 +326 1783756530099999300 DEPTH 55 1 1.1008414579384347 0.60818181818181816 1 12 1 12 0 0 155 41 2546 23664875 81600 861.71145629882812 5.907 1039.5008 120960 69585 1 0 5898240 4423680 4423680 4426474 4492800 163 156 172 177 1878 0 1 1 2 37 0 0 0 0 0 +327 1783756531167491400 DEPTH 7 1 1.0975705783532874 0.60818181818181816 1 12 1 12 0 0 135 42 2562 23664809 81600 856.39474487304688 5.9357999999999995 1042.2935 120960 68837 1 0 5898240 4423680 4423680 4426409 4492800 162 150 160 163 1927 0 0 0 0 42 0 0 0 0 0 +328 1783756532212726100 DEPTH 18 1 1.2035114174174026 1 2 15 2 15 1 0 123 82 2602 23664888 81600 846.54249572753906 5.8932000000000002 1024.7967000000001 120960 26720 1 0 5898240 4423680 4423680 4426487 4492800 237 150 303 841 1071 0 0 0 0 82 0 0 0 0 3 +329 1783756533263755500 DEPTH 15 1 1.1522185968763141 0.79181818181818187 3 12 3 12 0 0 104 31 2546 23664904 81600 852.71829223632812 5.9128999999999996 1027.761 120960 46277 1 0 5898240 4423680 4423680 4426502 4492800 183 150 162 380 1671 0 0 0 0 31 0 0 0 0 0 +330 1783756534311013200 DEPTH 25 1 1.1341599321142022 0.69181818181818178 3 11 3 11 0 0 123 17 2577 23664919 81600 855.17379760742188 5.9085000000000001 1035.4128000000001 120960 59715 1 0 5898240 4423680 4423680 4426518 4492800 168 150 162 153 1944 0 0 0 2 15 0 0 0 0 0 +331 1783756535356568600 DEPTH 24 1 1.1531880332610456 0.78363636363636369 4 11 4 11 0 0 148 41 2522 23664797 81600 850.52915954589844 5.9240999999999993 1033.3339000000001 120960 46016 1 0 5898240 4423680 4423680 4426397 4492800 203 154 155 199 1811 0 0 0 0 41 0 0 0 0 0 +332 1783756536382788400 DEPTH 51 1 1.1462891646166691 0.69181818181818178 3 11 3 11 1 0 99 32 2542 23664834 81600 846.47341918945312 5.9265999999999996 1025.0047 120960 49951 1 0 5898240 4423680 4423680 4426431 4492800 150 150 150 150 1942 0 0 0 0 32 0 0 0 0 2 +333 1783756537449030800 DEPTH 36 1 1.0975590329747589 0.5918181818181818 3 10 3 10 0 0 121 31 2573 23664955 81600 857.42776489257812 5.9217000000000004 1034.5818999999999 120960 70403 1 0 5898240 4423680 4423680 4426555 4492800 150 150 150 163 1960 0 0 0 0 31 0 0 0 0 0 +334 1783756538528444300 DEPTH 40 1 1.0971360624007638 0.60818181818181816 1 12 1 12 0 0 126 58 2576 23664799 81600 853.21806335449219 5.9451999999999998 1046.6403 120960 69223 1 0 5898240 4423680 4423680 4426398 4492800 155 153 172 173 1923 0 0 0 0 58 0 0 0 0 0 +335 1783756539570017500 DEPTH 37 1 1.095573847379836 0.60818181818181816 1 12 1 12 0 0 143 14 2601 23664856 81600 851.260009765625 5.9119000000000002 1028.5844999999999 120960 69477 1 0 5898240 4423680 4423680 4426455 4492800 156 150 150 158 1987 0 0 0 0 14 0 0 0 0 0 +336 1783756539772207800 REFRESH 9 0 0.7812596557393473 0.099999999999999964 2 6 2 6 0 0 139 6 419 3943887 55200 148.62847900390625 0.98650000000000004 189.60069999999999 20160 14604 0 0 983040 737280 737280 737487 748800 28 25 32 28 306 0 0 0 0 6 0 0 0 0 0 +337 1783756539956493800 REFRESH 32 0 1.0806414064604657 0.30818181818181822 1 9 1 9 0 0 131 5 423 3943924 55200 149.56031799316406 0.98609999999999998 183.1465 20160 13125 0 0 983040 737280 737280 737524 748800 93 25 55 63 187 0 0 0 0 5 0 0 0 0 0 +338 1783756540169611800 REFRESH 48 0 0.98194228513868942 0.40000000000000002 2 9 2 9 0 0 171 10 415 3943915 55200 150.44915771484375 0.98509999999999998 197.57329999999999 20160 14810 0 0 983040 737280 737280 737515 748800 26 26 28 32 303 0 0 0 1 9 0 0 0 0 0 +339 1783756540373889400 REFRESH 2 0 0.91409351775833214 0.30000000000000004 2 8 2 8 0 0 146 11 417 3943898 55200 149.82662963867188 1.0053000000000001 186.7578 20160 14766 0 0 983040 737280 737280 737497 748800 27 25 27 27 311 0 0 0 0 11 0 0 0 0 0 +340 1783756540552695700 REFRESH 0 0 1.0940470230202888 0.60818181818181816 1 12 1 12 0 0 93 9 421 3943910 55200 149.36883544921875 0.9829 177.78360000000001 20160 13910 0 0 983040 737280 737280 737510 748800 31 26 38 58 268 0 0 0 0 9 0 0 0 0 0 +341 1783756540735997200 REFRESH 23 0 1.2092442209053964 0.89181818181818207 3 13 3 13 0 0 125 6 412 3943936 55200 150.60479736328125 0.98870000000000002 182.14840000000001 20160 12189 0 0 983040 737280 737280 737536 748800 144 26 35 40 167 0 0 0 0 6 0 0 0 0 0 +342 1783756540917405700 REFRESH 43 0 1.1699044350959278 0.69181818181818178 3 11 3 11 0 0 146 12 419 3943907 55200 150.31500244140625 0.98619999999999997 180.18029999999999 20160 12114 0 0 983040 737280 737280 737507 748800 103 25 35 45 211 0 0 0 0 12 0 0 0 0 0 +343 1783756541110210600 REFRESH 10 0 0.985586086122199 0.4081818181818182 1 10 1 10 0 0 121 8 420 3943913 55200 150.53414916992188 0.99750000000000005 181.2424 20160 14802 0 0 983040 737280 737280 737513 748800 27 25 26 29 313 0 0 0 0 8 0 0 0 0 0 +344 1783756541291400900 REFRESH 35 0 1.0941987809478508 0.59999999999999998 2 11 2 11 0 0 169 6 413 3943906 55200 149.87469482421875 0.98419999999999996 179.9298 20160 13827 0 0 983040 737280 737280 737506 748800 37 26 28 31 291 0 0 0 0 6 0 0 0 0 0 +345 1783756541504820200 REFRESH 17 0 0.72060613679717922 0.016363636363636417 0 7 0 7 0 0 199 4 409 3943950 55200 149.31840515136719 0.98070000000000002 201.60810000000001 20160 14786 0 0 983040 737280 737280 737550 748800 27 26 33 36 287 0 0 0 0 4 0 0 0 0 0 +346 1783756541704294200 REFRESH 33 0 0.786998808785635 0.10818181818181814 1 7 1 7 0 0 185 4 415 3943915 55200 149.55416870117188 0.99319999999999997 184.39490000000001 20160 14858 0 0 983040 737280 737280 737515 748800 27 26 26 29 307 0 0 0 0 4 0 0 0 0 0 +347 1783756541901498400 REFRESH 39 0 0.97600324539039529 0.39181818181818184 3 8 3 8 0 0 178 10 417 3943921 55200 150.08154296875 0.9909 180.98509999999999 20160 14771 0 0 983040 737280 737280 737521 748800 27 25 25 27 313 0 0 0 0 10 0 0 0 0 0 +348 1783756542084348900 REFRESH 57 0 1.1362624099817518 0.69999999999999996 2 12 2 12 0 0 135 6 415 3943891 55200 149.285888671875 0.98519999999999996 180.4307 20160 12306 0 0 983040 737280 737280 737490 748800 80 26 34 59 216 0 0 0 0 6 0 0 0 0 0 +349 1783756542296523700 REFRESH 13 0 0.71379104935635995 0.0081818181818181686 1 6 1 6 0 0 187 8 413 3943914 55200 149.64524841308594 0.98699999999999999 186.5599 20160 14792 0 0 983040 737280 737280 737513 748800 27 26 28 27 305 0 0 0 0 8 0 0 0 0 0 +350 1783756542476013700 REFRESH 25 0 1.0786138587101202 0.69181818181818178 3 11 3 11 0 0 123 8 422 3943903 55200 149.23878479003906 0.98640000000000005 178.41470000000001 20160 12116 0 0 983040 737280 737280 737503 748800 137 25 38 32 190 0 0 0 0 8 0 0 0 0 0 +351 1783756542656728300 REFRESH 28 0 1.0937060340444802 0.60818181818181816 1 12 1 12 0 0 150 6 405 3943889 55200 150.02726745605469 0.97560000000000002 179.5736 20160 13782 0 0 983040 737280 737280 737489 748800 29 26 34 27 289 0 0 0 0 6 0 0 0 0 0 +352 1783756542836478400 REFRESH 37 0 1.0085929231357349 0.60818181818181816 1 12 1 12 0 0 143 6 406 3943910 55200 149.16908264160156 0.98629999999999995 178.5796 20160 12796 0 0 983040 737280 737280 737510 748800 70 26 29 58 223 0 0 0 0 6 0 0 0 0 0 +353 1783756543018238200 REFRESH 7 0 1.0907038005595744 0.60818181818181816 1 12 1 12 0 0 135 7 422 3943937 55200 149.644287109375 0.98650000000000004 180.65710000000001 20160 12584 0 0 983040 737280 737280 737537 748800 33 26 41 71 251 0 0 0 0 7 0 0 0 0 0 +354 1783756543223015100 REFRESH 55 0 1.0937186641431873 0.60818181818181816 1 12 1 12 0 0 155 9 417 3943903 55200 150.49221801757812 0.98509999999999998 181.36500000000001 20160 12671 0 0 983040 737280 737280 737503 748800 46 26 40 86 219 0 0 0 0 9 0 0 0 0 0 +355 1783756543437554700 REFRESH 1 0 0.79124409882253277 0.10818181818181814 1 7 1 7 0 0 131 4 417 3943913 55200 149.42617797851562 0.98509999999999998 190.10220000000001 20160 14800 0 0 983040 737280 737280 737513 748800 25 25 28 34 305 0 0 0 0 4 0 0 0 0 0 +356 1783756543643410500 REFRESH 31 0 0.78024981486026512 0.099999999999999964 2 6 2 6 0 0 136 4 422 3943917 55200 148.48818969726562 0.98319999999999996 182.35310000000001 20160 14760 0 0 983040 737280 737280 737517 748800 29 26 25 28 314 0 0 0 0 4 0 0 0 0 0 +357 1783756543822403400 REFRESH 58 0 1.1392361727785201 0.69999999999999996 2 12 2 12 0 0 132 6 405 3943895 55200 149.21728515625 0.98299999999999998 177.81180000000001 20160 12365 0 0 983040 737280 737280 737495 748800 32 26 25 39 283 0 0 0 0 6 0 0 0 0 0 +358 1783756544004994000 REFRESH 36 0 1.0896063422261986 0.5918181818181818 3 10 3 10 0 0 123 8 417 3943888 55200 150.00575256347656 1.0247999999999999 181.46250000000001 20160 13822 0 0 983040 737280 737280 737488 748800 39 26 28 37 287 0 0 0 0 8 0 0 0 0 0 +359 1783756544239894400 REFRESH 52 0 0.85884508284353378 0.20818181818181827 1 8 1 8 0 0 110 5 417 3943921 55200 149.6480712890625 0.98819999999999997 203.01390000000001 20160 14781 0 0 983040 737280 737280 737521 748800 29 26 28 26 308 0 0 0 0 5 0 0 0 0 0 +360 1783756544420037600 REFRESH 18 0 1.3619140669932919 1 2 15 2 15 0 0 123 9 420 3943923 55200 150.150146484375 0.98599999999999999 179.06290000000001 20160 12907 0 0 983040 737280 737280 737522 748800 49 25 63 103 180 0 0 0 0 9 0 0 0 0 0 +361 1783756544635830500 REFRESH 41 0 0.98190865890105083 0.4081818181818182 1 10 1 10 0 0 113 5 412 3943919 55200 149.60946655273438 1.0189999999999999 191.62049999999999 20160 14873 0 0 983040 737280 737280 737517 748800 28 26 26 26 306 0 0 0 0 5 0 0 0 0 0 +362 1783756544841956200 REFRESH 14 0 1.0458490105208409 0.51636363636363636 0 12 0 12 0 0 124 4 413 3943926 55200 148.83941650390625 0.97489999999999999 184.01259999999999 20160 14547 0 0 983040 737280 737280 737526 748800 29 26 28 58 272 0 0 0 0 4 0 0 0 0 0 +363 1783756545027518000 REFRESH 22 0 1.130512643925234 0.69181818181818178 3 11 3 11 0 0 131 7 418 3943929 55200 149.90232849121094 0.98580000000000001 180.40379999999999 20160 12158 0 0 983040 737280 737280 737529 748800 72 27 49 41 229 0 0 0 0 7 0 0 0 0 0 +364 1783756545205148100 REFRESH 34 0 1.1414439081385899 0.70818181818181825 1 13 1 13 0 0 109 3 424 3943911 55200 148.25984191894531 0.98380000000000001 176.52180000000001 20160 13672 0 0 983040 737280 737280 737510 748800 69 25 78 38 214 0 0 0 0 3 0 0 0 0 0 +365 1783756545436658700 REFRESH 53 0 0.78897318819561224 0.11636363636363646 0 8 0 8 0 0 154 8 414 3943883 55200 150.52082824707031 0.98540000000000005 185.8415 20160 14706 0 0 983040 737280 737280 737483 748800 27 26 29 26 306 1 0 0 0 7 0 0 0 0 0 +366 1783756545615500100 REFRESH 26 0 1.1522680971858756 0.60818181818181816 1 12 1 12 1 0 102 8 423 3943939 55200 148.79335021972656 0.98509999999999998 177.7216 20160 12669 0 0 983040 737280 737280 737539 748800 97 26 39 93 168 1 0 0 0 7 1 0 0 0 0 +367 1783756545797313900 REFRESH 19 0 1.0937092564070707 0.59999999999999998 2 11 2 11 0 0 136 13 419 3943914 55200 150.17984008789062 1.0589999999999999 180.59690000000001 20160 13694 0 0 983040 737280 737280 737514 748800 31 26 33 64 265 0 0 0 0 13 0 0 0 0 0 +368 1783756545980392000 REFRESH 47 0 1.0956362615261122 0.59999999999999998 2 11 2 11 0 0 117 10 420 3943887 55200 149.2991943359375 0.97970000000000002 181.839 20160 13818 0 0 983040 737280 737280 737487 748800 36 25 34 25 300 0 0 0 0 10 0 0 0 0 0 +369 1783756546186548700 REFRESH 30 0 0.85281393239012604 0.20818181818181827 1 8 1 8 0 0 143 4 413 3943909 55200 149.89823913574219 0.98309999999999997 184.95689999999999 20160 14760 0 0 983040 737280 737280 737509 748800 29 26 27 28 303 0 0 0 0 4 0 0 0 0 0 +370 1783756546434403800 REFRESH 50 0 0.97746535536010293 0.40000000000000002 2 9 2 9 0 0 138 5 419 3943901 55200 149.04031372070312 0.9879 184.92150000000001 20160 14774 0 0 983040 737280 737280 737501 748800 26 26 26 26 315 0 0 0 0 5 0 0 0 0 0 +371 1783756546612341900 REFRESH 5 0 1.0926685080576444 0.59999999999999998 2 11 2 11 0 0 97 8 410 3943920 55200 149.2305908203125 0.98499999999999999 176.7928 20160 13786 0 0 983040 737280 737280 737520 748800 28 26 91 52 213 0 0 0 1 7 0 0 0 0 0 +372 1783756546794808900 REFRESH 24 0 1.169399910488135 0.78363636363636369 4 11 4 11 0 0 148 10 414 3943922 55200 150.48771667480469 0.98460000000000003 181.3229 20160 12032 0 0 983040 737280 737280 737522 748800 126 26 43 78 141 0 0 0 0 10 0 0 0 0 0 +373 1783756546998807700 REFRESH 3 0 0.98028386760944253 0.40000000000000002 2 9 2 9 0 0 148 13 416 3943916 55200 149.96992492675781 0.98329999999999995 185.3109 20160 14824 0 0 983040 737280 737280 737516 748800 26 26 28 26 310 0 0 0 0 13 0 0 0 0 0 +374 1783756547202486000 REFRESH 38 0 1.0508260021999509 0.5 2 10 2 10 0 0 126 8 415 3943902 55200 148.97561645507812 0.999 177.90129999999999 20160 14730 0 0 983040 737280 737280 737500 748800 27 26 30 32 300 0 0 0 0 8 0 0 0 0 0 +375 1783756547419430700 REFRESH 42 0 0.78254262525220686 0.099999999999999964 2 6 2 6 0 0 147 8 418 3943913 55200 149.52774047851562 0.98609999999999998 196.88460000000001 20160 14710 0 0 983040 737280 737280 737513 748800 31 26 26 26 309 1 0 0 0 7 0 0 0 0 0 +376 1783756547599640100 REFRESH 27 0 1.1490520175591956 0.71636363636363642 0 14 0 14 0 0 159 6 406 3943900 55200 149.25004577636719 0.98839999999999995 179.09520000000001 20160 12221 0 0 983040 737280 737280 737500 748800 89 26 53 31 207 0 1 1 0 4 0 0 0 0 0 +377 1783756547808305800 REFRESH 44 0 0.85323118362432182 0.19999999999999993 2 7 2 7 0 0 162 6 414 3943898 55200 150.44096374511719 0.9869 193.35040000000001 20160 14797 0 0 983040 737280 737280 737498 748800 26 26 31 27 304 0 0 0 0 6 0 0 0 0 0 +378 1783756548017492100 REFRESH 54 0 0.85429093594576355 0.20818181818181827 1 8 1 8 0 0 117 3 413 3943930 55200 149.36575317382812 0.98770000000000002 193.66990000000001 20160 14785 0 0 983040 737280 737280 737530 748800 29 26 27 31 300 0 0 0 0 3 0 0 0 0 0 +379 1783756548254629300 REFRESH 11 0 0.79152590733821204 0.11636363636363646 0 8 0 8 0 0 108 3 411 3943909 55200 149.16300964355469 0.98460000000000003 213.08860000000001 20160 14739 0 0 983040 737280 737280 737509 748800 30 25 29 26 301 0 0 0 0 3 0 0 0 0 0 +380 1783756548464673400 REFRESH 45 0 0.84968351966965494 0.19999999999999993 2 7 2 7 0 0 160 10 421 3943889 55200 149.53369140625 0.98019999999999996 184.27090000000001 20160 14772 0 0 983040 737280 737280 737489 748800 30 26 26 26 313 0 0 0 0 10 0 0 0 0 0 +381 1783756548663484200 REFRESH 29 0 1.0956821674304098 0.60818181818181816 1 12 1 12 0 0 128 5 411 3943918 55200 148.94490051269531 0.98570000000000002 178.60059999999999 20160 13880 0 0 983040 737280 737280 737518 748800 35 26 30 40 280 0 0 0 0 5 0 0 0 0 0 +382 1783756548862058800 REFRESH 8 0 0.7143967141335279 0 2 5 2 5 0 0 231 3 413 3943929 55200 150.26687622070312 0.98629999999999995 183.03700000000001 20160 14712 0 0 983040 737280 737280 737528 748800 27 26 31 25 304 1 0 0 0 2 0 0 0 0 0 +383 1783756549043149400 REFRESH 40 0 1.0911345346524024 0.60818181818181816 1 12 1 12 0 0 126 6 418 3943917 55200 149.52653503417969 0.98799999999999999 179.845 20160 12763 0 0 983040 737280 737280 737516 748800 31 26 45 49 267 0 0 0 0 6 0 0 0 0 0 +384 1783756549221548900 REFRESH 6 0 1.1296231313469876 0.69181818181818178 3 11 3 11 0 0 122 5 409 3943905 55200 149.65043640136719 0.98540000000000005 177.32980000000001 20160 12550 0 0 983040 737280 737280 737504 748800 37 25 40 50 257 0 0 0 0 5 0 0 0 0 0 +385 1783756549400971700 REFRESH 20 0 1.0940671062720693 0.59999999999999998 2 11 2 11 0 0 123 9 416 3943900 55200 149.30943298339844 0.97609999999999997 178.29920000000001 20160 13871 0 0 983040 737280 737280 737499 748800 30 26 84 83 193 0 0 0 0 9 0 0 0 0 0 +386 1783756549581339100 REFRESH 51 0 1.1580365932974088 0.69181818181818178 3 11 3 11 0 0 99 7 405 3943916 55200 150.19929504394531 0.98570000000000002 179.11269999999999 20160 12323 0 0 983040 737280 737280 737516 748800 101 25 39 90 150 0 0 0 0 7 0 0 0 0 0 +387 1783756549790768000 REFRESH 56 0 0.72067927879312954 0 2 5 2 5 0 0 222 6 414 3943916 55200 149.68217468261719 0.98550000000000004 193.58840000000001 20160 14772 0 0 983040 737280 737280 737516 748800 27 26 29 26 306 0 0 0 0 6 0 0 0 0 0 +388 1783756549970225700 REFRESH 4 0 1.1301698641212936 0.70818181818181825 1 13 1 13 0 0 62 6 408 3943904 55200 147.88301086425781 0.98819999999999997 177.0642 20160 13937 0 0 983040 737280 737280 737504 748800 26 25 30 39 288 0 0 0 0 6 0 0 0 0 0 +389 1783756550152289700 REFRESH 15 0 1.1789138849147938 0.79181818181818187 3 12 3 12 0 0 104 5 419 3943896 55200 150.74505615234375 0.98529999999999995 180.75200000000001 20160 12093 0 0 983040 737280 737280 737496 748800 39 26 29 97 228 0 0 0 0 5 0 0 0 0 0 +390 1783756550361030400 REFRESH 21 0 0.92766338623311684 0.3163636363636364 0 10 0 10 0 0 180 7 416 3943889 55200 150.70208740234375 0.98619999999999997 190.26300000000001 20160 14792 0 0 983040 737280 737280 737488 748800 27 26 25 27 311 0 0 0 0 7 0 0 0 0 0 +391 1783756550562143100 REFRESH 16 0 0.78093559375730659 0.099999999999999964 2 6 2 6 0 0 189 8 415 3943927 55200 150.3714599609375 0.98029999999999995 183.97800000000001 20160 14651 0 0 983040 737280 737280 737527 748800 28 26 26 26 309 0 0 0 0 8 0 0 0 0 0 +392 1783756550751535700 REFRESH 49 0 1.0950419685319457 0.5918181818181818 3 10 3 10 1 0 133 7 412 3943926 55200 148.62643432617188 0.98199999999999998 178.19370000000001 20160 14684 0 0 983040 737280 737280 737526 748800 31 26 49 34 272 0 0 0 0 7 0 0 0 0 1 +393 1783756550932730100 REFRESH 46 0 1.3009310485781893 1 2 15 2 15 0 0 119 12 407 3943913 55200 149.79994201660156 0.98460000000000003 179.97450000000001 20160 12190 0 0 983040 737280 737280 737513 748800 102 26 25 78 176 0 0 0 0 12 0 0 0 0 0 +394 1783756551125896600 REFRESH 12 0 0.97568283849522019 0.39181818181818184 3 8 3 8 0 0 189 9 411 3943903 55200 149.99757385253906 0.98829999999999996 181.0728 20160 14705 0 0 983040 737280 737280 737503 748800 29 26 28 26 302 0 0 0 0 9 0 0 0 0 0 +395 1783756552175816500 DEPTH 18 1 1.3498960706844993 1 2 15 2 15 1 0 124 69 2575 23664806 81600 861.59312438964844 5.9085999999999999 1037.7388000000001 120960 61298 1 0 5898240 4423680 4423680 4426406 4492800 197 150 215 347 1666 0 0 0 0 69 0 0 0 0 3 +396 1783756553218112900 DEPTH 23 1 1.2493997797320904 0.89181818181818207 3 13 3 13 0 0 125 54 2524 23664794 81600 860.10586547851562 5.9229000000000003 1041.1006 120960 57748 1 0 5898240 4423680 4423680 4426394 4492800 182 150 178 171 1843 0 0 0 0 54 0 0 0 0 0 +397 1783756554271767800 DEPTH 43 1 1.1608939170019634 0.69181818181818178 3 11 3 11 0 0 146 32 2597 23664875 81600 859.17254638671875 5.9166999999999996 1042.3312000000001 120960 58002 1 0 5898240 4423680 4423680 4426473 4492800 255 150 186 164 1842 0 0 0 1 31 0 0 0 0 0 +398 1783756555476742000 DEPTH 32 1 1.149186989141646 0.30818181818181822 1 9 1 9 1 0 131 53 2581 23664880 81600 853.83332824707031 5.9279000000000002 1159.3858 120960 61029 1 0 5898240 4423680 4423680 4426479 4492800 150 150 150 150 1981 0 0 0 0 53 0 0 0 0 1 +399 1783756556535221900 DEPTH 24 1 1.1653454104920873 0.78363636363636369 4 11 4 11 0 0 149 44 2519 23664826 81600 858.27018737792969 5.9155999999999995 1057.3110999999999 120960 57294 1 0 5898240 4423680 4423680 4426426 4492800 214 156 155 215 1779 0 0 0 0 44 0 0 0 0 0 +400 1783756557592944200 DEPTH 26 1 1.1377820335662023 0.60818181818181816 1 12 1 12 1 0 105 26 2599 23664862 81600 853.66375732421875 5.9264000000000001 1030.0198 120960 59734 1 0 5898240 4423680 4423680 4426462 4492800 221 152 166 272 1788 0 0 0 0 26 0 0 0 0 1 +401 1783756558640745000 DEPTH 58 1 1.1303165689251378 0.69999999999999996 2 12 2 12 0 0 133 19 2591 23664914 81600 858.64048767089844 5.9077999999999999 1035.232 120960 59121 1 0 5898240 4423680 4423680 4426511 4492800 151 155 150 171 1964 0 0 0 0 19 0 0 0 0 0 +402 1783756559670549900 DEPTH 34 1 1.1296543524568712 0.70818181818181825 1 13 1 13 1 0 109 18 2601 23664832 81600 847.74827575683594 5.9409000000000001 1017.2352 120960 63494 1 0 5898240 4423680 4423680 4426430 4492800 204 150 244 200 1803 0 0 0 0 18 0 0 0 0 3 +403 1783756560738412700 DEPTH 18 1 1.1692400226522093 1 2 15 2 14 1 0 124 61 2587 23664849 81600 855.1842041015625 5.920399999999999 1036.5894000000001 120960 50481 1 0 5898240 4423680 4423680 4426448 4492800 229 150 242 465 1501 0 0 0 0 61 0 0 0 0 2 +404 1783756561793633000 DEPTH 46 1 1.1568218120797684 1 2 15 2 15 1 0 120 21 2568 23664944 81600 863.15725708007812 5.9146999999999998 1040.9752000000001 120960 57888 1 0 5898240 4423680 4423680 4426543 4492800 235 150 150 188 1845 0 0 0 0 21 0 0 0 0 1 +405 1783756562851730200 DEPTH 27 1 1.1397673006646263 0.71636363636363642 0 14 0 14 0 0 159 30 2550 23664856 81600 856.49842834472656 5.9060999999999995 1035.877 120960 57924 1 0 5898240 4423680 4423680 4426453 4492800 173 156 162 156 1903 0 0 1 0 29 0 0 0 0 0 +406 1783756563913291200 DEPTH 57 1 1.1280706379830052 0.69999999999999996 2 12 2 12 1 0 135 64 2507 23664839 81600 853.76707458496094 5.9774000000000003 1028.6052 120960 58311 1 0 5898240 4423680 4423680 4426437 4492800 197 156 156 197 1801 1 0 0 0 63 0 0 0 0 2 +407 1783756564971537300 DEPTH 22 1 1.1229375267575454 0.69181818181818178 3 11 3 11 0 0 132 31 2600 23664831 81600 859.46453857421875 5.9194999999999993 1043.5658000000001 120960 57170 1 0 5898240 4423680 4423680 4426430 4492800 184 150 204 183 1879 0 0 0 1 30 0 0 0 0 0 +408 1783756566030710100 DEPTH 25 1 1.1226553421302221 0.69181818181818178 3 11 3 11 0 0 123 18 2582 23664956 81600 858.74874877929688 5.9437999999999995 1040.6731 120960 57917 1 0 5898240 4423680 4423680 4426555 4492800 175 150 165 151 1941 0 0 0 0 18 0 0 0 0 0 +409 1783756567076997500 DEPTH 47 1 1.0889945759987554 0.59999999999999998 2 11 2 11 0 0 117 22 2599 23664867 81600 863.35890197753906 5.9012000000000002 1045.0616 120960 68810 1 0 5898240 4423680 4423680 4426466 4492800 150 150 150 150 1999 0 0 0 0 22 0 0 0 0 0 +410 1783756568139894000 DEPTH 0 1 1.0880725067451902 0.60818181818181816 1 12 1 12 1 0 93 26 2570 23664893 81600 852.0526123046875 5.9042000000000003 1022.8302 120960 68560 1 0 5898240 4423680 4423680 4426493 4492800 168 156 177 213 1856 0 0 5 0 21 0 0 0 0 2 +411 1783756569203026300 DEPTH 18 1 1.1943813476080809 0.89999999999999991 2 14 2 14 0 0 124 54 2602 23664867 81600 850.24543762207031 5.9321000000000002 1034.626 120960 41223 1 0 5898240 4423680 4423680 4426465 4492800 209 150 246 419 1578 0 1 0 0 53 0 0 0 0 0 +412 1783756570254925400 DEPTH 51 1 1.1464190069839806 0.69181818181818178 3 11 3 11 0 0 100 35 2555 23664825 81600 855.04071044921875 5.9719999999999995 1040.4133999999999 120960 59706 1 0 5898240 4423680 4423680 4426425 4492800 150 150 150 150 1955 0 0 0 1 34 0 0 0 0 0 +413 1783756571287186800 DEPTH 23 1 1.1632980070028731 0.89181818181818207 3 13 3 13 0 0 125 48 2515 23664914 81600 852.92024230957031 5.9464000000000006 1031.1665 120960 46367 1 0 5898240 4423680 4423680 4426512 4492800 193 150 176 181 1815 0 0 0 0 48 0 0 0 0 0 +414 1783756572323087500 DEPTH 15 1 1.1696843245454422 0.79181818181818187 3 12 3 11 1 0 104 33 2533 23664928 81600 861.23725891113281 5.9095999999999993 1034.8364999999999 120960 57763 1 0 5898240 4423680 4423680 4426527 4492800 186 150 165 320 1712 0 0 0 0 33 0 0 0 0 1 +415 1783756573381723500 DEPTH 6 1 1.119756909101282 0.69181818181818178 3 11 3 11 0 0 122 19 2558 23664894 81600 853.69548034667969 5.9298999999999999 1036.4226000000001 120960 59741 1 0 5898240 4423680 4423680 4426491 4492800 181 150 195 228 1804 0 0 3 0 16 0 0 0 0 0 +416 1783756574431740600 DEPTH 46 1 1.1629013490021372 1 2 15 2 15 0 0 120 29 2559 23664893 81600 851.74357604980469 5.8861999999999997 1037.5825 120960 47090 1 0 5898240 4423680 4423680 4426493 4492800 233 150 150 228 1798 0 0 0 0 29 0 0 0 0 0 +417 1783756575462635000 DEPTH 4 1 1.122256334183338 0.70818181818181825 1 13 1 13 1 0 64 24 2469 23664897 81600 850.07339477539062 5.9009999999999998 1019.3561 120960 64724 1 0 5898240 4423680 4423680 4426496 4492800 158 150 189 284 1688 0 0 0 1 23 0 0 0 0 1 +418 1783756576516351000 DEPTH 19 1 1.0875952090775041 0.59999999999999998 2 11 2 11 0 0 136 40 2604 23664809 81600 853.73330688476562 5.9177999999999997 1026.491 120960 68671 1 0 5898240 4423680 4423680 4426409 4492800 157 150 154 211 1932 0 0 0 0 40 0 0 0 0 0 +419 1783756577554394200 DEPTH 18 1 1.1752750451590377 0.89999999999999991 2 14 2 14 1 0 124 49 2579 23664758 81600 846.512451171875 5.9529999999999994 1036.8851 120960 28768 1 0 5898240 4423680 4423680 4426357 4492800 216 150 251 449 1513 2 0 0 0 47 0 0 0 0 1 +420 1783756578587091700 DEPTH 43 1 1.1316452489690354 0.69181818181818178 3 11 3 11 0 0 146 17 2600 23664809 81600 850.23297119140625 5.9123999999999999 1031.5497 120960 46459 1 0 5898240 4423680 4423680 4426408 4492800 270 150 183 181 1816 1 0 0 0 16 0 0 0 0 0 +421 1783756579626106800 DEPTH 24 1 1.1313150563921484 0.78363636363636369 4 11 4 11 0 0 149 44 2533 23664869 81600 853.32150268554688 5.9094999999999995 1037.8493000000001 120960 45735 1 0 5898240 4423680 4423680 4426467 4492800 227 154 157 235 1760 0 0 0 0 44 0 0 0 0 0 +422 1783756580672505400 DEPTH 55 1 1.0875613068338665 0.60818181818181816 1 12 1 12 1 0 155 46 2560 23664820 81600 862.38906860351562 5.9242999999999997 1045.1482000000001 120960 64209 1 0 5898240 4423680 4423680 4426419 4492800 176 156 181 191 1856 0 0 0 0 46 0 0 0 0 1 +423 1783756581701996400 DEPTH 20 1 1.0864944140503394 0.59999999999999998 2 11 2 11 0 0 123 21 2567 23664811 81600 853.30314636230469 5.8759999999999994 1028.2607 120960 69024 1 0 5898240 4423680 4423680 4426410 4492800 165 150 299 294 1659 0 0 0 0 21 0 0 0 0 0 +424 1783756582761298800 DEPTH 35 1 1.0850080514850626 0.59999999999999998 2 11 2 11 0 0 171 53 2521 23664900 81600 857.72370910644531 6.1555000000000009 1043.981 120960 68542 1 0 5898240 4423680 4423680 4426500 4492800 156 153 150 150 1912 0 0 0 0 53 0 0 0 0 0 +425 1783756583811646700 DEPTH 28 1 1.0848918311024258 0.60818181818181816 1 12 1 12 0 0 152 40 2520 23664842 81600 855.43118286132812 6.0855999999999995 1034.4211 120960 68741 1 0 5898240 4423680 4423680 4426442 4492800 156 150 160 164 1890 0 0 0 0 40 0 0 0 0 0 +426 1783756584853987200 DEPTH 5 1 1.084792028659971 0.59999999999999998 2 11 2 11 0 0 97 19 2586 23664821 81600 848.43516540527344 5.9257 1020.7258 120960 68267 1 0 5898240 4423680 4423680 4426420 4492800 150 156 178 229 1873 0 0 0 0 19 0 0 0 0 0 +427 1783756585059785800 REFRESH 13 0 0.7061139288228836 0.0081818181818181686 1 6 1 6 0 0 187 1 415 3943901 55200 148.31922912597656 0.98999999999999999 186.36850000000001 20160 14765 0 0 983040 737280 737280 737501 748800 28 26 28 30 303 0 0 0 0 1 0 0 0 0 0 +428 1783756585260513900 REFRESH 14 0 1.0336343573769478 0.51636363636363636 0 12 0 12 0 0 125 10 415 3943913 55200 149.54495239257812 0.98599999999999999 185.5026 20160 14437 0 0 983040 737280 737280 737513 748800 29 26 30 59 271 0 0 0 0 10 0 0 0 0 0 +429 1783756585556622100 REFRESH 12 0 0.96622337421247728 0.39181818181818184 3 8 3 8 0 0 189 6 412 3943946 55200 149.18569946289062 0.9859 178.64089999999999 20160 14874 0 0 983040 737280 737280 737546 748800 28 26 28 27 303 0 0 0 0 6 0 0 0 0 0 +430 1783756585735870900 REFRESH 51 0 1.0685040745846723 0.69181818181818178 3 11 3 11 0 0 100 10 406 3943932 55200 148.80665588378906 0.98450000000000004 177.91419999999999 20160 12035 0 0 983040 737280 737280 737532 748800 128 25 43 100 110 0 0 0 0 10 0 0 0 0 0 +431 1783756585917006600 REFRESH 18 0 1.1981588675058674 0.89999999999999991 2 14 2 14 0 0 124 10 418 3943925 55200 151.04103088378906 0.98319999999999996 179.9717 20160 12520 0 0 983040 737280 737280 737525 748800 80 25 76 128 109 0 0 0 0 10 0 0 0 0 0 +432 1783756586146285600 REFRESH 11 0 0.77720681780917644 0.11636363636363646 0 8 0 8 0 0 108 3 413 3943901 55200 149.90336608886719 0.98409999999999997 213.63550000000001 20160 14726 0 0 983040 737280 737280 737501 748800 30 25 35 28 295 0 0 0 0 3 0 0 0 0 0 +433 1783756586326063600 REFRESH 34 0 1.1256326229299576 0.70818181818181825 1 13 1 13 0 0 109 2 423 3943912 55200 148.18098449707031 0.98599999999999999 178.57480000000001 20160 13640 0 0 983040 737280 737280 737512 748800 104 25 87 46 161 0 0 0 0 2 0 0 0 0 0 +434 1783756586523033600 REFRESH 45 0 0.84202022678586874 0.19999999999999993 2 7 2 7 0 0 160 7 422 3943902 55200 149.76614379882812 0.98460000000000003 183.79839999999999 20160 14830 0 0 983040 737280 737280 737502 748800 37 26 26 26 307 0 0 0 0 7 0 0 0 0 0 +435 1783756586701386000 REFRESH 19 0 1.0009336443818435 0.59999999999999998 2 11 2 11 0 0 136 9 417 3943911 55200 149.30841064453125 0.98939999999999995 177.28880000000001 20160 12513 0 0 983040 737280 737280 737511 748800 30 25 30 61 271 0 0 0 0 9 0 0 0 0 0 +436 1783756586882345300 REFRESH 26 0 1.126595018827353 0.60818181818181816 1 12 1 12 0 0 105 5 430 3943914 55200 149.97795104980469 0.98570000000000002 179.7945 20160 12807 0 0 983040 737280 737280 737514 748800 115 26 37 85 167 0 0 0 0 5 0 0 0 0 0 +437 1783756587094915900 REFRESH 21 0 0.91652148011521051 0.3163636363636364 0 10 0 10 1 0 180 9 414 3943897 55200 150.92735290527344 1.444 195.8723 20160 14736 0 0 983040 737280 737280 737496 748800 28 26 25 27 308 0 0 0 0 9 0 0 0 0 1 +438 1783756587297230100 REFRESH 8 0 0.70033212457106808 0 2 5 2 5 0 0 231 7 413 3943898 55200 150.71334838867188 0.99670000000000003 184.44139999999999 20160 14793 0 0 983040 737280 737280 737498 748800 27 26 33 26 301 0 0 0 0 7 0 0 0 0 0 +439 1783756587490021700 REFRESH 29 0 1.0851350471733849 0.60818181818181816 1 12 1 12 0 0 128 8 414 3943923 55200 148.50151062011719 0.98819999999999997 178.05629999999999 20160 13766 0 0 983040 737280 737280 737522 748800 32 26 28 37 291 0 0 0 0 8 0 0 0 0 0 +440 1783756587695108300 REFRESH 20 0 0.99995105230293391 0.59999999999999998 2 11 2 11 0 0 123 7 422 3943911 55200 149.21113586425781 0.98470000000000002 178.21080000000001 20160 12585 0 0 983040 737280 737280 737511 748800 33 25 93 101 170 0 0 0 0 7 0 0 0 0 0 +441 1783756587874619500 REFRESH 27 0 1.1354127037045314 0.71636363636363642 0 14 0 14 0 0 159 6 416 3943915 55200 149.04421997070312 0.98540000000000005 178.39150000000001 20160 12252 0 0 983040 737280 737280 737515 748800 101 26 59 30 200 0 0 0 0 6 0 0 0 0 0 +442 1783756588094915300 REFRESH 56 0 0.70895117836793131 0 2 5 2 5 0 0 222 5 413 3943898 55200 149.31455993652344 0.98209999999999997 195.92310000000001 20160 14742 0 0 983040 737280 737280 737498 748800 27 26 29 26 305 0 0 0 0 5 0 0 0 0 0 +443 1783756588301254700 REFRESH 30 0 0.84007373052110634 0.20818181818181827 1 8 1 8 0 0 143 11 411 3943896 55200 149.08518981933594 0.98829999999999996 189.5496 20160 14779 0 0 983040 737280 737280 737496 748800 29 26 28 29 299 0 0 0 0 11 0 0 0 0 0 +444 1783756588499682900 REFRESH 53 0 0.78082667452494903 0.11636363636363646 0 8 0 8 0 0 154 7 415 3943907 55200 149.97605895996094 0.98460000000000003 184.92830000000001 20160 14849 0 0 983040 737280 737280 737507 748800 27 26 30 26 306 0 0 0 0 7 0 0 0 0 0 +445 1783756588702478600 REFRESH 36 0 1.0825567392547886 0.5918181818181818 3 10 3 10 0 0 123 10 421 3943898 55200 149.56031799316406 0.99450000000000005 181.9641 20160 13662 0 0 983040 737280 737280 737497 748800 43 26 28 39 285 0 0 0 0 10 0 0 0 0 0 +446 1783756588883053500 REFRESH 46 0 1.2895567346089556 1 2 15 2 15 0 0 120 9 411 3943914 55200 149.86239624023438 0.98399999999999999 179.4084 20160 12134 0 0 983040 737280 737280 737514 748800 106 26 25 78 176 0 0 0 0 9 0 0 0 0 0 +447 1783756589070975400 REFRESH 24 0 1.1575397965322136 0.78363636363636369 4 11 4 11 0 0 150 11 416 3943912 55200 151.06626892089844 0.97929999999999995 186.33160000000001 20160 12019 0 0 983040 737280 737280 737511 748800 123 26 45 70 152 0 0 0 1 10 0 0 0 0 0 +448 1783756589300776500 REFRESH 17 0 0.70966131755250217 0.016363636363636417 0 7 0 7 0 0 200 8 413 3943913 55200 149.38418579101562 0.98450000000000004 208.3579 20160 14753 0 0 983040 737280 737280 737513 748800 27 26 29 32 299 0 0 0 0 8 0 0 0 0 0 +449 1783756589500766200 REFRESH 33 0 0.77538069552125533 0.10818181818181814 1 7 1 7 0 0 186 6 418 3943915 55200 149.32070922851562 0.98529999999999995 184.37639999999999 20160 14749 0 0 983040 737280 737280 737515 748800 27 26 26 27 312 0 0 0 0 6 0 0 0 0 0 +450 1783756589698121400 REFRESH 47 0 1.0829353183406312 0.59999999999999998 2 11 2 11 0 0 117 9 416 3943873 55200 149.45280456542969 0.99009999999999998 179.63300000000001 20160 12475 0 0 983040 737280 737280 737473 748800 37 25 36 26 292 0 0 0 0 9 0 0 0 0 0 +451 1783756589907957700 REFRESH 16 0 0.77185451275104622 0.099999999999999964 2 6 2 6 0 0 191 8 416 3943917 55200 150.34060668945312 0.98480000000000001 184.53450000000001 20160 14639 0 0 983040 737280 737280 737517 748800 27 26 26 26 311 0 2 0 0 6 0 0 0 0 0 +452 1783756590096172000 REFRESH 55 0 1.0816921871439289 0.60818181818181816 1 12 1 12 0 0 155 8 415 3943900 55200 150.17575073242188 0.98850000000000005 186.93799999999999 20160 11984 0 0 983040 737280 737280 737500 748800 67 26 47 89 186 0 0 0 0 8 0 0 0 0 0 +453 1783756590275104500 REFRESH 40 0 1.0822880898538698 0.60818181818181816 1 12 1 12 0 0 126 11 418 3943916 55200 149.25106811523438 0.98629999999999995 177.792 20160 12674 0 0 983040 737280 737280 737516 748800 33 26 55 55 249 0 0 0 0 11 0 0 0 0 0 +454 1783756590476495800 REFRESH 50 0 0.96607271136409878 0.40000000000000002 2 9 2 9 0 0 138 4 423 3943898 55200 149.61868286132812 0.99080000000000001 188.4622 20160 14747 0 0 983040 737280 737280 737498 748800 26 25 28 26 318 0 0 0 0 4 0 0 0 0 0 +455 1783756590676497500 REFRESH 3 0 0.97353703127218916 0.40000000000000002 2 9 2 9 0 0 148 6 418 3943888 55200 149.15487670898438 0.98299999999999998 183.68620000000001 20160 14750 0 0 983040 737280 737280 737488 748800 26 26 28 28 310 0 0 0 0 6 0 0 0 0 0 +456 1783756590905101700 REFRESH 54 0 0.8405326224971218 0.20818181818181827 1 8 1 8 0 0 117 5 417 3943914 55200 148.93875122070312 0.98699999999999999 187.3485 20160 14772 0 0 983040 737280 737280 737514 748800 33 26 27 32 299 0 0 0 0 5 0 0 0 0 0 +457 1783756591086708400 REFRESH 37 0 1.0811152809610507 0.60818181818181816 1 12 1 12 0 0 143 9 409 3943902 55200 148.66636657714844 1.0565 180.482 20160 12558 0 0 983040 737280 737280 737500 748800 59 26 28 50 246 0 0 0 0 9 0 0 0 0 0 +458 1783756591264340700 REFRESH 6 0 1.1160165962691675 0.69181818181818178 3 11 3 11 0 0 122 4 414 3943932 55200 149.51181030273438 0.9819 176.42070000000001 20160 12592 0 0 983040 737280 737280 737531 748800 38 25 40 53 258 0 0 0 1 3 0 0 0 0 0 +459 1783756591476157600 REFRESH 48 0 0.97643691513301478 0.40000000000000002 2 9 2 9 0 0 171 7 417 3943913 55200 149.32684326171875 0.98860000000000003 191.90549999999999 20160 14640 0 0 983040 737280 737280 737513 748800 28 26 33 37 293 0 0 0 0 7 0 0 0 0 0 +460 1783756591658745000 REFRESH 23 0 1.2382923151295331 0.89181818181818207 3 13 3 13 0 0 125 8 413 3943899 55200 150.3477783203125 0.9869 181.4383 20160 12240 0 0 983040 737280 737280 737499 748800 146 26 35 42 164 0 0 0 0 8 0 0 0 0 0 +461 1783756591889384400 REFRESH 42 0 0.7742041208378031 0.099999999999999964 2 6 2 6 0 0 147 4 420 3943874 55200 150.33718872070312 0.9889 206.21549999999999 20160 14674 0 0 983040 737280 737280 737473 748800 32 26 27 28 307 0 0 0 0 4 0 0 0 0 0 +462 1783756592067768500 REFRESH 5 0 1.079012926415992 0.59999999999999998 2 11 2 11 0 0 97 4 408 3943894 55200 148.96153259277344 0.98150000000000004 177.2525 20160 12556 0 0 983040 737280 737280 737494 748800 28 26 79 65 210 0 0 0 0 4 0 0 0 0 0 +463 1783756592271826400 REFRESH 38 0 1.0417626277136471 0.5 2 10 2 10 0 0 126 11 416 3943904 55200 150.21670532226562 0.98219999999999996 179.17060000000001 20160 14699 0 0 983040 737280 737280 737504 748800 29 26 31 31 299 0 0 0 0 11 0 0 0 0 0 +464 1783756592452815000 REFRESH 28 0 1.0797255875872371 0.60818181818181816 1 12 1 12 0 0 152 4 404 3943906 55200 149.50521850585938 0.98750000000000004 179.8389 20160 12538 0 0 983040 737280 737280 737506 748800 42 26 35 31 270 0 0 0 0 4 0 0 0 0 0 +465 1783756592633685000 REFRESH 58 0 1.1266375971236475 0.69999999999999996 2 12 2 12 0 0 133 11 416 3943904 55200 150.582275390625 0.98250000000000004 179.7073 20160 12457 0 0 983040 737280 737280 737504 748800 38 26 25 45 282 0 0 0 0 11 0 0 0 0 0 +466 1783756592815271300 REFRESH 35 0 1.0793892839592463 0.59999999999999998 2 11 2 11 0 0 171 15 413 3943924 55200 149.82960510253906 0.99099999999999999 180.44130000000001 20160 12606 0 0 983040 737280 737280 737524 748800 63 26 29 35 260 0 0 0 0 15 0 0 0 0 0 +467 1783756593026855800 REFRESH 39 0 0.97049961962501108 0.39181818181818184 3 8 3 8 0 0 178 6 413 3943913 55200 149.93101501464844 0.98770000000000002 180.25700000000001 20160 14700 0 0 983040 737280 737280 737513 748800 27 25 25 28 308 0 0 0 0 6 0 0 0 0 0 +468 1783756593249345300 REFRESH 44 0 0.84249061254476332 0.19999999999999993 2 7 2 7 0 0 163 9 417 3943915 55200 150.50445556640625 0.98750000000000004 199.535 20160 14846 0 0 983040 737280 737280 737515 748800 26 26 28 27 310 0 0 0 0 9 0 0 0 0 0 +469 1783756593449393600 REFRESH 7 0 1.0843500991506794 0.60818181818181816 1 12 1 12 0 0 135 9 417 3943933 55200 149.82461547851562 0.98250000000000004 179.56020000000001 20160 12615 0 0 983040 737280 737280 737532 748800 38 26 42 77 234 0 0 0 0 9 0 0 0 0 0 +470 1783756593655942800 REFRESH 9 0 0.77277011923422756 0.099999999999999964 2 6 2 6 0 0 139 10 419 3943904 55200 149.52755737304688 0.98080000000000001 190.08000000000001 20160 14791 0 0 983040 737280 737280 737504 748800 29 25 34 28 303 0 0 0 0 10 0 0 0 0 0 +471 1783756593854510300 REFRESH 10 0 0.9784699968103352 0.4081818181818182 1 10 1 10 0 0 121 10 416 3943926 55200 148.81280517578125 0.98160000000000003 178.7071 20160 14643 0 0 983040 737280 737280 737526 748800 28 25 26 29 308 0 0 0 0 10 0 0 0 0 0 +472 1783756594095949000 REFRESH 2 0 0.90927647247176635 0.30000000000000004 2 8 2 8 0 0 146 9 415 3943917 55200 150.02009582519531 0.98519999999999996 189.59360000000001 20160 14733 0 0 983040 737280 737280 737517 748800 27 25 27 27 309 0 0 0 0 9 0 0 0 0 0 +473 1783756594279819000 REFRESH 43 0 1.1438445907511898 0.69181818181818178 3 11 3 11 0 0 146 10 416 3943933 55200 149.29306030273438 1.1293 182.7072 20160 12234 0 0 983040 737280 737280 737532 748800 140 25 37 55 159 0 0 0 0 10 0 0 0 0 0 +474 1783756594481755900 REFRESH 49 0 1.086331677004901 0.5918181818181818 3 10 3 10 0 0 133 7 416 3943902 55200 149.65664672851562 0.98260000000000003 179.00280000000001 20160 14532 0 0 983040 737280 737280 737501 748800 30 26 55 36 269 0 0 0 0 7 0 0 0 0 0 +475 1783756594661795400 REFRESH 57 0 1.1270048197898286 0.69999999999999996 2 12 2 12 0 0 136 6 414 3943907 55200 149.391357421875 0.98140000000000005 178.88480000000001 20160 12310 0 0 983040 737280 737280 737507 748800 120 26 35 71 162 0 0 0 0 6 0 0 0 0 0 +476 1783756594844206600 REFRESH 15 0 1.2021077651748322 0.69181818181818178 3 11 3 11 0 0 104 9 422 3943892 55200 151.04716491699219 1 181.25960000000001 20160 12087 0 0 983040 737280 737280 737492 748800 50 26 30 129 187 0 0 0 0 9 0 0 0 0 0 +477 1783756595064220300 REFRESH 1 0 0.77982437045499942 0.10818181818181814 1 7 1 7 0 0 131 4 414 3943909 55200 149.5152587890625 0.98560000000000003 190.93950000000001 20160 14883 0 0 983040 737280 737280 737509 748800 25 25 30 35 299 0 0 0 0 4 0 0 0 0 0 +478 1783756595247810500 REFRESH 25 0 1.1193775958963297 0.69181818181818178 3 11 3 11 0 0 123 7 420 3943892 55200 149.97113037109375 0.98929999999999996 182.34450000000001 20160 12121 0 0 983040 737280 737280 737492 748800 148 25 35 31 181 0 0 0 0 7 0 0 0 0 0 +479 1783756595481044600 REFRESH 52 0 0.84808719190304171 0.20818181818181827 1 8 1 8 0 0 110 5 419 3943904 55200 149.14738464355469 0.99590000000000001 208.20920000000001 20160 14716 0 0 983040 737280 737280 737504 748800 28 26 28 25 312 0 0 0 0 5 0 0 0 0 0 +480 1783756595689940100 REFRESH 31 0 0.76946158062730574 0.099999999999999964 2 6 2 6 0 0 137 6 418 3943921 55200 148.99404907226562 0.9819 184.3066 20160 14692 0 0 983040 737280 737280 737521 748800 30 26 25 29 308 0 0 0 0 6 0 0 0 0 0 +481 1783756595868124400 REFRESH 0 0 1.0835600476711025 0.60818181818181816 1 12 1 12 0 0 93 3 426 3943902 55200 148.58668518066406 0.98280000000000001 177.1643 20160 12535 0 0 983040 737280 737280 737501 748800 32 26 38 56 274 0 0 0 0 3 0 0 0 0 0 +482 1783756596067380000 REFRESH 4 0 1.1199465066606478 0.70818181818181825 1 13 1 13 0 0 64 5 403 3943891 55200 150.450439453125 0.98099999999999998 177.79939999999999 20160 13945 0 0 983040 737280 737280 737491 748800 27 25 34 45 272 0 0 0 0 5 0 0 0 0 0 +483 1783756596262766900 REFRESH 32 0 1.1171957416581781 0.30818181818181822 1 9 1 9 1 0 131 6 418 3943900 55200 148.86604309082031 0.98699999999999999 183.00620000000001 20160 13257 0 0 983040 737280 737280 737500 748800 66 25 46 44 237 0 0 0 0 6 0 0 0 0 1 +484 1783756596444934700 REFRESH 22 0 1.1198245780335074 0.69181818181818178 3 11 3 11 0 0 132 9 419 3943902 55200 150.40512084960938 0.99570000000000003 180.88130000000001 20160 12213 0 0 983040 737280 737280 737502 748800 82 27 49 39 222 0 0 0 0 9 0 0 0 0 0 +485 1783756596662636900 REFRESH 41 0 0.9719718122166372 0.4081818181818182 1 10 1 10 0 0 113 7 415 3943900 55200 149.78239440917969 0.98409999999999997 191.541 20160 14775 0 0 983040 737280 737280 737500 748800 27 26 27 26 309 0 0 0 0 7 0 0 0 0 0 +486 1783756597705069800 DEPTH 18 1 1.3132179195248179 0.89999999999999991 2 14 2 14 0 0 124 47 2600 23664889 81600 861.99488830566406 5.9047000000000001 1041.2479000000001 120960 61666 1 0 5898240 4423680 4423680 4426489 4492800 228 150 268 350 1604 0 0 0 0 47 0 0 0 0 0 +487 1783756598777362400 DEPTH 46 1 1.2855554907552902 1 2 15 2 15 1 0 123 27 2550 23664764 81600 860.30435180664062 5.9153000000000002 1042.8498999999999 120960 58208 1 0 5898240 4423680 4423680 4426363 4492800 250 150 150 238 1762 0 0 0 0 27 0 0 0 0 1 +488 1783756599856125200 DEPTH 23 1 1.2311023195727064 0.89181818181818207 3 13 3 13 0 0 125 54 2512 23664848 81600 863.25975036621094 5.9009999999999998 1040.0462 120960 57992 1 0 5898240 4423680 4423680 4426444 4492800 207 150 183 167 1805 0 0 0 0 54 0 0 0 0 0 +489 1783756600919034300 DEPTH 24 1 1.1542762091644472 0.78363636363636369 4 11 4 11 0 0 151 46 2528 23664807 81600 860.44342041015625 5.9291999999999998 1041.6769999999999 120960 57708 1 0 5898240 4423680 4423680 4426407 4492800 255 154 159 243 1717 0 0 1 0 45 0 0 0 0 0 +490 1783756601949281800 DEPTH 51 1 1.1321970586655663 0.69181818181818178 3 11 3 11 1 0 100 30 2540 23664923 81600 856.74006652832031 5.9007000000000005 1028.9357 120960 58743 1 0 5898240 4423680 4423680 4426523 4492800 150 150 150 150 1940 0 0 0 0 30 0 0 0 0 1 +491 1783756602990010000 DEPTH 27 1 1.1276417283692037 0.71636363636363642 0 14 0 14 0 0 159 34 2554 23664699 81600 858.64036560058594 5.942400000000001 1039.6020000000001 120960 58216 1 0 5898240 4423680 4423680 4426297 4492800 214 156 165 173 1846 0 0 0 0 34 0 0 0 0 0 +492 1783756604039569700 DEPTH 34 1 1.1145429894879026 0.70818181818181825 1 13 1 13 0 0 109 14 2586 23664895 81600 864.23245239257812 5.8755000000000006 1033.5779 120960 64909 1 0 5898240 4423680 4423680 4426492 4492800 262 150 259 209 1706 0 0 0 0 14 0 0 0 0 0 +493 1783756605103491600 DEPTH 26 1 1.1118571853506589 0.60818181818181816 1 12 1 12 1 0 106 23 2605 23664881 81600 863.78378295898438 5.8988000000000005 1041.6297 120960 60265 1 0 5898240 4423680 4423680 4426479 4492800 291 150 171 278 1715 1 0 0 1 21 1 0 0 0 1 +494 1783756606151925100 DEPTH 18 1 1.1286396549824587 0.89999999999999991 2 14 2 14 0 0 126 40 2597 23664868 81600 854.51263427734375 5.9207999999999998 1034.2041999999999 120960 50822 1 0 5898240 4423680 4423680 4426467 4492800 234 150 281 396 1536 1 3 0 0 36 0 0 0 0 0 +495 1783756607225828800 DEPTH 58 1 1.1221721546765875 0.69999999999999996 2 12 2 12 0 0 133 25 2572 23664890 81600 856.53616333007812 5.8994 1035.6926000000001 120960 59143 1 0 5898240 4423680 4423680 4426490 4492800 154 155 150 166 1947 0 0 0 0 25 0 0 0 0 0 +496 1783756608263171900 DEPTH 15 1 1.1374942204547382 0.69181818181818178 3 11 3 11 0 0 104 30 2534 23664903 81600 862.29606628417969 5.9185999999999996 1036.2094999999999 120960 57208 1 0 5898240 4423680 4423680 4426503 4492800 186 150 168 354 1676 0 0 0 0 30 0 0 0 0 0 +497 1783756609290453900 DEPTH 6 1 1.1063116466147886 0.69181818181818178 3 11 3 11 0 0 122 25 2547 23664810 81600 854.96403503417969 5.9403000000000006 1026.2002 120960 59795 1 0 5898240 4423680 4423680 4426407 4492800 188 150 218 268 1723 0 0 1 0 24 0 0 0 0 0 +498 1783756610352545000 DEPTH 46 1 1.1420527414872494 1 2 15 2 15 1 0 123 27 2572 23664866 81600 853.83001708984375 5.9506000000000006 1060.8529000000001 120960 47532 1 0 5898240 4423680 4423680 4426466 4492800 257 150 150 245 1770 0 0 0 0 27 0 0 0 0 1 +499 1783756611392385800 DEPTH 43 1 1.1359160047080459 0.69181818181818178 3 11 3 11 0 0 147 31 2599 23664854 81600 859.00881958007812 5.9224999999999994 1038.6049 120960 57939 1 0 5898240 4423680 4423680 4426452 4492800 312 150 195 176 1766 0 0 0 0 31 0 0 0 0 0 +500 1783756612424109400 DEPTH 29 1 1.0786105973119589 0.60818181818181816 1 12 1 12 0 0 128 40 2562 23664816 81600 854.72882080078125 5.8633000000000006 1030.502 120960 67874 1 0 5898240 4423680 4423680 4426416 4492800 155 156 150 157 1944 0 0 0 0 40 0 0 0 0 0 +501 1783756613490281200 DEPTH 7 1 1.0779076785906143 0.60818181818181816 1 12 1 12 0 0 137 38 2551 23664858 81600 857.53874206542969 5.9214000000000002 1040.3693000000001 120960 62378 1 0 5898240 4423680 4423680 4426457 4492800 162 150 166 156 1917 0 1 0 0 37 0 0 0 0 0 +502 1783756614546764600 DEPTH 57 1 1.1184359523891987 0.69999999999999996 2 12 2 12 1 0 140 50 2511 23664963 81600 856.18382263183594 5.9387999999999996 1038.4851000000001 120960 58209 1 0 5898240 4423680 4423680 4426561 4492800 203 156 156 185 1811 0 0 0 0 50 0 0 0 0 1 +503 1783756615655900500 DEPTH 23 1 1.1261032904154322 0.89181818181818207 3 13 3 13 1 0 125 59 2535 23664822 81600 853.83885192871094 5.9252000000000002 1035.0029999999999 120960 47365 1 0 5898240 4423680 4423680 4426421 4492800 224 150 185 171 1805 0 0 0 0 59 0 0 0 0 2 +504 1783756616685511000 DEPTH 18 1 1.1353432734198021 0.89999999999999991 2 14 2 14 0 0 128 41 2609 23664881 81600 850.22300720214844 5.9083000000000006 1028.5468000000001 120960 40314 1 0 5898240 4423680 4423680 4426481 4492800 246 150 289 469 1455 2 0 0 0 39 0 0 0 0 0 +505 1783756617760809300 DEPTH 25 1 1.1120434361817162 0.69181818181818178 3 11 3 11 0 0 123 12 2582 23664823 81600 859.22702026367188 5.9327999999999994 1037.9238 120960 57684 1 0 5898240 4423680 4423680 4426422 4492800 194 150 168 154 1916 0 0 0 0 12 0 0 0 0 0 +506 1783756618825155100 DEPTH 40 1 1.0776360240105183 0.60818181818181816 1 12 1 12 1 0 127 54 2597 23664799 81600 854.18486022949219 5.9333 1039.0601999999999 120960 63254 1 0 5898240 4423680 4423680 4426398 4492800 151 151 160 162 1973 0 0 0 0 54 0 0 0 0 1 +507 1783756619886094900 DEPTH 36 1 1.0772563347275494 0.5918181818181818 3 10 3 10 1 0 123 32 2587 23664847 81600 855.28730773925781 5.9092000000000002 1036.1982 120960 68230 1 0 5898240 4423680 4423680 4426446 4492800 150 150 152 163 1972 0 0 0 2 30 0 0 0 0 1 +508 1783756620961350900 DEPTH 49 1 1.0769540326139926 0.5918181818181818 3 10 3 10 1 0 133 42 2574 23664898 81600 853.46253967285156 5.9199000000000002 1029.8572999999999 120960 70337 1 0 5898240 4423680 4423680 4426497 4492800 156 150 176 172 1920 0 0 0 0 42 0 0 0 0 2 +509 1783756622020655400 DEPTH 47 1 1.0768553531233724 0.59999999999999998 2 11 2 11 0 0 119 18 2612 23664785 81600 856.50534057617188 5.9706000000000001 1058.0737999999999 120960 62496 1 0 5898240 4423680 4423680 4426383 4492800 150 150 150 150 2012 0 1 1 0 16 0 0 0 0 0 +510 1783756623075958200 DEPTH 46 1 1.148674135490233 1 2 15 2 15 0 0 123 26 2574 23664848 81600 848.91853332519531 5.8879999999999999 1033.1339 120960 37885 1 0 5898240 4423680 4423680 4426447 4492800 269 150 150 274 1731 0 0 0 0 26 0 0 0 0 0 +511 1783756624167212000 DEPTH 22 1 1.1144533106557066 0.69181818181818178 3 11 3 11 0 0 132 10 2603 23664887 81600 859.0096435546875 5.9752000000000001 1051.9851000000001 120960 57606 1 0 5898240 4423680 4423680 4426485 4492800 197 150 212 191 1853 0 0 0 0 10 0 0 0 0 0 +512 1783756625231839100 DEPTH 4 1 1.1117021037013823 0.70818181818181825 1 13 1 13 1 0 65 31 2474 23664755 81600 849.65347290039062 5.9232999999999993 1019.8468 120960 65863 1 0 5898240 4423680 4423680 4426355 4492800 169 150 217 316 1622 0 0 1 0 30 0 0 0 0 1 +513 1783756626282626600 DEPTH 24 1 1.1406807088128696 0.78363636363636369 4 11 4 11 0 0 151 41 2534 23664935 81600 854.01252746582031 5.9250999999999996 1033.2435 120960 46802 1 0 5898240 4423680 4423680 4426534 4492800 253 154 160 272 1695 0 0 0 0 41 0 0 0 0 0 +514 1783756627324081200 DEPTH 18 1 1.1231685922452361 0.89999999999999991 2 14 2 14 0 0 130 39 2612 23664820 81600 849.94923400878906 6.1198999999999995 1040.2511999999999 120960 27668 1 0 5898240 4423680 4423680 4426419 4492800 252 150 299 540 1371 1 0 0 0 38 0 0 0 0 0 +515 1783756628503837700 DEPTH 32 1 1.0828634188859863 0.30818181818181822 1 9 1 8 1 0 131 47 2577 23664903 81600 856.03578186035156 5.9135999999999997 1159.9874 120960 62503 1 0 5898240 4423680 4423680 4426501 4492800 150 150 150 150 1977 0 0 0 0 47 0 0 0 0 1 +516 1783756629567746900 DEPTH 37 1 1.0757508651231875 0.60818181818181816 1 12 1 12 0 0 143 12 2605 23664782 81600 852.40315246582031 5.9714 1033.3469 120960 63166 1 0 5898240 4423680 4423680 4426380 4492800 157 150 150 152 1996 0 0 0 0 12 0 0 0 0 0 +517 1783756630667742900 DEPTH 19 1 1.0757022122194515 0.59999999999999998 2 11 2 11 0 0 136 33 2604 23664844 81600 853.57872009277344 5.9344000000000001 1027.1359 120960 62398 1 0 5898240 4423680 4423680 4426443 4492800 160 150 163 224 1907 0 0 0 1 32 0 0 0 0 0 +518 1783756630845460500 REFRESH 4 0 0.91844960337936565 0.70818181818181825 1 13 1 13 0 0 65 5 403 3943904 55200 148.59674072265625 0.98509999999999998 176.53299999999999 20160 13097 0 0 983040 737280 737280 737504 748800 29 25 38 46 265 0 0 0 0 5 0 0 0 0 0 +519 1783756631052803600 REFRESH 25 0 0.99788231241064151 0.69181818181818178 3 11 3 11 0 0 123 6 420 3943906 55200 150.719482421875 0.98580000000000001 182.19659999999999 20160 12266 0 0 983040 737280 737280 737506 748800 152 25 33 29 181 0 0 0 0 6 0 0 0 0 0 +520 1783756631269517000 REFRESH 9 0 0.76628171175989035 0.099999999999999964 2 6 2 6 0 0 139 8 422 3943918 55200 149.607421875 0.98499999999999999 194.96539999999999 20160 14712 0 0 983040 737280 737280 737517 748800 28 25 37 30 302 0 0 0 0 8 0 0 0 0 0 +521 1783756631450043000 REFRESH 29 0 1.0334712890315401 0.60818181818181816 1 12 1 12 0 0 128 9 412 3943889 55200 149.20704650878906 0.98180000000000001 179.40989999999999 20160 12419 0 0 983040 737280 737280 737489 748800 57 26 28 38 263 0 0 0 0 9 0 0 0 0 0 +522 1783756631632421700 REFRESH 7 0 1.0326417440714344 0.60818181818181816 1 12 1 12 0 0 137 6 421 3943930 55200 149.749755859375 0.98480000000000001 181.23580000000001 20160 11845 0 0 983040 737280 737280 737530 748800 45 26 40 81 229 0 0 0 0 6 0 0 0 0 0 +523 1783756631834541000 REFRESH 1 0 0.7670428552887546 0.10818181818181814 1 7 1 7 0 0 131 6 417 3943913 55200 149.86854553222656 0.9849 186.8186 20160 14779 0 0 983040 737280 737280 737512 748800 25 25 49 57 261 0 0 1 1 4 0 0 0 0 0 +524 1783756632015088700 REFRESH 34 0 1.1116288612376615 0.70818181818181825 1 13 1 13 0 0 109 2 422 3943915 55200 149.30551147460938 0.99009999999999998 179.38040000000001 20160 13081 0 0 983040 737280 737280 737513 748800 107 25 78 37 175 0 0 0 0 2 0 0 0 0 0 +525 1783756632223054200 REFRESH 33 0 0.76596126470438153 0.10818181818181814 1 7 1 7 0 0 186 7 422 3943894 55200 150.20748901367188 1.0507 188.4563 20160 14782 0 0 983040 737280 737280 737494 748800 27 26 26 27 316 0 0 0 0 7 0 0 0 0 0 +526 1783756632422728500 REFRESH 16 0 0.76422433828314007 0.099999999999999964 2 6 2 6 0 0 192 5 416 3943895 55200 150.53106689453125 0.98150000000000004 183.24340000000001 20160 14786 0 0 983040 737280 737280 737495 748800 28 26 26 26 310 0 0 0 0 5 0 0 0 0 0 +527 1783756632604056000 REFRESH 24 0 1.0369786642909657 0.78363636363636369 4 11 4 11 0 0 151 7 414 3943927 55200 150.06002807617188 0.98229999999999995 180.1771 20160 12160 0 0 983040 737280 737280 737527 748800 132 26 47 78 131 0 0 0 0 7 0 0 0 0 0 +528 1783756632785214200 REFRESH 27 0 1.1240731635647518 0.71636363636363642 0 14 0 14 0 0 159 13 414 3943927 55200 150.61299133300781 0.98760000000000003 180.0787 20160 12168 0 0 983040 737280 737280 737526 748800 114 26 52 29 193 0 0 0 0 13 0 0 0 0 0 +529 1783756632980736900 REFRESH 55 0 1.0755273998342449 0.60818181818181816 1 12 1 12 1 0 155 11 414 3943919 55200 150.64166259765625 0.98929999999999996 180.71889999999999 20160 12046 0 0 983040 737280 737280 737519 748800 51 26 44 76 217 0 0 0 0 11 0 0 0 0 1 +530 1783756633198682800 REFRESH 48 0 0.96672343272606032 0.40000000000000002 2 9 2 9 0 0 171 7 422 3943900 55200 149.41696166992188 0.98709999999999998 202.78299999999999 20160 14754 0 0 983040 737280 737280 737500 748800 27 26 31 32 306 0 0 0 1 6 0 0 0 0 0 +531 1783756633379958200 REFRESH 0 0 1.0717107714674396 0.60818181818181816 1 12 1 12 0 0 93 9 420 3943899 55200 148.08883666992188 1.0046999999999999 180.1463 20160 12518 0 0 983040 737280 737280 737499 748800 33 26 40 66 255 0 0 0 0 9 0 0 0 0 0 +532 1783756633601569400 REFRESH 44 0 0.83495738461058167 0.19999999999999993 2 7 2 7 0 0 164 4 418 3943909 55200 150.51568603515625 0.98029999999999995 204.68020000000001 20160 14702 0 0 983040 737280 737280 737509 748800 26 26 27 26 313 0 0 0 0 4 0 0 0 0 0 +533 1783756633811169100 REFRESH 53 0 0.77279387559100354 0.11636363636363646 0 8 0 8 0 0 155 5 413 3943921 55200 149.58079528808594 0.98160000000000003 184.49359999999999 20160 14706 0 0 983040 737280 737280 737520 748800 27 26 32 26 302 0 0 0 0 5 0 0 0 0 0 +534 1783756634020409400 REFRESH 54 0 0.83015510505554702 0.20818181818181827 1 8 1 8 0 0 118 10 416 3943894 55200 149.32582092285156 0.98019999999999996 187.8595 20160 14777 0 0 983040 737280 737280 737494 748800 34 26 28 34 294 0 0 0 0 10 0 0 0 0 0 +535 1783756634214940700 REFRESH 43 0 1.1287564682075049 0.69181818181818178 3 11 3 11 0 0 147 11 416 3943904 55200 148.86604309082031 0.98680000000000001 178.1285 20160 12364 0 0 983040 737280 737280 737504 748800 133 25 35 46 177 1 0 0 0 10 0 0 0 0 0 +536 1783756634408960900 REFRESH 38 0 1.0350758123442581 0.5 2 10 2 10 0 0 126 8 417 3943920 55200 148.99098205566406 0.9889 179.0419 20160 14840 0 0 983040 737280 737280 737520 748800 32 26 36 39 284 1 0 0 0 7 0 0 0 0 0 +537 1783756634607111500 REFRESH 39 0 0.95981541708497198 0.39181818181818184 3 8 3 8 0 0 178 8 414 3943904 55200 149.51014709472656 0.97989999999999999 179.08330000000001 20160 14687 0 0 983040 737280 737280 737504 748800 27 25 25 28 309 0 0 0 0 8 0 0 0 0 0 +538 1783756634785426600 REFRESH 6 0 1.1033852498757746 0.69181818181818178 3 11 3 11 0 0 122 5 419 3943950 55200 149.1199951171875 0.98080000000000001 177.30940000000001 20160 12421 0 0 983040 737280 737280 737550 748800 67 25 46 75 206 0 0 0 0 5 0 0 0 0 0 +539 1783756634992499500 REFRESH 56 0 0.69878618919663271 0 2 5 2 5 0 0 223 9 410 3943904 55200 149.94329833984375 0.9819 188.9211 20160 14694 0 0 983040 737280 737280 737504 748800 29 26 31 30 294 0 0 0 0 9 0 0 0 0 0 +540 1783756635188919400 REFRESH 15 0 1.1756476543839476 0.69181818181818178 3 11 3 11 0 0 104 5 422 3943920 55200 150.89765930175781 0.98550000000000004 181.29179999999999 20160 12151 0 0 983040 737280 737280 737520 748800 51 26 30 128 187 0 0 0 0 5 0 0 0 0 0 +541 1783756635393098900 REFRESH 3 0 0.96356927315015239 0.40000000000000002 2 9 2 9 0 0 148 9 416 3943906 55200 149.1568603515625 1.2338 186.6782 20160 14783 0 0 983040 737280 737280 737506 748800 26 26 29 27 308 0 0 0 0 9 0 0 0 0 0 +542 1783756635575239300 REFRESH 57 0 1.1158322202419659 0.69999999999999996 2 12 2 12 0 0 140 8 415 3943892 55200 150.53414916992188 0.9849 180.91919999999999 20160 12302 0 0 983040 737280 737280 737491 748800 124 26 33 69 163 0 0 0 0 8 0 0 0 0 0 +543 1783756635783677600 REFRESH 50 0 0.95494231932566431 0.40000000000000002 2 9 2 9 0 0 138 6 418 3943912 55200 149.07402038574219 0.98680000000000001 183.18559999999999 20160 14677 0 0 983040 737280 737280 737512 748800 27 26 50 26 289 0 0 0 0 6 0 0 0 0 0 +544 1783756635991553800 REFRESH 41 0 0.96287202714402964 0.4081818181818182 1 10 1 10 0 0 113 5 412 3943910 55200 148.4769287109375 0.98009999999999997 186.5068 20160 14737 0 0 983040 737280 737280 737510 748800 29 26 27 26 304 0 0 0 0 5 0 0 0 0 0 +545 1783756636214510600 REFRESH 10 0 0.97217132071568535 0.4081818181818182 1 10 1 10 0 0 121 6 420 3943933 55200 149.45893859863281 0.98699999999999999 180.66069999999999 20160 14772 0 0 983040 737280 737280 737532 748800 28 25 27 30 310 0 0 0 0 6 0 0 0 0 0 +546 1783756636396207400 REFRESH 46 0 1.2758874116273351 1 2 15 2 15 0 0 123 9 415 3943918 55200 150.0948486328125 0.9879 180.44159999999999 20160 12402 0 0 983040 737280 737280 737518 748800 119 26 25 91 154 0 0 0 0 9 0 0 0 0 0 +547 1783756636579872600 REFRESH 20 0 1.0735020348300934 0.59999999999999998 2 11 2 11 0 0 123 8 423 3943905 55200 150.23411560058594 0.98750000000000004 182.57820000000001 20160 12435 0 0 983040 737280 737280 737505 748800 33 25 100 104 161 0 0 0 0 8 0 0 0 0 0 +548 1783756636791296800 REFRESH 8 0 0.69342448200409157 0 2 5 2 5 0 0 231 7 413 3943917 55200 150.80755615234375 0.9889 186.88120000000001 20160 14651 0 0 983040 737280 737280 737516 748800 27 25 31 26 304 1 0 0 0 6 0 0 0 0 0 +549 1783756636970078000 REFRESH 40 0 1.0730053238815611 0.60818181818181816 1 12 1 12 1 0 127 14 413 3943915 55200 148.48818969726562 0.98160000000000003 177.6925 20160 11920 0 0 983040 737280 737280 737515 748800 39 26 69 63 216 0 0 0 0 14 0 0 0 0 1 +550 1783756637196553100 REFRESH 42 0 0.76275428732305461 0.099999999999999964 2 6 2 6 0 0 147 6 418 3943897 55200 149.70597839355469 0.98409999999999997 201.80709999999999 20160 14795 0 0 983040 737280 737280 737497 748800 30 26 27 26 309 0 0 1 0 5 0 0 0 0 0 +551 1783756637418598000 REFRESH 37 0 1.0710917140240852 0.60818181818181816 1 12 1 12 0 0 143 6 411 3943906 55200 148.83226013183594 1.0447 179.3629 20160 11883 0 0 983040 737280 737280 737506 748800 82 26 28 47 228 0 0 0 0 6 0 0 0 0 0 +552 1783756637599397700 REFRESH 26 0 1.1035980011671653 0.60818181818181816 1 12 1 12 1 0 106 3 426 3943897 55200 150.76045227050781 0.98529999999999995 179.53450000000001 20160 12558 0 0 983040 737280 737280 737497 748800 132 26 38 85 145 0 0 0 0 3 0 0 0 0 1 +553 1783756637799796900 REFRESH 45 0 0.83421880613615573 0.19999999999999993 2 7 2 7 0 0 160 9 422 3943914 55200 150.08869934082031 0.99099999999999999 185.7842 20160 14742 0 0 983040 737280 737280 737514 748800 33 26 26 26 311 0 0 0 0 9 0 0 0 0 0 +554 1783756638035886500 REFRESH 11 0 0.76654338768341368 0.11636363636363646 0 8 0 8 1 0 108 5 412 3943900 55200 149.03193664550781 0.99590000000000001 214.4546 20160 14740 0 0 983040 737280 737280 737500 748800 31 25 46 29 281 0 0 0 0 5 0 0 0 0 1 +555 1783756638215875900 REFRESH 28 0 1.0703766585382821 0.60818181818181816 1 12 1 12 0 0 152 6 406 3943909 55200 149.06777954101562 0.98240000000000005 178.90629999999999 20160 12489 0 0 983040 737280 737280 737509 748800 32 26 34 29 285 0 0 0 0 6 0 0 0 0 0 +556 1783756638396692800 REFRESH 18 0 1.2625927036709479 0.89999999999999991 2 14 2 14 0 0 130 7 420 3943899 55200 150.90380859375 0.98740000000000006 179.7501 20160 12814 0 0 983040 737280 737280 737499 748800 98 25 75 116 106 0 0 0 0 7 0 0 0 0 0 +557 1783756638596634300 REFRESH 2 0 0.90219192640201173 0.30000000000000004 2 8 2 8 0 0 146 6 412 3943920 55200 149.78457641601562 0.98540000000000005 184.33920000000001 20160 14690 0 0 983040 737280 737280 737520 748800 27 25 31 28 301 0 0 0 0 6 0 0 0 0 0 +558 1783756638777778400 REFRESH 58 0 1.1187262492646872 0.69999999999999996 2 12 2 12 0 0 133 5 416 3943900 55200 149.62176513671875 0.98839999999999995 179.74369999999999 20160 12387 0 0 983040 737280 737280 737500 748800 46 26 25 43 276 0 0 0 0 5 0 0 0 0 0 +559 1783756638959734200 REFRESH 35 0 1.075594433134617 0.59999999999999998 2 11 2 11 0 0 171 11 413 3943898 55200 149.89715576171875 0.98699999999999999 180.80959999999999 20160 12466 0 0 983040 737280 737280 737498 748800 62 26 29 32 264 0 0 0 0 11 0 0 0 0 0 +560 1783756639158283800 REFRESH 12 0 0.95783547008125058 0.39181818181818184 3 8 3 8 0 0 190 14 411 3943911 55200 149.77023315429688 0.98509999999999998 179.9794 20160 14683 0 0 983040 737280 737280 737511 748800 28 26 29 28 300 0 0 0 0 14 0 0 0 0 0 +561 1783756639390337400 REFRESH 52 0 0.83706028098213481 0.20818181818181827 1 8 1 8 0 0 111 5 416 3943921 55200 147.95365905761719 0.98099999999999998 208.90270000000001 20160 14747 0 0 983040 737280 737280 737521 748800 29 26 29 26 306 0 0 0 0 5 0 0 0 0 0 +562 1783756639596525100 REFRESH 21 0 0.91100516519664976 0.3163636363636364 0 10 0 10 0 0 180 4 416 3943882 55200 149.87776184082031 0.98580000000000001 187.2236 20160 14717 0 0 983040 737280 737280 737482 748800 29 26 25 29 307 0 0 0 0 4 0 0 0 0 0 +563 1783756639798767100 REFRESH 31 0 0.76029419685952038 0.099999999999999964 2 6 2 6 0 0 137 1 420 3943895 55200 148.5875244140625 0.98660000000000003 184.37299999999999 20160 14753 0 0 983040 737280 737280 737494 748800 33 26 25 29 307 0 0 0 0 1 0 0 0 0 0 +564 1783756639981125400 REFRESH 51 0 1.1265620721601313 0.69181818181818178 3 11 3 11 0 0 100 4 411 3943900 55200 149.39546203613281 0.98970000000000002 180.5658 20160 12938 0 0 983040 737280 737280 737500 748800 127 25 41 94 124 0 0 0 0 4 0 0 0 0 0 +565 1783756640161539900 REFRESH 19 0 1.0708554410982569 0.59999999999999998 2 11 2 11 0 0 136 8 420 3943889 55200 149.44367980957031 0.98599999999999999 179.26130000000001 20160 11876 0 0 983040 737280 737280 737489 748800 48 26 38 90 218 0 0 0 2 6 0 0 0 0 0 +566 1783756640346105600 REFRESH 32 0 1.0911267467839862 0.20818181818181827 1 8 1 8 1 0 131 10 420 3943886 55200 150.14617919921875 0.98580000000000001 183.4606 20160 12910 0 0 983040 737280 737280 737486 748800 58 25 39 31 267 0 0 0 0 10 0 0 0 0 1 +567 1783756640525484100 REFRESH 5 0 1.069579100066071 0.59999999999999998 2 11 2 11 0 0 97 7 410 3943892 55200 148.91725158691406 0.9839 178.3236 20160 12491 0 0 983040 737280 737280 737492 748800 26 26 73 64 221 0 0 0 0 7 0 0 0 0 0 +568 1783756640706563700 REFRESH 22 0 1.1111100400374965 0.69181818181818178 3 11 3 11 0 0 132 8 423 3943920 55200 150.6826171875 0.98540000000000005 179.83799999999999 20160 12023 0 0 983040 737280 737280 737520 748800 77 26 46 40 234 0 0 0 0 8 0 0 0 0 0 +569 1783756640890905600 REFRESH 23 0 1.2224520731749733 0.89181818181818207 3 13 3 13 0 0 125 8 411 3943920 55200 150.88648986816406 0.9869 183.04679999999999 20160 12388 0 0 983040 737280 737280 737520 748800 145 26 34 41 165 0 0 0 0 8 0 0 0 0 0 +570 1783756641072544900 REFRESH 47 0 1.072224544749514 0.59999999999999998 2 11 2 11 0 0 119 10 419 3943901 55200 150.05804443359375 1.0561 180.4263 20160 11914 0 0 983040 737280 737280 737501 748800 61 25 44 26 263 0 0 0 0 10 0 0 0 0 0 +571 1783756641281672800 REFRESH 13 0 0.69418658538512468 0.0081818181818181686 1 6 1 6 0 0 187 3 416 3943882 55200 149.89312744140625 0.98799999999999999 184.92150000000001 20160 14707 0 0 983040 737280 737280 737482 748800 29 26 30 34 297 0 0 0 0 3 0 0 0 0 0 +572 1783756641462167000 REFRESH 36 0 1.0723880413788383 0.5918181818181818 3 10 3 10 0 0 124 10 416 3943923 55200 149.26336669921875 0.9839 179.38149999999999 20160 12483 0 0 983040 737280 737280 737523 748800 80 26 28 47 235 1 0 0 0 9 0 0 0 0 0 +573 1783756641696495500 REFRESH 17 0 0.70430756724890164 0.016363636363636417 0 7 0 7 0 0 202 4 413 3943943 55200 149.94432067871094 0.98070000000000002 210.29249999999999 20160 14733 0 0 983040 737280 737280 737543 748800 27 26 33 36 291 0 0 0 0 4 0 0 0 0 0 +574 1783756641875167400 REFRESH 49 0 1.0723621220679738 0.5918181818181818 3 10 3 10 0 0 133 7 416 3943889 55200 148.91929626464844 0.9879 177.54429999999999 20160 13407 0 0 983040 737280 737280 737489 748800 31 26 67 45 247 0 0 0 0 7 0 0 0 0 0 +575 1783756642075484200 REFRESH 30 0 0.8363610663145028 0.20818181818181827 1 8 1 8 0 0 144 5 412 3943858 55200 150.33343505859375 0.97989999999999999 184.82830000000001 20160 14652 0 0 983040 737280 737280 737457 748800 31 26 29 32 294 0 0 0 0 5 0 0 0 0 0 +576 1783756642274942100 REFRESH 14 0 1.0309701104524855 0.51636363636363636 0 12 0 12 0 0 126 6 417 3943904 55200 149.70880126953125 0.98629999999999995 184.94049999999999 20160 14339 0 0 983040 737280 737280 737504 748800 29 26 28 50 284 0 0 0 0 6 0 0 0 0 0 +577 1783756643312358400 DEPTH 46 1 1.2720537290693379 1 2 15 2 15 1 0 123 26 2567 23664765 81600 860.28825378417969 5.9089999999999998 1036.1505999999999 120960 58821 1 0 5898240 4423680 4423680 4426364 4492800 280 150 150 281 1706 0 0 0 0 26 0 0 0 0 1 +578 1783756644365643400 DEPTH 18 1 1.2195456765479098 0.89999999999999991 2 14 2 14 1 0 130 36 2601 23664873 81600 862.14982604980469 5.9085999999999999 1036.9284 120960 62544 1 0 5898240 4423680 4423680 4426473 4492800 263 150 303 361 1524 0 0 0 0 36 0 0 0 0 1 +579 1783756645422052500 DEPTH 15 1 1.1596213888554048 0.69181818181818178 3 11 3 11 0 0 104 40 2536 23664855 81600 861.68258666992188 5.8850999999999996 1042.3891000000001 120960 57699 1 0 5898240 4423680 4423680 4426455 4492800 205 150 168 347 1666 0 0 0 0 40 0 0 0 0 0 +580 1783756646565844600 DEPTH 24 1 1.1412089810615313 0.78363636363636369 4 11 4 11 0 0 151 37 2539 23664880 81600 862.87673950195312 5.9199000000000011 1044.4942000000001 120960 58032 1 0 5898240 4423680 4423680 4426476 4492800 273 153 158 239 1716 0 0 0 0 37 0 0 0 0 0 +581 1783756647605729700 DEPTH 43 1 1.1222748557319515 0.69181818181818178 3 11 3 11 0 0 147 24 2586 23664805 81600 859.99104309082031 5.9493 1038.7883999999999 120960 58419 1 0 5898240 4423680 4423680 4426403 4492800 367 150 197 202 1670 4 0 0 0 20 0 0 0 0 0 +582 1783756648666292000 DEPTH 27 1 1.12100765561739 0.71636363636363642 0 14 0 14 0 0 159 30 2548 23664871 81600 857.97589111328125 5.9117000000000006 1033.48 120960 57911 1 0 5898240 4423680 4423680 4426470 4492800 267 156 177 165 1783 0 0 0 0 30 0 0 0 0 0 +583 1783756649720017200 DEPTH 57 1 1.1102389573760312 0.69999999999999996 2 12 2 12 1 0 141 53 2510 23664864 81600 855.25201416015625 5.9591000000000003 1042.1405999999999 120960 58253 1 0 5898240 4423680 4423680 4426461 4492800 252 156 161 231 1710 0 0 0 2 51 0 0 0 0 2 +584 1783756650753429600 DEPTH 4 1 1.1016856846029404 0.70818181818181825 1 13 1 13 0 0 65 30 2480 23664728 81600 851.04240417480469 5.9452999999999996 1019.5814 120960 64858 1 0 5898240 4423680 4423680 4426328 4492800 185 150 232 310 1603 0 0 0 0 30 0 0 0 0 0 +585 1783756651817627200 DEPTH 23 1 1.1259253623268799 0.89181818181818207 3 13 3 13 1 0 125 55 2527 23664830 81600 860.26667785644531 5.9218999999999999 1040.9915000000001 120960 58569 1 0 5898240 4423680 4423680 4426428 4492800 238 150 183 168 1788 0 0 0 0 55 0 0 0 0 2 +586 1783756652855259600 DEPTH 58 1 1.1095622960310854 0.69999999999999996 2 12 2 12 0 0 133 18 2575 23664825 81600 857.97958374023438 5.9797000000000002 1036.4090000000001 120960 59322 1 0 5898240 4423680 4423680 4426422 4492800 161 155 150 171 1938 0 0 0 0 18 0 0 0 0 0 +587 1783756653908289300 DEPTH 34 1 1.1014803306160186 0.70818181818181825 1 13 1 13 1 0 110 16 2582 23664884 81600 847.52772521972656 5.9260999999999999 1031.473 120960 63898 1 0 5898240 4423680 4423680 4426483 4492800 320 150 279 218 1615 0 0 0 0 16 0 0 0 0 1 +588 1783756654976574000 DEPTH 25 1 1.101180402895372 0.69181818181818178 3 11 3 11 0 0 124 20 2577 23664904 81600 857.56448364257812 5.8705999999999996 1036.6623999999999 120960 57809 1 0 5898240 4423680 4423680 4426504 4492800 206 150 165 152 1904 0 0 0 0 20 0 0 0 0 0 +589 1783756656035445800 DEPTH 46 1 1.1390240452305851 1 2 15 2 15 0 0 123 29 2571 23664956 81600 853.37417602539062 5.9211 1036.7523000000001 120960 48662 1 0 5898240 4423680 4423680 4426554 4492800 289 150 150 332 1650 0 0 0 0 29 0 0 0 0 0 +590 1783756657073330900 DEPTH 6 1 1.0957534169035417 0.69181818181818178 3 11 3 11 1 0 122 25 2559 23664818 81600 852.59231567382812 5.9153999999999991 1024.2916 120960 59465 1 0 5898240 4423680 4423680 4426414 4492800 189 150 228 288 1704 0 0 1 3 21 0 0 0 0 1 +591 1783756658110025100 DEPTH 26 1 1.0882234150157017 0.60818181818181816 1 12 1 12 1 0 107 18 2611 23664878 81600 854.27902221679688 5.9584000000000001 1035.5228 120960 59504 1 0 5898240 4423680 4423680 4426478 4492800 396 150 179 329 1557 3 0 1 0 14 3 0 0 0 0 +592 1783756659157305000 DEPTH 51 1 1.114233449723496 0.69181818181818178 3 11 3 11 1 0 102 53 2531 23664817 81600 857.54164123535156 5.9226000000000001 1034.4215999999999 120960 60433 1 0 5898240 4423680 4423680 4426415 4492800 151 150 150 152 1928 0 3 0 0 50 0 0 0 0 1 +593 1783756660226373700 DEPTH 18 1 1.1409783910968232 0.89999999999999991 2 14 2 14 0 0 130 28 2595 23664789 81600 856.09164428710938 5.9110999999999994 1036.1926000000001 120960 52121 1 0 5898240 4423680 4423680 4426386 4492800 267 150 308 403 1467 0 0 0 0 28 0 0 0 0 0 +594 1783756661310603000 DEPTH 22 1 1.1051423978090171 0.69181818181818178 3 11 3 11 1 0 134 31 2598 23664895 81600 859.77912902832031 5.9945000000000004 1051.2346 120960 57506 1 0 5898240 4423680 4423680 4426493 4492800 233 150 222 191 1802 0 1 0 0 30 0 0 0 0 1 +595 1783756662364953500 DEPTH 55 1 1.0714324080573761 0.60818181818181816 1 12 1 12 0 0 155 41 2560 23664821 81600 861.84208679199219 5.9335000000000004 1053.1579999999999 120960 58800 1 0 5898240 4423680 4423680 4426421 4492800 191 156 195 193 1825 0 0 0 0 41 0 0 0 0 0 +596 1783756663413903900 DEPTH 35 1 1.0705127871545188 0.59999999999999998 2 11 2 11 0 0 172 55 2522 23664871 81600 858.52056884765625 5.9334000000000007 1035.5758000000001 120960 62413 1 0 5898240 4423680 4423680 4426470 4492800 160 150 150 150 1912 0 0 0 0 55 0 0 0 0 0 +597 1783756664455819100 DEPTH 29 1 1.0690927008507951 0.60818181818181816 1 12 1 12 0 0 128 34 2568 23664769 81600 853.24041748046875 6.1172000000000004 1029.4665 120960 62026 1 0 5898240 4423680 4423680 4426369 4492800 156 156 150 156 1950 0 0 0 0 34 0 0 0 0 0 +598 1783756665510512900 DEPTH 40 1 1.0687685270617779 0.60818181818181816 1 12 1 12 1 0 128 43 2608 23664866 81600 854.46638488769531 5.9142999999999999 1032.6668999999999 120960 58359 1 0 5898240 4423680 4423680 4426466 4492800 156 150 162 179 1961 0 1 0 0 42 0 0 0 0 2 +599 1783756666548763600 DEPTH 0 1 1.0673088028226276 0.60818181818181816 1 12 1 12 1 0 93 26 2575 23664819 81600 852.044189453125 5.9516 1026.4811 120960 62156 1 0 5898240 4423680 4423680 4426419 4492800 178 156 185 226 1830 0 0 0 0 26 0 0 0 0 2 +600 1783756667607654800 DEPTH 20 1 1.0670204893039419 0.59999999999999998 2 11 2 11 0 0 124 24 2582 23664930 81600 857.23341369628906 5.9255999999999993 1034.9278999999999 120960 62145 1 0 5898240 4423680 4423680 4426528 4492800 178 150 322 402 1530 0 0 0 0 24 0 0 0 0 0 +601 1783756668654193000 DEPTH 46 1 1.1360671172037908 1 2 15 2 15 0 0 124 21 2586 23664714 81600 849.14710998535156 5.9287999999999998 1045.3124 120960 38290 1 0 5898240 4423680 4423680 4426314 4492800 294 150 151 363 1628 0 0 0 0 21 0 0 0 0 0 +602 1783756669696223300 DEPTH 23 1 1.1318338316929564 0.89181818181818207 3 13 3 13 0 0 126 51 2520 23664879 81600 854.7576904296875 6.0274999999999999 1040.9141999999999 120960 47421 1 0 5898240 4423680 4423680 4426478 4492800 252 150 188 183 1747 1 0 0 0 50 0 0 0 0 0 +603 1783756670750141000 DEPTH 15 1 1.1396376657752556 0.69181818181818178 3 11 3 11 0 0 105 33 2541 23664812 81600 855.70127868652344 5.9565000000000001 1052.7781 120960 46320 1 0 5898240 4423680 4423680 4426411 4492800 213 150 168 404 1606 0 0 0 0 33 0 0 0 0 0 +604 1783756671785285000 DEPTH 24 1 1.1282101978244847 0.78363636363636369 4 11 4 11 0 0 151 40 2537 23664866 81600 853.88865661621094 5.9066000000000001 1033.9730999999999 120960 46896 1 0 5898240 4423680 4423680 4426464 4492800 279 152 156 243 1707 0 0 0 0 40 0 0 0 0 0 +605 1783756672821770200 DEPTH 47 1 1.0672013392168267 0.59999999999999998 2 11 2 11 0 0 120 16 2601 23664797 81600 856.90434265136719 5.8978999999999999 1035.1463000000001 120960 58931 1 0 5898240 4423680 4423680 4426397 4492800 159 150 150 150 1992 0 2 0 0 14 0 0 0 0 0 +606 1783756673872236600 DEPTH 36 1 1.0670333868714008 0.5918181818181818 3 10 3 10 1 0 125 38 2581 23664881 81600 856.78495788574219 6.0579000000000001 1049.2467999999999 120960 62452 1 0 5898240 4423680 4423680 4426480 4492800 157 150 153 175 1946 0 0 0 0 38 0 0 0 0 1 +607 1783756674916217500 DEPTH 43 1 1.1157893740674276 0.69181818181818178 3 11 3 11 0 0 147 20 2593 23664874 81600 851.33439636230469 5.9100000000000001 1029.5019 120960 47600 1 0 5898240 4423680 4423680 4426474 4492800 376 150 194 211 1662 2 0 0 0 18 0 0 0 0 0 +608 1783756675950352100 DEPTH 7 1 1.0653202762494014 0.60818181818181816 1 12 1 12 1 0 138 35 2573 23664832 81600 857.74726867675781 5.9113999999999995 1032.9139 120960 58286 1 0 5898240 4423680 4423680 4426431 4492800 163 150 172 160 1928 0 0 0 0 35 0 0 0 0 1 +609 1783756676188730000 REFRESH 17 0 0.69287880160582516 0.016363636363636417 0 7 0 7 0 0 202 4 414 3943901 55200 149.53369140625 0.9849 213.0788 20160 14743 0 0 983040 737280 737280 737501 748800 27 26 34 36 291 0 0 0 0 4 0 0 0 0 0 +610 1783756676386534300 REFRESH 8 0 0.68571005879490521 0 2 5 2 5 0 0 231 5 413 3943910 55200 150.55564880371094 0.9859 182.50919999999999 20160 14740 0 0 983040 737280 737280 737510 748800 28 25 33 26 301 0 0 0 0 5 0 0 0 0 0 +611 1783756676663394300 REFRESH 54 0 0.82570517929028397 0.20818181818181827 1 8 1 8 0 0 118 2 415 3943908 55200 148.97970581054688 1.0251999999999999 205.14320000000001 20160 14697 0 0 983040 737280 737280 737508 748800 32 26 28 34 295 0 0 0 0 2 0 0 0 0 0 +612 1783756676858445400 REFRESH 28 0 1.0628427284447244 0.60818181818181816 1 12 1 12 0 0 152 7 402 3943916 55200 149.54086303710938 0.97389999999999999 179.66499999999999 20160 12332 0 0 983040 737280 737280 737516 748800 30 26 33 28 285 0 0 0 0 7 0 0 0 0 0 +613 1783756677038852200 REFRESH 43 0 0.91931554433810514 0.69181818181818178 3 11 3 11 0 0 147 9 430 3943904 55200 149.12409973144531 0.98570000000000002 179.21979999999999 20160 12316 0 0 983040 737280 737280 737504 748800 150 25 37 49 169 0 0 0 0 9 0 0 0 0 0 +614 1783756677222791900 REFRESH 15 0 1.0001426930670165 0.69181818181818178 3 11 3 11 0 0 105 9 420 3943947 55200 151.10246276855469 0.98729999999999996 182.59739999999999 20160 12266 0 0 983040 737280 737280 737546 748800 44 26 29 113 208 0 0 0 0 9 0 0 0 0 0 +615 1783756677427226900 REFRESH 10 0 0.9623296641924437 0.4081818181818182 1 10 1 10 0 0 121 8 422 3943910 55200 149.55801391601562 1.0369999999999999 181.68780000000001 20160 14679 0 0 983040 737280 737280 737510 748800 28 25 27 33 309 0 0 0 0 8 0 0 0 0 0 +616 1783756677637207800 REFRESH 21 0 0.8988850040562697 0.3163636363636364 0 10 0 10 0 0 181 5 417 3943904 55200 150.50035095214844 0.98729999999999996 186.90459999999999 20160 14825 0 0 983040 737280 737280 737502 748800 29 26 25 29 308 0 0 0 1 4 0 0 0 0 0 +617 1783756677858837300 REFRESH 42 0 0.7537419878364916 0.099999999999999964 2 6 2 6 0 0 147 5 421 3943884 55200 148.74009704589844 0.98129999999999995 200.49170000000001 20160 14805 0 0 983040 737280 737280 737484 748800 32 26 29 27 307 0 0 0 0 5 0 0 0 0 0 +618 1783756678042262400 REFRESH 24 0 1.0250850161429992 0.78363636363636369 4 11 4 11 0 0 151 4 414 3943929 55200 150.30989074707031 0.98860000000000003 182.30160000000001 20160 12322 0 0 983040 737280 737280 737529 748800 132 26 43 78 135 0 0 0 1 3 0 0 0 0 0 +619 1783756678222538000 REFRESH 58 0 1.1061719439056485 0.69999999999999996 2 12 2 12 0 0 133 10 416 3943906 55200 149.89823913574219 0.98599999999999999 179.07210000000001 20160 11987 0 0 983040 737280 737280 737506 748800 56 26 25 44 265 0 0 0 0 10 0 0 0 0 0 +620 1783756678404660500 REFRESH 6 0 1.0931754466520978 0.69181818181818178 3 11 3 11 0 0 122 4 414 3943901 55200 150.2607421875 0.98740000000000006 181.0179 20160 12094 0 0 983040 737280 737280 737500 748800 63 25 45 71 210 0 0 0 0 4 0 0 0 0 0 +621 1783756678585959300 REFRESH 5 0 1.062525525799308 0.59999999999999998 2 11 2 11 0 0 97 9 412 3943917 55200 149.22834777832031 1.1180000000000001 180.26679999999999 20160 12436 0 0 983040 737280 737280 737517 748800 32 26 92 73 189 0 0 0 0 9 0 0 0 0 0 +622 1783756678803824800 REFRESH 57 0 1.1084105201680325 0.69999999999999996 2 12 2 12 0 0 141 8 415 3943907 55200 149.80915832519531 0.97589999999999999 179.8562 20160 12030 0 0 983040 737280 737280 737507 748800 140 26 37 69 143 0 0 0 1 7 0 0 0 0 0 +623 1783756678983057600 REFRESH 37 0 1.0635887571729747 0.60818181818181816 1 12 1 12 0 0 143 3 410 3943917 55200 148.99404907226562 0.98350000000000004 178.08029999999999 20160 11888 0 0 983040 737280 737280 737517 748800 89 26 28 47 220 0 0 0 0 3 0 0 0 0 0 +624 1783756679165848400 REFRESH 25 0 1.098163295423525 0.69181818181818178 3 11 3 11 0 0 124 7 424 3943923 55200 151.72201538085938 0.99890000000000001 181.6172 20160 12099 0 0 983040 737280 737280 737523 748800 200 25 47 31 121 0 0 0 0 7 0 0 0 0 0 +625 1783756679347744400 REFRESH 20 0 1.0623123084382151 0.59999999999999998 2 11 2 11 0 0 124 8 421 3943906 55200 149.64224243164062 0.98919999999999997 180.72130000000001 20160 11891 0 0 983040 737280 737280 737506 748800 55 25 110 121 110 0 0 0 0 8 0 0 0 0 0 +626 1783756679533515400 REFRESH 35 0 1.0655690423591748 0.59999999999999998 2 11 2 11 0 0 172 11 414 3943913 55200 150.18984985351562 0.98299999999999998 183.8015 20160 11905 0 0 983040 737280 737280 737513 748800 86 26 30 40 232 0 0 0 0 11 0 0 0 0 0 +627 1783756679749241800 REFRESH 53 0 0.76356826189488802 0.11636363636363646 0 8 0 8 0 0 155 3 416 3943909 55200 150.22796630859375 0.98860000000000003 185.42330000000001 20160 14668 0 0 983040 737280 737280 737509 748800 27 26 33 26 304 0 0 0 0 3 0 0 0 0 0 +628 1783756679926947000 REFRESH 34 0 1.0996136878446041 0.70818181818181825 1 13 1 13 1 0 110 4 425 3943949 55200 148.70118713378906 0.98480000000000001 176.61340000000001 20160 12250 0 0 983040 737280 737280 737548 748800 157 25 91 46 106 0 0 0 0 4 0 0 0 0 1 +629 1783756680137514700 REFRESH 50 0 0.94672003574975971 0.40000000000000002 2 9 2 9 0 0 138 11 420 3943917 55200 150.25663757324219 0.9849 184.84620000000001 20160 14810 0 0 983040 737280 737280 737517 748800 26 26 46 26 296 0 0 0 0 11 0 0 0 0 0 +630 1783756680321247100 REFRESH 32 0 1.057067930929767 0.20818181818181827 1 8 1 8 0 0 131 8 418 3943951 55200 150.61299133300781 0.98140000000000005 182.63560000000001 20160 12817 0 0 983040 737280 737280 737551 748800 72 25 44 40 237 0 0 0 0 8 0 0 0 0 0 +631 1783756680524627200 REFRESH 13 0 0.68287993177927298 0.0081818181818181686 1 6 1 6 0 0 187 5 414 3943895 55200 149.62074279785156 0.98770000000000002 187.1319 20160 14815 0 0 983040 737280 737280 737494 748800 29 26 35 33 291 0 0 0 0 5 0 0 0 0 0 +632 1783756680707260600 REFRESH 22 0 1.1017800216729641 0.69181818181818178 3 11 3 11 0 0 135 11 420 3943920 55200 150.19622802734375 0.98640000000000005 181.41919999999999 20160 12076 0 0 983040 737280 737280 737520 748800 91 26 47 37 219 0 0 0 0 11 0 0 0 0 0 +633 1783756680943019100 REFRESH 1 0 0.75929398309965468 0.10818181818181814 1 7 1 7 0 0 131 11 412 3943912 55200 149.36268615722656 0.98950000000000005 189.60910000000001 20160 14653 0 0 983040 737280 737280 737512 748800 25 25 40 46 276 0 0 0 0 11 0 0 0 0 0 +634 1783756681122715600 REFRESH 51 0 1.1091895799647209 0.69181818181818178 3 11 3 11 0 0 102 10 403 3943919 55200 150.5269775390625 0.98519999999999996 178.51820000000001 20160 12916 0 0 983040 737280 737280 737519 748800 132 25 43 98 105 0 0 0 1 9 0 0 0 0 0 +635 1783756681330386100 REFRESH 45 0 0.82795925031779838 0.19999999999999993 2 7 2 7 0 0 160 4 419 3943888 55200 149.92662048339844 0.98729999999999996 185.41650000000001 20160 14691 0 0 983040 737280 737280 737488 748800 34 26 27 26 306 0 0 0 0 4 0 0 0 0 0 +636 1783756681526962500 REFRESH 30 0 0.82586452300520041 0.20818181818181827 1 8 1 8 0 0 144 7 415 3943909 55200 149.32377624511719 0.98180000000000001 184.7236 20160 14760 0 0 983040 737280 737280 737509 748800 31 26 29 34 295 0 0 0 0 7 0 0 0 0 0 +637 1783756681746027100 REFRESH 48 0 0.95888800679437536 0.40000000000000002 2 9 2 9 0 0 171 10 418 3943899 55200 148.63258361816406 0.98809999999999998 201.3717 20160 14815 0 0 983040 737280 737280 737499 748800 27 26 30 30 305 0 0 0 0 10 0 0 0 0 0 +638 1783756681958005900 REFRESH 47 0 1.0624097436359512 0.59999999999999998 2 11 2 11 0 0 120 10 421 3943936 55200 149.83270263671875 0.98699999999999999 181.8272 20160 12317 0 0 983040 737280 737280 737536 748800 100 25 54 26 216 0 0 0 0 10 0 0 0 0 0 +639 1783756682137663200 REFRESH 49 0 1.0649971296529865 0.5918181818181818 3 10 3 10 0 0 134 11 409 3943937 55200 149.09132385253906 0.98429999999999995 178.53059999999999 20160 13283 0 0 983040 737280 737280 737537 748800 32 26 73 52 226 0 0 0 1 10 0 0 0 0 0 +640 1783756682336619400 REFRESH 12 0 0.95262783938322571 0.39181818181818184 3 8 3 8 0 0 192 6 412 3943917 55200 149.8470458984375 0.9819 179.9443 20160 14721 0 0 983040 737280 737280 737517 748800 29 26 29 29 299 0 0 0 0 6 0 0 0 0 0 +641 1783756682541225700 REFRESH 33 0 0.75947628717518922 0.10818181818181814 1 7 1 7 0 0 186 2 415 3943906 55200 149.80198669433594 0.98099999999999998 185.41460000000001 20160 14756 0 0 983040 737280 737280 737506 748800 27 26 26 30 306 0 0 0 0 2 0 0 0 0 0 +642 1783756682721708700 REFRESH 26 0 1.0819821033293802 0.60818181818181816 1 12 1 12 1 0 107 3 427 3943939 55200 149.49990844726562 0.98480000000000001 179.36259999999999 20160 12155 0 0 983040 737280 737280 737539 748800 154 26 41 82 124 1 0 0 0 2 1 0 0 0 0 +643 1783756682930196000 REFRESH 56 0 0.69365701839309324 0 2 5 2 5 0 0 223 7 411 3943910 55200 149.31452941894531 0.98770000000000002 191.9778 20160 14587 0 0 983040 737280 737280 737510 748800 28 26 31 28 298 0 0 1 0 6 0 0 0 0 0 +644 1783756683115699400 REFRESH 23 0 1.2083738728528655 0.89181818181818207 3 13 3 13 1 0 127 12 415 3943899 55200 151.57350158691406 1.0007999999999999 184.4298 20160 12405 0 0 983040 737280 737280 737499 748800 149 26 34 36 170 1 0 0 0 11 0 0 0 0 1 +645 1783756683323950500 REFRESH 41 0 0.95378326720123263 0.4081818181818182 1 10 1 10 0 0 113 6 411 3943897 55200 149.29817199707031 0.97650000000000003 190.95509999999999 20160 14621 0 0 983040 737280 737280 737497 748800 30 26 27 26 302 0 0 0 0 6 0 0 0 0 0 +646 1783756683549268500 REFRESH 52 0 0.82712451022448352 0.20818181818181827 1 8 1 8 0 0 111 8 417 3943890 55200 148.32025146484375 0.98219999999999996 209.2166 20160 14748 0 0 983040 737280 737280 737490 748800 29 26 30 26 306 0 0 0 0 8 0 0 0 0 0 +647 1783756683748230900 REFRESH 14 0 1.0221783951334946 0.51636363636363636 0 12 0 12 1 0 126 12 404 3943887 55200 148.76261901855469 0.98760000000000003 186.32320000000001 20160 14164 0 0 983040 737280 737280 737487 748800 30 26 27 47 274 0 0 0 0 12 0 0 0 0 1 +648 1783756683945889800 REFRESH 2 0 0.89286955022613579 0.30000000000000004 2 8 2 8 0 0 146 6 414 3943903 55200 149.24493408203125 0.98850000000000005 185.22890000000001 20160 14801 0 0 983040 737280 737280 737503 748800 27 25 32 28 302 0 0 0 0 6 0 0 0 0 0 +649 1783756684172764600 REFRESH 11 0 0.75795560161540909 0.11636363636363646 0 8 0 8 0 0 108 3 412 3943886 55200 148.93055725097656 0.99270000000000003 214.03360000000001 20160 14716 0 0 983040 737280 737280 737486 748800 43 25 62 31 251 0 0 0 0 3 0 0 0 0 0 +650 1783756684368218600 REFRESH 19 0 1.0651487635586621 0.59999999999999998 2 11 2 11 0 0 136 9 419 3943899 55200 149.34732055664062 0.98109999999999997 180.79560000000001 20160 11832 0 0 983040 737280 737280 737499 748800 45 25 35 92 222 0 0 0 0 9 0 0 0 0 0 +651 1783756684549442400 REFRESH 29 0 1.0653848120418583 0.60818181818181816 1 12 1 12 0 0 128 9 413 3943898 55200 149.37094116210938 0.98260000000000003 179.82839999999999 20160 11903 0 0 983040 737280 737280 737498 748800 74 26 29 40 244 0 0 0 0 9 0 0 0 0 0 +652 1783756684742835800 REFRESH 38 0 1.0281339259747919 0.5 2 10 2 10 0 0 126 7 416 3943901 55200 149.92282104492188 0.97889999999999999 179.24709999999999 20160 14729 0 0 983040 737280 737280 737500 748800 33 26 36 41 280 0 0 0 0 7 0 0 0 0 0 +653 1783756684921734400 REFRESH 0 0 1.0637853677147593 0.60818181818181816 1 12 1 12 0 0 94 7 426 3943882 55200 149.07084655761719 0.9849 177.80760000000001 20160 11813 0 0 983040 737280 737280 737482 748800 38 26 45 74 243 0 0 0 1 6 0 0 0 0 0 +654 1783756685128784300 REFRESH 27 0 1.1183642511342196 0.71636363636363642 0 14 0 14 0 0 159 7 414 3943897 55200 150.73075866699219 0.98609999999999998 182.0806 20160 12034 0 0 983040 737280 737280 737497 748800 139 26 58 31 160 0 0 0 0 7 0 0 0 0 0 +655 1783756685329744000 REFRESH 9 0 0.76073588410426862 0.099999999999999964 2 6 2 6 0 0 139 7 417 3943913 55200 148.65408325195312 0.98529999999999995 188.24119999999999 20160 14682 0 0 983040 737280 737280 737513 748800 30 25 42 36 284 0 0 1 0 6 0 0 0 0 0 +656 1783756685532407200 REFRESH 16 0 0.75574469447692583 0.099999999999999964 2 6 2 6 0 0 192 6 413 3943915 55200 150.19929504394531 0.99380000000000002 187.09379999999999 20160 14725 0 0 983040 737280 737280 737515 748800 29 26 26 26 306 0 0 0 0 6 0 0 0 0 0 +657 1783756685713255000 REFRESH 18 0 1.2333883197011604 0.89999999999999991 2 14 2 14 0 0 130 6 416 3943880 55200 149.91973876953125 0.98570000000000002 179.74080000000001 20160 13381 0 0 983040 737280 737280 737480 748800 102 25 74 118 97 0 0 0 0 6 0 0 0 0 0 +658 1783756685907088200 REFRESH 39 0 0.953495989794096 0.39181818181818184 3 8 3 8 0 0 178 10 412 3943927 55200 149.8819580078125 0.98650000000000004 180.4342 20160 14653 0 0 983040 737280 737280 737527 748800 27 25 25 29 306 0 0 0 0 10 0 0 0 0 0 +659 1783756686111938200 REFRESH 46 0 1.2639875287997486 1 2 15 2 15 0 0 124 9 410 3943946 55200 150.21670532226562 0.98370000000000002 179.62270000000001 20160 12558 0 0 983040 737280 737280 737546 748800 115 26 26 91 152 0 0 0 0 9 0 0 0 0 0 +660 1783756686294316800 REFRESH 7 0 1.0616803843366101 0.60818181818181816 1 12 1 12 0 0 138 8 418 3943900 55200 150.14093017578125 0.98719999999999997 181.233 20160 12077 0 0 983040 737280 737280 737500 748800 59 26 39 79 215 0 0 0 0 8 0 0 0 0 0 +661 1783756686487718000 REFRESH 4 0 1.1005474223048251 0.70818181818181825 1 13 1 13 0 0 65 4 400 3943896 55200 149.48658752441406 1.0002 176.39189999999999 20160 12392 0 0 983040 737280 737280 737496 748800 31 25 39 49 256 0 0 0 0 4 0 0 0 0 0 +662 1783756686691487800 REFRESH 3 0 0.95840097270396207 0.40000000000000002 2 9 2 9 1 0 148 8 416 3943896 55200 149.72312927246094 0.99139999999999995 186.65880000000001 20160 14705 0 0 983040 737280 737280 737496 748800 26 26 32 29 303 0 0 0 0 8 0 0 0 0 1 +663 1783756686872631400 REFRESH 55 0 1.0675312990101014 0.60818181818181816 1 12 1 12 0 0 155 8 419 3943899 55200 150.30374145507812 0.98360000000000003 179.86439999999999 20160 11938 0 0 983040 737280 737280 737499 748800 54 26 45 71 223 0 0 0 0 8 0 0 0 0 0 +664 1783756687071292500 REFRESH 31 0 0.74741655256048634 0.099999999999999964 2 6 2 6 0 0 137 8 420 3943909 55200 149.37181091308594 0.97770000000000001 184.71299999999999 20160 14693 0 0 983040 737280 737280 737509 748800 34 26 25 31 304 0 0 0 0 8 0 0 0 0 0 +665 1783756687291181400 REFRESH 44 0 0.8249719683998894 0.19999999999999993 2 7 2 7 0 0 165 3 421 3943929 55200 150.0631103515625 1.0018 198.06979999999999 20160 14745 0 0 983040 737280 737280 737528 748800 26 26 29 30 310 0 0 0 0 3 0 0 0 0 0 +666 1783756687471502300 REFRESH 36 0 1.0626153124768716 0.5918181818181818 3 10 3 10 0 0 125 12 420 3943936 55200 149.56031799316406 0.98150000000000004 179.18510000000001 20160 11901 0 0 983040 737280 737280 737536 748800 89 26 28 50 227 0 0 0 0 12 0 0 0 0 0 +667 1783756687651753400 REFRESH 40 0 1.065168916161243 0.60818181818181816 1 12 1 12 0 0 128 6 415 3943902 55200 149.66476440429688 0.99019999999999997 179.08279999999999 20160 12264 0 0 983040 737280 737280 737502 748800 46 26 57 47 239 0 0 0 0 6 0 0 0 0 0 +668 1783756688691491800 DEPTH 23 1 1.1947414661415392 0.89181818181818207 3 13 3 13 0 0 127 44 2534 23664851 81600 862.32296752929688 5.9056000000000006 1038.5201999999999 120960 59602 1 0 5898240 4423680 4423680 4426451 4492800 277 150 191 177 1739 0 0 0 0 44 0 0 0 0 0 +669 1783756689743990300 DEPTH 15 1 1.1311827840268842 0.69181818181818178 3 11 3 11 0 0 106 35 2543 23664842 81600 863.00303649902344 5.9509999999999996 1039.3765000000001 120960 58005 1 0 5898240 4423680 4423680 4426439 4492800 220 150 168 391 1614 0 1 0 0 34 0 0 0 0 0 +670 1783756690836996800 DEPTH 24 1 1.1267207646840718 0.78363636363636369 4 11 4 11 0 0 152 38 2538 23664802 81600 861.93988037109375 5.9446999999999992 1060.5301999999999 120960 58718 1 0 5898240 4423680 4423680 4426401 4492800 304 151 160 237 1686 0 0 0 1 37 0 0 0 0 0 +671 1783756691903838000 DEPTH 51 1 1.1042847343459168 0.69181818181818178 3 11 3 11 1 0 102 39 2528 23664810 81600 858.61198425292969 5.9188999999999998 1033.816 120960 60782 1 0 5898240 4423680 4423680 4426409 4492800 151 150 150 150 1927 0 0 0 0 39 0 0 0 0 2 +672 1783756692938918500 DEPTH 58 1 1.1032735792359705 0.69999999999999996 2 12 2 12 0 0 133 18 2590 23664851 81600 857.69013977050781 5.9007000000000005 1033.8331000000001 120960 57436 1 0 5898240 4423680 4423680 4426451 4492800 160 155 150 178 1947 0 0 0 0 18 0 0 0 0 0 +673 1783756694011133200 DEPTH 43 1 1.1032480557534969 0.69181818181818178 3 11 3 11 0 0 147 16 2598 23664853 81600 858.31550598144531 6.0401000000000007 1050.6967 120960 58643 1 0 5898240 4423680 4423680 4426452 4492800 393 150 205 244 1606 0 0 0 0 16 0 0 0 0 0 +674 1783756695057707400 DEPTH 57 1 1.1032701744569626 0.69999999999999996 2 12 2 12 1 0 142 55 2516 23664834 81600 857.29237365722656 5.9076000000000004 1035.2063000000001 120960 57496 1 0 5898240 4423680 4423680 4426432 4492800 275 155 162 198 1726 0 0 0 3 52 0 0 0 0 3 +675 1783756696112211200 DEPTH 46 1 1.1702169721305151 1 2 15 2 15 1 0 124 18 2578 23664893 81600 862.53144836425781 5.9598000000000004 1042.7646 120960 60740 1 0 5898240 4423680 4423680 4426491 4492800 312 150 151 317 1648 0 0 0 0 18 0 0 0 0 1 +676 1783756697166295200 DEPTH 18 1 1.1617097332284116 0.89999999999999991 2 14 2 14 0 0 130 28 2592 23664818 81600 867.78738403320312 5.907 1043.0762999999999 120960 64285 0 0 5898240 4423680 4423680 4426417 4492800 277 150 320 394 1451 0 0 0 0 28 0 0 0 0 0 diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/run.tsv b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/run.tsv new file mode 100644 index 00000000..99248a7c --- /dev/null +++ b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/run.tsv @@ -0,0 +1,32 @@ +format szilassi-global-search-v4 +run_id de4543ee-663e-4ce7-a6b7-a40b4fc64533 +node_id LOOKICH +seed 1895278846 +topology_from 0 +topology_to 58 +backend cuda-fp32 +objective_version 4 +cuda_math standard-fp32 +cuda_chains_requested 0 +cuda_chains_effective 61440 +cuda_iterations_per_batch 64 +cuda_depth_batches 6 +cuda_session_cache 59 +algorithm hybrid-quality-diversity-v1 +control_baseline_fraction 0.25 +strategy_weights baseline:4,replica:3,adaptive:3,pbt:3,injected:3 +fresh_fractions depth:1/4,breadth:7/8,injected-protected +replica_exchange group:8,temperature-ratio:16 +pbt rotating-pairs,depth-chance:0.08,breadth-chance:0.04 +verification_quotas overall:128,per-strategy:max(8,overall/5),per-injected-seed:1 +accounted_fp32_steps proposal-iterations-plus-injection-pbt;setup-retries-excluded +map_elites_bins determinant:8,edge:8,turn:8,extent:8 +map_elites_max_cells_per_topology 4096 +cem diagonal-weighted,covariance-adaptation:0.18,new-injected-only +spsa adam:6,cpu-double,fp32-roundtrip,final-canonical-dd-gate +topology_scheduler ucb-plus-reward-plus-staleness,full-refresh-every-5 +topology_scheduler_mode worst-first +worst_priority_coefficient 0.65 +cpu_iterations_per_trial 50000 +degeneracy_formula worst-plus-0.05-rest +degeneracy_weight 0.01 diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000001_d86b95da.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000001_d86b95da.szar new file mode 100644 index 00000000..4ba94a41 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000001_d86b95da.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000002_fee40161.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000002_fee40161.szar new file mode 100644 index 00000000..abde32a4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000002_fee40161.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000003_6f345209.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000003_6f345209.szar new file mode 100644 index 00000000..57100d3a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000003_6f345209.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000004_26c5220a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000004_26c5220a.szar new file mode 100644 index 00000000..eb43f959 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000004_26c5220a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000005_893a2a65.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000005_893a2a65.szar new file mode 100644 index 00000000..bd19a639 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000005_893a2a65.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000006_c56566e7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000006_c56566e7.szar new file mode 100644 index 00000000..9e910e2e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000006_c56566e7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000007_00a94e05.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000007_00a94e05.szar new file mode 100644 index 00000000..5e514096 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000007_00a94e05.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000008_68c3c227.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000008_68c3c227.szar new file mode 100644 index 00000000..2d0a9178 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000008_68c3c227.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000009_e3a959ae.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000009_e3a959ae.szar new file mode 100644 index 00000000..acc617c2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000009_e3a959ae.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000010_a911e928.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000010_a911e928.szar new file mode 100644 index 00000000..2ad88576 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000010_a911e928.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000011_c2f6ba37.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000011_c2f6ba37.szar new file mode 100644 index 00000000..1217a701 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/archive/delta_00000000000000000011_c2f6ba37.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000001_2f0ad952.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000001_2f0ad952.szcp new file mode 100644 index 00000000..455a138d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000001_2f0ad952.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000002_62da926f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000002_62da926f.szcp new file mode 100644 index 00000000..eee4c023 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000002_62da926f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000003_34e4cca3.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000003_34e4cca3.szcp new file mode 100644 index 00000000..f045f1db Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000003_34e4cca3.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000004_6711ed61.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000004_6711ed61.szcp new file mode 100644 index 00000000..9cf529b6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000004_6711ed61.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000005_2dfca8ae.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000005_2dfca8ae.szcp new file mode 100644 index 00000000..ba163dcf Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000005_2dfca8ae.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000006_79aad598.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000006_79aad598.szcp new file mode 100644 index 00000000..d6e533ae Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000006_79aad598.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000007_292e4a9b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000007_292e4a9b.szcp new file mode 100644 index 00000000..ecacb3e1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000007_292e4a9b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000008_e06f1c7b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000008_e06f1c7b.szcp new file mode 100644 index 00000000..fa203129 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000008_e06f1c7b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000009_e58c7693.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000009_e58c7693.szcp new file mode 100644 index 00000000..bb6742d8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000009_e58c7693.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000010_cd293377.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000010_cd293377.szcp new file mode 100644 index 00000000..a0a10cb2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000010_cd293377.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000011_4e5abad1.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000011_4e5abad1.szcp new file mode 100644 index 00000000..0652454f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_000/checkpoints/checkpoint_00000000000000000011_4e5abad1.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000001_05127002.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000001_05127002.szar new file mode 100644 index 00000000..571ea828 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000001_05127002.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000002_32e883df.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000002_32e883df.szar new file mode 100644 index 00000000..abca1cef Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000002_32e883df.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000003_a05891dc.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000003_a05891dc.szar new file mode 100644 index 00000000..3a50cd9f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000003_a05891dc.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000004_0db98b0e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000004_0db98b0e.szar new file mode 100644 index 00000000..9a129204 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000004_0db98b0e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000005_80bd5d12.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000005_80bd5d12.szar new file mode 100644 index 00000000..6f7dc3ae Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000005_80bd5d12.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000006_e5203034.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000006_e5203034.szar new file mode 100644 index 00000000..ace47878 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000006_e5203034.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000007_7d6a2942.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000007_7d6a2942.szar new file mode 100644 index 00000000..5c68340d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/archive/delta_00000000000000000007_7d6a2942.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000001_f51b34c4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000001_f51b34c4.szcp new file mode 100644 index 00000000..f48773bc Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000001_f51b34c4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000002_d96bdcc1.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000002_d96bdcc1.szcp new file mode 100644 index 00000000..4ec046b1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000002_d96bdcc1.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000003_60b828f3.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000003_60b828f3.szcp new file mode 100644 index 00000000..83a3ed4a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000003_60b828f3.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000004_980e890d.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000004_980e890d.szcp new file mode 100644 index 00000000..ddfe2429 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000004_980e890d.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000005_0af4bdf8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000005_0af4bdf8.szcp new file mode 100644 index 00000000..690575e1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000005_0af4bdf8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000006_6a2db7c2.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000006_6a2db7c2.szcp new file mode 100644 index 00000000..23ba9323 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000006_6a2db7c2.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000007_a153aa02.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000007_a153aa02.szcp new file mode 100644 index 00000000..46175b53 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_001/checkpoints/checkpoint_00000000000000000007_a153aa02.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000001_4aedd649.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000001_4aedd649.szar new file mode 100644 index 00000000..c19a7294 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000001_4aedd649.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000002_81aa16f7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000002_81aa16f7.szar new file mode 100644 index 00000000..459d5ad0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000002_81aa16f7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000003_2a8cc07b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000003_2a8cc07b.szar new file mode 100644 index 00000000..10bf3527 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000003_2a8cc07b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000004_813ea11a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000004_813ea11a.szar new file mode 100644 index 00000000..1d155470 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000004_813ea11a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000005_02dc5c97.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000005_02dc5c97.szar new file mode 100644 index 00000000..f901245f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000005_02dc5c97.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000006_3e12fb93.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000006_3e12fb93.szar new file mode 100644 index 00000000..10fa3694 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000006_3e12fb93.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000007_f41cb0da.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000007_f41cb0da.szar new file mode 100644 index 00000000..02c0a887 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/archive/delta_00000000000000000007_f41cb0da.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000001_c33313fb.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000001_c33313fb.szcp new file mode 100644 index 00000000..2e8aef0b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000001_c33313fb.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000002_1b7bb6db.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000002_1b7bb6db.szcp new file mode 100644 index 00000000..7268629b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000002_1b7bb6db.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000003_3cb394b1.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000003_3cb394b1.szcp new file mode 100644 index 00000000..53833772 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000003_3cb394b1.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000004_716dea51.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000004_716dea51.szcp new file mode 100644 index 00000000..b0da8229 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000004_716dea51.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000005_91d14231.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000005_91d14231.szcp new file mode 100644 index 00000000..ebdea504 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000005_91d14231.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000006_cd8cd294.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000006_cd8cd294.szcp new file mode 100644 index 00000000..00d8ec3d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000006_cd8cd294.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000007_b5820efa.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000007_b5820efa.szcp new file mode 100644 index 00000000..9c6cfe81 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_002/checkpoints/checkpoint_00000000000000000007_b5820efa.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000001_9b4e2bc9.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000001_9b4e2bc9.szar new file mode 100644 index 00000000..8f3c39f9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000001_9b4e2bc9.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000002_23e5d9a5.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000002_23e5d9a5.szar new file mode 100644 index 00000000..207bd8cb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000002_23e5d9a5.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000003_252d1757.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000003_252d1757.szar new file mode 100644 index 00000000..c80dec89 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000003_252d1757.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000004_48142b21.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000004_48142b21.szar new file mode 100644 index 00000000..8fbd76ca Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000004_48142b21.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000005_774ed43a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000005_774ed43a.szar new file mode 100644 index 00000000..b31a94a6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000005_774ed43a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000006_9ead1ada.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000006_9ead1ada.szar new file mode 100644 index 00000000..d093086c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000006_9ead1ada.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000007_f61bc856.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000007_f61bc856.szar new file mode 100644 index 00000000..be3f916e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/archive/delta_00000000000000000007_f61bc856.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000001_f101d776.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000001_f101d776.szcp new file mode 100644 index 00000000..ffd9b705 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000001_f101d776.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000002_6c134ffa.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000002_6c134ffa.szcp new file mode 100644 index 00000000..72e36f72 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000002_6c134ffa.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000003_3aa02c71.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000003_3aa02c71.szcp new file mode 100644 index 00000000..299408c8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000003_3aa02c71.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000004_fa937663.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000004_fa937663.szcp new file mode 100644 index 00000000..a86bc2d9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000004_fa937663.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000005_f920c443.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000005_f920c443.szcp new file mode 100644 index 00000000..2f4088eb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000005_f920c443.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000006_04c2f225.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000006_04c2f225.szcp new file mode 100644 index 00000000..c03f48e0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000006_04c2f225.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000007_582f75a5.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000007_582f75a5.szcp new file mode 100644 index 00000000..638b0d06 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_003/checkpoints/checkpoint_00000000000000000007_582f75a5.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000001_fa547618.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000001_fa547618.szar new file mode 100644 index 00000000..19ed94d5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000001_fa547618.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000002_0d8bdb30.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000002_0d8bdb30.szar new file mode 100644 index 00000000..e41c9b67 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000002_0d8bdb30.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000003_f3d04782.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000003_f3d04782.szar new file mode 100644 index 00000000..a1835950 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000003_f3d04782.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000004_48c3a5ae.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000004_48c3a5ae.szar new file mode 100644 index 00000000..42cb83b6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000004_48c3a5ae.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000005_85488e95.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000005_85488e95.szar new file mode 100644 index 00000000..5b04397e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000005_85488e95.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000006_f7498bf6.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000006_f7498bf6.szar new file mode 100644 index 00000000..00c24402 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000006_f7498bf6.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000007_00744b51.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000007_00744b51.szar new file mode 100644 index 00000000..c11324f3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000007_00744b51.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000008_5487589e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000008_5487589e.szar new file mode 100644 index 00000000..38c740b6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000008_5487589e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000009_340059aa.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000009_340059aa.szar new file mode 100644 index 00000000..0791f52f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000009_340059aa.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000010_b2111c0b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000010_b2111c0b.szar new file mode 100644 index 00000000..3eebb371 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000010_b2111c0b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000011_8c6238e4.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000011_8c6238e4.szar new file mode 100644 index 00000000..02f18848 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000011_8c6238e4.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000012_30719e10.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000012_30719e10.szar new file mode 100644 index 00000000..3cde2d6d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/archive/delta_00000000000000000012_30719e10.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000001_c36bce3f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000001_c36bce3f.szcp new file mode 100644 index 00000000..e039942c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000001_c36bce3f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000002_9574f114.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000002_9574f114.szcp new file mode 100644 index 00000000..05f7a9cf Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000002_9574f114.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000003_aac4c2db.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000003_aac4c2db.szcp new file mode 100644 index 00000000..482b0de7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000003_aac4c2db.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000004_3454f27c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000004_3454f27c.szcp new file mode 100644 index 00000000..89f35310 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000004_3454f27c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000005_b6782bda.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000005_b6782bda.szcp new file mode 100644 index 00000000..39c5c33a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000005_b6782bda.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000006_1781c39f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000006_1781c39f.szcp new file mode 100644 index 00000000..b9b5b4e9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000006_1781c39f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000007_f15a9910.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000007_f15a9910.szcp new file mode 100644 index 00000000..bb992ff8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000007_f15a9910.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000008_55e8a0f9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000008_55e8a0f9.szcp new file mode 100644 index 00000000..e08e38de Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000008_55e8a0f9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000009_3559e3ef.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000009_3559e3ef.szcp new file mode 100644 index 00000000..3b65d2b5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000009_3559e3ef.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000010_a6267d6b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000010_a6267d6b.szcp new file mode 100644 index 00000000..bf911dcb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000010_a6267d6b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000011_4ce402f1.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000011_4ce402f1.szcp new file mode 100644 index 00000000..81241ee7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000011_4ce402f1.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000012_1bb3fd83.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000012_1bb3fd83.szcp new file mode 100644 index 00000000..6ae30c2c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_004/checkpoints/checkpoint_00000000000000000012_1bb3fd83.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000001_34062352.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000001_34062352.szar new file mode 100644 index 00000000..5f56610e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000001_34062352.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000002_c3a69f59.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000002_c3a69f59.szar new file mode 100644 index 00000000..5d37c15d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000002_c3a69f59.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000003_8c5adc9b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000003_8c5adc9b.szar new file mode 100644 index 00000000..71c4e29e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000003_8c5adc9b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000004_c8544c6c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000004_c8544c6c.szar new file mode 100644 index 00000000..593b0ca3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000004_c8544c6c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000005_85f8dbfc.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000005_85f8dbfc.szar new file mode 100644 index 00000000..9f0d7585 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000005_85f8dbfc.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000006_22e168be.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000006_22e168be.szar new file mode 100644 index 00000000..6998ec38 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000006_22e168be.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000007_4c95a7f8.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000007_4c95a7f8.szar new file mode 100644 index 00000000..9e0ff483 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000007_4c95a7f8.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000008_0b17134c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000008_0b17134c.szar new file mode 100644 index 00000000..dad1a1ef Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000008_0b17134c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000009_285df9ec.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000009_285df9ec.szar new file mode 100644 index 00000000..b8f4d991 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000009_285df9ec.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000010_51cd4eac.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000010_51cd4eac.szar new file mode 100644 index 00000000..dc792382 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/archive/delta_00000000000000000010_51cd4eac.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000001_35250615.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000001_35250615.szcp new file mode 100644 index 00000000..9fc57398 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000001_35250615.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000002_5cb53052.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000002_5cb53052.szcp new file mode 100644 index 00000000..94187c83 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000002_5cb53052.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000003_0e95e2ad.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000003_0e95e2ad.szcp new file mode 100644 index 00000000..fde64053 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000003_0e95e2ad.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000004_c3a5ab6f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000004_c3a5ab6f.szcp new file mode 100644 index 00000000..cdaf1f97 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000004_c3a5ab6f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000005_2bfd0de9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000005_2bfd0de9.szcp new file mode 100644 index 00000000..4c0c5865 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000005_2bfd0de9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000006_2e8487a0.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000006_2e8487a0.szcp new file mode 100644 index 00000000..91e7693f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000006_2e8487a0.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000007_747de933.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000007_747de933.szcp new file mode 100644 index 00000000..44198268 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000007_747de933.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000008_c1dffbcb.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000008_c1dffbcb.szcp new file mode 100644 index 00000000..4b0661ff Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000008_c1dffbcb.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000009_5aed1567.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000009_5aed1567.szcp new file mode 100644 index 00000000..ec2259fe Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000009_5aed1567.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000010_4d17c1c6.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000010_4d17c1c6.szcp new file mode 100644 index 00000000..7b2f94ef Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_005/checkpoints/checkpoint_00000000000000000010_4d17c1c6.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000001_08ccfa7f.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000001_08ccfa7f.szar new file mode 100644 index 00000000..b64dab0e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000001_08ccfa7f.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000002_4060b52e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000002_4060b52e.szar new file mode 100644 index 00000000..200a791c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000002_4060b52e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000003_03def3b6.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000003_03def3b6.szar new file mode 100644 index 00000000..09c13b2d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000003_03def3b6.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000004_1fb50437.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000004_1fb50437.szar new file mode 100644 index 00000000..f9168ae7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000004_1fb50437.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000005_ba5afbc2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000005_ba5afbc2.szar new file mode 100644 index 00000000..9570a538 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000005_ba5afbc2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000006_728d9a88.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000006_728d9a88.szar new file mode 100644 index 00000000..9aef320c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000006_728d9a88.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000007_5dc1328f.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000007_5dc1328f.szar new file mode 100644 index 00000000..ba4c1e97 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000007_5dc1328f.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000008_6265a9d7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000008_6265a9d7.szar new file mode 100644 index 00000000..ef696a7c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000008_6265a9d7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000009_01526a7c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000009_01526a7c.szar new file mode 100644 index 00000000..8e90afee Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000009_01526a7c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000010_54425341.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000010_54425341.szar new file mode 100644 index 00000000..8a23cccc Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000010_54425341.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000011_3c158203.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000011_3c158203.szar new file mode 100644 index 00000000..b35148d7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000011_3c158203.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000012_6dd71877.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000012_6dd71877.szar new file mode 100644 index 00000000..8d42f173 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/archive/delta_00000000000000000012_6dd71877.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000001_ef8b6552.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000001_ef8b6552.szcp new file mode 100644 index 00000000..c066d54b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000001_ef8b6552.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000002_d835d85d.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000002_d835d85d.szcp new file mode 100644 index 00000000..f3730075 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000002_d835d85d.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000003_44129d23.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000003_44129d23.szcp new file mode 100644 index 00000000..68786fda Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000003_44129d23.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000004_aea66f74.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000004_aea66f74.szcp new file mode 100644 index 00000000..58180271 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000004_aea66f74.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000005_c31c9c28.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000005_c31c9c28.szcp new file mode 100644 index 00000000..a5659869 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000005_c31c9c28.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000006_00c89204.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000006_00c89204.szcp new file mode 100644 index 00000000..dc10c8db Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000006_00c89204.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000007_e5739c22.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000007_e5739c22.szcp new file mode 100644 index 00000000..2ec81bcf Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000007_e5739c22.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000008_c1a233fa.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000008_c1a233fa.szcp new file mode 100644 index 00000000..addc7a26 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000008_c1a233fa.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000009_64f64cf9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000009_64f64cf9.szcp new file mode 100644 index 00000000..85af2c8f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000009_64f64cf9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000010_32a5e33c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000010_32a5e33c.szcp new file mode 100644 index 00000000..a87939ab Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000010_32a5e33c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000011_ed3f7346.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000011_ed3f7346.szcp new file mode 100644 index 00000000..5240f587 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000011_ed3f7346.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000012_4bf67648.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000012_4bf67648.szcp new file mode 100644 index 00000000..8391e50b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_006/checkpoints/checkpoint_00000000000000000012_4bf67648.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000001_2082d4a9.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000001_2082d4a9.szar new file mode 100644 index 00000000..da67d87a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000001_2082d4a9.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000002_64601b52.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000002_64601b52.szar new file mode 100644 index 00000000..7ce24a13 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000002_64601b52.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000003_2e1b4339.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000003_2e1b4339.szar new file mode 100644 index 00000000..a19bcbdf Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000003_2e1b4339.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000004_528bec7e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000004_528bec7e.szar new file mode 100644 index 00000000..fcd841a8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000004_528bec7e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000005_19eb3631.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000005_19eb3631.szar new file mode 100644 index 00000000..bfa57c69 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000005_19eb3631.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000006_5cd22119.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000006_5cd22119.szar new file mode 100644 index 00000000..87e55fb4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000006_5cd22119.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000007_0f00f24a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000007_0f00f24a.szar new file mode 100644 index 00000000..3319dd5d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000007_0f00f24a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000008_bf38372c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000008_bf38372c.szar new file mode 100644 index 00000000..e0a705e6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000008_bf38372c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000009_4cced8dd.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000009_4cced8dd.szar new file mode 100644 index 00000000..1a64fee4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000009_4cced8dd.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000010_7270ef40.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000010_7270ef40.szar new file mode 100644 index 00000000..6e18e149 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000010_7270ef40.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000011_46d4f60e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000011_46d4f60e.szar new file mode 100644 index 00000000..7126972b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000011_46d4f60e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000012_5e74b7b7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000012_5e74b7b7.szar new file mode 100644 index 00000000..c2f82435 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/archive/delta_00000000000000000012_5e74b7b7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000001_f2c1aa2f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000001_f2c1aa2f.szcp new file mode 100644 index 00000000..4adaad1d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000001_f2c1aa2f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000002_05b5b522.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000002_05b5b522.szcp new file mode 100644 index 00000000..722cd667 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000002_05b5b522.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000003_e9ed8641.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000003_e9ed8641.szcp new file mode 100644 index 00000000..2799af50 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000003_e9ed8641.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000004_a288d725.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000004_a288d725.szcp new file mode 100644 index 00000000..2f03ff60 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000004_a288d725.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000005_761141b9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000005_761141b9.szcp new file mode 100644 index 00000000..3cd29e57 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000005_761141b9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000006_f723510c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000006_f723510c.szcp new file mode 100644 index 00000000..33c4f9d5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000006_f723510c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000007_d83a9490.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000007_d83a9490.szcp new file mode 100644 index 00000000..19289eaa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000007_d83a9490.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000008_14012363.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000008_14012363.szcp new file mode 100644 index 00000000..d972ef5b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000008_14012363.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000009_f3290ff0.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000009_f3290ff0.szcp new file mode 100644 index 00000000..694c8053 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000009_f3290ff0.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000010_fdbdfc53.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000010_fdbdfc53.szcp new file mode 100644 index 00000000..ebea6dfb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000010_fdbdfc53.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000011_b5049d07.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000011_b5049d07.szcp new file mode 100644 index 00000000..14819ff8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000011_b5049d07.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000012_ed7a6762.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000012_ed7a6762.szcp new file mode 100644 index 00000000..c903268c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_007/checkpoints/checkpoint_00000000000000000012_ed7a6762.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000001_a1b17a32.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000001_a1b17a32.szar new file mode 100644 index 00000000..d4638516 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000001_a1b17a32.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000002_1c1d1131.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000002_1c1d1131.szar new file mode 100644 index 00000000..6589e585 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000002_1c1d1131.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000003_8c4f42c2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000003_8c4f42c2.szar new file mode 100644 index 00000000..4cbb0d91 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000003_8c4f42c2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000004_159117c9.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000004_159117c9.szar new file mode 100644 index 00000000..69f060b6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000004_159117c9.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000005_4f76fda0.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000005_4f76fda0.szar new file mode 100644 index 00000000..721a8abd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000005_4f76fda0.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000006_40727e1e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000006_40727e1e.szar new file mode 100644 index 00000000..2b7ee25d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000006_40727e1e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000007_60234d87.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000007_60234d87.szar new file mode 100644 index 00000000..b306db73 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/archive/delta_00000000000000000007_60234d87.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000001_53c04334.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000001_53c04334.szcp new file mode 100644 index 00000000..97d020c4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000001_53c04334.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000002_4360f5d4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000002_4360f5d4.szcp new file mode 100644 index 00000000..446cd853 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000002_4360f5d4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000003_6a86c4da.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000003_6a86c4da.szcp new file mode 100644 index 00000000..144e1adf Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000003_6a86c4da.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000004_5c4f873e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000004_5c4f873e.szcp new file mode 100644 index 00000000..a8ca11af Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000004_5c4f873e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000005_a8a3f3ed.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000005_a8a3f3ed.szcp new file mode 100644 index 00000000..985a288c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000005_a8a3f3ed.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000006_8607b94f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000006_8607b94f.szcp new file mode 100644 index 00000000..e39e6e97 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000006_8607b94f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000007_016b5eb5.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000007_016b5eb5.szcp new file mode 100644 index 00000000..d9e3bed2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_008/checkpoints/checkpoint_00000000000000000007_016b5eb5.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000001_899abfd9.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000001_899abfd9.szar new file mode 100644 index 00000000..d29ea79e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000001_899abfd9.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000002_1857232b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000002_1857232b.szar new file mode 100644 index 00000000..13a4b25a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000002_1857232b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000003_c8bbc6bf.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000003_c8bbc6bf.szar new file mode 100644 index 00000000..0cd1530b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000003_c8bbc6bf.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000004_210b98e2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000004_210b98e2.szar new file mode 100644 index 00000000..cfebb395 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000004_210b98e2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000005_fa055bbe.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000005_fa055bbe.szar new file mode 100644 index 00000000..54675452 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000005_fa055bbe.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000006_570abbde.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000006_570abbde.szar new file mode 100644 index 00000000..47176abd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000006_570abbde.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000007_4f6ea535.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000007_4f6ea535.szar new file mode 100644 index 00000000..aceb0c2d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/archive/delta_00000000000000000007_4f6ea535.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000001_b5346327.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000001_b5346327.szcp new file mode 100644 index 00000000..473d54cc Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000001_b5346327.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000002_32eedeca.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000002_32eedeca.szcp new file mode 100644 index 00000000..d7058afa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000002_32eedeca.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000003_dbe43f55.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000003_dbe43f55.szcp new file mode 100644 index 00000000..f1f70100 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000003_dbe43f55.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000004_d4308923.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000004_d4308923.szcp new file mode 100644 index 00000000..c540f6c7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000004_d4308923.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000005_b91dab5c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000005_b91dab5c.szcp new file mode 100644 index 00000000..d273158b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000005_b91dab5c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000006_27a1a591.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000006_27a1a591.szcp new file mode 100644 index 00000000..6f021e4a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000006_27a1a591.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000007_d8076722.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000007_d8076722.szcp new file mode 100644 index 00000000..39f121a2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_009/checkpoints/checkpoint_00000000000000000007_d8076722.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000001_c740e75c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000001_c740e75c.szar new file mode 100644 index 00000000..4eb3ced3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000001_c740e75c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000002_ec7c1fa5.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000002_ec7c1fa5.szar new file mode 100644 index 00000000..43d0b423 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000002_ec7c1fa5.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000003_0e6d74fb.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000003_0e6d74fb.szar new file mode 100644 index 00000000..60cd6cac Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000003_0e6d74fb.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000004_138b5d1e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000004_138b5d1e.szar new file mode 100644 index 00000000..a721bb29 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000004_138b5d1e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000005_e3228d33.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000005_e3228d33.szar new file mode 100644 index 00000000..4cf55f18 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000005_e3228d33.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000006_66607b8a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000006_66607b8a.szar new file mode 100644 index 00000000..7d4d504c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000006_66607b8a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000007_542b4dc1.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000007_542b4dc1.szar new file mode 100644 index 00000000..72f0fcca Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/archive/delta_00000000000000000007_542b4dc1.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000001_8cf6d475.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000001_8cf6d475.szcp new file mode 100644 index 00000000..35014a88 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000001_8cf6d475.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000002_597dc2ee.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000002_597dc2ee.szcp new file mode 100644 index 00000000..db38f393 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000002_597dc2ee.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000003_e51f8fb5.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000003_e51f8fb5.szcp new file mode 100644 index 00000000..1343a27d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000003_e51f8fb5.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000004_84342937.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000004_84342937.szcp new file mode 100644 index 00000000..a95b757e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000004_84342937.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000005_3bd6ce1f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000005_3bd6ce1f.szcp new file mode 100644 index 00000000..c1eaf5fb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000005_3bd6ce1f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000006_b3d5ce80.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000006_b3d5ce80.szcp new file mode 100644 index 00000000..43fbb6d9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000006_b3d5ce80.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000007_2be93130.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000007_2be93130.szcp new file mode 100644 index 00000000..2d54b59a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_010/checkpoints/checkpoint_00000000000000000007_2be93130.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000001_25e64689.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000001_25e64689.szar new file mode 100644 index 00000000..66561b1c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000001_25e64689.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000002_f3684aa7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000002_f3684aa7.szar new file mode 100644 index 00000000..02791e21 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000002_f3684aa7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000003_c68399c1.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000003_c68399c1.szar new file mode 100644 index 00000000..c3d120d5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000003_c68399c1.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000004_e7e27338.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000004_e7e27338.szar new file mode 100644 index 00000000..2911c441 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000004_e7e27338.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000005_6ee76df0.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000005_6ee76df0.szar new file mode 100644 index 00000000..7b62d40e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000005_6ee76df0.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000006_be0f7e06.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000006_be0f7e06.szar new file mode 100644 index 00000000..8a84ebb8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000006_be0f7e06.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000007_449d76d7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000007_449d76d7.szar new file mode 100644 index 00000000..7b19e695 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/archive/delta_00000000000000000007_449d76d7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000001_cb6d5c1a.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000001_cb6d5c1a.szcp new file mode 100644 index 00000000..cd224214 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000001_cb6d5c1a.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000002_dce497d6.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000002_dce497d6.szcp new file mode 100644 index 00000000..d37ffbbc Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000002_dce497d6.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000003_14433cd9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000003_14433cd9.szcp new file mode 100644 index 00000000..b35e8bed Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000003_14433cd9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000004_8202f560.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000004_8202f560.szcp new file mode 100644 index 00000000..c4ae24ba Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000004_8202f560.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000005_b736daa9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000005_b736daa9.szcp new file mode 100644 index 00000000..df23c3f4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000005_b736daa9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000006_4eae2f55.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000006_4eae2f55.szcp new file mode 100644 index 00000000..a4d6aa62 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000006_4eae2f55.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000007_9708bfe1.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000007_9708bfe1.szcp new file mode 100644 index 00000000..4a0e309c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_011/checkpoints/checkpoint_00000000000000000007_9708bfe1.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000001_ddc3c5d3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000001_ddc3c5d3.szar new file mode 100644 index 00000000..1cb0ae76 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000001_ddc3c5d3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000002_385a6939.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000002_385a6939.szar new file mode 100644 index 00000000..2e36a9d2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000002_385a6939.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000003_d1d63d15.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000003_d1d63d15.szar new file mode 100644 index 00000000..e3cd1c8a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000003_d1d63d15.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000004_5c8d1a90.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000004_5c8d1a90.szar new file mode 100644 index 00000000..8282d654 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000004_5c8d1a90.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000005_dcd1b6dc.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000005_dcd1b6dc.szar new file mode 100644 index 00000000..23f877c4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000005_dcd1b6dc.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000006_52e31634.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000006_52e31634.szar new file mode 100644 index 00000000..498e4ceb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000006_52e31634.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000007_7c06b4a0.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000007_7c06b4a0.szar new file mode 100644 index 00000000..e307c39b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/archive/delta_00000000000000000007_7c06b4a0.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000001_9b013dd4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000001_9b013dd4.szcp new file mode 100644 index 00000000..0390e47a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000001_9b013dd4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000002_328a7e46.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000002_328a7e46.szcp new file mode 100644 index 00000000..7042b376 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000002_328a7e46.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000003_0d94d8e4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000003_0d94d8e4.szcp new file mode 100644 index 00000000..f668a7db Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000003_0d94d8e4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000004_0df32979.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000004_0df32979.szcp new file mode 100644 index 00000000..42817925 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000004_0df32979.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000005_4df1aa78.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000005_4df1aa78.szcp new file mode 100644 index 00000000..d7de75e9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000005_4df1aa78.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000006_a403914e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000006_a403914e.szcp new file mode 100644 index 00000000..a6a92d7a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000006_a403914e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000007_6b2d5cde.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000007_6b2d5cde.szcp new file mode 100644 index 00000000..2e9f21df Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_012/checkpoints/checkpoint_00000000000000000007_6b2d5cde.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000001_c5434859.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000001_c5434859.szar new file mode 100644 index 00000000..3bdfbcdd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000001_c5434859.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000002_44c41064.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000002_44c41064.szar new file mode 100644 index 00000000..03ad4801 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000002_44c41064.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000003_8747a5ee.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000003_8747a5ee.szar new file mode 100644 index 00000000..bcabfcae Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000003_8747a5ee.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000004_6ec1a0b6.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000004_6ec1a0b6.szar new file mode 100644 index 00000000..bf8e9c58 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000004_6ec1a0b6.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000005_cfd2d3fa.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000005_cfd2d3fa.szar new file mode 100644 index 00000000..85b7eefa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000005_cfd2d3fa.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000006_40f99578.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000006_40f99578.szar new file mode 100644 index 00000000..edf220d9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000006_40f99578.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000007_6d7e5c48.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000007_6d7e5c48.szar new file mode 100644 index 00000000..9e1c8744 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/archive/delta_00000000000000000007_6d7e5c48.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000001_e131a9ae.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000001_e131a9ae.szcp new file mode 100644 index 00000000..dcf8a1ec Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000001_e131a9ae.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000002_533ac299.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000002_533ac299.szcp new file mode 100644 index 00000000..15787085 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000002_533ac299.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000003_7f9e9f4f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000003_7f9e9f4f.szcp new file mode 100644 index 00000000..dc4eb595 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000003_7f9e9f4f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000004_4e859e90.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000004_4e859e90.szcp new file mode 100644 index 00000000..6374c497 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000004_4e859e90.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000005_5cc87941.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000005_5cc87941.szcp new file mode 100644 index 00000000..8b0dba64 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000005_5cc87941.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000006_5dd3afa5.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000006_5dd3afa5.szcp new file mode 100644 index 00000000..0a8d2f13 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000006_5dd3afa5.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000007_3ad9a8b3.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000007_3ad9a8b3.szcp new file mode 100644 index 00000000..16dffe82 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_013/checkpoints/checkpoint_00000000000000000007_3ad9a8b3.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000001_d310dbb7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000001_d310dbb7.szar new file mode 100644 index 00000000..009c51a6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000001_d310dbb7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000002_65210b78.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000002_65210b78.szar new file mode 100644 index 00000000..7de77015 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000002_65210b78.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000003_2d91a2a3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000003_2d91a2a3.szar new file mode 100644 index 00000000..f9577056 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000003_2d91a2a3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000004_9d8bde63.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000004_9d8bde63.szar new file mode 100644 index 00000000..4f118aaf Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000004_9d8bde63.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000005_16a50b9e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000005_16a50b9e.szar new file mode 100644 index 00000000..64d649fa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000005_16a50b9e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000006_8b21d7ae.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000006_8b21d7ae.szar new file mode 100644 index 00000000..88585795 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000006_8b21d7ae.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000007_6df53a07.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000007_6df53a07.szar new file mode 100644 index 00000000..eda5ed91 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000007_6df53a07.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000008_4b40f0aa.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000008_4b40f0aa.szar new file mode 100644 index 00000000..fcd6a35e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/archive/delta_00000000000000000008_4b40f0aa.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000001_6057e807.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000001_6057e807.szcp new file mode 100644 index 00000000..c6c48a11 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000001_6057e807.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000002_2cc2c9a4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000002_2cc2c9a4.szcp new file mode 100644 index 00000000..bdb57824 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000002_2cc2c9a4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000003_31d645b2.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000003_31d645b2.szcp new file mode 100644 index 00000000..2082a394 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000003_31d645b2.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000004_5fa38746.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000004_5fa38746.szcp new file mode 100644 index 00000000..50a6cab6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000004_5fa38746.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000005_b117b45c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000005_b117b45c.szcp new file mode 100644 index 00000000..62181ac7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000005_b117b45c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000006_947a6074.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000006_947a6074.szcp new file mode 100644 index 00000000..ae743049 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000006_947a6074.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000007_9b69e5b8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000007_9b69e5b8.szcp new file mode 100644 index 00000000..8cb9b4ba Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000007_9b69e5b8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000008_842ca10a.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000008_842ca10a.szcp new file mode 100644 index 00000000..7af32aa5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_014/checkpoints/checkpoint_00000000000000000008_842ca10a.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000001_65fbde53.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000001_65fbde53.szar new file mode 100644 index 00000000..23f3c375 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000001_65fbde53.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000002_b585dd85.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000002_b585dd85.szar new file mode 100644 index 00000000..3fb2589c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000002_b585dd85.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000003_854cc799.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000003_854cc799.szar new file mode 100644 index 00000000..cc18d7ab Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000003_854cc799.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000004_f5510083.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000004_f5510083.szar new file mode 100644 index 00000000..ef2990d9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000004_f5510083.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000005_45d7277b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000005_45d7277b.szar new file mode 100644 index 00000000..1a1f3133 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000005_45d7277b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000006_016d426d.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000006_016d426d.szar new file mode 100644 index 00000000..1acae2e8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000006_016d426d.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000007_d7ff5432.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000007_d7ff5432.szar new file mode 100644 index 00000000..e8cbf170 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000007_d7ff5432.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000008_f45bd8fc.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000008_f45bd8fc.szar new file mode 100644 index 00000000..bdf7577d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000008_f45bd8fc.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000009_398818d2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000009_398818d2.szar new file mode 100644 index 00000000..3bdcd89a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000009_398818d2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000010_fd026a86.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000010_fd026a86.szar new file mode 100644 index 00000000..ee10b18d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000010_fd026a86.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000011_44d570da.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000011_44d570da.szar new file mode 100644 index 00000000..ff5471d6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000011_44d570da.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000012_fa9d0096.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000012_fa9d0096.szar new file mode 100644 index 00000000..42ac6fc0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000012_fa9d0096.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000013_45ca3845.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000013_45ca3845.szar new file mode 100644 index 00000000..ffeac795 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/archive/delta_00000000000000000013_45ca3845.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000001_cf9d22f9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000001_cf9d22f9.szcp new file mode 100644 index 00000000..f35f03b4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000001_cf9d22f9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000002_48fde4b7.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000002_48fde4b7.szcp new file mode 100644 index 00000000..82bd6b6a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000002_48fde4b7.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000003_650f103b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000003_650f103b.szcp new file mode 100644 index 00000000..bb293961 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000003_650f103b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000004_38b0499a.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000004_38b0499a.szcp new file mode 100644 index 00000000..23ccb2f1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000004_38b0499a.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000005_72be1243.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000005_72be1243.szcp new file mode 100644 index 00000000..45124a0d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000005_72be1243.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000006_7e3b52de.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000006_7e3b52de.szcp new file mode 100644 index 00000000..4e9a1403 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000006_7e3b52de.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000007_52a3856e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000007_52a3856e.szcp new file mode 100644 index 00000000..cf045804 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000007_52a3856e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000008_64722df5.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000008_64722df5.szcp new file mode 100644 index 00000000..dcb3bb26 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000008_64722df5.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000009_a9e9664b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000009_a9e9664b.szcp new file mode 100644 index 00000000..838e8ca8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000009_a9e9664b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000010_afef7f6d.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000010_afef7f6d.szcp new file mode 100644 index 00000000..4847398c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000010_afef7f6d.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000011_07650aa4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000011_07650aa4.szcp new file mode 100644 index 00000000..e64badcf Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000011_07650aa4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000012_16290097.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000012_16290097.szcp new file mode 100644 index 00000000..3c63b359 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000012_16290097.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000013_dea3b69b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000013_dea3b69b.szcp new file mode 100644 index 00000000..e6300a87 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_015/checkpoints/checkpoint_00000000000000000013_dea3b69b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000001_1f1b1e80.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000001_1f1b1e80.szar new file mode 100644 index 00000000..e406cf5c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000001_1f1b1e80.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000002_df9f53e4.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000002_df9f53e4.szar new file mode 100644 index 00000000..8f731849 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000002_df9f53e4.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000003_2f31b26d.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000003_2f31b26d.szar new file mode 100644 index 00000000..60ced37c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000003_2f31b26d.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000004_f53298f1.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000004_f53298f1.szar new file mode 100644 index 00000000..5c1584e1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000004_f53298f1.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000005_6b8b292b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000005_6b8b292b.szar new file mode 100644 index 00000000..27a81a7c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000005_6b8b292b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000006_e6927262.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000006_e6927262.szar new file mode 100644 index 00000000..eea663df Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000006_e6927262.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000007_09866571.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000007_09866571.szar new file mode 100644 index 00000000..f33e7159 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/archive/delta_00000000000000000007_09866571.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000001_3cd7248f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000001_3cd7248f.szcp new file mode 100644 index 00000000..df6296dc Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000001_3cd7248f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000002_b1aa00fc.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000002_b1aa00fc.szcp new file mode 100644 index 00000000..1a08d836 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000002_b1aa00fc.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000003_3966289d.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000003_3966289d.szcp new file mode 100644 index 00000000..dee8a956 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000003_3966289d.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000004_8c8d09f2.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000004_8c8d09f2.szcp new file mode 100644 index 00000000..120960c4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000004_8c8d09f2.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000005_d23693d2.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000005_d23693d2.szcp new file mode 100644 index 00000000..cc69a27f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000005_d23693d2.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000006_2474d2ae.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000006_2474d2ae.szcp new file mode 100644 index 00000000..94b05338 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000006_2474d2ae.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000007_0d6d33c7.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000007_0d6d33c7.szcp new file mode 100644 index 00000000..fc45e488 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_016/checkpoints/checkpoint_00000000000000000007_0d6d33c7.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000001_7c7670fd.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000001_7c7670fd.szar new file mode 100644 index 00000000..1e43dc7e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000001_7c7670fd.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000002_64b21f2f.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000002_64b21f2f.szar new file mode 100644 index 00000000..0117d515 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000002_64b21f2f.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000003_7d0ef1d7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000003_7d0ef1d7.szar new file mode 100644 index 00000000..be81cec8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000003_7d0ef1d7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000004_cf63ef7a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000004_cf63ef7a.szar new file mode 100644 index 00000000..9ca44c05 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000004_cf63ef7a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000005_54a70458.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000005_54a70458.szar new file mode 100644 index 00000000..37348d72 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000005_54a70458.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000006_1d224db9.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000006_1d224db9.szar new file mode 100644 index 00000000..efa4bb3e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000006_1d224db9.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000007_6e8a9bc3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000007_6e8a9bc3.szar new file mode 100644 index 00000000..0e576041 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/archive/delta_00000000000000000007_6e8a9bc3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000001_e0c653d8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000001_e0c653d8.szcp new file mode 100644 index 00000000..5696e845 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000001_e0c653d8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000002_d71a54f8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000002_d71a54f8.szcp new file mode 100644 index 00000000..39576a28 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000002_d71a54f8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000003_3a41dd45.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000003_3a41dd45.szcp new file mode 100644 index 00000000..62216d07 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000003_3a41dd45.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000004_39f0cd69.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000004_39f0cd69.szcp new file mode 100644 index 00000000..a78288eb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000004_39f0cd69.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000005_c9209abf.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000005_c9209abf.szcp new file mode 100644 index 00000000..e0e743ff Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000005_c9209abf.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000006_251ae60f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000006_251ae60f.szcp new file mode 100644 index 00000000..8947d2eb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000006_251ae60f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000007_21ec0ecc.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000007_21ec0ecc.szcp new file mode 100644 index 00000000..284157c7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_017/checkpoints/checkpoint_00000000000000000007_21ec0ecc.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000001_0e831492.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000001_0e831492.szar new file mode 100644 index 00000000..ab7ab7e7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000001_0e831492.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000002_68b55b77.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000002_68b55b77.szar new file mode 100644 index 00000000..6d4e4d9b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000002_68b55b77.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000003_032be869.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000003_032be869.szar new file mode 100644 index 00000000..77fcef13 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000003_032be869.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000004_b18eaaab.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000004_b18eaaab.szar new file mode 100644 index 00000000..850169d5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000004_b18eaaab.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000005_0dc5b920.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000005_0dc5b920.szar new file mode 100644 index 00000000..85645890 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000005_0dc5b920.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000006_ab15af38.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000006_ab15af38.szar new file mode 100644 index 00000000..9db2bcf3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000006_ab15af38.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000007_d751174d.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000007_d751174d.szar new file mode 100644 index 00000000..c9e790ec Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000007_d751174d.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000008_0eef54cf.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000008_0eef54cf.szar new file mode 100644 index 00000000..5428fb88 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000008_0eef54cf.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000009_4feefc17.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000009_4feefc17.szar new file mode 100644 index 00000000..6f51ddc6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000009_4feefc17.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000010_aac7ba7c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000010_aac7ba7c.szar new file mode 100644 index 00000000..118ea98f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000010_aac7ba7c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000011_7d4ac278.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000011_7d4ac278.szar new file mode 100644 index 00000000..09c4a661 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000011_7d4ac278.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000012_4ead5fc3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000012_4ead5fc3.szar new file mode 100644 index 00000000..602195f1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000012_4ead5fc3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000013_b2f4e753.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000013_b2f4e753.szar new file mode 100644 index 00000000..790b56a3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/archive/delta_00000000000000000013_b2f4e753.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000001_5f4d3047.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000001_5f4d3047.szcp new file mode 100644 index 00000000..e0d63da4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000001_5f4d3047.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000002_03ac1210.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000002_03ac1210.szcp new file mode 100644 index 00000000..37241633 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000002_03ac1210.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000003_e99b6188.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000003_e99b6188.szcp new file mode 100644 index 00000000..f205e2d9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000003_e99b6188.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000004_e07a6f1c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000004_e07a6f1c.szcp new file mode 100644 index 00000000..9ebb45e8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000004_e07a6f1c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000005_77fea3c6.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000005_77fea3c6.szcp new file mode 100644 index 00000000..0a2a353f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000005_77fea3c6.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000006_0c7c86ea.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000006_0c7c86ea.szcp new file mode 100644 index 00000000..2c20f1db Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000006_0c7c86ea.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000007_0947dd7f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000007_0947dd7f.szcp new file mode 100644 index 00000000..059722fe Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000007_0947dd7f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000008_c2e35192.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000008_c2e35192.szcp new file mode 100644 index 00000000..5cf8163b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000008_c2e35192.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000009_4b051ba8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000009_4b051ba8.szcp new file mode 100644 index 00000000..45e3220a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000009_4b051ba8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000010_17ad601d.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000010_17ad601d.szcp new file mode 100644 index 00000000..124a3d28 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000010_17ad601d.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000011_b9db8df1.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000011_b9db8df1.szcp new file mode 100644 index 00000000..fe55af7e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000011_b9db8df1.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000012_39b95ac4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000012_39b95ac4.szcp new file mode 100644 index 00000000..1b9abd40 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000012_39b95ac4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000013_19a84658.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000013_19a84658.szcp new file mode 100644 index 00000000..48e43708 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_018/checkpoints/checkpoint_00000000000000000013_19a84658.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000001_050e4893.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000001_050e4893.szar new file mode 100644 index 00000000..a52b40fb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000001_050e4893.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000002_0995fa8c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000002_0995fa8c.szar new file mode 100644 index 00000000..96b66a53 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000002_0995fa8c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000003_5adc97d3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000003_5adc97d3.szar new file mode 100644 index 00000000..36e6a2c5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000003_5adc97d3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000004_acc236e3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000004_acc236e3.szar new file mode 100644 index 00000000..b2356dd8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000004_acc236e3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000005_2974001c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000005_2974001c.szar new file mode 100644 index 00000000..fe7530b0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000005_2974001c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000006_3dc0c1f2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000006_3dc0c1f2.szar new file mode 100644 index 00000000..6e492d4c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000006_3dc0c1f2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000007_88531138.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000007_88531138.szar new file mode 100644 index 00000000..130c9679 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000007_88531138.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000008_d6f4cc4b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000008_d6f4cc4b.szar new file mode 100644 index 00000000..5fd0144a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000008_d6f4cc4b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000009_66f00e40.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000009_66f00e40.szar new file mode 100644 index 00000000..cf950ecd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000009_66f00e40.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000010_4291f69a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000010_4291f69a.szar new file mode 100644 index 00000000..8945e1e1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/archive/delta_00000000000000000010_4291f69a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000001_d05328d8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000001_d05328d8.szcp new file mode 100644 index 00000000..b7fbf082 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000001_d05328d8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000002_0f1c5093.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000002_0f1c5093.szcp new file mode 100644 index 00000000..c9fc0667 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000002_0f1c5093.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000003_8f5aadc2.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000003_8f5aadc2.szcp new file mode 100644 index 00000000..c7f0cf22 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000003_8f5aadc2.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000004_a38b0c2d.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000004_a38b0c2d.szcp new file mode 100644 index 00000000..6f4ec3d9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000004_a38b0c2d.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000005_eaa35b4e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000005_eaa35b4e.szcp new file mode 100644 index 00000000..11dcacc1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000005_eaa35b4e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000006_b1eb0cdb.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000006_b1eb0cdb.szcp new file mode 100644 index 00000000..4307fbb1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000006_b1eb0cdb.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000007_a657cfe8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000007_a657cfe8.szcp new file mode 100644 index 00000000..dd896182 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000007_a657cfe8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000008_18bcdaeb.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000008_18bcdaeb.szcp new file mode 100644 index 00000000..2e2fa54e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000008_18bcdaeb.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000009_26b00253.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000009_26b00253.szcp new file mode 100644 index 00000000..4ea8b724 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000009_26b00253.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000010_1dbccd46.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000010_1dbccd46.szcp new file mode 100644 index 00000000..2271a9ea Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_019/checkpoints/checkpoint_00000000000000000010_1dbccd46.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000001_645d80d0.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000001_645d80d0.szar new file mode 100644 index 00000000..8f206812 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000001_645d80d0.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000002_55268eb2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000002_55268eb2.szar new file mode 100644 index 00000000..513aee7b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000002_55268eb2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000003_7250c732.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000003_7250c732.szar new file mode 100644 index 00000000..79579741 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000003_7250c732.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000004_e020f067.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000004_e020f067.szar new file mode 100644 index 00000000..e92f3a28 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000004_e020f067.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000005_2da61566.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000005_2da61566.szar new file mode 100644 index 00000000..762889d2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000005_2da61566.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000006_35f3615c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000006_35f3615c.szar new file mode 100644 index 00000000..4c9eadf2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000006_35f3615c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000007_7ad5c267.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000007_7ad5c267.szar new file mode 100644 index 00000000..235e7acd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000007_7ad5c267.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000008_6248ae03.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000008_6248ae03.szar new file mode 100644 index 00000000..700ba5c4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000008_6248ae03.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000009_99454c61.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000009_99454c61.szar new file mode 100644 index 00000000..748003c7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000009_99454c61.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000010_c2e974e7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000010_c2e974e7.szar new file mode 100644 index 00000000..3cd38774 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000010_c2e974e7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000011_fb40bb04.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000011_fb40bb04.szar new file mode 100644 index 00000000..287a4b77 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/archive/delta_00000000000000000011_fb40bb04.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000001_6ce05510.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000001_6ce05510.szcp new file mode 100644 index 00000000..0a8ef4aa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000001_6ce05510.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000002_12a77329.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000002_12a77329.szcp new file mode 100644 index 00000000..9addbd2b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000002_12a77329.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000003_68c73b74.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000003_68c73b74.szcp new file mode 100644 index 00000000..9e5b2fe9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000003_68c73b74.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000004_4e6fb2c5.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000004_4e6fb2c5.szcp new file mode 100644 index 00000000..3dfd6676 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000004_4e6fb2c5.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000005_6ebcf5a9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000005_6ebcf5a9.szcp new file mode 100644 index 00000000..82629176 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000005_6ebcf5a9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000006_2409b1e1.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000006_2409b1e1.szcp new file mode 100644 index 00000000..e9a5d9c3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000006_2409b1e1.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000007_871e7843.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000007_871e7843.szcp new file mode 100644 index 00000000..8d9e88a3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000007_871e7843.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000008_a9a4e7c9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000008_a9a4e7c9.szcp new file mode 100644 index 00000000..d50d48f5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000008_a9a4e7c9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000009_93ca147b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000009_93ca147b.szcp new file mode 100644 index 00000000..0f0312c3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000009_93ca147b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000010_e1c42729.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000010_e1c42729.szcp new file mode 100644 index 00000000..f830a22f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000010_e1c42729.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000011_3f2e53df.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000011_3f2e53df.szcp new file mode 100644 index 00000000..42e21022 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_020/checkpoints/checkpoint_00000000000000000011_3f2e53df.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000001_3cab7d1a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000001_3cab7d1a.szar new file mode 100644 index 00000000..0e8a4a57 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000001_3cab7d1a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000002_5007d7ee.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000002_5007d7ee.szar new file mode 100644 index 00000000..cddf95fd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000002_5007d7ee.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000003_90697bef.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000003_90697bef.szar new file mode 100644 index 00000000..f73f5479 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000003_90697bef.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000004_5d539f72.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000004_5d539f72.szar new file mode 100644 index 00000000..f4a42e28 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000004_5d539f72.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000005_aa092589.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000005_aa092589.szar new file mode 100644 index 00000000..d2d4154f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000005_aa092589.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000006_f3089f09.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000006_f3089f09.szar new file mode 100644 index 00000000..c8a09b32 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000006_f3089f09.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000007_2f201f02.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000007_2f201f02.szar new file mode 100644 index 00000000..1503254b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/archive/delta_00000000000000000007_2f201f02.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000001_8abff6cb.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000001_8abff6cb.szcp new file mode 100644 index 00000000..3c412bc4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000001_8abff6cb.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000002_28938392.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000002_28938392.szcp new file mode 100644 index 00000000..ab4ccc68 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000002_28938392.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000003_07068218.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000003_07068218.szcp new file mode 100644 index 00000000..c99222b1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000003_07068218.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000004_bb47a528.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000004_bb47a528.szcp new file mode 100644 index 00000000..23d8e52a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000004_bb47a528.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000005_7b5ad5bc.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000005_7b5ad5bc.szcp new file mode 100644 index 00000000..d6aaf15a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000005_7b5ad5bc.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000006_cd4b30bd.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000006_cd4b30bd.szcp new file mode 100644 index 00000000..54964f86 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000006_cd4b30bd.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000007_c82e7df2.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000007_c82e7df2.szcp new file mode 100644 index 00000000..8bbd3dd3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_021/checkpoints/checkpoint_00000000000000000007_c82e7df2.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000001_e5fb04a9.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000001_e5fb04a9.szar new file mode 100644 index 00000000..3d6bedc9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000001_e5fb04a9.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000002_0e806dcd.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000002_0e806dcd.szar new file mode 100644 index 00000000..5e251a33 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000002_0e806dcd.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000003_ca0df445.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000003_ca0df445.szar new file mode 100644 index 00000000..b760d3cc Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000003_ca0df445.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000004_0e5d77e0.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000004_0e5d77e0.szar new file mode 100644 index 00000000..d6a33663 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000004_0e5d77e0.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000005_418a5741.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000005_418a5741.szar new file mode 100644 index 00000000..d203da5e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000005_418a5741.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000006_78671d2f.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000006_78671d2f.szar new file mode 100644 index 00000000..ca1ce282 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000006_78671d2f.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000007_4f817240.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000007_4f817240.szar new file mode 100644 index 00000000..86054142 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000007_4f817240.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000008_ed3ba91e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000008_ed3ba91e.szar new file mode 100644 index 00000000..e694d296 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000008_ed3ba91e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000009_8cf32066.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000009_8cf32066.szar new file mode 100644 index 00000000..bcf67a87 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000009_8cf32066.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000010_45359635.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000010_45359635.szar new file mode 100644 index 00000000..31d0835e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000010_45359635.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000011_868a2056.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000011_868a2056.szar new file mode 100644 index 00000000..93247eab Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000011_868a2056.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000012_6e7f2e19.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000012_6e7f2e19.szar new file mode 100644 index 00000000..052c3a6a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/archive/delta_00000000000000000012_6e7f2e19.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000001_6075c0f8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000001_6075c0f8.szcp new file mode 100644 index 00000000..54d204db Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000001_6075c0f8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000002_9498ebd7.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000002_9498ebd7.szcp new file mode 100644 index 00000000..7edbdcbd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000002_9498ebd7.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000003_70facd95.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000003_70facd95.szcp new file mode 100644 index 00000000..ef260df9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000003_70facd95.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000004_7b64e02b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000004_7b64e02b.szcp new file mode 100644 index 00000000..e35c4771 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000004_7b64e02b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000005_da922f4f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000005_da922f4f.szcp new file mode 100644 index 00000000..446b7eee Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000005_da922f4f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000006_ef138aaa.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000006_ef138aaa.szcp new file mode 100644 index 00000000..a9c032a5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000006_ef138aaa.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000007_c5875446.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000007_c5875446.szcp new file mode 100644 index 00000000..c2bcc90c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000007_c5875446.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000008_182215b8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000008_182215b8.szcp new file mode 100644 index 00000000..b407722d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000008_182215b8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000009_d7be8ccb.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000009_d7be8ccb.szcp new file mode 100644 index 00000000..debea601 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000009_d7be8ccb.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000010_7c4e34ab.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000010_7c4e34ab.szcp new file mode 100644 index 00000000..07fb1921 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000010_7c4e34ab.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000011_e45e4836.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000011_e45e4836.szcp new file mode 100644 index 00000000..139c557b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000011_e45e4836.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000012_80b8dcb6.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000012_80b8dcb6.szcp new file mode 100644 index 00000000..62e3d6fa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_022/checkpoints/checkpoint_00000000000000000012_80b8dcb6.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000001_bbedc6f3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000001_bbedc6f3.szar new file mode 100644 index 00000000..f2b0b093 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000001_bbedc6f3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000002_10ef0739.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000002_10ef0739.szar new file mode 100644 index 00000000..5f788736 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000002_10ef0739.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000003_5f3d12e3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000003_5f3d12e3.szar new file mode 100644 index 00000000..51d758b5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000003_5f3d12e3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000004_1a4a5588.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000004_1a4a5588.szar new file mode 100644 index 00000000..1c8951f0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000004_1a4a5588.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000005_d72d52e7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000005_d72d52e7.szar new file mode 100644 index 00000000..4c79875d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000005_d72d52e7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000006_cee345d9.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000006_cee345d9.szar new file mode 100644 index 00000000..e6b7d532 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000006_cee345d9.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000007_54560b38.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000007_54560b38.szar new file mode 100644 index 00000000..4aef7458 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000007_54560b38.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000008_e606ae2c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000008_e606ae2c.szar new file mode 100644 index 00000000..1a088878 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000008_e606ae2c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000009_be7ec851.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000009_be7ec851.szar new file mode 100644 index 00000000..ef0b9847 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000009_be7ec851.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000010_4e048261.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000010_4e048261.szar new file mode 100644 index 00000000..40a5da95 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000010_4e048261.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000011_c995c441.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000011_c995c441.szar new file mode 100644 index 00000000..7055affe Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000011_c995c441.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000012_4b6ea874.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000012_4b6ea874.szar new file mode 100644 index 00000000..cd8dd686 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000012_4b6ea874.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000013_afed2100.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000013_afed2100.szar new file mode 100644 index 00000000..848f0c6e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/archive/delta_00000000000000000013_afed2100.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000001_f24a8f6c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000001_f24a8f6c.szcp new file mode 100644 index 00000000..106aea57 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000001_f24a8f6c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000002_45fbc138.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000002_45fbc138.szcp new file mode 100644 index 00000000..9b8c5c36 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000002_45fbc138.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000003_24c6d607.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000003_24c6d607.szcp new file mode 100644 index 00000000..5e30d4ce Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000003_24c6d607.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000004_44bad405.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000004_44bad405.szcp new file mode 100644 index 00000000..36a22907 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000004_44bad405.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000005_f48583f2.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000005_f48583f2.szcp new file mode 100644 index 00000000..3d8b21b1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000005_f48583f2.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000006_2f0f8058.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000006_2f0f8058.szcp new file mode 100644 index 00000000..2a1c547a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000006_2f0f8058.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000007_6fc4a593.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000007_6fc4a593.szcp new file mode 100644 index 00000000..93be55ca Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000007_6fc4a593.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000008_5ac3e256.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000008_5ac3e256.szcp new file mode 100644 index 00000000..2617c0c0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000008_5ac3e256.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000009_5a53c272.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000009_5a53c272.szcp new file mode 100644 index 00000000..8646ec14 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000009_5a53c272.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000010_7fe566ae.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000010_7fe566ae.szcp new file mode 100644 index 00000000..bec39385 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000010_7fe566ae.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000011_e27653a9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000011_e27653a9.szcp new file mode 100644 index 00000000..1d1fad58 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000011_e27653a9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000012_71c71abd.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000012_71c71abd.szcp new file mode 100644 index 00000000..53b0c5a2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000012_71c71abd.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000013_5ccf6aaf.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000013_5ccf6aaf.szcp new file mode 100644 index 00000000..68469449 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_023/checkpoints/checkpoint_00000000000000000013_5ccf6aaf.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000001_b4f7bd27.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000001_b4f7bd27.szar new file mode 100644 index 00000000..75e923b9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000001_b4f7bd27.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000002_75906c06.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000002_75906c06.szar new file mode 100644 index 00000000..3082ef43 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000002_75906c06.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000003_e3150df6.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000003_e3150df6.szar new file mode 100644 index 00000000..943e6088 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000003_e3150df6.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000004_3bf17ec7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000004_3bf17ec7.szar new file mode 100644 index 00000000..f24c7522 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000004_3bf17ec7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000005_692e62c7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000005_692e62c7.szar new file mode 100644 index 00000000..8d980f5c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000005_692e62c7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000006_62cebda2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000006_62cebda2.szar new file mode 100644 index 00000000..573e31cd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000006_62cebda2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000007_c86f2f9b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000007_c86f2f9b.szar new file mode 100644 index 00000000..a414591e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000007_c86f2f9b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000008_a69c2b90.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000008_a69c2b90.szar new file mode 100644 index 00000000..82441339 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000008_a69c2b90.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000009_ca40cef3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000009_ca40cef3.szar new file mode 100644 index 00000000..e4894023 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000009_ca40cef3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000010_59158f10.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000010_59158f10.szar new file mode 100644 index 00000000..5f0794e9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000010_59158f10.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000011_1633f6ff.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000011_1633f6ff.szar new file mode 100644 index 00000000..709179e8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000011_1633f6ff.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000012_9da92b97.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000012_9da92b97.szar new file mode 100644 index 00000000..5dd78808 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000012_9da92b97.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000013_0bc735ab.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000013_0bc735ab.szar new file mode 100644 index 00000000..a40a2cfa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/archive/delta_00000000000000000013_0bc735ab.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000001_8fb80093.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000001_8fb80093.szcp new file mode 100644 index 00000000..51063049 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000001_8fb80093.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000002_25401e66.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000002_25401e66.szcp new file mode 100644 index 00000000..6d0ee7e6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000002_25401e66.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000003_dec2212a.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000003_dec2212a.szcp new file mode 100644 index 00000000..3585d12e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000003_dec2212a.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000004_341f8792.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000004_341f8792.szcp new file mode 100644 index 00000000..14c62183 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000004_341f8792.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000005_9472d126.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000005_9472d126.szcp new file mode 100644 index 00000000..33c48fb8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000005_9472d126.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000006_767eda2e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000006_767eda2e.szcp new file mode 100644 index 00000000..78154a61 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000006_767eda2e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000007_7aaf0212.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000007_7aaf0212.szcp new file mode 100644 index 00000000..463a513e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000007_7aaf0212.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000008_7a94bbf4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000008_7a94bbf4.szcp new file mode 100644 index 00000000..ca96cea8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000008_7a94bbf4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000009_d40aec1a.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000009_d40aec1a.szcp new file mode 100644 index 00000000..ba33dacf Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000009_d40aec1a.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000010_07c6a372.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000010_07c6a372.szcp new file mode 100644 index 00000000..dd535ee9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000010_07c6a372.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000011_31db2229.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000011_31db2229.szcp new file mode 100644 index 00000000..e47a2ad4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000011_31db2229.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000012_3040332c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000012_3040332c.szcp new file mode 100644 index 00000000..ecc0ffeb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000012_3040332c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000013_dc79b98f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000013_dc79b98f.szcp new file mode 100644 index 00000000..b98c72e1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_024/checkpoints/checkpoint_00000000000000000013_dc79b98f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000001_0994788a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000001_0994788a.szar new file mode 100644 index 00000000..a6933b3a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000001_0994788a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000002_74aa4e83.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000002_74aa4e83.szar new file mode 100644 index 00000000..e0fffe85 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000002_74aa4e83.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000003_cb077aa5.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000003_cb077aa5.szar new file mode 100644 index 00000000..71540e81 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000003_cb077aa5.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000004_d0029c75.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000004_d0029c75.szar new file mode 100644 index 00000000..69c5a7f9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000004_d0029c75.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000005_82342c63.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000005_82342c63.szar new file mode 100644 index 00000000..6c36957c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000005_82342c63.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000006_3e058bc5.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000006_3e058bc5.szar new file mode 100644 index 00000000..114781da Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000006_3e058bc5.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000007_8a05b45f.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000007_8a05b45f.szar new file mode 100644 index 00000000..702aa718 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000007_8a05b45f.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000008_fc9808ee.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000008_fc9808ee.szar new file mode 100644 index 00000000..763ea7e7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000008_fc9808ee.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000009_1a792cdd.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000009_1a792cdd.szar new file mode 100644 index 00000000..d39e70a2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000009_1a792cdd.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000010_8bf5958c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000010_8bf5958c.szar new file mode 100644 index 00000000..e0ecd3b2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000010_8bf5958c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000011_7c5283ac.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000011_7c5283ac.szar new file mode 100644 index 00000000..5ae19069 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000011_7c5283ac.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000012_bb0bf1ce.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000012_bb0bf1ce.szar new file mode 100644 index 00000000..a1716961 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/archive/delta_00000000000000000012_bb0bf1ce.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000001_896ad597.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000001_896ad597.szcp new file mode 100644 index 00000000..5694c012 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000001_896ad597.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000002_25c9bf97.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000002_25c9bf97.szcp new file mode 100644 index 00000000..54199fdb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000002_25c9bf97.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000003_4a161bd2.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000003_4a161bd2.szcp new file mode 100644 index 00000000..f13bfbd2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000003_4a161bd2.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000004_c09299a7.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000004_c09299a7.szcp new file mode 100644 index 00000000..ea492bf2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000004_c09299a7.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000005_c53681cd.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000005_c53681cd.szcp new file mode 100644 index 00000000..6a22bff8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000005_c53681cd.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000006_24759ee4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000006_24759ee4.szcp new file mode 100644 index 00000000..8f05ec71 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000006_24759ee4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000007_2395319e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000007_2395319e.szcp new file mode 100644 index 00000000..8f585b4b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000007_2395319e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000008_a5838313.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000008_a5838313.szcp new file mode 100644 index 00000000..ce36a9f2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000008_a5838313.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000009_e5e62a78.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000009_e5e62a78.szcp new file mode 100644 index 00000000..37c101e1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000009_e5e62a78.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000010_be750ef4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000010_be750ef4.szcp new file mode 100644 index 00000000..4a32f05f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000010_be750ef4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000011_2d999f81.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000011_2d999f81.szcp new file mode 100644 index 00000000..f68e91fa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000011_2d999f81.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000012_d29d97e1.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000012_d29d97e1.szcp new file mode 100644 index 00000000..033ba953 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_025/checkpoints/checkpoint_00000000000000000012_d29d97e1.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000001_8de3ebdf.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000001_8de3ebdf.szar new file mode 100644 index 00000000..cff94513 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000001_8de3ebdf.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000002_14432867.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000002_14432867.szar new file mode 100644 index 00000000..1b7ff9a4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000002_14432867.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000003_95038cd0.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000003_95038cd0.szar new file mode 100644 index 00000000..6e94d05b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000003_95038cd0.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000004_58304641.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000004_58304641.szar new file mode 100644 index 00000000..899eac09 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000004_58304641.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000005_16dd4932.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000005_16dd4932.szar new file mode 100644 index 00000000..d726121f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000005_16dd4932.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000006_61786e89.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000006_61786e89.szar new file mode 100644 index 00000000..3751e72b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000006_61786e89.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000007_35ca1a25.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000007_35ca1a25.szar new file mode 100644 index 00000000..33b87266 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000007_35ca1a25.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000008_eb1df56a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000008_eb1df56a.szar new file mode 100644 index 00000000..1d9f76c8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000008_eb1df56a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000009_deee87f3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000009_deee87f3.szar new file mode 100644 index 00000000..8ab9b372 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000009_deee87f3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000010_6543d358.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000010_6543d358.szar new file mode 100644 index 00000000..f111c2ec Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000010_6543d358.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000011_2a86aca0.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000011_2a86aca0.szar new file mode 100644 index 00000000..66095f11 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000011_2a86aca0.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000012_fa66c2a2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000012_fa66c2a2.szar new file mode 100644 index 00000000..8d08b1fa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/archive/delta_00000000000000000012_fa66c2a2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000001_3ef381f8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000001_3ef381f8.szcp new file mode 100644 index 00000000..adac8742 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000001_3ef381f8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000002_8d5cfdc0.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000002_8d5cfdc0.szcp new file mode 100644 index 00000000..69570e20 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000002_8d5cfdc0.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000003_1f83e54c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000003_1f83e54c.szcp new file mode 100644 index 00000000..4a2bc4f1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000003_1f83e54c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000004_4640394d.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000004_4640394d.szcp new file mode 100644 index 00000000..55756e6e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000004_4640394d.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000005_8b00cab1.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000005_8b00cab1.szcp new file mode 100644 index 00000000..30dc7fe6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000005_8b00cab1.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000006_5726d73f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000006_5726d73f.szcp new file mode 100644 index 00000000..b35e9981 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000006_5726d73f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000007_e1838fb6.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000007_e1838fb6.szcp new file mode 100644 index 00000000..c9371416 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000007_e1838fb6.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000008_a5838141.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000008_a5838141.szcp new file mode 100644 index 00000000..c69dbf2a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000008_a5838141.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000009_a83c1984.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000009_a83c1984.szcp new file mode 100644 index 00000000..40a1a090 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000009_a83c1984.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000010_41a50078.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000010_41a50078.szcp new file mode 100644 index 00000000..e3edd0f5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000010_41a50078.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000011_f8489904.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000011_f8489904.szcp new file mode 100644 index 00000000..aa3344e1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000011_f8489904.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000012_3a0cba71.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000012_3a0cba71.szcp new file mode 100644 index 00000000..f7b47730 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_026/checkpoints/checkpoint_00000000000000000012_3a0cba71.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000001_ecd55f12.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000001_ecd55f12.szar new file mode 100644 index 00000000..d66fa889 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000001_ecd55f12.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000002_ad52c516.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000002_ad52c516.szar new file mode 100644 index 00000000..58f8a5e8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000002_ad52c516.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000003_5391c60b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000003_5391c60b.szar new file mode 100644 index 00000000..b0ecec8b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000003_5391c60b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000004_a8e8b7b5.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000004_a8e8b7b5.szar new file mode 100644 index 00000000..5a07727e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000004_a8e8b7b5.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000005_b03b314b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000005_b03b314b.szar new file mode 100644 index 00000000..04cc6cd8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000005_b03b314b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000006_874e8be7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000006_874e8be7.szar new file mode 100644 index 00000000..92f6844c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000006_874e8be7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000007_70f88e46.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000007_70f88e46.szar new file mode 100644 index 00000000..25f12e20 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000007_70f88e46.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000008_59f9d6d3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000008_59f9d6d3.szar new file mode 100644 index 00000000..06d7aa55 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000008_59f9d6d3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000009_5d0af60b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000009_5d0af60b.szar new file mode 100644 index 00000000..3bf223e5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000009_5d0af60b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000010_bb90a0e9.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000010_bb90a0e9.szar new file mode 100644 index 00000000..77db244e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000010_bb90a0e9.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000011_f3922b3c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000011_f3922b3c.szar new file mode 100644 index 00000000..bd566b02 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000011_f3922b3c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000012_598283fe.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000012_598283fe.szar new file mode 100644 index 00000000..f1ffc5ed Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/archive/delta_00000000000000000012_598283fe.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000001_ad1a6a64.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000001_ad1a6a64.szcp new file mode 100644 index 00000000..606a8a85 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000001_ad1a6a64.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000002_d49341f9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000002_d49341f9.szcp new file mode 100644 index 00000000..cbefab7c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000002_d49341f9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000003_c9af3430.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000003_c9af3430.szcp new file mode 100644 index 00000000..dd1d743d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000003_c9af3430.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000004_fabed1a9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000004_fabed1a9.szcp new file mode 100644 index 00000000..7f6335ec Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000004_fabed1a9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000005_31c15ef8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000005_31c15ef8.szcp new file mode 100644 index 00000000..5cf44c55 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000005_31c15ef8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000006_44ba223b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000006_44ba223b.szcp new file mode 100644 index 00000000..c155b948 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000006_44ba223b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000007_dab70aaa.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000007_dab70aaa.szcp new file mode 100644 index 00000000..8cb2bfc3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000007_dab70aaa.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000008_76298b49.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000008_76298b49.szcp new file mode 100644 index 00000000..1cd69010 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000008_76298b49.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000009_3331f5dd.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000009_3331f5dd.szcp new file mode 100644 index 00000000..bd9a1ca0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000009_3331f5dd.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000010_a5b60896.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000010_a5b60896.szcp new file mode 100644 index 00000000..725b6330 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000010_a5b60896.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000011_72b7f8b9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000011_72b7f8b9.szcp new file mode 100644 index 00000000..b4c34b79 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000011_72b7f8b9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000012_ddc37598.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000012_ddc37598.szcp new file mode 100644 index 00000000..025d2802 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_027/checkpoints/checkpoint_00000000000000000012_ddc37598.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000001_1fc6f6c7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000001_1fc6f6c7.szar new file mode 100644 index 00000000..d60e4333 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000001_1fc6f6c7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000002_81eb4510.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000002_81eb4510.szar new file mode 100644 index 00000000..00662b63 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000002_81eb4510.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000003_70d60997.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000003_70d60997.szar new file mode 100644 index 00000000..1c95dc22 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000003_70d60997.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000004_b90d835d.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000004_b90d835d.szar new file mode 100644 index 00000000..8af66e6c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000004_b90d835d.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000005_d8082ce9.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000005_d8082ce9.szar new file mode 100644 index 00000000..7ce04e17 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000005_d8082ce9.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000006_c745f4a0.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000006_c745f4a0.szar new file mode 100644 index 00000000..b5f1e883 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000006_c745f4a0.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000007_91efed74.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000007_91efed74.szar new file mode 100644 index 00000000..df8a59e5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000007_91efed74.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000008_71ca3349.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000008_71ca3349.szar new file mode 100644 index 00000000..598b2178 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000008_71ca3349.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000009_431af196.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000009_431af196.szar new file mode 100644 index 00000000..0e0e758f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000009_431af196.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000010_46183fe7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000010_46183fe7.szar new file mode 100644 index 00000000..4041eabd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/archive/delta_00000000000000000010_46183fe7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000001_48843eed.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000001_48843eed.szcp new file mode 100644 index 00000000..276f2e39 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000001_48843eed.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000002_078663c8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000002_078663c8.szcp new file mode 100644 index 00000000..9826e359 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000002_078663c8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000003_765ba73d.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000003_765ba73d.szcp new file mode 100644 index 00000000..8671a96f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000003_765ba73d.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000004_49db297c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000004_49db297c.szcp new file mode 100644 index 00000000..5aa28a12 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000004_49db297c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000005_cf818401.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000005_cf818401.szcp new file mode 100644 index 00000000..223cdc7a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000005_cf818401.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000006_1d6f4eaa.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000006_1d6f4eaa.szcp new file mode 100644 index 00000000..32f70e73 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000006_1d6f4eaa.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000007_d3bfc539.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000007_d3bfc539.szcp new file mode 100644 index 00000000..c79c4909 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000007_d3bfc539.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000008_4b315c0c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000008_4b315c0c.szcp new file mode 100644 index 00000000..331a0625 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000008_4b315c0c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000009_bdd4325e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000009_bdd4325e.szcp new file mode 100644 index 00000000..47ee6aea Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000009_bdd4325e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000010_43654b00.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000010_43654b00.szcp new file mode 100644 index 00000000..66f3112c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_028/checkpoints/checkpoint_00000000000000000010_43654b00.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000001_1c80b269.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000001_1c80b269.szar new file mode 100644 index 00000000..c7598c28 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000001_1c80b269.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000002_2b46c7b5.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000002_2b46c7b5.szar new file mode 100644 index 00000000..b9753ccf Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000002_2b46c7b5.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000003_124387b5.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000003_124387b5.szar new file mode 100644 index 00000000..3b514d9c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000003_124387b5.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000004_c0d01392.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000004_c0d01392.szar new file mode 100644 index 00000000..3a5cba32 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000004_c0d01392.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000005_b65089ca.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000005_b65089ca.szar new file mode 100644 index 00000000..f5d1bf9f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000005_b65089ca.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000006_1ea17da9.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000006_1ea17da9.szar new file mode 100644 index 00000000..1fc04590 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000006_1ea17da9.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000007_99d5ffd2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000007_99d5ffd2.szar new file mode 100644 index 00000000..e90c7dfe Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000007_99d5ffd2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000008_bf1aa2c6.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000008_bf1aa2c6.szar new file mode 100644 index 00000000..bbfcb3f7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000008_bf1aa2c6.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000009_c716a34a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000009_c716a34a.szar new file mode 100644 index 00000000..dba8c26c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000009_c716a34a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000010_da8d7738.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000010_da8d7738.szar new file mode 100644 index 00000000..df5647cd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000010_da8d7738.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000011_7583bf77.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000011_7583bf77.szar new file mode 100644 index 00000000..678700b4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/archive/delta_00000000000000000011_7583bf77.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000001_1b415cee.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000001_1b415cee.szcp new file mode 100644 index 00000000..f0944209 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000001_1b415cee.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000002_9d2df99b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000002_9d2df99b.szcp new file mode 100644 index 00000000..f60fc1aa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000002_9d2df99b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000003_dd40eb95.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000003_dd40eb95.szcp new file mode 100644 index 00000000..04a6efd7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000003_dd40eb95.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000004_6762a78e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000004_6762a78e.szcp new file mode 100644 index 00000000..230527b7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000004_6762a78e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000005_6353ae22.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000005_6353ae22.szcp new file mode 100644 index 00000000..130f3d47 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000005_6353ae22.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000006_1947dac3.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000006_1947dac3.szcp new file mode 100644 index 00000000..6eb39f28 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000006_1947dac3.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000007_7c17d200.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000007_7c17d200.szcp new file mode 100644 index 00000000..104d509b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000007_7c17d200.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000008_8d3f6322.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000008_8d3f6322.szcp new file mode 100644 index 00000000..062ae287 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000008_8d3f6322.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000009_53b31db6.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000009_53b31db6.szcp new file mode 100644 index 00000000..5ef1d669 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000009_53b31db6.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000010_f2ff91b2.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000010_f2ff91b2.szcp new file mode 100644 index 00000000..fb157711 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000010_f2ff91b2.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000011_7fc11b72.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000011_7fc11b72.szcp new file mode 100644 index 00000000..46a1a6d2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_029/checkpoints/checkpoint_00000000000000000011_7fc11b72.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000001_45b4eece.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000001_45b4eece.szar new file mode 100644 index 00000000..b18e4ef5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000001_45b4eece.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000002_78c9f2b2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000002_78c9f2b2.szar new file mode 100644 index 00000000..872cdbe3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000002_78c9f2b2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000003_330ccc8b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000003_330ccc8b.szar new file mode 100644 index 00000000..a540f2fd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000003_330ccc8b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000004_7c30e2b9.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000004_7c30e2b9.szar new file mode 100644 index 00000000..ffec380d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000004_7c30e2b9.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000005_5f924e8b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000005_5f924e8b.szar new file mode 100644 index 00000000..cb3f40a6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000005_5f924e8b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000006_33f43020.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000006_33f43020.szar new file mode 100644 index 00000000..1855374e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000006_33f43020.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000007_709f1a10.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000007_709f1a10.szar new file mode 100644 index 00000000..dff6edc0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/archive/delta_00000000000000000007_709f1a10.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000001_c229a29a.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000001_c229a29a.szcp new file mode 100644 index 00000000..5df54522 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000001_c229a29a.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000002_b11e062f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000002_b11e062f.szcp new file mode 100644 index 00000000..7db66aa6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000002_b11e062f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000003_6c699e96.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000003_6c699e96.szcp new file mode 100644 index 00000000..f4f3bb34 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000003_6c699e96.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000004_2711701c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000004_2711701c.szcp new file mode 100644 index 00000000..876ab22d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000004_2711701c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000005_8b08843d.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000005_8b08843d.szcp new file mode 100644 index 00000000..94c6e2bd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000005_8b08843d.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000006_f38a0a35.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000006_f38a0a35.szcp new file mode 100644 index 00000000..93d80105 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000006_f38a0a35.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000007_2c77c6c0.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000007_2c77c6c0.szcp new file mode 100644 index 00000000..e28099ea Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_030/checkpoints/checkpoint_00000000000000000007_2c77c6c0.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000001_686cd066.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000001_686cd066.szar new file mode 100644 index 00000000..a8bf42c2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000001_686cd066.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000002_644cb9d1.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000002_644cb9d1.szar new file mode 100644 index 00000000..90e9d3ac Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000002_644cb9d1.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000003_47663cea.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000003_47663cea.szar new file mode 100644 index 00000000..a96d64f8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000003_47663cea.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000004_bc285d40.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000004_bc285d40.szar new file mode 100644 index 00000000..a76f336b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000004_bc285d40.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000005_187097e2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000005_187097e2.szar new file mode 100644 index 00000000..727950ba Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000005_187097e2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000006_b95be565.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000006_b95be565.szar new file mode 100644 index 00000000..27a94cd9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000006_b95be565.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000007_a6701595.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000007_a6701595.szar new file mode 100644 index 00000000..7b74a33c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/archive/delta_00000000000000000007_a6701595.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000001_0de32255.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000001_0de32255.szcp new file mode 100644 index 00000000..5aed47f6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000001_0de32255.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000002_afb1c55b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000002_afb1c55b.szcp new file mode 100644 index 00000000..d53719c9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000002_afb1c55b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000003_3f10e773.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000003_3f10e773.szcp new file mode 100644 index 00000000..d0f7d46c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000003_3f10e773.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000004_99c4d8f6.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000004_99c4d8f6.szcp new file mode 100644 index 00000000..8fc0feeb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000004_99c4d8f6.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000005_694345cc.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000005_694345cc.szcp new file mode 100644 index 00000000..5e128058 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000005_694345cc.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000006_c8ef4711.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000006_c8ef4711.szcp new file mode 100644 index 00000000..61eeb8ae Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000006_c8ef4711.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000007_c10b4482.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000007_c10b4482.szcp new file mode 100644 index 00000000..df5947f8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_031/checkpoints/checkpoint_00000000000000000007_c10b4482.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000001_d68d99b0.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000001_d68d99b0.szar new file mode 100644 index 00000000..17a872ab Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000001_d68d99b0.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000002_edc0c66e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000002_edc0c66e.szar new file mode 100644 index 00000000..d29860fd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000002_edc0c66e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000003_02e3157a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000003_02e3157a.szar new file mode 100644 index 00000000..7d24ca94 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000003_02e3157a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000004_0f36305b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000004_0f36305b.szar new file mode 100644 index 00000000..049f836f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000004_0f36305b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000005_849b28ac.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000005_849b28ac.szar new file mode 100644 index 00000000..026680f5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000005_849b28ac.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000006_4d2c121d.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000006_4d2c121d.szar new file mode 100644 index 00000000..a6e57eab Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000006_4d2c121d.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000007_378a27cb.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000007_378a27cb.szar new file mode 100644 index 00000000..5d05c823 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000007_378a27cb.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000008_38217485.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000008_38217485.szar new file mode 100644 index 00000000..7f5b1701 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000008_38217485.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000009_8000ae03.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000009_8000ae03.szar new file mode 100644 index 00000000..60ce34ab Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000009_8000ae03.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000010_75d048f3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000010_75d048f3.szar new file mode 100644 index 00000000..4df75a41 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000010_75d048f3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000011_5dd46134.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000011_5dd46134.szar new file mode 100644 index 00000000..f899c610 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000011_5dd46134.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000012_7b25f3a7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000012_7b25f3a7.szar new file mode 100644 index 00000000..65d96d37 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/archive/delta_00000000000000000012_7b25f3a7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000001_0ee12472.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000001_0ee12472.szcp new file mode 100644 index 00000000..134513b7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000001_0ee12472.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000002_6bfde0f1.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000002_6bfde0f1.szcp new file mode 100644 index 00000000..1a99cdb0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000002_6bfde0f1.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000003_8bdd3837.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000003_8bdd3837.szcp new file mode 100644 index 00000000..750402dc Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000003_8bdd3837.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000004_9163e64b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000004_9163e64b.szcp new file mode 100644 index 00000000..6b792d87 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000004_9163e64b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000005_43480a0c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000005_43480a0c.szcp new file mode 100644 index 00000000..b2203bec Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000005_43480a0c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000006_00f2f1f4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000006_00f2f1f4.szcp new file mode 100644 index 00000000..c47beba6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000006_00f2f1f4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000007_e3d53b15.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000007_e3d53b15.szcp new file mode 100644 index 00000000..6b0f9284 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000007_e3d53b15.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000008_29a1bce7.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000008_29a1bce7.szcp new file mode 100644 index 00000000..8d0478de Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000008_29a1bce7.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000009_c98b2ff4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000009_c98b2ff4.szcp new file mode 100644 index 00000000..748c5d8c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000009_c98b2ff4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000010_0ac01bbc.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000010_0ac01bbc.szcp new file mode 100644 index 00000000..6e20aa01 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000010_0ac01bbc.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000011_c644ee20.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000011_c644ee20.szcp new file mode 100644 index 00000000..c2f7ab88 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000011_c644ee20.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000012_2b22e47c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000012_2b22e47c.szcp new file mode 100644 index 00000000..d1c3113d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_032/checkpoints/checkpoint_00000000000000000012_2b22e47c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000001_76d24697.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000001_76d24697.szar new file mode 100644 index 00000000..54ef45d4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000001_76d24697.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000002_3442f9bb.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000002_3442f9bb.szar new file mode 100644 index 00000000..e253959e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000002_3442f9bb.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000003_883434e0.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000003_883434e0.szar new file mode 100644 index 00000000..38da4051 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000003_883434e0.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000004_c724f2f4.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000004_c724f2f4.szar new file mode 100644 index 00000000..c4f6fe37 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000004_c724f2f4.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000005_ab218f75.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000005_ab218f75.szar new file mode 100644 index 00000000..e7b55007 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000005_ab218f75.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000006_7dd47ff3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000006_7dd47ff3.szar new file mode 100644 index 00000000..0964b783 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000006_7dd47ff3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000007_5c011591.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000007_5c011591.szar new file mode 100644 index 00000000..3677e4cb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/archive/delta_00000000000000000007_5c011591.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000001_97b9eced.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000001_97b9eced.szcp new file mode 100644 index 00000000..89e928d8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000001_97b9eced.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000002_5237a034.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000002_5237a034.szcp new file mode 100644 index 00000000..f184660f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000002_5237a034.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000003_cdcd1e06.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000003_cdcd1e06.szcp new file mode 100644 index 00000000..1223fb37 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000003_cdcd1e06.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000004_029cf4ee.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000004_029cf4ee.szcp new file mode 100644 index 00000000..2c973481 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000004_029cf4ee.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000005_81cf84ea.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000005_81cf84ea.szcp new file mode 100644 index 00000000..0597cd78 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000005_81cf84ea.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000006_90a25676.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000006_90a25676.szcp new file mode 100644 index 00000000..f82e62c4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000006_90a25676.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000007_32eb6935.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000007_32eb6935.szcp new file mode 100644 index 00000000..a8d29373 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_033/checkpoints/checkpoint_00000000000000000007_32eb6935.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000001_72893eca.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000001_72893eca.szar new file mode 100644 index 00000000..452f5ac5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000001_72893eca.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000002_ba4ed78c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000002_ba4ed78c.szar new file mode 100644 index 00000000..c381e45e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000002_ba4ed78c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000003_8e52f710.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000003_8e52f710.szar new file mode 100644 index 00000000..7f2af00d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000003_8e52f710.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000004_a9275206.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000004_a9275206.szar new file mode 100644 index 00000000..c9586e26 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000004_a9275206.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000005_c89fd932.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000005_c89fd932.szar new file mode 100644 index 00000000..79ba8796 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000005_c89fd932.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000006_b311cc62.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000006_b311cc62.szar new file mode 100644 index 00000000..5fd9a1d3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000006_b311cc62.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000007_cb4d2ed2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000007_cb4d2ed2.szar new file mode 100644 index 00000000..8df58aeb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000007_cb4d2ed2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000008_6f3216ca.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000008_6f3216ca.szar new file mode 100644 index 00000000..7b60111e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000008_6f3216ca.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000009_e354a938.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000009_e354a938.szar new file mode 100644 index 00000000..27558523 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000009_e354a938.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000010_20fd1520.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000010_20fd1520.szar new file mode 100644 index 00000000..2f96358f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000010_20fd1520.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000011_c8429c1f.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000011_c8429c1f.szar new file mode 100644 index 00000000..36af6864 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000011_c8429c1f.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000012_97818e33.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000012_97818e33.szar new file mode 100644 index 00000000..4d786280 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/archive/delta_00000000000000000012_97818e33.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000001_2a7a920d.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000001_2a7a920d.szcp new file mode 100644 index 00000000..3f940215 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000001_2a7a920d.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000002_c8227747.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000002_c8227747.szcp new file mode 100644 index 00000000..c7bcd414 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000002_c8227747.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000003_e2c9f5c9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000003_e2c9f5c9.szcp new file mode 100644 index 00000000..2ef57b92 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000003_e2c9f5c9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000004_3fc48fdc.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000004_3fc48fdc.szcp new file mode 100644 index 00000000..fea8eb7a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000004_3fc48fdc.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000005_3f7e4d42.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000005_3f7e4d42.szcp new file mode 100644 index 00000000..adf88911 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000005_3f7e4d42.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000006_c63be0e0.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000006_c63be0e0.szcp new file mode 100644 index 00000000..11e7141b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000006_c63be0e0.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000007_63021198.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000007_63021198.szcp new file mode 100644 index 00000000..cc1930b3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000007_63021198.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000008_28e34eed.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000008_28e34eed.szcp new file mode 100644 index 00000000..422fb4e6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000008_28e34eed.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000009_c7a35ef7.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000009_c7a35ef7.szcp new file mode 100644 index 00000000..45359a45 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000009_c7a35ef7.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000010_0b47cb00.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000010_0b47cb00.szcp new file mode 100644 index 00000000..cdc21bf4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000010_0b47cb00.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000011_5f7ef8e1.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000011_5f7ef8e1.szcp new file mode 100644 index 00000000..1e27b140 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000011_5f7ef8e1.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000012_35153940.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000012_35153940.szcp new file mode 100644 index 00000000..d31ea339 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_034/checkpoints/checkpoint_00000000000000000012_35153940.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000001_75ab6fcf.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000001_75ab6fcf.szar new file mode 100644 index 00000000..b6cb6ce3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000001_75ab6fcf.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000002_8380f85c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000002_8380f85c.szar new file mode 100644 index 00000000..d0c6e8a0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000002_8380f85c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000003_d4e8ae39.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000003_d4e8ae39.szar new file mode 100644 index 00000000..7230488e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000003_d4e8ae39.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000004_f9fe69d3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000004_f9fe69d3.szar new file mode 100644 index 00000000..6a24dc48 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000004_f9fe69d3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000005_510d68aa.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000005_510d68aa.szar new file mode 100644 index 00000000..8a4631bf Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000005_510d68aa.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000006_e3144d83.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000006_e3144d83.szar new file mode 100644 index 00000000..05add0c4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000006_e3144d83.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000007_92b85a00.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000007_92b85a00.szar new file mode 100644 index 00000000..98216ccb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000007_92b85a00.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000008_6a921821.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000008_6a921821.szar new file mode 100644 index 00000000..55330219 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000008_6a921821.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000009_4c5c6307.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000009_4c5c6307.szar new file mode 100644 index 00000000..4d79c32e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000009_4c5c6307.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000010_ee208f01.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000010_ee208f01.szar new file mode 100644 index 00000000..52e0fd61 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000010_ee208f01.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000011_566ef002.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000011_566ef002.szar new file mode 100644 index 00000000..c1ac3af7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/archive/delta_00000000000000000011_566ef002.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000001_e037440d.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000001_e037440d.szcp new file mode 100644 index 00000000..36272110 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000001_e037440d.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000002_4af66c9d.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000002_4af66c9d.szcp new file mode 100644 index 00000000..d8a4527e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000002_4af66c9d.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000003_373bc2e4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000003_373bc2e4.szcp new file mode 100644 index 00000000..5727c5be Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000003_373bc2e4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000004_1b548124.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000004_1b548124.szcp new file mode 100644 index 00000000..5bae5542 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000004_1b548124.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000005_4d675913.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000005_4d675913.szcp new file mode 100644 index 00000000..c282970b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000005_4d675913.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000006_011ce78a.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000006_011ce78a.szcp new file mode 100644 index 00000000..f124ca7d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000006_011ce78a.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000007_28fed995.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000007_28fed995.szcp new file mode 100644 index 00000000..2eed9666 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000007_28fed995.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000008_77fe4d4a.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000008_77fe4d4a.szcp new file mode 100644 index 00000000..18fc480c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000008_77fe4d4a.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000009_1c394a6f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000009_1c394a6f.szcp new file mode 100644 index 00000000..e8ab0d48 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000009_1c394a6f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000010_2ed06a63.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000010_2ed06a63.szcp new file mode 100644 index 00000000..2b4c7aff Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000010_2ed06a63.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000011_4c1c374c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000011_4c1c374c.szcp new file mode 100644 index 00000000..ab691745 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_035/checkpoints/checkpoint_00000000000000000011_4c1c374c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000001_a1482095.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000001_a1482095.szar new file mode 100644 index 00000000..51dcdbef Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000001_a1482095.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000002_e255982d.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000002_e255982d.szar new file mode 100644 index 00000000..e307d39c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000002_e255982d.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000003_96bb6b39.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000003_96bb6b39.szar new file mode 100644 index 00000000..3fd562cd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000003_96bb6b39.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000004_ee8e1b01.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000004_ee8e1b01.szar new file mode 100644 index 00000000..addf3e8f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000004_ee8e1b01.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000005_b80fab9c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000005_b80fab9c.szar new file mode 100644 index 00000000..7398b90a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000005_b80fab9c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000006_8041ef16.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000006_8041ef16.szar new file mode 100644 index 00000000..de98e8b4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000006_8041ef16.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000007_87ecc223.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000007_87ecc223.szar new file mode 100644 index 00000000..39aec573 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000007_87ecc223.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000008_06125d46.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000008_06125d46.szar new file mode 100644 index 00000000..14fa26cc Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000008_06125d46.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000009_ca422683.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000009_ca422683.szar new file mode 100644 index 00000000..a4e8dfaa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000009_ca422683.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000010_865250b4.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000010_865250b4.szar new file mode 100644 index 00000000..5730c3f7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/archive/delta_00000000000000000010_865250b4.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000001_2dfd7238.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000001_2dfd7238.szcp new file mode 100644 index 00000000..2b87151e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000001_2dfd7238.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000002_6cef0d23.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000002_6cef0d23.szcp new file mode 100644 index 00000000..cd6f7375 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000002_6cef0d23.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000003_4026fd65.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000003_4026fd65.szcp new file mode 100644 index 00000000..d32a5ce8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000003_4026fd65.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000004_c2b6c7b9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000004_c2b6c7b9.szcp new file mode 100644 index 00000000..31e16b4a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000004_c2b6c7b9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000005_d7c47c72.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000005_d7c47c72.szcp new file mode 100644 index 00000000..75c4dd40 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000005_d7c47c72.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000006_25a32e1b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000006_25a32e1b.szcp new file mode 100644 index 00000000..102f712a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000006_25a32e1b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000007_9be273fc.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000007_9be273fc.szcp new file mode 100644 index 00000000..26eb8c90 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000007_9be273fc.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000008_8d3b5ddf.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000008_8d3b5ddf.szcp new file mode 100644 index 00000000..7696a811 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000008_8d3b5ddf.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000009_a1d82286.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000009_a1d82286.szcp new file mode 100644 index 00000000..837d126d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000009_a1d82286.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000010_134bab37.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000010_134bab37.szcp new file mode 100644 index 00000000..d300a311 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_036/checkpoints/checkpoint_00000000000000000010_134bab37.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000001_933c451f.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000001_933c451f.szar new file mode 100644 index 00000000..2355d727 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000001_933c451f.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000002_ce5af282.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000002_ce5af282.szar new file mode 100644 index 00000000..d6541dbe Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000002_ce5af282.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000003_154f9356.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000003_154f9356.szar new file mode 100644 index 00000000..eaf87525 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000003_154f9356.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000004_25506aaf.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000004_25506aaf.szar new file mode 100644 index 00000000..8f5b8173 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000004_25506aaf.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000005_7c5f11f5.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000005_7c5f11f5.szar new file mode 100644 index 00000000..42eca23c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000005_7c5f11f5.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000006_1ab15284.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000006_1ab15284.szar new file mode 100644 index 00000000..48ee250c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000006_1ab15284.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000007_4b988d26.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000007_4b988d26.szar new file mode 100644 index 00000000..3532dd8f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000007_4b988d26.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000008_dd211552.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000008_dd211552.szar new file mode 100644 index 00000000..143ef917 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000008_dd211552.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000009_71623458.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000009_71623458.szar new file mode 100644 index 00000000..c5365ae4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000009_71623458.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000010_43f76281.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000010_43f76281.szar new file mode 100644 index 00000000..7875e0d1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000010_43f76281.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000011_34bf8059.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000011_34bf8059.szar new file mode 100644 index 00000000..8e07062b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/archive/delta_00000000000000000011_34bf8059.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000001_a2093637.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000001_a2093637.szcp new file mode 100644 index 00000000..68c15bed Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000001_a2093637.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000002_89d2a25a.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000002_89d2a25a.szcp new file mode 100644 index 00000000..5dfa139c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000002_89d2a25a.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000003_9bf5c3ca.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000003_9bf5c3ca.szcp new file mode 100644 index 00000000..2b5c81a7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000003_9bf5c3ca.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000004_36852a93.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000004_36852a93.szcp new file mode 100644 index 00000000..7fdbc6a6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000004_36852a93.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000005_de3fd650.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000005_de3fd650.szcp new file mode 100644 index 00000000..6cc7f3e4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000005_de3fd650.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000006_22cc2b7c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000006_22cc2b7c.szcp new file mode 100644 index 00000000..9547ec8d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000006_22cc2b7c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000007_c35842b8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000007_c35842b8.szcp new file mode 100644 index 00000000..ff0f35a5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000007_c35842b8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000008_d2974c11.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000008_d2974c11.szcp new file mode 100644 index 00000000..c6b2422b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000008_d2974c11.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000009_8bcba299.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000009_8bcba299.szcp new file mode 100644 index 00000000..79163d62 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000009_8bcba299.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000010_200eab2f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000010_200eab2f.szcp new file mode 100644 index 00000000..9ce24bfa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000010_200eab2f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000011_b390fcae.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000011_b390fcae.szcp new file mode 100644 index 00000000..594645f3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_037/checkpoints/checkpoint_00000000000000000011_b390fcae.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000001_45d82fac.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000001_45d82fac.szar new file mode 100644 index 00000000..393f56c9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000001_45d82fac.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000002_0faff5c0.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000002_0faff5c0.szar new file mode 100644 index 00000000..f189248e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000002_0faff5c0.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000003_7337c412.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000003_7337c412.szar new file mode 100644 index 00000000..c7aab1b5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000003_7337c412.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000004_8a890068.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000004_8a890068.szar new file mode 100644 index 00000000..7fae7cfc Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000004_8a890068.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000005_7f4bc5c3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000005_7f4bc5c3.szar new file mode 100644 index 00000000..178e21d8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000005_7f4bc5c3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000006_9cae14b6.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000006_9cae14b6.szar new file mode 100644 index 00000000..368efb08 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000006_9cae14b6.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000007_042d53be.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000007_042d53be.szar new file mode 100644 index 00000000..b289b0b1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/archive/delta_00000000000000000007_042d53be.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000001_a3a4d7ef.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000001_a3a4d7ef.szcp new file mode 100644 index 00000000..07d76e8d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000001_a3a4d7ef.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000002_790d9ecb.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000002_790d9ecb.szcp new file mode 100644 index 00000000..f9d36108 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000002_790d9ecb.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000003_c85578a2.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000003_c85578a2.szcp new file mode 100644 index 00000000..12d66e7a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000003_c85578a2.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000004_bc47e159.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000004_bc47e159.szcp new file mode 100644 index 00000000..9e5e1cff Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000004_bc47e159.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000005_d8c8ed74.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000005_d8c8ed74.szcp new file mode 100644 index 00000000..94d5ea4c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000005_d8c8ed74.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000006_46e81d07.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000006_46e81d07.szcp new file mode 100644 index 00000000..c3c4b22d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000006_46e81d07.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000007_0e69bc73.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000007_0e69bc73.szcp new file mode 100644 index 00000000..5e4f6a7a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_038/checkpoints/checkpoint_00000000000000000007_0e69bc73.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000001_3a522edb.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000001_3a522edb.szar new file mode 100644 index 00000000..e8d5f7dd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000001_3a522edb.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000002_cbd44a4a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000002_cbd44a4a.szar new file mode 100644 index 00000000..8cf29273 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000002_cbd44a4a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000003_503377fd.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000003_503377fd.szar new file mode 100644 index 00000000..66f4e8bd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000003_503377fd.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000004_68110480.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000004_68110480.szar new file mode 100644 index 00000000..19f1eae6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000004_68110480.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000005_5d397f26.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000005_5d397f26.szar new file mode 100644 index 00000000..105592db Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000005_5d397f26.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000006_44c9eedd.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000006_44c9eedd.szar new file mode 100644 index 00000000..cab56f1f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000006_44c9eedd.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000007_0562a96a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000007_0562a96a.szar new file mode 100644 index 00000000..699f50df Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/archive/delta_00000000000000000007_0562a96a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000001_c80c0005.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000001_c80c0005.szcp new file mode 100644 index 00000000..ff1a29d3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000001_c80c0005.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000002_38914cd3.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000002_38914cd3.szcp new file mode 100644 index 00000000..a85d7410 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000002_38914cd3.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000003_7c62f3ac.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000003_7c62f3ac.szcp new file mode 100644 index 00000000..106cdb57 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000003_7c62f3ac.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000004_8530cf10.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000004_8530cf10.szcp new file mode 100644 index 00000000..e3849346 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000004_8530cf10.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000005_bcc99994.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000005_bcc99994.szcp new file mode 100644 index 00000000..abb264b6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000005_bcc99994.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000006_db42cdae.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000006_db42cdae.szcp new file mode 100644 index 00000000..e9c5e583 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000006_db42cdae.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000007_83427c05.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000007_83427c05.szcp new file mode 100644 index 00000000..b007537c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_039/checkpoints/checkpoint_00000000000000000007_83427c05.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000001_5e50b7af.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000001_5e50b7af.szar new file mode 100644 index 00000000..3a02ca97 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000001_5e50b7af.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000002_6f0e2339.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000002_6f0e2339.szar new file mode 100644 index 00000000..85944b0d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000002_6f0e2339.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000003_acbaa045.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000003_acbaa045.szar new file mode 100644 index 00000000..1375e21f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000003_acbaa045.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000004_da01c5f0.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000004_da01c5f0.szar new file mode 100644 index 00000000..12ddabda Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000004_da01c5f0.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000005_0c406aaa.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000005_0c406aaa.szar new file mode 100644 index 00000000..80151b36 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000005_0c406aaa.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000006_5c3c009c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000006_5c3c009c.szar new file mode 100644 index 00000000..c6e6a83b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000006_5c3c009c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000007_623f9e87.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000007_623f9e87.szar new file mode 100644 index 00000000..0ffd1c16 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000007_623f9e87.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000008_115f5b8b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000008_115f5b8b.szar new file mode 100644 index 00000000..716e2161 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000008_115f5b8b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000009_80d8aaef.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000009_80d8aaef.szar new file mode 100644 index 00000000..5db9ed36 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000009_80d8aaef.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000010_f62ca932.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000010_f62ca932.szar new file mode 100644 index 00000000..540ae071 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000010_f62ca932.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000011_c6c96ff2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000011_c6c96ff2.szar new file mode 100644 index 00000000..fc8130d6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/archive/delta_00000000000000000011_c6c96ff2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000001_1b89ec3c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000001_1b89ec3c.szcp new file mode 100644 index 00000000..b219b9a4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000001_1b89ec3c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000002_ff6cf7e7.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000002_ff6cf7e7.szcp new file mode 100644 index 00000000..d86f9cb5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000002_ff6cf7e7.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000003_74b3c826.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000003_74b3c826.szcp new file mode 100644 index 00000000..c44d1546 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000003_74b3c826.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000004_c27807d4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000004_c27807d4.szcp new file mode 100644 index 00000000..ec702742 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000004_c27807d4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000005_31c996e8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000005_31c996e8.szcp new file mode 100644 index 00000000..86d1361d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000005_31c996e8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000006_908d3443.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000006_908d3443.szcp new file mode 100644 index 00000000..f98d312e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000006_908d3443.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000007_cee5a77b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000007_cee5a77b.szcp new file mode 100644 index 00000000..c0a4e504 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000007_cee5a77b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000008_79324750.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000008_79324750.szcp new file mode 100644 index 00000000..aa602364 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000008_79324750.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000009_f1e977bd.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000009_f1e977bd.szcp new file mode 100644 index 00000000..04cbddc6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000009_f1e977bd.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000010_f29e11ad.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000010_f29e11ad.szcp new file mode 100644 index 00000000..50d1ba15 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000010_f29e11ad.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000011_0e98f005.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000011_0e98f005.szcp new file mode 100644 index 00000000..aee4d240 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_040/checkpoints/checkpoint_00000000000000000011_0e98f005.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000001_6375c4a8.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000001_6375c4a8.szar new file mode 100644 index 00000000..4a2fbfdb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000001_6375c4a8.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000002_2de786b6.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000002_2de786b6.szar new file mode 100644 index 00000000..55aa81fa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000002_2de786b6.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000003_22be5de3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000003_22be5de3.szar new file mode 100644 index 00000000..15d66436 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000003_22be5de3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000004_59db7575.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000004_59db7575.szar new file mode 100644 index 00000000..a4369f3b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000004_59db7575.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000005_9fc7d32b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000005_9fc7d32b.szar new file mode 100644 index 00000000..d80a0acd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000005_9fc7d32b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000006_47a5501a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000006_47a5501a.szar new file mode 100644 index 00000000..725fe8f4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000006_47a5501a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000007_a2fd40a0.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000007_a2fd40a0.szar new file mode 100644 index 00000000..c56e620b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/archive/delta_00000000000000000007_a2fd40a0.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000001_9d42e808.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000001_9d42e808.szcp new file mode 100644 index 00000000..b19ee011 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000001_9d42e808.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000002_41607db5.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000002_41607db5.szcp new file mode 100644 index 00000000..de591cfa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000002_41607db5.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000003_abf8c3e6.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000003_abf8c3e6.szcp new file mode 100644 index 00000000..a8fff755 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000003_abf8c3e6.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000004_99f84942.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000004_99f84942.szcp new file mode 100644 index 00000000..961d45ae Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000004_99f84942.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000005_373ad137.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000005_373ad137.szcp new file mode 100644 index 00000000..94b0befa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000005_373ad137.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000006_6d3a79c8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000006_6d3a79c8.szcp new file mode 100644 index 00000000..597f1b84 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000006_6d3a79c8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000007_b0ad397e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000007_b0ad397e.szcp new file mode 100644 index 00000000..25cad0fd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_041/checkpoints/checkpoint_00000000000000000007_b0ad397e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000001_d15a96b3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000001_d15a96b3.szar new file mode 100644 index 00000000..f325c324 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000001_d15a96b3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000002_5a21ad86.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000002_5a21ad86.szar new file mode 100644 index 00000000..ce4e4697 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000002_5a21ad86.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000003_6a95de1c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000003_6a95de1c.szar new file mode 100644 index 00000000..109a6ce4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000003_6a95de1c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000004_80045eb3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000004_80045eb3.szar new file mode 100644 index 00000000..d86b8227 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000004_80045eb3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000005_3a0f1a81.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000005_3a0f1a81.szar new file mode 100644 index 00000000..7c73936a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000005_3a0f1a81.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000006_571bf1c6.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000006_571bf1c6.szar new file mode 100644 index 00000000..09dc299e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000006_571bf1c6.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000007_c771adb5.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000007_c771adb5.szar new file mode 100644 index 00000000..16cad59a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/archive/delta_00000000000000000007_c771adb5.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000001_e2bcd2fe.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000001_e2bcd2fe.szcp new file mode 100644 index 00000000..74f89360 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000001_e2bcd2fe.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000002_b8d9e449.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000002_b8d9e449.szcp new file mode 100644 index 00000000..d5752864 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000002_b8d9e449.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000003_6ce93496.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000003_6ce93496.szcp new file mode 100644 index 00000000..ce251494 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000003_6ce93496.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000004_12623f95.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000004_12623f95.szcp new file mode 100644 index 00000000..7cc419f0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000004_12623f95.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000005_3da660cf.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000005_3da660cf.szcp new file mode 100644 index 00000000..536502f6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000005_3da660cf.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000006_cf0595ef.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000006_cf0595ef.szcp new file mode 100644 index 00000000..cd562981 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000006_cf0595ef.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000007_5ac55a8b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000007_5ac55a8b.szcp new file mode 100644 index 00000000..468b77e0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_042/checkpoints/checkpoint_00000000000000000007_5ac55a8b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000001_319c7ba4.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000001_319c7ba4.szar new file mode 100644 index 00000000..5a68d28e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000001_319c7ba4.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000002_868846bb.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000002_868846bb.szar new file mode 100644 index 00000000..c9e9db5d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000002_868846bb.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000003_602959d2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000003_602959d2.szar new file mode 100644 index 00000000..65d2e3e5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000003_602959d2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000004_9b72eddd.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000004_9b72eddd.szar new file mode 100644 index 00000000..a746cad8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000004_9b72eddd.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000005_a846fada.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000005_a846fada.szar new file mode 100644 index 00000000..0fbf0b02 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000005_a846fada.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000006_2267a240.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000006_2267a240.szar new file mode 100644 index 00000000..da64856e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000006_2267a240.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000007_d257adbd.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000007_d257adbd.szar new file mode 100644 index 00000000..3c98db51 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000007_d257adbd.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000008_f7f30b87.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000008_f7f30b87.szar new file mode 100644 index 00000000..c324f919 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000008_f7f30b87.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000009_2ce3cfd3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000009_2ce3cfd3.szar new file mode 100644 index 00000000..a78e4d93 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000009_2ce3cfd3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000010_e75f8e9e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000010_e75f8e9e.szar new file mode 100644 index 00000000..d11ce342 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000010_e75f8e9e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000011_8324d250.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000011_8324d250.szar new file mode 100644 index 00000000..b2731f9c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000011_8324d250.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000012_7d5d1572.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000012_7d5d1572.szar new file mode 100644 index 00000000..a4cae3f3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000012_7d5d1572.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000013_e835589e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000013_e835589e.szar new file mode 100644 index 00000000..5dede183 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/archive/delta_00000000000000000013_e835589e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000001_78f9a2d4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000001_78f9a2d4.szcp new file mode 100644 index 00000000..bc99338b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000001_78f9a2d4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000002_923c49f4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000002_923c49f4.szcp new file mode 100644 index 00000000..b9b21180 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000002_923c49f4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000003_7c5fe4df.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000003_7c5fe4df.szcp new file mode 100644 index 00000000..1cf516b8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000003_7c5fe4df.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000004_78ab0678.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000004_78ab0678.szcp new file mode 100644 index 00000000..19f94aa4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000004_78ab0678.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000005_11747c1b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000005_11747c1b.szcp new file mode 100644 index 00000000..f1a97da0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000005_11747c1b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000006_23958651.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000006_23958651.szcp new file mode 100644 index 00000000..62e9da09 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000006_23958651.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000007_14bc088e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000007_14bc088e.szcp new file mode 100644 index 00000000..0148991d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000007_14bc088e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000008_ece4bd92.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000008_ece4bd92.szcp new file mode 100644 index 00000000..a7a3acb5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000008_ece4bd92.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000009_710909f3.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000009_710909f3.szcp new file mode 100644 index 00000000..e7e2911c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000009_710909f3.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000010_7c58e379.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000010_7c58e379.szcp new file mode 100644 index 00000000..85a209e5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000010_7c58e379.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000011_ca792092.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000011_ca792092.szcp new file mode 100644 index 00000000..caf714f7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000011_ca792092.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000012_991269a6.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000012_991269a6.szcp new file mode 100644 index 00000000..f78e4a8b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000012_991269a6.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000013_ee585902.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000013_ee585902.szcp new file mode 100644 index 00000000..48638b0b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_043/checkpoints/checkpoint_00000000000000000013_ee585902.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000001_383dfedf.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000001_383dfedf.szar new file mode 100644 index 00000000..4f4fd9d0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000001_383dfedf.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000002_c165f223.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000002_c165f223.szar new file mode 100644 index 00000000..2049baac Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000002_c165f223.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000003_d68831c7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000003_d68831c7.szar new file mode 100644 index 00000000..0eb3ca5c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000003_d68831c7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000004_61199952.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000004_61199952.szar new file mode 100644 index 00000000..3fcd6832 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000004_61199952.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000005_7725ec41.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000005_7725ec41.szar new file mode 100644 index 00000000..2469cb26 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000005_7725ec41.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000006_94ebecd6.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000006_94ebecd6.szar new file mode 100644 index 00000000..08978515 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000006_94ebecd6.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000007_c1ec455e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000007_c1ec455e.szar new file mode 100644 index 00000000..0c9377b0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/archive/delta_00000000000000000007_c1ec455e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000001_d4489cc8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000001_d4489cc8.szcp new file mode 100644 index 00000000..b410630b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000001_d4489cc8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000002_653e47e1.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000002_653e47e1.szcp new file mode 100644 index 00000000..428949b6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000002_653e47e1.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000003_71c64766.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000003_71c64766.szcp new file mode 100644 index 00000000..4ac556d2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000003_71c64766.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000004_8e37eacc.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000004_8e37eacc.szcp new file mode 100644 index 00000000..b3dd5a55 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000004_8e37eacc.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000005_48fc61af.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000005_48fc61af.szcp new file mode 100644 index 00000000..1be9d417 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000005_48fc61af.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000006_141df732.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000006_141df732.szcp new file mode 100644 index 00000000..a7e19a48 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000006_141df732.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000007_dfa0d590.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000007_dfa0d590.szcp new file mode 100644 index 00000000..2439fcc1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_044/checkpoints/checkpoint_00000000000000000007_dfa0d590.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000001_c95e610d.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000001_c95e610d.szar new file mode 100644 index 00000000..d4faeb7d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000001_c95e610d.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000002_e2559827.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000002_e2559827.szar new file mode 100644 index 00000000..b116913e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000002_e2559827.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000003_6e80016d.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000003_6e80016d.szar new file mode 100644 index 00000000..b51bdf0e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000003_6e80016d.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000004_b0742dc0.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000004_b0742dc0.szar new file mode 100644 index 00000000..ef9a87f7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000004_b0742dc0.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000005_5397e1c2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000005_5397e1c2.szar new file mode 100644 index 00000000..79987044 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000005_5397e1c2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000006_1590986f.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000006_1590986f.szar new file mode 100644 index 00000000..23014740 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000006_1590986f.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000007_eae1d7e2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000007_eae1d7e2.szar new file mode 100644 index 00000000..6c255749 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/archive/delta_00000000000000000007_eae1d7e2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000001_700a2215.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000001_700a2215.szcp new file mode 100644 index 00000000..b06eb4dd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000001_700a2215.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000002_97b2b5df.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000002_97b2b5df.szcp new file mode 100644 index 00000000..b320860b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000002_97b2b5df.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000003_3143b05b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000003_3143b05b.szcp new file mode 100644 index 00000000..cc6b6cc2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000003_3143b05b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000004_9284302a.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000004_9284302a.szcp new file mode 100644 index 00000000..3367dd37 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000004_9284302a.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000005_23b99360.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000005_23b99360.szcp new file mode 100644 index 00000000..8ad5f999 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000005_23b99360.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000006_695a7621.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000006_695a7621.szcp new file mode 100644 index 00000000..488af347 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000006_695a7621.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000007_9fd98352.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000007_9fd98352.szcp new file mode 100644 index 00000000..69a2267d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_045/checkpoints/checkpoint_00000000000000000007_9fd98352.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000001_76a33960.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000001_76a33960.szar new file mode 100644 index 00000000..3a4a0324 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000001_76a33960.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000002_45d8456f.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000002_45d8456f.szar new file mode 100644 index 00000000..73cf3966 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000002_45d8456f.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000003_e8bbd649.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000003_e8bbd649.szar new file mode 100644 index 00000000..cde2d3c8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000003_e8bbd649.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000004_9542ea27.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000004_9542ea27.szar new file mode 100644 index 00000000..5561ec74 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000004_9542ea27.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000005_2f26ee51.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000005_2f26ee51.szar new file mode 100644 index 00000000..29e4b4ee Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000005_2f26ee51.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000006_665bb05e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000006_665bb05e.szar new file mode 100644 index 00000000..4e964941 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000006_665bb05e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000007_4956674b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000007_4956674b.szar new file mode 100644 index 00000000..c291fb4b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000007_4956674b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000008_6e6ca5e8.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000008_6e6ca5e8.szar new file mode 100644 index 00000000..38309529 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000008_6e6ca5e8.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000009_eb1ef7a4.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000009_eb1ef7a4.szar new file mode 100644 index 00000000..5b051d1f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000009_eb1ef7a4.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000010_eb51ce47.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000010_eb51ce47.szar new file mode 100644 index 00000000..0a80b4ea Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000010_eb51ce47.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000011_4d1b204a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000011_4d1b204a.szar new file mode 100644 index 00000000..7cfcbfda Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000011_4d1b204a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000012_07a573ce.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000012_07a573ce.szar new file mode 100644 index 00000000..9c8104f8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000012_07a573ce.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000013_b63baaa7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000013_b63baaa7.szar new file mode 100644 index 00000000..55cd364c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/archive/delta_00000000000000000013_b63baaa7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000001_923180e7.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000001_923180e7.szcp new file mode 100644 index 00000000..13ffacd4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000001_923180e7.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000002_b4dfb81a.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000002_b4dfb81a.szcp new file mode 100644 index 00000000..42543786 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000002_b4dfb81a.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000003_fa2ab637.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000003_fa2ab637.szcp new file mode 100644 index 00000000..6da56350 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000003_fa2ab637.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000004_096536b4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000004_096536b4.szcp new file mode 100644 index 00000000..70d5a981 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000004_096536b4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000005_d12b05d1.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000005_d12b05d1.szcp new file mode 100644 index 00000000..0e7dbe45 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000005_d12b05d1.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000006_3591a4ac.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000006_3591a4ac.szcp new file mode 100644 index 00000000..191a60f6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000006_3591a4ac.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000007_ff60fa93.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000007_ff60fa93.szcp new file mode 100644 index 00000000..66590904 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000007_ff60fa93.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000008_56dda929.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000008_56dda929.szcp new file mode 100644 index 00000000..a31ac537 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000008_56dda929.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000009_671a3eb8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000009_671a3eb8.szcp new file mode 100644 index 00000000..05d934c8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000009_671a3eb8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000010_557db4db.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000010_557db4db.szcp new file mode 100644 index 00000000..6d9986ea Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000010_557db4db.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000011_5eb76269.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000011_5eb76269.szcp new file mode 100644 index 00000000..05335cc6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000011_5eb76269.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000012_ccee1a92.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000012_ccee1a92.szcp new file mode 100644 index 00000000..36c6dcac Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000012_ccee1a92.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000013_883fa4a3.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000013_883fa4a3.szcp new file mode 100644 index 00000000..f7722a14 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_046/checkpoints/checkpoint_00000000000000000013_883fa4a3.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000001_bf9ee89e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000001_bf9ee89e.szar new file mode 100644 index 00000000..fd8c6d1f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000001_bf9ee89e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000002_c3e48640.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000002_c3e48640.szar new file mode 100644 index 00000000..a9496ab6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000002_c3e48640.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000003_f242eb5b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000003_f242eb5b.szar new file mode 100644 index 00000000..e0debb5c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000003_f242eb5b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000004_48e5c424.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000004_48e5c424.szar new file mode 100644 index 00000000..e9317b43 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000004_48e5c424.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000005_974c047a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000005_974c047a.szar new file mode 100644 index 00000000..ef3a1b35 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000005_974c047a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000006_28d792ce.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000006_28d792ce.szar new file mode 100644 index 00000000..e9b1c975 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000006_28d792ce.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000007_3afbe098.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000007_3afbe098.szar new file mode 100644 index 00000000..83aed4ec Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000007_3afbe098.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000008_d1330701.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000008_d1330701.szar new file mode 100644 index 00000000..c254850d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000008_d1330701.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000009_342513ab.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000009_342513ab.szar new file mode 100644 index 00000000..2054f840 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000009_342513ab.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000010_31a9bc6e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000010_31a9bc6e.szar new file mode 100644 index 00000000..0e681dab Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000010_31a9bc6e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000011_1944c88c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000011_1944c88c.szar new file mode 100644 index 00000000..b8b64174 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/archive/delta_00000000000000000011_1944c88c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000001_7cc7f463.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000001_7cc7f463.szcp new file mode 100644 index 00000000..ada9f5e9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000001_7cc7f463.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000002_b3a60e43.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000002_b3a60e43.szcp new file mode 100644 index 00000000..7a137f75 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000002_b3a60e43.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000003_30f92891.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000003_30f92891.szcp new file mode 100644 index 00000000..0bf5608f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000003_30f92891.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000004_769217a7.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000004_769217a7.szcp new file mode 100644 index 00000000..afa433e3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000004_769217a7.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000005_07a5107b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000005_07a5107b.szcp new file mode 100644 index 00000000..f05cd464 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000005_07a5107b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000006_8b1dd351.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000006_8b1dd351.szcp new file mode 100644 index 00000000..848e64ad Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000006_8b1dd351.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000007_ff69be29.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000007_ff69be29.szcp new file mode 100644 index 00000000..fc45c1eb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000007_ff69be29.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000008_61f16c70.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000008_61f16c70.szcp new file mode 100644 index 00000000..9dc85309 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000008_61f16c70.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000009_10f1bf2f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000009_10f1bf2f.szcp new file mode 100644 index 00000000..f7dd579e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000009_10f1bf2f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000010_80d6ffed.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000010_80d6ffed.szcp new file mode 100644 index 00000000..8e50b094 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000010_80d6ffed.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000011_1c852c7e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000011_1c852c7e.szcp new file mode 100644 index 00000000..e041cfcb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_047/checkpoints/checkpoint_00000000000000000011_1c852c7e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000001_98fcd92a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000001_98fcd92a.szar new file mode 100644 index 00000000..1cf6fa0f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000001_98fcd92a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000002_9e36db33.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000002_9e36db33.szar new file mode 100644 index 00000000..69472836 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000002_9e36db33.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000003_f0ebd1d2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000003_f0ebd1d2.szar new file mode 100644 index 00000000..515c5027 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000003_f0ebd1d2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000004_ed5f95a5.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000004_ed5f95a5.szar new file mode 100644 index 00000000..8b62c6b2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000004_ed5f95a5.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000005_d87dae72.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000005_d87dae72.szar new file mode 100644 index 00000000..e257f520 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000005_d87dae72.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000006_e8fe6e11.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000006_e8fe6e11.szar new file mode 100644 index 00000000..13af8996 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000006_e8fe6e11.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000007_dd0667b8.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000007_dd0667b8.szar new file mode 100644 index 00000000..c72aa6ae Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/archive/delta_00000000000000000007_dd0667b8.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000001_25632b2f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000001_25632b2f.szcp new file mode 100644 index 00000000..fd75ea6d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000001_25632b2f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000002_39180dcd.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000002_39180dcd.szcp new file mode 100644 index 00000000..5992bb95 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000002_39180dcd.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000003_cbe68372.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000003_cbe68372.szcp new file mode 100644 index 00000000..15be4b66 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000003_cbe68372.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000004_50f43a6c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000004_50f43a6c.szcp new file mode 100644 index 00000000..52b3a2ae Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000004_50f43a6c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000005_adb208bb.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000005_adb208bb.szcp new file mode 100644 index 00000000..05f76aaa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000005_adb208bb.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000006_8a094f69.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000006_8a094f69.szcp new file mode 100644 index 00000000..eca74e84 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000006_8a094f69.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000007_b433d7e6.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000007_b433d7e6.szcp new file mode 100644 index 00000000..41e715a3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_048/checkpoints/checkpoint_00000000000000000007_b433d7e6.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000001_6efa721b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000001_6efa721b.szar new file mode 100644 index 00000000..ae0ffd48 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000001_6efa721b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000002_50970ed6.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000002_50970ed6.szar new file mode 100644 index 00000000..5aa81e11 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000002_50970ed6.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000003_5c983844.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000003_5c983844.szar new file mode 100644 index 00000000..b66c6f31 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000003_5c983844.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000004_47aa3fce.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000004_47aa3fce.szar new file mode 100644 index 00000000..bc6df036 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000004_47aa3fce.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000005_ab65fcd8.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000005_ab65fcd8.szar new file mode 100644 index 00000000..74b6d7c2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000005_ab65fcd8.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000006_105d9ca0.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000006_105d9ca0.szar new file mode 100644 index 00000000..526352a4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000006_105d9ca0.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000007_729cad15.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000007_729cad15.szar new file mode 100644 index 00000000..ecd81922 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000007_729cad15.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000008_cffd30ea.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000008_cffd30ea.szar new file mode 100644 index 00000000..ba85a881 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000008_cffd30ea.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000009_fc5bae07.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000009_fc5bae07.szar new file mode 100644 index 00000000..974d90ed Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/archive/delta_00000000000000000009_fc5bae07.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000001_3944216a.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000001_3944216a.szcp new file mode 100644 index 00000000..40973c1c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000001_3944216a.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000002_d33c5bd5.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000002_d33c5bd5.szcp new file mode 100644 index 00000000..58f5af5f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000002_d33c5bd5.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000003_a55d3c8e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000003_a55d3c8e.szcp new file mode 100644 index 00000000..84a4c0ca Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000003_a55d3c8e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000004_3773d09c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000004_3773d09c.szcp new file mode 100644 index 00000000..15fc31c6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000004_3773d09c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000005_3a937f2e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000005_3a937f2e.szcp new file mode 100644 index 00000000..f684c066 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000005_3a937f2e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000006_396e67bd.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000006_396e67bd.szcp new file mode 100644 index 00000000..7f1d0882 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000006_396e67bd.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000007_004f85f6.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000007_004f85f6.szcp new file mode 100644 index 00000000..558f0075 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000007_004f85f6.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000008_fbfbd376.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000008_fbfbd376.szcp new file mode 100644 index 00000000..4a57ade5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000008_fbfbd376.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000009_ad232cae.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000009_ad232cae.szcp new file mode 100644 index 00000000..0c302f08 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_049/checkpoints/checkpoint_00000000000000000009_ad232cae.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000001_3e408c5d.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000001_3e408c5d.szar new file mode 100644 index 00000000..609e78c1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000001_3e408c5d.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000002_0fa058b9.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000002_0fa058b9.szar new file mode 100644 index 00000000..59f2e116 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000002_0fa058b9.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000003_df5494c8.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000003_df5494c8.szar new file mode 100644 index 00000000..f5939e3e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000003_df5494c8.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000004_cf976be9.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000004_cf976be9.szar new file mode 100644 index 00000000..9a367014 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000004_cf976be9.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000005_42646217.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000005_42646217.szar new file mode 100644 index 00000000..00bb3421 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000005_42646217.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000006_7e224469.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000006_7e224469.szar new file mode 100644 index 00000000..f5c96413 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000006_7e224469.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000007_784fd1e1.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000007_784fd1e1.szar new file mode 100644 index 00000000..bd58c50e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/archive/delta_00000000000000000007_784fd1e1.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000001_e666bb44.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000001_e666bb44.szcp new file mode 100644 index 00000000..e67c2d27 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000001_e666bb44.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000002_29c7bef4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000002_29c7bef4.szcp new file mode 100644 index 00000000..e108b0b3 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000002_29c7bef4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000003_a9ab03fe.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000003_a9ab03fe.szcp new file mode 100644 index 00000000..470ba434 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000003_a9ab03fe.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000004_2fc205a6.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000004_2fc205a6.szcp new file mode 100644 index 00000000..9f8e41bf Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000004_2fc205a6.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000005_a54fdf0c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000005_a54fdf0c.szcp new file mode 100644 index 00000000..81324173 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000005_a54fdf0c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000006_bbe84d84.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000006_bbe84d84.szcp new file mode 100644 index 00000000..619fe12d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000006_bbe84d84.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000007_fbdd89da.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000007_fbdd89da.szcp new file mode 100644 index 00000000..25009f6c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_050/checkpoints/checkpoint_00000000000000000007_fbdd89da.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000001_b54ea359.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000001_b54ea359.szar new file mode 100644 index 00000000..6266b644 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000001_b54ea359.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000002_87c27bdf.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000002_87c27bdf.szar new file mode 100644 index 00000000..2c918124 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000002_87c27bdf.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000003_0268ca1c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000003_0268ca1c.szar new file mode 100644 index 00000000..81b973b8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000003_0268ca1c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000004_1c5cd655.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000004_1c5cd655.szar new file mode 100644 index 00000000..d6f1d6c7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000004_1c5cd655.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000005_0f62ce9c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000005_0f62ce9c.szar new file mode 100644 index 00000000..1d0b378c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000005_0f62ce9c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000006_af440f2f.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000006_af440f2f.szar new file mode 100644 index 00000000..4416e874 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000006_af440f2f.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000007_0fce4104.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000007_0fce4104.szar new file mode 100644 index 00000000..57d0f333 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000007_0fce4104.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000008_7e9c1626.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000008_7e9c1626.szar new file mode 100644 index 00000000..eec04cf8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000008_7e9c1626.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000009_5978151b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000009_5978151b.szar new file mode 100644 index 00000000..03a132df Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000009_5978151b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000010_255725a7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000010_255725a7.szar new file mode 100644 index 00000000..70202495 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000010_255725a7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000011_ba16896e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000011_ba16896e.szar new file mode 100644 index 00000000..9343ac9b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000011_ba16896e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000012_1d3bf540.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000012_1d3bf540.szar new file mode 100644 index 00000000..64b51743 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000012_1d3bf540.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000013_805b0cfe.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000013_805b0cfe.szar new file mode 100644 index 00000000..b836b362 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/archive/delta_00000000000000000013_805b0cfe.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000001_a5b8419e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000001_a5b8419e.szcp new file mode 100644 index 00000000..843c04a7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000001_a5b8419e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000002_c5284d30.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000002_c5284d30.szcp new file mode 100644 index 00000000..03b8e8f4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000002_c5284d30.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000003_0a9d3ac3.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000003_0a9d3ac3.szcp new file mode 100644 index 00000000..28c78c7f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000003_0a9d3ac3.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000004_7cac3fd8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000004_7cac3fd8.szcp new file mode 100644 index 00000000..69952491 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000004_7cac3fd8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000005_6d5d068c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000005_6d5d068c.szcp new file mode 100644 index 00000000..09bb47e8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000005_6d5d068c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000006_d8f60477.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000006_d8f60477.szcp new file mode 100644 index 00000000..07281d72 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000006_d8f60477.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000007_82eaea51.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000007_82eaea51.szcp new file mode 100644 index 00000000..a3ac10d6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000007_82eaea51.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000008_58a53fd9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000008_58a53fd9.szcp new file mode 100644 index 00000000..bc5f7dd8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000008_58a53fd9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000009_94c75bb7.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000009_94c75bb7.szcp new file mode 100644 index 00000000..df465cd0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000009_94c75bb7.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000010_8bf3239e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000010_8bf3239e.szcp new file mode 100644 index 00000000..751261aa Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000010_8bf3239e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000011_da70177e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000011_da70177e.szcp new file mode 100644 index 00000000..c02e7ca0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000011_da70177e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000012_5fe6283e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000012_5fe6283e.szcp new file mode 100644 index 00000000..f76e6065 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000012_5fe6283e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000013_eda92331.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000013_eda92331.szcp new file mode 100644 index 00000000..7b0ff8b1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_051/checkpoints/checkpoint_00000000000000000013_eda92331.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000001_f21e6ee7.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000001_f21e6ee7.szar new file mode 100644 index 00000000..12f508c4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000001_f21e6ee7.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000002_9a2a4dcd.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000002_9a2a4dcd.szar new file mode 100644 index 00000000..37173e7a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000002_9a2a4dcd.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000003_2886a4c6.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000003_2886a4c6.szar new file mode 100644 index 00000000..d95f0d5b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000003_2886a4c6.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000004_c29ed050.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000004_c29ed050.szar new file mode 100644 index 00000000..b9ef9c00 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000004_c29ed050.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000005_e1f0eb75.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000005_e1f0eb75.szar new file mode 100644 index 00000000..402bf311 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000005_e1f0eb75.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000006_a81f19a1.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000006_a81f19a1.szar new file mode 100644 index 00000000..e9cf825b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000006_a81f19a1.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000007_0b0c2b36.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000007_0b0c2b36.szar new file mode 100644 index 00000000..b9a11930 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/archive/delta_00000000000000000007_0b0c2b36.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000001_3fee52fc.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000001_3fee52fc.szcp new file mode 100644 index 00000000..fe45b011 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000001_3fee52fc.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000002_013fd401.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000002_013fd401.szcp new file mode 100644 index 00000000..6f1f647f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000002_013fd401.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000003_f709bdc8.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000003_f709bdc8.szcp new file mode 100644 index 00000000..45e025dd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000003_f709bdc8.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000004_1041e929.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000004_1041e929.szcp new file mode 100644 index 00000000..304b8206 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000004_1041e929.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000005_b9a4ddff.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000005_b9a4ddff.szcp new file mode 100644 index 00000000..a9296d97 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000005_b9a4ddff.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000006_5ff81b4a.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000006_5ff81b4a.szcp new file mode 100644 index 00000000..1e38d7ca Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000006_5ff81b4a.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000007_c4493b47.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000007_c4493b47.szcp new file mode 100644 index 00000000..2c8ec156 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_052/checkpoints/checkpoint_00000000000000000007_c4493b47.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000001_1be7a478.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000001_1be7a478.szar new file mode 100644 index 00000000..2cb1dcb6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000001_1be7a478.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000002_cfc5e575.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000002_cfc5e575.szar new file mode 100644 index 00000000..6ebbfcdc Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000002_cfc5e575.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000003_72b43fec.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000003_72b43fec.szar new file mode 100644 index 00000000..76566c9f Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000003_72b43fec.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000004_981d35eb.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000004_981d35eb.szar new file mode 100644 index 00000000..d284d610 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000004_981d35eb.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000005_c7995adb.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000005_c7995adb.szar new file mode 100644 index 00000000..d245e529 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000005_c7995adb.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000006_ef646474.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000006_ef646474.szar new file mode 100644 index 00000000..b5519926 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000006_ef646474.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000007_832e864a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000007_832e864a.szar new file mode 100644 index 00000000..e81ed8df Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/archive/delta_00000000000000000007_832e864a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000001_22da8565.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000001_22da8565.szcp new file mode 100644 index 00000000..ac24daed Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000001_22da8565.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000002_1d385416.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000002_1d385416.szcp new file mode 100644 index 00000000..8fdcbdc1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000002_1d385416.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000003_d129602c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000003_d129602c.szcp new file mode 100644 index 00000000..183c5635 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000003_d129602c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000004_656adc14.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000004_656adc14.szcp new file mode 100644 index 00000000..5e2a7fed Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000004_656adc14.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000005_651f6a73.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000005_651f6a73.szcp new file mode 100644 index 00000000..fa106064 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000005_651f6a73.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000006_c117f8c2.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000006_c117f8c2.szcp new file mode 100644 index 00000000..1eb3cb6d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000006_c117f8c2.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000007_e23337ce.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000007_e23337ce.szcp new file mode 100644 index 00000000..2b3d81c6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_053/checkpoints/checkpoint_00000000000000000007_e23337ce.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000001_d533098c.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000001_d533098c.szar new file mode 100644 index 00000000..bef61caf Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000001_d533098c.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000002_e17aceda.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000002_e17aceda.szar new file mode 100644 index 00000000..2fe0bdac Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000002_e17aceda.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000003_4dfc9d1f.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000003_4dfc9d1f.szar new file mode 100644 index 00000000..688f9d50 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000003_4dfc9d1f.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000004_de0b620f.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000004_de0b620f.szar new file mode 100644 index 00000000..7deb456b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000004_de0b620f.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000005_0e75b42d.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000005_0e75b42d.szar new file mode 100644 index 00000000..b40312c4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000005_0e75b42d.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000006_bedb1cb1.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000006_bedb1cb1.szar new file mode 100644 index 00000000..bf58d6f6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000006_bedb1cb1.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000007_6cb7d503.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000007_6cb7d503.szar new file mode 100644 index 00000000..ef89d6b7 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/archive/delta_00000000000000000007_6cb7d503.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000001_cda32f10.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000001_cda32f10.szcp new file mode 100644 index 00000000..a17bba62 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000001_cda32f10.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000002_e3585724.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000002_e3585724.szcp new file mode 100644 index 00000000..45d21224 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000002_e3585724.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000003_3cd73692.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000003_3cd73692.szcp new file mode 100644 index 00000000..2412147e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000003_3cd73692.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000004_e95ef624.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000004_e95ef624.szcp new file mode 100644 index 00000000..cb4d40a6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000004_e95ef624.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000005_d284fd12.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000005_d284fd12.szcp new file mode 100644 index 00000000..7727c373 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000005_d284fd12.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000006_eecd15b9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000006_eecd15b9.szcp new file mode 100644 index 00000000..fbee55bf Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000006_eecd15b9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000007_9eb263ac.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000007_9eb263ac.szcp new file mode 100644 index 00000000..22b75de2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_054/checkpoints/checkpoint_00000000000000000007_9eb263ac.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000001_dfeaebf9.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000001_dfeaebf9.szar new file mode 100644 index 00000000..29675a91 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000001_dfeaebf9.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000002_14944adf.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000002_14944adf.szar new file mode 100644 index 00000000..09b6d5e9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000002_14944adf.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000003_289f19a9.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000003_289f19a9.szar new file mode 100644 index 00000000..cfc1cae0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000003_289f19a9.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000004_1abe620b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000004_1abe620b.szar new file mode 100644 index 00000000..5db30217 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000004_1abe620b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000005_42ba7f6e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000005_42ba7f6e.szar new file mode 100644 index 00000000..c606972e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000005_42ba7f6e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000006_d3d59fed.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000006_d3d59fed.szar new file mode 100644 index 00000000..f2efc5c9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000006_d3d59fed.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000007_8d3bef55.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000007_8d3bef55.szar new file mode 100644 index 00000000..30987822 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000007_8d3bef55.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000008_f90d6c01.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000008_f90d6c01.szar new file mode 100644 index 00000000..227ab689 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000008_f90d6c01.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000009_3a3ae223.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000009_3a3ae223.szar new file mode 100644 index 00000000..94c60c13 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000009_3a3ae223.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000010_b1a6a829.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000010_b1a6a829.szar new file mode 100644 index 00000000..371904ab Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000010_b1a6a829.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000011_23606b15.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000011_23606b15.szar new file mode 100644 index 00000000..6aeb2fa6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/archive/delta_00000000000000000011_23606b15.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000001_b0c0e725.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000001_b0c0e725.szcp new file mode 100644 index 00000000..f8149364 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000001_b0c0e725.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000002_e34e1a89.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000002_e34e1a89.szcp new file mode 100644 index 00000000..21a74736 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000002_e34e1a89.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000003_9954dc00.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000003_9954dc00.szcp new file mode 100644 index 00000000..e749f3c2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000003_9954dc00.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000004_da079192.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000004_da079192.szcp new file mode 100644 index 00000000..d49ca96b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000004_da079192.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000005_89d7c480.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000005_89d7c480.szcp new file mode 100644 index 00000000..85fb3703 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000005_89d7c480.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000006_16e048a4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000006_16e048a4.szcp new file mode 100644 index 00000000..929a46d1 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000006_16e048a4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000007_286492b0.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000007_286492b0.szcp new file mode 100644 index 00000000..2a62fffc Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000007_286492b0.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000008_58d751c5.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000008_58d751c5.szcp new file mode 100644 index 00000000..975d8c8c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000008_58d751c5.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000009_8fcba8f9.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000009_8fcba8f9.szcp new file mode 100644 index 00000000..0c45a7fd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000009_8fcba8f9.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000010_f7b59ab4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000010_f7b59ab4.szcp new file mode 100644 index 00000000..fd0e9d56 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000010_f7b59ab4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000011_a436884c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000011_a436884c.szcp new file mode 100644 index 00000000..2a7e9db2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_055/checkpoints/checkpoint_00000000000000000011_a436884c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000001_6dd6dbb3.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000001_6dd6dbb3.szar new file mode 100644 index 00000000..5f146ed2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000001_6dd6dbb3.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000002_28d31f51.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000002_28d31f51.szar new file mode 100644 index 00000000..45531ecf Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000002_28d31f51.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000003_e1e32138.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000003_e1e32138.szar new file mode 100644 index 00000000..8266ce05 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000003_e1e32138.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000004_444490c6.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000004_444490c6.szar new file mode 100644 index 00000000..bdec02b0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000004_444490c6.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000005_a2001851.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000005_a2001851.szar new file mode 100644 index 00000000..497e1d3b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000005_a2001851.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000006_7ea9173a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000006_7ea9173a.szar new file mode 100644 index 00000000..7b0cb085 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000006_7ea9173a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000007_7b5969c2.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000007_7b5969c2.szar new file mode 100644 index 00000000..172773f9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/archive/delta_00000000000000000007_7b5969c2.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000001_7078c878.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000001_7078c878.szcp new file mode 100644 index 00000000..0e395541 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000001_7078c878.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000002_ae17e97a.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000002_ae17e97a.szcp new file mode 100644 index 00000000..998cd039 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000002_ae17e97a.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000003_01ea7019.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000003_01ea7019.szcp new file mode 100644 index 00000000..1a56e6df Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000003_01ea7019.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000004_b53174a6.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000004_b53174a6.szcp new file mode 100644 index 00000000..68150e45 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000004_b53174a6.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000005_70d3c49e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000005_70d3c49e.szcp new file mode 100644 index 00000000..bfe76c27 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000005_70d3c49e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000006_23cae6f2.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000006_23cae6f2.szcp new file mode 100644 index 00000000..d3c51239 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000006_23cae6f2.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000007_2845440f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000007_2845440f.szcp new file mode 100644 index 00000000..b367bd49 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_056/checkpoints/checkpoint_00000000000000000007_2845440f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000001_7e49a8a6.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000001_7e49a8a6.szar new file mode 100644 index 00000000..03637cbd Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000001_7e49a8a6.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000002_4b028277.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000002_4b028277.szar new file mode 100644 index 00000000..4accbcb9 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000002_4b028277.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000003_07144ebd.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000003_07144ebd.szar new file mode 100644 index 00000000..ea2f42da Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000003_07144ebd.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000004_a0a9dccd.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000004_a0a9dccd.szar new file mode 100644 index 00000000..4d91d113 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000004_a0a9dccd.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000005_f836aedb.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000005_f836aedb.szar new file mode 100644 index 00000000..07eb3be0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000005_f836aedb.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000006_048ff606.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000006_048ff606.szar new file mode 100644 index 00000000..0da525d6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000006_048ff606.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000007_f2c34f17.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000007_f2c34f17.szar new file mode 100644 index 00000000..08ba3aeb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000007_f2c34f17.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000008_d1459684.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000008_d1459684.szar new file mode 100644 index 00000000..aba30526 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000008_d1459684.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000009_7a5e4172.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000009_7a5e4172.szar new file mode 100644 index 00000000..534110f6 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000009_7a5e4172.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000010_68775c43.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000010_68775c43.szar new file mode 100644 index 00000000..e0a9f374 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000010_68775c43.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000011_44c9e86e.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000011_44c9e86e.szar new file mode 100644 index 00000000..d66438b0 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000011_44c9e86e.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000012_e4f51629.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000012_e4f51629.szar new file mode 100644 index 00000000..02fb846a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000012_e4f51629.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000013_6995ba3a.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000013_6995ba3a.szar new file mode 100644 index 00000000..3f08c744 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/archive/delta_00000000000000000013_6995ba3a.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000001_b5204f6e.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000001_b5204f6e.szcp new file mode 100644 index 00000000..b23203bf Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000001_b5204f6e.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000002_a74eac41.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000002_a74eac41.szcp new file mode 100644 index 00000000..9f4e3620 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000002_a74eac41.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000003_3bb35284.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000003_3bb35284.szcp new file mode 100644 index 00000000..41ede22c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000003_3bb35284.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000004_845a3ea4.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000004_845a3ea4.szcp new file mode 100644 index 00000000..ece3c092 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000004_845a3ea4.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000005_36f50ac7.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000005_36f50ac7.szcp new file mode 100644 index 00000000..ff630527 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000005_36f50ac7.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000006_eeaf2639.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000006_eeaf2639.szcp new file mode 100644 index 00000000..b3e23532 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000006_eeaf2639.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000007_1f525826.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000007_1f525826.szcp new file mode 100644 index 00000000..286113dc Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000007_1f525826.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000008_d74f1ae5.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000008_d74f1ae5.szcp new file mode 100644 index 00000000..c7e28d17 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000008_d74f1ae5.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000009_df916706.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000009_df916706.szcp new file mode 100644 index 00000000..c51f544a Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000009_df916706.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000010_d733b76c.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000010_d733b76c.szcp new file mode 100644 index 00000000..b1fd0119 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000010_d733b76c.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000011_c647225b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000011_c647225b.szcp new file mode 100644 index 00000000..d7658d29 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000011_c647225b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000012_e5c0b834.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000012_e5c0b834.szcp new file mode 100644 index 00000000..aae2b43d Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000012_e5c0b834.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000013_40742d02.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000013_40742d02.szcp new file mode 100644 index 00000000..475bf6e8 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_057/checkpoints/checkpoint_00000000000000000013_40742d02.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000001_2bf9b531.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000001_2bf9b531.szar new file mode 100644 index 00000000..8cb64b9b Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000001_2bf9b531.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000002_05a3fffc.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000002_05a3fffc.szar new file mode 100644 index 00000000..e6aa417c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000002_05a3fffc.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000003_51afc8aa.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000003_51afc8aa.szar new file mode 100644 index 00000000..2c0132fe Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000003_51afc8aa.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000004_bc7cd651.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000004_bc7cd651.szar new file mode 100644 index 00000000..df46be2e Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000004_bc7cd651.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000005_d3d40522.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000005_d3d40522.szar new file mode 100644 index 00000000..006b0f40 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000005_d3d40522.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000006_155b803b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000006_155b803b.szar new file mode 100644 index 00000000..16c441ef Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000006_155b803b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000007_16eb86c6.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000007_16eb86c6.szar new file mode 100644 index 00000000..9ef9cbb2 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000007_16eb86c6.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000008_67866143.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000008_67866143.szar new file mode 100644 index 00000000..3e656096 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000008_67866143.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000009_c71446c1.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000009_c71446c1.szar new file mode 100644 index 00000000..9f6d3747 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000009_c71446c1.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000010_e5af9384.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000010_e5af9384.szar new file mode 100644 index 00000000..765370ee Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000010_e5af9384.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000011_62f1123f.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000011_62f1123f.szar new file mode 100644 index 00000000..58d91630 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000011_62f1123f.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000012_e329eb2b.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000012_e329eb2b.szar new file mode 100644 index 00000000..814bb86c Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000012_e329eb2b.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000013_1ccd3b26.szar b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000013_1ccd3b26.szar new file mode 100644 index 00000000..d95cdcce Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/archive/delta_00000000000000000013_1ccd3b26.szar differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000001_622adfdf.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000001_622adfdf.szcp new file mode 100644 index 00000000..19c4de85 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000001_622adfdf.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000002_5bfffa03.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000002_5bfffa03.szcp new file mode 100644 index 00000000..ad4b4180 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000002_5bfffa03.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000003_750bde77.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000003_750bde77.szcp new file mode 100644 index 00000000..4c349796 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000003_750bde77.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000004_5b615b8b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000004_5b615b8b.szcp new file mode 100644 index 00000000..d1a60feb Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000004_5b615b8b.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000005_e423e048.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000005_e423e048.szcp new file mode 100644 index 00000000..d551cbdc Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000005_e423e048.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000006_beeceebb.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000006_beeceebb.szcp new file mode 100644 index 00000000..9cb2c0b4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000006_beeceebb.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000007_d2426fbb.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000007_d2426fbb.szcp new file mode 100644 index 00000000..5f790458 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000007_d2426fbb.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000008_6fa8fe55.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000008_6fa8fe55.szcp new file mode 100644 index 00000000..838cbb41 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000008_6fa8fe55.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000009_240f53ec.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000009_240f53ec.szcp new file mode 100644 index 00000000..59157c07 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000009_240f53ec.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000010_b503e3c6.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000010_b503e3c6.szcp new file mode 100644 index 00000000..b685c9b5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000010_b503e3c6.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000011_6dc2244f.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000011_6dc2244f.szcp new file mode 100644 index 00000000..0e1caa78 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000011_6dc2244f.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000012_eae85ae6.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000012_eae85ae6.szcp new file mode 100644 index 00000000..284311c5 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000012_eae85ae6.szcp differ diff --git a/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000013_ed311c9b.szcp b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000013_ed311c9b.szcp new file mode 100644 index 00000000..759df7c4 Binary files /dev/null and b/results/search/runs/de4543ee-663e-4ce7-a6b7-a40b4fc64533/topology_058/checkpoints/checkpoint_00000000000000000013_ed311c9b.szcp differ diff --git a/results/search/topology_0/resume.obj b/results/search/topology_0/resume.obj index 7ef61445..3cbdb7b4 100644 --- a/results/search/topology_0/resume.obj +++ b/results/search/topology_0/resume.obj @@ -1,47 +1,47 @@ -v 0.65470687921213433 -0.094954373941051717 -0.62414607245764075 -v 1.2804669424067223 -0.51391632538005905 -1.8243834650175654 -v -1.415513537137024 -1.0870759454996934 0.66992252182829715 -v -2.5416865936331057 -10.486671346113321 -8.5981703762916055 -v -0.34372406664929667 -0.91832831919767 -0.38822377995410967 -v 1.1930001824092906 2.176387728002938 1.3054793953521389 -v 1.544648007672194 1.1831833046465894 -0.22188542613919388 -v -1.2200675061129671 -0.24996884154947732 1.3845163162832699 -v 1.4634436996732565 -2.3024804731395858 -4.0505331624769276 -v 0.81110357927664367 -1.7029981397838732 -2.6161633012915901 -v 1.9497852128978292 -2.1941424103181468 -4.4949302200777295 -v -1.4393902684149855 1.8154239311026374 0.47803677052403837 -v -0.8789663753602176 0.44983914601514402 5.0811827541283607 -v 1.3996365954748426 -0.62621520082957205 -1.8665566440996988 -v 1.2875815750401323 -0.61127586562605796 -1.3071488913867051 -v 0.49634784149301447 -0.37864660188296695 1.9139594043250785 -v 1.7851773547021128 -0.97966422563775557 -2.0595451285838582 -v -0.91732433980095096 1.2158188882752707 0.91040818743691687 -v -0.073070057045621251 0.70129665351789539 -0.9997444929585646 -v 0.022861437968325717 -0.050688938580010626 2.7593679478898521 -v -1.296064205769363 -0.98843520925203399 1.6516214310375994 -v -1.1237466132572289 -6.8257739546169889 3.0589269291456684 -v -0.602961328366035 3.9716991095024934 7.3544397349277668 -v -1.2346918931356057 -1.1516651890232446 2.1556939952594458 -v -1.8154726207734158 -1.331533120625539 -2.6170288933806147 -v -1.7104837436736096 -1.0943656960851678 -1.7539499976642392 -v -1.7450487617312664 8.8690531852183394 -2.0231633344364806 -v 1.044212156534688 -0.55264858547070361 0.26842825165309137 -v 1.2158294781293377 -0.54847303382766743 -0.2156654058978118 -v -0.46466443899810195 -0.78166234281955405 1.8758778145649355 -v 0.51624761624128546 -0.84474945454104344 -2.0887405581326632 -v 0.025667209013336571 -0.87169665436220878 -0.9116856053350616 -v -0.8853792273934229 -1.1122976112060232 -1.3505302281938705 -v 1.6103091822750655 3.6071432545114819 0.8876639845370442 -v 3.5506191231691226 -4.0113875095555862 -8.6828875835738337 -v 1.2246947528193717 -0.71548999759692911 -0.33005903028622829 -v -0.63522386382422891 5.2289027120551852 -0.58945148547711379 -v 0.19747006658636815 -0.32233500619011834 1.9367081056973143 -v 6.8209577246939981 4.9895853644804316 2.2585651350698353 -v -1.3420380019051814 7.5896632525527332 -1.7939387242420231 -v 2.2559219122515088 -2.9490363458587332 -5.8098617324482387 -v 9.8452195433092395 6.7765219339382865 3.6903023408435147 -v 1.6000306303599605 -1.42340630585711 -2.3631957211129881 -v 1.7854076664312706 -1.9494937356775073 -2.6860689978891781 +v 1.1043457976660735 -0.37430019463790026 -0.6644412300515572 +v 1.5507493638572105 -0.60513952840904861 -1.369176188523948 +v -1.0901065676486077 -1.4601806525572398 0.040103610019855851 +v -2.1244011041817727 -8.4601236262260873 -7.6912919390726033 +v 0.1045255427008787 -1.1445571236798118 -0.6858530001563744 +v 1.5380571606435423 1.1045174703113974 0.76746555413204209 +v 1.8402650262967226 0.4404258112417086 -0.34074358211593853 +v -0.87673047046947383 -0.66469788590252299 0.8290026794318478 +v 1.4825336320600542 -1.8648105365219472 -2.8708430266846294 +v 1.1483166165579837 -1.6395256657546917 -2.2780213174728581 +v 1.9272218765953131 -1.6400632344374724 -3.007769393196011 +v -1.0887283751014045 1.5882446832900181 -0.24183875107526448 +v -0.49673774849134839 -0.33415094332056516 4.7534481336458345 +v 1.7171593672710199 -0.71839015688698038 -1.5320995420253365 +v 1.5716921913315436 -0.75637833019090372 -0.88709866545150717 +v 0.89613206230406983 -0.76719595199804524 1.5007625438520136 +v 2.0919275897290763 -1.0239764955118564 -1.7136023380954959 +v -0.45289815653564297 0.84271637817459411 0.28331670055412189 +v 0.26055540578298836 0.520303179423385 -1.0136839937034918 +v 0.67656946924388595 -0.6560980084564173 1.8563363525477163 +v -0.95372965048374569 -1.4232014219749793 1.144725836596193 +v -0.8376661123672472 -7.467646024910632 2.6690838384305025 +v -0.19906283706005018 4.1239283088696608 6.7436135828329657 +v -0.89658566665124073 -1.7053758279077054 1.6362035403659745 +v -1.3790774206528762 -1.2999716675144979 -2.3234357923486275 +v -1.3008358357355199 -1.1713304664210105 -1.7000268432765231 +v -1.1607572307877441 8.8020123837952209 -1.5208215188596672 +v 1.3758001238050368 -0.80732639001836914 0.24243143280462487 +v 1.5396084247084287 -0.76428928789786543 -0.15927633518883755 +v 0.23010153273223144 -1.1096835077108667 1.3620605337804712 +v 0.83095194446497445 -0.95317857664940708 -1.8089881432715962 +v 0.40372237484806239 -1.0655918829532591 -0.97160350030625298 +v -0.19278308987733297 -1.2236836555658814 -1.2279635018182238 +v 1.8212920297455351 1.9728929171903995 0.4649116413688717 +v 3.7034163711092787 -3.0460524137190741 -6.8729259009078394 +v 1.6251492898993496 -0.90292995054170611 -0.44860005723267471 +v -0.0095912549858900419 4.7903390234216356 -1.3470085188287144 +v 0.76326556328896933 -0.77660921798671978 1.3741938872787576 +v 5.8734782250460231 2.6054490682334306 1.4057371766704081 +v 0.15735376121623112 4.1582831943857377 -1.0141381119062947 +v 2.1352649969567166 -2.1893759437900928 -4.051573944352115 +v 6.5106703284711003 2.8773064049168582 1.680816460729615 +v 1.7965494298563098 -1.3539628905502614 -1.991541933878112 +v 1.9278775321126151 -1.7617545874679532 -2.2769162912871135 f 1 2 11 9 10 4 3 5 8 6 7 f 1 2 15 14 17 16 20 13 12 18 19 f 3 4 25 26 27 23 22 24 13 12 21 diff --git a/results/search/topology_0/resume.planes b/results/search/topology_0/resume.planes index 3d811946..9216e5b4 100644 --- a/results/search/topology_0/resume.planes +++ b/results/search/topology_0/resume.planes @@ -1,37 +1,37 @@ 36 -0.078788608312606812 --0.076153114438056946 -0.067659966647624969 -0.22339087724685669 -0.22248528897762299 -0.03880583867430687 --1.4753862619400024 --0.0002670307585503906 -0.17954613268375397 -0.17575369775295258 --0.76707613468170166 -0.055690489709377289 -1.0716066360473633 --0.20212554931640625 -0.37815466523170471 --0.49416655302047729 -0.53506737947463989 -1.3387023210525513 --0.36461341381072998 --0.031434495002031326 --0.15268553793430328 -0.53783440589904785 --0.82656872272491455 -0.38709154725074768 --0.12818172574043274 --0.77237415313720703 -0.22783507406711578 -0.10227948427200317 -0.72060447931289673 --1.1154242753982544 -0.37295818328857422 --0.019340414553880692 --0.76366186141967773 -0.92901045083999634 -0.30048468708992004 -0.043781843036413193 +0.22833403944969177 +-0.30316656827926636 +0.24393837153911591 +0.23583903908729553 +0.24893134832382202 +0.067849963903427124 +-1.0615366697311401 +0.012562260031700134 +0.13063701987266541 +0.28982219099998474 +-1.0949631929397583 +0.00087436178000643849 +1.3687218427658081 +-0.26173844933509827 +0.53009563684463501 +-0.18634209036827087 +0.27580267190933228 +0.61715179681777954 +-0.16847230494022369 +-0.017552105709910393 +-0.088310003280639648 +0.7115025520324707 +-1.1540967226028442 +0.41640406847000122 +-0.13014152646064758 +-0.91138839721679688 +0.20439966022968292 +0.090424723923206329 +0.56973361968994141 +-0.77251976728439331 +0.40816950798034668 +0.011459453031420708 +-0.95680677890777588 +1.2076499462127686 +0.34901094436645508 +0.057028986513614655 diff --git a/results/search/topology_1/resume.obj b/results/search/topology_1/resume.obj index 77d3f3d3..8f8013d6 100644 --- a/results/search/topology_1/resume.obj +++ b/results/search/topology_1/resume.obj @@ -1,47 +1,47 @@ -v 10.482101370335254 -10.391319978564059 16.406227126063602 -v -1.0005772922523983 -1.3929697138303141 0.64554571423144835 -v 1.696349720317659 -0.87148378835392448 0.7604869363657637 -v 2.813039493271158 -0.75252422504475691 0.94007466473743295 -v 0.62377041188486482 0.079047785224443348 -0.86144328898773481 -v 9.2145166461165928 -4.6296948032785545 8.1756102409657725 -v -0.53886340006945177 -0.099671415530104363 -0.9737350594357812 -v 0.063403750116778082 -0.53176281601902553 -0.20136253227449741 -v -0.46139680187592091 -0.57210771348664313 -0.30694459446863165 -v -8.2095987064543934 1.4862663604044626 -5.4785359608876663 -v -4.4732080794163949 1.2998623237896867 -4.0820855661219451 -v -0.27742366236714811 -2.9151032418394993 -0.87749119471249437 -v -1.7009341910541511 -0.42051350425785122 0.79964125481409887 -v 259.33440502367336 -188.62864614965491 402.138021210663 -v -5.8903066183594666 0.032236942020794017 -12.402363485703059 -v -3.8180703577767221 0.055054919419817883 -5.2223850294233589 -v -2.1940157910857021 0.80148667817383334 2.3229387406185564 -v -1.9645863030920563 0.75064803723374007 2.9773697265440049 -v -1.4433429395139488 -0.58204364196239988 1.2593878238227356 -v -1.3664883612528702 -0.70149079210073928 1.208951668682589 -v 2.0683267096626916 0.58721700502249607 1.8424579482439545 -v -1.8291384204532455 1.0689879611781434 1.8617377195959359 -v -1.591979417353137 0.54164450917704721 1.5018386634705738 -v -2.0426032840934814 0.84235157599497545 1.6805429950485955 -v 0.1746745600981256 -0.67624961581359921 0.77315561185753912 -v -1.2729305945454314 -0.17225527128770968 1.0144505198362421 -v -2.1651989481683604 0.84583416808287204 1.6727424582483819 -v 0.16014392427268614 0.0016378627998479319 -1.7043634198207425 -v 0.77645041850568564 -0.7762627114083801 -0.83970897444660375 -v 8.6004744666231829 -6.6729100102177572 11.292854656277349 -v -110.50099107831792 16.904547294733273 -192.62059562469312 -v 0.26054780433277341 -0.056315095273444297 -1.5435225627989571 -v 0.15023634866342328 1.0052177280446697 -1.4303784533619501 -v 0.81621831473370576 3.8569618046477658 -2.7290366250802216 -v 0.82944639359833894 -1.0375952176180165 -0.68460225150677734 -v -1.803517406950859 0.84298642996029516 -3.7793506171376605 -v 0.42869040400068142 1.0307747644176641 -1.8958012453079576 -v 0.98462915560242914 0.98219447151515804 -1.3870963820788718 -v -0.68777005100992783 -0.12941913614545872 3.4099063548783444 -v -3.234377957352808 0.64906817792228844 2.7410643426965482 -v -6.2776143358353274 -1.2077697668179612 6.0377083277260217 -v -21.342001599331613 1.0375554312992294 5.5490922187151437 -v -1.1830105532012392 0.28371451091197097 0.83790704186054688 -v -0.81174449898077516 -0.39933810912634016 0.26502303209295053 +v 9.9983393551906481 -10.141369765917458 15.683454204777279 +v -0.97418866868767051 -1.5427975567487264 0.62298786828708197 +v 1.7326818151494006 -1.0020230549188769 0.71471390624824038 +v 2.7529062260629491 -0.89333978694938598 0.8787879158604075 +v 0.64983795158944235 -0.042394795848889687 -0.92273820604026435 +v 8.7648143481518996 -4.5345621815273178 7.6739983760683401 +v -0.79984437955862353 0.069508911592747913 -1.5184259834607983 +v 0.1363228515728904 -0.60213632813353046 -0.31784600822040532 +v -0.3789988685402283 -0.63666536136654184 -0.42844593204066117 +v -8.6594193775464934 1.5630969222818156 -5.9552700937773597 +v -4.4014250254737863 1.3506709135919657 -4.3638740997881591 +v -0.28749040788771563 -3.0208846626994701 -0.90933271141003336 +v -1.7626564415490009 -0.43577291289367964 0.82865816202775056 +v 268.29942242586537 -195.15650128883806 416.03421228095942 +v -6.1040520458610619 0.033406769591898894 -12.852416255614292 +v -3.9566186660008857 0.057052772955695559 -5.4118926791842608 +v -2.4792410238128442 0.87613118905404996 1.8207438516728378 +v -2.0476242071711734 0.78049048921948239 3.0518994854497867 +v -1.5152518720286066 -0.59091517196942889 1.2702235855522033 +v -1.3048814484147548 -0.91787222580878747 1.1321670786710545 +v 2.0803996880730344 0.36154647065989903 1.7261224586640735 +v -1.7428245695386109 0.83414035193905611 1.7450349997558121 +v -1.6034071548235238 0.52413365347977414 1.5334630081848228 +v -2.1264934929367341 0.87319590482335074 1.7409038652500999 +v 0.18101356490459217 -0.70078902978613267 0.80121141381853622 +v -1.3895760570780404 -0.15397673661896044 1.0630060511269239 +v -2.2939747108761348 0.87795356151447512 1.7302473436345038 +v 0.16595517763399134 0.0016972605616128746 -1.7662103389952288 +v 0.78041209156965818 -0.77386867049136276 -0.9041506974039244 +v 8.1072355891444765 -6.3369543560025052 10.445458718075731 +v -114.51042854608497 17.517907332953985 -199.60969326951692 +v 0.28605414229835363 -0.067623667516609975 -1.5738191540667148 +v 0.17100570839477011 1.039493487054274 -1.4558164032390342 +v 0.79999837549641983 3.5140531381624576 -2.6678019281224703 +v 0.84606998349100959 -1.0720787770382902 -0.72260131581646436 +v -1.8915527250120332 0.88325526621662098 -3.9403648364626735 +v 0.46437783443049596 1.0664197250604177 -1.9461741100341108 +v 0.99281194798393524 1.0202429378063931 -1.4626369851712189 +v -0.56496235143384521 -0.2274622979967936 3.0853490517164364 +v -2.9695405311410616 0.50760711652176815 2.4538097782809114 +v -5.6462899245736615 -1.1256179162484792 5.3534495538325864 +v -20.573116458052315 1.0992037501880065 4.8692954584844683 +v -1.0959368550121513 0.20408035699053123 0.70962125756779648 +v -0.81722529113988385 -0.42055943466821399 0.28699008522927971 f 1 2 9 10 11 7 8 5 3 4 6 f 1 2 20 19 13 12 16 15 14 18 17 f 3 4 12 13 25 26 27 24 23 22 21 diff --git a/results/search/topology_1/resume.planes b/results/search/topology_1/resume.planes index a74b8066..0f3ccd92 100644 --- a/results/search/topology_1/resume.planes +++ b/results/search/topology_1/resume.planes @@ -1,37 +1,37 @@ 36 -0.098045796155929565 --0.43639481067657471 --0.32058650255203247 --1.349274754524231 --1.0339672565460205 -0.39270439743995667 --0.068641185760498047 --0.58796495199203491 -0.81628608703613281 -0.83455550670623779 -0.13699106872081757 --0.47160637378692627 -0.83343368768692017 --0.39390507340431213 --0.9484362006187439 -0.1805804967880249 -1.4221460819244385 -0.96772474050521851 --0.22979080677032471 --0.33834919333457947 --0.010101760737597942 --0.20578861236572266 --0.62045884132385254 -0.061365120112895966 --0.056492771953344345 --0.40294283628463745 --0.10992005467414856 --0.49079686403274536 --0.019590297713875771 --0.29471063613891602 --0.12009944766759872 --0.024608217179775238 --0.12472820281982422 -0.021716725081205368 -0.90487796068191528 -0.06268087774515152 +0.12239401787519455 +-0.54476690292358398 +-0.40019938349723816 +-1.3982362747192383 +-1.0714871883392334 +0.40695464611053467 +-0.071131974458694458 +-0.60930061340332031 +0.84590703248977661 +0.86483937501907349 +0.14196211099624634 +-0.48871973156929016 +0.86367684602737427 +-0.40819892287254333 +-0.98285239934921265 +0.15454389154911041 +1.2170971632003784 +0.82819557189941406 +-0.24109099805355072 +-0.35498780012130737 +-0.010598522610962391 +-0.2132561206817627 +-0.64297360181808472 +0.063591904938220978 +-0.058542743325233459 +-0.41756460070610046 +-0.11390876770019531 +-0.48575875163078308 +-0.019389195367693901 +-0.29168534278869629 +-0.14956028759479523 +-0.030644705519080162 +-0.15532450377941132 +0.022504741325974464 +0.93771368265151978 +0.064955368638038635 diff --git a/results/search/topology_10/resume.obj b/results/search/topology_10/resume.obj index 6c48f754..d1eaf0dc 100644 --- a/results/search/topology_10/resume.obj +++ b/results/search/topology_10/resume.obj @@ -1,47 +1,47 @@ -v 2.4299152047679096 -1.7428941418288455 0.1800884692693252 -v 9.1036275991516611 -2.09900580186329 -7.0406901872595515 -v -0.97108828550423731 -1.4793689561652172 4.4819183330154315 -v -0.81609067260059343 -2.1425346775175593 -0.6508700838423902 -v 1.6118835572164067 2.4622546043914619 32.615568147639131 -v -6.4881051858995402 -3.5408928032741338 -7.4101727992432949 -v -0.72563426396296293 -1.5618674007907067 3.6901806090671712 -v 1.1556885981679097 -2.0872744840746296 -1.5676414519274005 -v -0.72258196208984526 -2.0534944368633115 -0.039156516717197887 -v 11.408785854888521 -2.0352937757514482 -8.119222220607746 -v 2.7975177749511833 -2.0648755893878668 -2.5100352807789665 -v -0.92728317587169684 -0.10159228582792493 2.2661701201910618 -v -0.90379181840657929 1.3056308684268061 0.75120947645213421 -v -0.91042761104134906 -0.85095095237168084 3.0394707773285559 -v -0.11963663819880378 -0.68531841104171587 1.9640646961429717 -v -0.58120129449102742 -1.8922722369169522 3.7659340009454789 -v -0.057985739816685637 -0.24048614207097632 1.4234457625606893 -v 1.1718373391938659 0.34684088061988155 -0.59772234879034669 -v 0.3016181668556725 0.97039831279079192 -0.26650778804274977 -v 921.19820438085549 -329.65023569914479 -698.96969401314618 -v -0.74068738402971412 -1.3634214566312635 -3.6864390877412054 -v -0.76026733706337712 -1.3136579441926046 -3.0214179864129185 -v -0.91764638458746484 -0.31060631897835739 2.0290637204011266 -v -0.91535312352336751 5.8848732228905209 -1.0802650433581245 -v -0.89712201921709334 1.2916325577600911 0.52323012612740594 -v -0.76963011459375041 -1.0954660494443573 -2.7984452275204204 -v -0.92953546820391941 3.1474461224328363 0.75721029138398532 -v -0.037238120157647034 -0.85280105169160414 -0.33751211700506262 -v 3.4007361973327503 0.22141491599875976 -0.81580735459036835 -v 2.2593098599600072 -0.10212635071955807 -0.2646635944459752 -v 1.0606585145265179 -0.56056666233624963 -1.0924457245669541 -v -0.054867691485049712 -0.62772826518143576 2.397752021364143 -v -3.3918455968380181 2.2111250130550753 6.761993164317734 -v -0.44382614091966321 1.0280357183995066 -2.3777275490493373 -v 0.36761703898125542 -0.77534823837944544 -2.0537392872442553 -v -0.29122295066275605 -0.45923789027060019 -0.11050568758827423 -v -0.26692997810888408 0.13263780456850577 -1.3419347031348963 -v 1.2394586135053227 -1.8434180304262622 -1.3664529432852388 -v 2.5232106046623146 -1.744045740338718 -2.2766989311666963 -v 2.6067114011748171 -0.14253623325972928 -0.58487226478342103 -v -0.10672753918604433 0.97194608099444979 -1.9727794481864085 -v 0.55170911857085958 2.7380613290608244 -0.45017523246082647 -v 0.10311789535818494 1.0186742492746548 -0.22577457175032051 -v 1.5721216788554204 0.68462783734615063 -0.1020532703204402 +v 2.4690163089447394 -1.8043450448670943 -0.37876524546203011 +v 5.2590717608498512 -1.889199785059863 -4.604009880121553 +v 0.079871085118140908 -1.5732353847622693 4.6002780095783633 +v -0.78804538755054387 -2.6757158997321064 -3.7814593043589966 +v 0.67332557964590833 -0.42485625114569242 13.720193498015313 +v -3.0986885089941674 -3.4974656656535941 -7.9439730413152088 +v 0.9572144661795533 -1.746742923377457 2.0105332825612461 +v -0.15234887084565224 -2.4853332503750969 -2.9428675611084878 +v -0.53809283137211428 -2.536155543076029 -2.895985764721674 +v 5.5715491961693928 -1.7077404061328125 -3.4370131329432856 +v 2.0998328574362159 -2.086063899751502 -2.3358446344083723 +v -1.0430794535156533 0.53871006541188837 2.1904435430939042 +v -1.5527816828475121 1.6927413232623618 1.5624955799346527 +v -0.086696463282283601 -0.88338470823344972 2.4548255284385156 +v 0.46906219986848474 -0.32021565647310046 0.89998153412380866 +v 2.1750138731789517 -2.6651290735263564 1.1358103949362359 +v 0.40510035931278687 -0.085527592994072782 0.71068445238726274 +v 1.0458312184334742 0.29445819650259347 -0.75079196240482748 +v 0.68021485416990957 0.67683259986898359 -0.65356760488397958 +v 27796.390380969115 -16784.398997492135 -22496.2159910505 +v -1.0876338194333768 -1.6955408432012111 -3.4309517767657169 +v -1.2425294488297862 -1.8120593056579031 -4.7355510024009737 +v -1.0029673048770078 0.18261931233829504 1.6075035138512912 +v -9.4649582371901211 22.784712373677245 -0.60997732063423193 +v -1.6878429952736653 1.8115660819310606 0.95039683794428442 +v -1.1645867045534235 -2.145301233998802 -5.0132354307382387 +v -2.7016251557819104 5.1307506165488448 2.1420970207245578 +v 0.30466531152618304 -0.43641638502401986 -0.80543520457392581 +v 1.1311150271766883 0.30311534827808767 1.0911204851984446 +v 0.94766225542561244 0.13403503338863373 0.8816148765320464 +v 0.78390764051797612 0.024646449327819977 -1.0903707056601046 +v 0.62415120973447469 -0.18609299700082377 1.4559495713416815 +v -7.8614403096406491 4.3526636269530457 10.556998105905574 +v -2.1768739030954301 2.3526024033664275 -2.7066507863017448 +v -0.080014593391570868 0.16630864799269485 -1.7841391257652583 +v 0.037537742238037006 -0.2421488119609414 -0.58472705583429863 +v -0.32511717317786454 0.3876634802358952 -1.754670696628291 +v 1.0134162641657249 -1.3031582915678119 -1.4392029764819114 +v 1.7641296699712001 -1.5055087321649219 -2.0123410898106155 +v 2.331124090560424 -0.39477925656343366 -0.42399768022087087 +v -0.29100889501585514 1.2591576800919546 -1.5162753693972426 +v -0.018845246606196995 3.8241976319103124 -0.21932114174489592 +v 0.037308690801159353 0.99998321613263752 -0.41421388064527365 +v 2.0846576925266147 -0.095276904170488286 -0.31585100276997036 f 1 2 11 6 5 10 7 3 4 9 8 f 1 2 20 16 14 15 17 12 13 19 18 f 3 4 26 22 21 24 27 25 13 12 23 diff --git a/results/search/topology_10/resume.planes b/results/search/topology_10/resume.planes index 52f243c4..e04bf97d 100644 --- a/results/search/topology_10/resume.planes +++ b/results/search/topology_10/resume.planes @@ -1,37 +1,37 @@ 36 -0.17286580801010132 --1.9346611499786377 -0.25518190860748291 -0.36779093742370605 -0.34167078137397766 -0.32307568192481995 --0.86346328258514404 --0.011989000253379345 --0.024525471031665802 -0.23675800859928131 --0.73029631376266479 -0.061618827283382416 --0.41711774468421936 --0.20704087615013123 --0.10774108022451401 -0.459623783826828 --0.63545858860015869 -0.57885009050369263 -1.0186777114868164 -0.31382167339324951 --0.80452948808670044 -0.23158414661884308 -0.99822366237640381 --0.05451732873916626 --0.13979409635066986 -0.038529548794031143 -0.015761110931634903 --0.12561355531215668 -0.019868478178977966 --0.17498816549777985 -0.78757047653198242 -0.52499210834503174 -0.78819954395294189 -0.22719393670558929 -0.64969855546951294 --0.62622803449630737 +0.29896417260169983 +-2.0490851402282715 +0.23856635391712189 +0.38927781581878662 +0.30843296647071838 +0.25085759162902832 +-1.0240664482116699 +-0.36824426054954529 +0.1544770747423172 +0.37139514088630676 +-0.39167168736457825 +-0.0091142943128943443 +-0.17031754553318024 +-0.1825365275144577 +-0.045469928532838821 +0.088940873742103577 +-0.42815765738487244 +0.26766148209571838 +0.80495494604110718 +0.38198226690292358 +-0.92438054084777832 +0.40745586156845093 +0.76694625616073608 +0.058978524059057236 +0.1812480092048645 +0.0072128474712371826 +-0.052299734205007553 +-0.24625779688358307 +0.046486303210258484 +-0.33896812796592712 +0.88796436786651611 +0.45794770121574402 +0.75542742013931274 +0.56429451704025269 +0.71854472160339355 +-0.70391619205474854 diff --git a/results/search/topology_11/resume.obj b/results/search/topology_11/resume.obj index a28fa3e5..391f3b9d 100644 --- a/results/search/topology_11/resume.obj +++ b/results/search/topology_11/resume.obj @@ -1,47 +1,47 @@ -v -0.44093681963030062 -1.5625462892873525 -1.5124944846951431 -v -2.5974850092609452 -1.5768464439093528 -0.14588806641488369 -v -0.48883474585070846 -1.7171974223105844 -1.7198069403241438 -v 0.28117081960804213 0.48000348298619488 1.1679495375967313 -v -1.969229603426887 -0.33050876005825169 1.3688642957405952 -v -0.76967900101884357 1.4177537805128224 3.2886902392392487 -v 4.9268605738667173 1.0259990255539684 -0.98266312254526467 -v -0.051195259790075755 0.27044255214135438 1.0592514554630024 -v -0.25258644872267921 0.40304708072263601 1.3931336393245508 -v -0.81322149351384276 0.48085492894316778 1.8739533859383197 -v 3.9644469460608445 0.82288964438911505 -0.67573079795497792 -v -0.27518658853961286 1.5086635935772594 -0.061258049492469158 -v -2.763378168758964 -1.7768753578994791 -0.14160063489095909 -v -3.8344414366668844 1.6498441275647935 2.2777746001902082 -v 1.5450716242938569 1.2531373658951288 -1.3504047605540541 -v 2.8471326597075755 3.3769448712976917 -1.1033175332014034 -v 1.3693710383025051 1.6779575903121455 -1.023126574638223 -v 0.10409647982736653 1.212221691633818 -0.45315457259151892 -v 0.3912740992485369 1.4202943106237886 -0.53063030688270929 -v -3.4873684881601856 1.5426816914827468 2.002345743437921 -v 0.08376714809128756 0.54297387166697719 0.87757252017727116 -v -0.17309432328850105 0.99486198529139291 0.13656146657241075 -v -0.24474785894019005 -5.0322496490292838 -1.8506428742684269 -v 0.43616213597739445 -1.2434425725692788 1.5566560110358458 -v 0.094315899145273302 0.23951644254793844 0.82556521011491335 -v 0.052838440206896618 1.1307379183121105 0.94267918145117735 -v -0.079625241318162621 0.37485906664001972 0.27438386250200886 -v -0.0050979041296539294 1.4165396088813451 0.82874733360629294 -v -5.7687966166088263 -3.0471900567747428 -2.3743322236328188 -v -1.5768385417750237 1.2119558540434734 -1.7018554511634116 -v 0.41344568396295517 1.3653157666658451 0.45201034102452131 -v -0.48020904666251346 0.77963295120368914 -0.007740401950010245 -v -0.50486851061742122 0.55704634199442937 0.18221638176752697 -v 0.56790644640840793 1.3279280944848502 0.66755267925547002 -v -0.89146768970314272 0.40783465620573672 2.4039062589131355 -v -0.61570338985326178 -0.35629481645995081 1.8789036948644835 -v 1.5495028381115095 -1.6007132534669977 1.6976786957277139 -v -5.2669126690699946 2.2358726798524553 2.2010403087810215 -v 1.5876035926603267 2.3012777451613236 -1.2956368851389981 -v 0.41247629677702258 1.4655204320863084 -1.467061728050572 -v 5.7112846817816019 0.80088383038931465 -0.9055900418052184 -v -4.0922840103649287 2.2525459415015394 -1.9338036102933405 -v 1.1215575773553872 1.3041662252158519 -0.6747929921804755 -v -0.78679183154379495 0.51076067051811813 1.5316052131961269 +v -0.36272906836144442 -1.3330929555706512 -1.1269771098908614 +v -2.00554435965002 -1.1685820881509481 0.1626848882109021 +v -0.47488549929904661 -1.647484096386624 -1.5870706820281553 +v 0.37889251008153946 0.40398835181183512 1.339976269344282 +v -1.3454002491550876 0.015652482415153327 1.7492256173467085 +v -0.08616275704176421 1.5179148979526991 3.5018043517647119 +v 4.4296553374334167 0.53476052026804022 -0.93702277318706384 +v -0.022144356279443229 0.19179636464177902 1.2300041145925213 +v -0.13409242822836209 0.35641819653970258 1.5761335630796245 +v -0.5763864339599204 0.50012245141757539 2.090696447394468 +v 3.8829878904392876 0.4577315943571143 -0.72969126724028077 +v -0.24628295162176239 1.5052203992962518 -0.054003390089931824 +v -2.2394458875429413 -1.4807532730827786 0.20919445789082802 +v -2.9870981215086516 2.0376925180740009 2.2030351986378904 +v 1.0387995657916762 0.72741422396779587 -1.3280381902903429 +v 2.2910460192803881 3.6097651232050931 -1.0822425456753804 +v 1.0141609067875765 1.4369328695215748 -1.0198226371087795 +v -0.21881952000668245 0.99348827846181353 -0.28351309798570301 +v 0.29161603759560906 1.3632588920270572 -0.51226390009696054 +v -2.637319907787528 1.8323423164708701 1.858860712756004 +v 0.11988706602842308 0.47760213957426023 0.96133809877304754 +v -0.16492881419573757 0.9890235321633164 0.10335648742433588 +v -0.21272578677091072 -5.9431905192923313 -1.7037996023277011 +v 0.51056705442334371 -1.3455752359328388 1.8724076757057049 +v 0.11358722367810553 0.12511264743262576 0.85614476933045469 +v 0.12029536754532959 1.076141859196776 1.1045869281721117 +v -0.018960633829350336 0.23325717869999649 0.4260813614271689 +v 0.048635138436068211 1.4460072961312467 0.94587576458017064 +v -5.1669600068752271 -2.5044892735521884 -2.1667083751987182 +v -1.4061166903582698 1.2309848788465445 -1.5974541281427788 +v 0.43513655631215359 1.3414349607025979 0.44409450153812363 +v -0.44915125128117395 0.8126661971271798 -0.048353913828694139 +v -0.4552608766275803 0.52258903097559073 0.24207949006899987 +v 0.66735416922525159 1.28795438589862 0.77072810821908599 +v -0.49826115524371745 0.50250416628436689 2.5678874820732878 +v -0.40686847334038767 -0.33749903115458069 2.0421378417703266 +v 1.2547379573455772 -1.7034204901686305 2.0511139099468738 +v -3.4640596777109276 2.3463500842775784 2.1430590180768645 +v 1.1908605849638465 2.0516824216929015 -1.2647447547329023 +v 0.17525317306601745 1.3791780130339304 -1.4069271066801201 +v 5.9967899554986026 -0.0068552134816437637 -0.77184611052576568 +v -2.7776718847799668 2.1162895935225507 -1.7278973371690003 +v 0.88475772298614219 1.2105019275559306 -0.76333928887682867 +v -0.59268543012642338 0.53301505368966395 1.6756843651181841 f 1 2 4 9 8 10 5 6 11 7 3 f 1 2 13 14 20 16 15 17 18 19 12 f 1 3 23 24 27 25 21 22 26 28 12 diff --git a/results/search/topology_11/resume.planes b/results/search/topology_11/resume.planes index 0259dd7c..112b57be 100644 --- a/results/search/topology_11/resume.planes +++ b/results/search/topology_11/resume.planes @@ -1,37 +1,37 @@ 36 -0.10371469706296921 --0.24803861975669861 -0.1610696017742157 --0.38363298773765564 -0.30525705218315125 --0.60219079256057739 --0.11745963990688324 --0.010014449246227741 -0.034608721733093262 --0.46029564738273621 -0.39026540517807007 -0.39754942059516907 --0.51522660255432129 --1.0875720977783203 -1.3123074769973755 -0.17464220523834229 -0.074429936707019806 --1.5600550174713135 -0.42606827616691589 --0.031368862837553024 -0.2694544792175293 --0.53124725818634033 -0.74208295345306396 -0.023811593651771545 -0.04763629287481308 -0.28073340654373169 -0.33514034748077393 -0.12850305438041687 -0.31905758380889893 -0.037791777402162552 -0.39261946082115173 -0.52164226770401001 -1.1089024543762207 -0.23948492109775543 -1.4144880771636963 -0.073736757040023804 +0.13071608543395996 +-0.35694459080696106 +0.21204288303852081 +-0.36856663227081299 +0.20236273109912872 +-0.4953063428401947 +-0.11641410738229752 +-0.0080246897414326668 +0.033861551433801651 +-0.4483485221862793 +0.39301246404647827 +0.38309884071350098 +-0.79541522264480591 +-0.95844662189483643 +1.3930643796920776 +0.17040155827999115 +0.049885805696249008 +-1.4531304836273193 +0.36670276522636414 +-0.048887051641941071 +0.14185312390327454 +-0.51210874319076538 +0.75645214319229126 +0.080066435039043427 +0.076223306357860565 +0.31785392761230469 +0.31906750798225403 +0.11065491288900375 +0.17280946671962738 +0.009350544773042202 +0.49181434512138367 +0.60610157251358032 +1.1904171705245972 +0.34121260046958923 +1.3581217527389526 +-0.02021360769867897 diff --git a/results/search/topology_13/resume.obj b/results/search/topology_13/resume.obj index c42b2181..89721c91 100644 --- a/results/search/topology_13/resume.obj +++ b/results/search/topology_13/resume.obj @@ -1,47 +1,47 @@ -v 2.8741756153485478 0.61705155881829687 -1.8881021271315179 -v 2.0945933448417553 0.99151436634547041 -6.5763969873378283 -v -1.0807156503775586 -1.9106085470042382 0.75985212150046921 -v -0.96551079428832942 -1.8339725559398701 0.6647717340519903 -v 8.3696327737694372 0.8273211199526086 14.146057926018493 -v 0.36897749513390804 -1.3320634925453945 1.8667725091927838 -v 3.5384440058262321 1.1084843451020918 -2.7321655344954858 -v -0.49192984507905807 -1.4726541273663158 -0.0024143306415487231 -v -0.021084634870162548 -1.4292025744760604 1.2195192273226974 -v 1.01417026990909 -0.61859834361880772 -0.36288166762922913 -v -0.67890412555979485 -1.5682964916480302 -0.019659302846253668 -v 0.88044050861438761 1.2301492994799323 -2.9919874289786699 -v -3.681291028234555 2.595630693635798 -4.3390706722409664 -v 1.4378002243720081 0.75746997280642103 6.835260229982584 -v -102.94299034422824 32.587828379211921 -42.49086333219617 -v 1.6751087021665922 0.84420100077261051 1.9209619375525582 -v 2.2725211239062038 0.95341224443579842 -7.0027410017654184 -v 1.4932589475006226 0.89953184654700358 1.8389211883980618 -v -5.4815707651586347 3.0809322921261377 -3.1778055352230936 -v 1.229895468814967 1.1885063956420774 -4.8779509221720563 -v -0.63510997695392879 -1.5853059955542586 0.35853498621998503 -v -0.83190424818172282 -1.5141303263867223 0.28616793576137678 -v 2.0946905728479233 -0.20107395766888234 -1.3928942733585261 -v 0.45256278351800139 -1.5992602259406303 0.31768064001036278 -v 0.49017378364187625 0.98654753625691982 -2.6884940249276674 -v -0.9044227148651468 0.92734655760683482 -2.5465444510972319 -v 5083.0911059889104 -2218.958629685445 2309.7858257515377 -v 0.15784313220962146 -1.5260040645841368 1.2896546637996751 -v 0.17265675992918667 -1.2473512089376706 1.8199096322312336 -v -0.94017734647961348 -1.0503532810582235 1.030979754605251 -v -1.1006223150563452 -1.1216697058451452 0.73296907423482138 -v -25.481772048617948 6.5921137507408263 -10.273238844927251 -v 63.264860098045602 7.7537695679920073 -155.62640849673241 -v 0.12127595569539175 -2.846469780942833 -1.3168571754823475 -v 0.39751937661859577 -1.1469009131982815 1.3990027182889331 -v -0.72874912741506648 -3.092529907589697 0.54841373334932109 -v -0.8646299599047137 -0.93467724643386096 0.83351808958494467 -v -0.88078595591469599 -0.47966488397485385 0.81593697512983776 -v -0.36252541575882813 -0.11015073342409891 -0.4858017486013847 -v 0.018441179574388601 0.95574249631251573 -2.2553955397913565 -v -1.9792816125103321 0.85038823264481367 -1.317945905722794 -v -1.3148442268356655 0.82319671052700438 0.59334079815493368 -v -2.1406255359808868 0.84524320135637476 -1.3623965724657778 -v -0.58075860082205055 0.060281043908274878 -0.72117467933722934 +v 3.8229664639226963 0.87805769989518223 1.811392387209076 +v 1.9443440335391162 0.61564672883757021 -6.5817743146904455 +v -1.0271668167680486 -2.3461575385250404 0.89754423944610418 +v -0.69426014009194559 -2.0925278938980187 0.69683920287342227 +v 11.573294382173248 2.5136177331420408 31.931133184058972 +v 0.50217752912482072 -1.5590809285427618 3.0567396437637533 +v 4.1369314650606954 1.0883063159295536 1.8580421014793727 +v -0.49704136516645703 -1.8971380589894251 0.21009294876571893 +v -0.12171141328475195 -1.7529699565258898 1.1392990747575682 +v 1.3102231490304688 -0.58093515289510866 -0.38489993444229798 +v -0.53332943432003799 -1.9225544929018461 0.21379548136196425 +v -0.032784649052570274 1.0031986294339725 -1.7958231007328818 +v -2.1921885332810245 1.1640753685060112 -1.9530364783595666 +v 5.7435918556063124 1.7024228179355159 21.802814286841649 +v -19.359506860040131 2.2940525431946148 -6.2602263821600141 +v 3.7812239671079495 0.89832068286032685 2.1603263636491019 +v 5.7024687943585084 -0.17261187181807364 -16.737714951802559 +v 2.8120757207800944 0.95384616131331068 1.747574238037358 +v -1.8893980009230831 1.1580342853462449 -1.5920729937161751 +v 0.56563714529403186 0.86473414393373038 -3.6786567740470977 +v -0.61167911577412371 -1.8721353243026801 0.51982801562209724 +v -0.65523321478907148 -1.8608569341933834 0.51016684378951416 +v 1.936686246506423 -0.65188242711530509 -0.43385274469275226 +v 0.44668083535802461 -1.5262616351143854 0.25375209173985169 +v 0.063968360053747689 0.6067992674974525 -1.4743552939401454 +v -0.84884587788568122 0.51727482603171349 -1.4135452574563065 +v 1804.5447874374813 -1238.7641832696336 1022.5663917322947 +v -0.20343854291935431 -1.8168908731955586 1.2231456218703827 +v 0.039073139205566897 -1.4085837594256694 3.0704137982245792 +v -0.85068436009300852 -1.6298993449315478 1.1533764589775906 +v -0.80452804175411874 -1.724030562766355 0.85076395491647316 +v -7.1204651500779219 -0.47882831058782527 -2.0361560813246582 +v 10.84259548802649 1.0131697856132764 -30.773776031587516 +v 1.1449963568298374 -1.685951070919824 -4.2630274795131413 +v 0.8820364724566101 -1.0871405740409554 1.4054582701316316 +v -0.54306870604181312 -2.1593178312151293 0.32571148267082217 +v -0.72501712540802743 -1.3116787198827664 0.79164258402722243 +v -0.67194212029115841 -0.2659386131220432 0.58033320560181489 +v -0.22367108814429365 0.03250101801735953 -0.6562792957930077 +v -0.30804046018904013 0.57401569540949049 -1.2870094774308936 +v -1.0254032898273662 0.50741163409970624 -1.0744530541934074 +v -0.91117283901561397 0.55007061166435933 0.29950618100491166 +v -1.1318568478793216 0.49635948438976246 -1.0942275603949332 +v -0.42593974713600158 0.16292401194758291 -0.82850616018462975 f 1 2 8 11 4 3 9 10 6 5 7 f 1 2 17 20 13 12 19 15 14 18 16 f 3 4 22 21 25 26 13 12 23 24 27 diff --git a/results/search/topology_13/resume.planes b/results/search/topology_13/resume.planes index 9e762097..18608115 100644 --- a/results/search/topology_13/resume.planes +++ b/results/search/topology_13/resume.planes @@ -1,37 +1,37 @@ 36 -0.48987239599227905 --0.92959225177764893 --0.15570555627346039 -0.37167593836784363 -1.2816979885101318 -0.040568321943283081 --0.033823359757661819 --0.74897468090057373 --0.64466536045074463 --0.74494212865829468 --1.3286404609680176 -0.71902155876159668 -1.0438249111175537 --0.76791244745254517 -0.37438246607780457 --0.48482665419578552 --0.024946417659521103 --0.20010511577129364 --0.035236213356256485 -0.88978284597396851 -0.024908250197768211 --0.10388956964015961 --0.38367396593093872 --0.2645094096660614 --0.44358626008033752 -0.022836118936538696 -0.9986451268196106 --0.11198940128087997 --0.33714306354522705 --0.14028838276863098 --0.73378992080688477 --0.10583475977182388 --0.34835773706436157 -0.099175401031970978 --0.13172334432601929 --0.34473335742950439 +0.70693308115005493 +-1.027686595916748 +-0.12610068917274475 +0.0842161625623703 +1.0790222883224487 +-0.052585355937480927 +0.007517792284488678 +-0.48142388463020325 +-0.59590256214141846 +-0.59740662574768066 +-1.883265495300293 +0.49469199776649475 +0.83462619781494141 +-1.2850614786148071 +0.17447014153003693 +-0.40888509154319763 +-0.0096696354448795319 +-0.15055415034294128 +-0.062488812953233719 +0.62744826078414917 +-0.014285850338637829 +-0.0678853839635849 +-0.3628862202167511 +-0.34281790256500244 +-0.27033257484436035 +0.14594855904579163 +0.65437871217727661 +-0.075752921402454376 +-0.22566083073616028 +-0.081920549273490906 +-0.61763036251068115 +-0.086196340620517731 +-0.23610031604766846 +0.10761161148548126 +-0.22011154890060425 +-0.45629119873046875 diff --git a/results/search/topology_14/resume.obj b/results/search/topology_14/resume.obj index 50d93cfc..757408a1 100644 --- a/results/search/topology_14/resume.obj +++ b/results/search/topology_14/resume.obj @@ -1,47 +1,47 @@ -v 10.302584199093538 -1.2502688565809597 3.1550440868079992 -v 2.4137542057206982 -1.8761024725357605 -0.12654023036498807 -v -0.79724413593855492 -1.2221027521387424 -2.0845496452793393 -v -0.19657295844960929 0.22796570314583522 -2.795061404740256 -v -1.0735028611428663 -0.037692030335776415 -3.0255629100620576 -v -5.8289776897685552 -11.109400592178567 2.3198465368606986 -v 21.836087569461846 6.4176472648480178 3.3283012771821241 -v 1.0987514288232616 -1.6068785365216387 -0.92935791614894292 -v 9.4317485527882816 -18.029028375277658 14.235621611447421 -v 1.3755589721277359 -2.1685208406803174 -0.41455988933505594 -v 10.12839531290385 0.55402467307243919 1.8375375073600879 -v -0.99014296069167129 -1.8666967233295479 -0.60614601121056522 -v -3.0442319628229249 -4.9534130495522559 -11.257408389705544 -v -1.4016850959216729 -1.7678568921628057 -0.33675444136896848 -v -1.1494708314333031 -1.5785852914377685 0.33531995241436241 -v -0.095522903826606331 -1.4655514092486328 0.87232722684396669 -v -0.39388534349838727 -1.8577004014047513 -0.48646875185844618 -v -18.015475766061151 -1.5464971023631713 -2.0897246983883617 -v 1.4045799557348739 -1.8770881770663634 -0.28137859129779208 -v 1.6622951893156066 -1.6982439039829251 0.35658241499348231 -v 1.0929028675469858 2.7175891679554773 0.034874746245447841 -v 0.44590724473266424 1.1348939880244324 0.94549517324787824 -v -0.40704948701998944 -0.74979369858277445 0.73565629246164987 -v -0.28945543983731298 -0.41720156401752534 0.25618683679174714 -v 0.92385446180115949 2.4043368749460812 -0.42789928839116048 -v -0.21408677588847422 -0.24737758678076488 0.25174021290831644 -v -0.27102613855513236 -0.4140022485150201 0.52290997519960092 -v 8.1925686119124919 10.419232211604717 13.253086155915108 -v -0.35799990681522487 0.012250027700637782 0.050488683587908922 -v 1.8242248860345782 3.240225330614356 2.0464855332125942 -v 0.58205473672639874 2.2999165723710959 -1.2439857552799798 -v -0.39555520183701182 -0.17290115122110913 0.32734973274924922 -v -2.4946780166299858 -9.9036547160922002 -11.136827297805539 -v -0.37458982008285024 -1.5230859593479906 -0.33522061250624319 -v 0.49695614432809659 -0.52499275417829028 0.7498459353012954 -v 0.069993463731933631 -0.72907616689031052 0.60889285016780492 -v 0.88377368822678282 -0.91958527101142606 0.082968182395416257 -v -0.61514929922523209 1.3266053189772631 -0.78201560051268371 -v -0.68110994979035755 1.134648244541886 -1.1039828191847736 -v -2.2929710347448542 8.8178698436204854 -6.4360922773367211 -v 1.1147108969876749 1.9319845877996427 -0.092193228841080721 -v 13.356659005709814 6.1794884287388836 4.725369404782314 -v 0.46766609968544448 0.85726062361709066 -1.8353951037512974 -v 0.22103239728622731 -0.07820906284475361 0.37875376755019263 +v 5.1528586120918032 -4.3105632730667542 1.9590265403050675 +v 2.9238204227572142 -3.3576930709670978 0.56140717626653625 +v -0.36445600050765126 -0.71152256957838667 -1.8363195197830682 +v 0.26279169399998081 0.93744108144501637 -1.9622326491603168 +v -0.54132843672265463 0.91606982154197003 -2.3675372185242827 +v -5.9731873278478762 -11.944516703349855 -1.6614965039605554 +v 15.123158435291311 0.72337470565736195 5.6928468506364922 +v 1.3474307226612707 -1.7695106615065157 -0.67461618829496017 +v 4.8619191009656832 -8.0888331966594507 2.8335434144243674 +v 1.701207231530198 -3.2011863376240854 -0.10601873929689143 +v 4.8170326854418724 -2.1481660523097803 1.2017074437438902 +v -0.79976605659880817 -1.7779325472097753 -0.88792911873846325 +v -0.4211543513915243 -1.7854440119525821 -12.03790520710049 +v -1.2647807517629508 -1.5878059290038902 -0.54068508304674179 +v -1.2120675619269647 -1.6142908228937851 -0.21611748093088629 +v -0.29146366785416788 -2.005781868091657 0.20991901608973004 +v -0.26835795105874727 -2.0080362687738749 -0.33802344950264734 +v -12.322205524365861 3.0586420878105129 -1.542795183492951 +v 1.6502401356926715 -2.8164922022437806 0.0011654064284705168 +v 1.7980803006526067 -2.8892039717992826 0.79575138903072751 +v 0.79890247191220631 2.5995948395780788 0.72149014729165328 +v 0.37439027501774674 1.4996902483938932 0.98438474612341886 +v -0.58952858506849493 -1.0924432124084875 0.53631362418936712 +v -0.44029924761684591 -0.73989970155492413 0.06726261699258318 +v 0.76509132083183995 2.4806247512940316 0.39606695522746416 +v -0.32175884815691996 -0.41826884012713256 0.15390952130706467 +v -0.44278008600116686 -0.71491484484835277 0.41567725625136365 +v 3.7642050795443494 4.3009774997272219 11.988722942778784 +v -0.51465783068969861 -0.12562149350709789 0.049281294144208343 +v 0.51287735312126648 1.7614363923562226 1.11126949990494 +v 0.5492383683543085 2.6640582586296948 -0.68217465177745207 +v -0.60418891552300658 -0.45484797082467582 0.31777120948328064 +v 0.61326428387947718 -6.0742533385514283 -9.5650770950629926 +v -0.3423940828333274 -1.4549538289065951 -0.18415938456200465 +v 0.77299647103214852 -1.1123357589848524 0.61994574313567363 +v 0.25716167672584417 -1.1967305404389075 0.39986334097688508 +v 0.79073156442365367 -1.31065319314097 0.21507396874394127 +v -0.70075830333879363 1.5387613625184677 -0.36842008519439129 +v -0.65901863278980499 1.3808251099112974 -0.90673191701634281 +v -1.9404242728526435 13.039557580445216 -4.3654357027441586 +v 0.96040268074096891 1.529560283598596 0.53970493145460041 +v 5.549794777467608 1.3651045719090069 2.553936675162686 +v 0.72834409725390148 1.0345361297626245 -1.3530751410539521 +v 0.23316089052702921 -0.37943129281642846 0.33924145228993219 f 1 2 9 6 5 3 4 7 8 10 11 f 1 2 20 19 17 16 15 14 12 13 18 f 3 4 13 12 23 27 26 22 21 25 24 diff --git a/results/search/topology_14/resume.planes b/results/search/topology_14/resume.planes index 841a703f..41a3d1b0 100644 --- a/results/search/topology_14/resume.planes +++ b/results/search/topology_14/resume.planes @@ -1,37 +1,37 @@ 36 -0.70859885215759277 --1.0317776203155518 --1.5066791772842407 --0.071062415838241577 --1.5857479572296143 -0.47325119376182556 --0.099737465381622314 -0.044430434703826904 -0.0063584465533494949 --0.28069469332695007 -0.15090230107307434 -0.062840789556503296 -0.17771376669406891 --0.74913704395294189 -0.54634702205657959 --0.3493691086769104 --0.016708530485630035 -0.081536047160625458 --0.16840894520282745 -1.3782316446304321 --0.78720110654830933 --0.078567542135715485 -0.067715473473072052 -0.13994587957859039 -1.1232492923736572 -0.10954076051712036 --0.48446407914161682 --0.037965606898069382 --0.14221867918968201 -0.31948155164718628 --0.035012964159250259 -0.12932810187339783 -0.18174082040786743 --0.072395317256450653 --0.099127680063247681 --0.076111949980258942 +0.70580857992172241 +-0.37390312552452087 +-1.3806015253067017 +-0.75728321075439453 +-1.8074345588684082 +-0.02449689619243145 +-0.1385464072227478 +0.052339609712362289 +-0.0047397804446518421 +-0.38309857249259949 +0.16596665978431702 +0.075762204825878143 +-0.049587685614824295 +-1.1131857633590698 +0.54309713840484619 +-0.51929926872253418 +-0.06349470466375351 +-0.021636649966239929 +0.22065055370330811 +1.3861433267593384 +-0.38957419991493225 +-0.078290276229381561 +0.010998820886015892 +0.17928105592727661 +1.0779557228088379 +0.19375678896903992 +-0.18283326923847198 +-0.10078847408294678 +-0.10347747057676315 +0.32346463203430176 +-0.0098977833986282349 +0.059929724782705307 +0.17550832033157349 +-0.083439163863658905 +-0.11564594507217407 +-0.16963060200214386 diff --git a/results/search/topology_15/resume.obj b/results/search/topology_15/resume.obj index 8b2d48ce..ff417c15 100644 --- a/results/search/topology_15/resume.obj +++ b/results/search/topology_15/resume.obj @@ -1,47 +1,47 @@ -v 1.6939786598852113 -1.0766632220420167 2.0725520458871109 -v 1.8160018935585973 -2.7709282622749121 0.56682383071985931 -v 2.8907411534412684 -3.0080812395828853 2.5986318686001741 -v -0.042919379864585376 0.3084640905779385 -0.16770806334264837 -v 0.6589797196790651 -0.97173236202176949 -0.012693874161730692 -v 4.2301604482437565 -5.880641241708509 2.4470569664106443 -v -0.17334208937244822 1.3365612396989477 0.6264443791422043 -v -0.026881321552981351 1.2599062834839541 0.85715670355734552 -v 0.45047898497235872 -1.9443289350822184 -1.4676709399600381 -v 0.62361495778046794 -1.1366989046832201 -0.25947917519652153 -v 0.00023621744500255598 -0.13042545563947652 -0.53327668552738006 -v 0.67614998728408737 0.64195446108771592 0.21079580034385881 -v 1.9967800043109851 -3.6164180544011879 0.26987315259498884 -v 1.7916034105677816 -2.9712461331113666 0.24161884862822255 -v 1.3522391507036329 0.72247060255406481 2.8672202621423462 -v 2.9258811935644609 -5.0105790397526384 2.1722184473943718 -v 0.5628306568914998 1.7568925210735502 1.0764935879383435 -v 1.0725527973238269 -1.8570741052998878 -1.1897500467932978 -v 1.1254599888277126 -1.1913961718383506 -0.21585029637932457 -v 0.80679604010282902 -0.22043588430540839 -0.29582702447201303 -v 11.648386924114847 -16.938860021947384 2.6709676763586856 -v -0.23349493914596167 2.1062110999536858 -0.11849537421395501 -v -0.67185661355166537 2.8654817062103795 -1.2757122975804396 -v 1.9273697866452231 -1.0520990583421954 -5.2939580174241634 -v 3.4447614336453944 -3.6727244463267104 -1.4296213593146645 -v 2.9878824707754448 -2.9030740309411587 -2.2318858018316652 -v 2.1804812258518771 -1.7016711751962565 -0.69476626145380693 -v 0.046144711319199241 1.7067392717094769 -0.9604190206929627 -v 7.7797533318830263 -16.412307473749333 1.4054886879473456 -v -2.037013901035849 0.61838560832772504 -0.81757709512269272 -v -1.5534267301500166 -1.1182008556296754 -0.76458042523447145 -v 0.69092197319943849 0.48637520698058334 0.089830462246350773 -v 2.0499070045188916 -3.2097701932060088 0.3133093232184877 -v 10.205858826467354 6.8177284567106176 7.3636117809010386 -v -14.888072500347835 -0.55568959066901957 -3.2099078220952526 -v -10.770925732715469 0.86715407308773174 -1.428406024192284 -v -0.05463931044670943 0.8092841063050662 2.3840674789957879 -v -20.503248817436383 7.2127703528769764 -3.5113531198193253 -v -2.6558259432169908 -0.6637269076918173 -0.37779254844678556 -v -2.7434043909919121 -0.50659789079695627 -0.61377749422941941 -v 0.20304488342992497 0.40627910608120205 1.8652344400289955 -v 2.1505971054287087 -2.6130826252991954 -2.1349941400750323 -v -3.8072104932372128 0.20673722076644638 -0.84607186713732563 -v 0.53351845106134854 0.3159786412172918 -0.070218903850664205 +v 2.1568074658664149 -2.6381227134283871 1.8879168631879868 +v 1.5665182105099391 -2.3289535667520052 0.31621387439901416 +v 3.551154108211624 -5.3306123945550095 2.8897629472320228 +v 0.37881988330357946 0.007149011394145457 -0.47823138279619448 +v 0.90219377076245177 -1.2577868725648629 -0.45349443940546086 +v 5.7523022717884409 -10.753764029269382 2.8511964471943774 +v 0.076543871101245789 1.5407512486085502 0.61686450873080823 +v 0.094840761250248207 1.5200676912436057 0.65024670775272675 +v 0.99826630662347882 -1.8058258151241504 -0.88528592660151229 +v 0.90035227461979406 -1.2728398131743752 -0.48052549407001088 +v 0.46391509469788772 -0.37764874066253507 -0.72167825568174826 +v 1.165166742184258 0.59076436193966042 -0.013203460514279008 +v 1.311661660692103 -2.5966319521896093 -0.47181348583669325 +v 1.2441106164347053 -1.5738169752398261 -0.38227824790027154 +v 2.2991870102539669 2.3352571474047337 3.6442223678065888 +v 2.7447019976498708 -7.2475303121668162 2.2796902770137955 +v 1.6826519356635312 3.7427632791183965 2.2985403758895053 +v 1.1086726890320489 -1.411252678926459 -0.71789675824935262 +v 1.1877978177976192 -1.2674946265062477 -0.45669107317120639 +v 1.1188786998985052 -0.1522476076581645 -0.3457762126952621 +v 14089.262634395373 -18592.531154928885 2333.1019768500837 +v -0.36174461282439657 2.763871430649337 -0.40892921121727016 +v -0.992728846184179 5.4219686592467626 -2.1645648695637214 +v 4.1371843261810595 31.644372305564261 -31.159087626997227 +v 20.18767660006354 -23.21030890203032 1.9572124204596757 +v 5.2166116207136088 -2.0993967431427114 -1.7455288984283324 +v 2.5072297375015724 -1.0154808776154516 0.059822420470473703 +v 0.5941716497252536 2.810114436920558 -1.4336453559080937 +v 38.143905663391131 -107.87502773800493 -0.48497284583203437 +v -0.6759058293808583 1.8895606068957196 -0.60001012210249327 +v 0.24254301394535577 -1.3591237561007241 -0.66759705381458079 +v 1.0892641222127926 0.30022872446638604 -0.22779941088121114 +v 1.6744998752551408 -1.8577481811850176 -0.28035000747735772 +v 8.9909321912284117 17.927509221993809 8.6562721189756466 +v -12.799031739350148 -2.1659042241116704 -2.7588234720099045 +v -10.277156452065991 -0.72416289093162356 -1.5790020995212046 +v -0.27387696105318071 0.34552579462890154 2.3575117620313866 +v -2914.2743418108184 2171.1748744759707 -747.4391973901362 +v -0.92133988576797254 -0.9908927156392181 -0.066362046366103045 +v -1.285543680005963 0.58375320201612046 -1.0922678838433426 +v 0.29961914239024307 -0.16342818146733823 1.475124654677666 +v 2.4270294906487329 -2.0095830335690605 -1.8298859537487284 +v -0.61078574133734154 -0.38316145701001048 -0.8140740693317795 +v 0.98240722040704642 0.19656505423562071 -0.30864120191440231 f 1 2 8 7 4 5 10 11 9 6 3 f 1 2 20 18 19 14 13 16 15 17 12 f 1 3 21 22 23 28 24 25 27 26 12 diff --git a/results/search/topology_15/resume.planes b/results/search/topology_15/resume.planes index b4d33953..641b0f16 100644 --- a/results/search/topology_15/resume.planes +++ b/results/search/topology_15/resume.planes @@ -1,37 +1,37 @@ 36 -0.12822751700878143 -0.062981106340885162 --0.060475688427686691 -0.70242452621459961 -0.21526907384395599 --0.18529954552650452 -0.77830129861831665 -0.48941907286643982 -0.026290711015462875 -0.051922906190156937 -0.009738522581756115 --0.15467886626720428 --0.67601305246353149 --0.4151446521282196 -1.8938689231872559 --0.73739057779312134 -0.58290326595306396 -0.66178178787231445 --0.8773949146270752 --1.5353410243988037 --0.69667893648147583 -0.038931842893362045 -0.19432514905929565 --0.2451765239238739 --0.095509521663188934 --0.56442874670028687 -0.39098572731018066 -0.54351949691772461 -0.24262601137161255 -0.081484571099281311 -0.10987203568220139 -0.183659628033638 --0.30358892679214478 -0.032718952745199203 --0.12465494871139526 --0.53263181447982788 +0.41715219616889954 +0.17018976807594299 +-0.12319314479827881 +1.0799059867858887 +0.10501722246408463 +-0.38492566347122192 +0.61476308107376099 +0.54083430767059326 +0.59789419174194336 +0.16580840945243835 +0.058076303452253342 +-0.53834426403045654 +-0.7756916880607605 +-0.32949212193489075 +2.0606849193572998 +-0.44326308369636536 +0.093514472246170044 +0.3008953332901001 +-0.54551535844802856 +-0.58196687698364258 +-0.69958955049514771 +0.017659952864050865 +0.23888042569160461 +-0.32966005802154541 +-0.020688652992248535 +-0.74590659141540527 +0.41678676009178162 +0.68857556581497192 +0.23626574873924255 +0.31125456094741821 +0.30060458183288574 +0.18519331514835358 +-0.63481390476226807 +0.069753549993038177 +-0.18163701891899109 +-0.80050039291381836 diff --git a/results/search/topology_16/resume.obj b/results/search/topology_16/resume.obj index 3ebbf5e5..68aad481 100644 --- a/results/search/topology_16/resume.obj +++ b/results/search/topology_16/resume.obj @@ -1,47 +1,47 @@ -v 0.94077466261063669 0.69237566212006185 0.28966027654065951 -v -0.57958171449494578 0.77884479520713246 -0.54182203771583759 -v -0.94387278166119704 -0.041850893381968714 -1.2740166636707715 -v 0.014457665119222569 0.026345020721262883 -0.67218602158830354 -v 4.2725514505830251 -2.4013672286342467 0.27221378379379912 -v 1.4561628981148833 2.4264572510916111 1.6884848728654616 -v -1.9312522371880982 -0.63845165945183535 -2.2274798916072491 -v 0.69782231625806812 0.25967413033674042 -0.12604196817141233 -v -0.21717580495741523 2.8149792402255862 0.95915000761269753 -v -0.70670097662723519 0.054937208846863865 -1.0744564180910428 -v 0.62645795602852183 2.7635104981044103 1.4183238244303276 -v -5.9000332362761059 4.0310475762003799 -11.574171164397901 -v -9.9700794563987607 5.3039185148664254 -16.667847700646789 -v 0.75717648477371446 1.3203958947407972 -1.511430343446257 -v -8.6070220520261067 1.5132347662109693 -5.6971261702862037 -v -0.052303986623904501 1.3954289734510457 -2.033979618887213 -v -0.99492605261316902 0.86209661104131918 -0.93318059826590261 -v -0.74658679846455733 1.0227973889734845 -1.2787950147865257 -v 0.095110895018998998 0.79143353181648879 -0.31316984396487335 -v 0.6597270269707759 1.3540070527060197 -1.642020980364852 -v 2.6284271347133514 0.27104192714312825 0.87407477024783753 -v -4.9437709409050807 1.0717816645191229 -6.0569103695501907 -v 0.90382472145403059 -0.25725015436221088 0.44971698913046176 -v 0.50569910128957507 0.15420515256917813 -0.51457237859715232 -v -0.55381554596613192 -0.050141152470518834 -0.97051603934990516 -v -2.8977071812573363 0.4362600041217336 -3.5033467041696484 -v -4.2470883065640423 1.0838192210099715 -5.5584260759123021 -v 9.1151956476821425 -5.1431754770196454 6.4053790151123176 -v 1.3153891868901355 2.0216115699366415 0.76338995775268959 -v 0.63482225591609887 2.013313129458902 -0.70520767708691046 -v 1.4967446488184581 3.2072397687077205 2.9786670759747329 -v 1.0445035889223027 2.1841390336675524 0.43442963162660808 -v 1.9633966299254495 0.79297518336735429 0.25592564259539197 -v 0.10970115650464578 -1.3542375063490362 -0.98923810039969295 -v 9.9774378580876046 -10.585230880983996 22.666815792434662 -v -5.1482394411054262 1.1163787277732706 -6.0979391764370661 -v -6.4581058443354209 0.75230779656983393 -4.3710994557132965 -v -3.3213058542856224 -0.14707034069121946 -3.0826834874252507 -v 1.2890338022131278 1.4092493734835425 0.86113808369176104 -v 0.62664762001192209 1.8081858054462014 -0.67105140812975195 -v -0.77746599617650403 0.10196734612260529 -1.1222637966435807 -v -1.0595341988552565 0.087798402751911919 -1.4269204394591548 -v -1.2749255541755902 0.1081188106269008 -1.642438541377953 -v -85.618281609259867 6.4325211400738667 -49.006505327092526 +v 1.0446137737814145 0.68267001128567362 0.34288294194785318 +v -0.51617733291432588 0.89767309127014316 -0.38860592165414432 +v -0.95685503401572658 -0.10307581679758412 -1.275591929179817 +v 0.59008426984557072 0.027295101625264714 -0.33041260648884752 +v 2.2340653446851664 -1.4777391480276088 -0.37957686580331906 +v 1.6583573775553304 0.90892065335959271 0.8297619641424685 +v -1.5485718685366696 -0.46842035187129111 -1.8393701974169423 +v 0.84574456025911471 0.29937157964972505 -0.013599265520750858 +v -0.20024858651834238 3.0357674044658571 1.1580051933195081 +v -0.48095325692080565 0.049207152307932926 -0.91290484297838792 +v 0.50819634107907063 2.8777519810960612 1.4512926133105903 +v 0.99097418845709284 2.4492377427319414 -4.0337927882687277 +v -1424.7257176884204 1084.2014100101201 -2862.2506165851528 +v 1.5815139391032771 0.97330821010349466 -0.30736581673719066 +v -14.737902235420592 3.801990287410391 -9.3919929950006633 +v 0.18903880973531581 1.6559926142442778 -2.1741891132655202 +v -1.3920128303031729 1.1453724136770087 -1.1133546418867672 +v -0.46402142754820946 1.2066966854077268 -1.14634065756134 +v 0.26959406541816816 0.85148173107707137 -0.17383180484011673 +v 0.91288996064885464 1.5316965493247936 -1.7741344854662002 +v 1.8399309284292031 0.14819413724812849 0.40750789430045531 +v -4.9877784045783651 1.7085011114878905 -7.2951974363881762 +v 0.91651354746096181 -0.24801448829934397 0.36968576267502273 +v 0.65042556023602938 0.11939120199607132 -0.43739836335250293 +v -0.3562621708725362 -0.11085786778034777 -0.81208085589802126 +v -1.8256509292285426 0.16877851498962523 -2.3769336905764145 +v -3.0095765153530407 1.5875461869676382 -5.6109119483204344 +v 2.4130324274521699 -1.8952617493111168 0.90182204315870551 +v 1.4020746243226587 1.8602478984888549 0.80041230058070356 +v 0.96707807286914094 3.1741028340204616 -0.78646527662558308 +v 1.1818133623111868 3.0188871922271301 2.5174351961078836 +v 1.2848232642556459 2.2459034929932042 0.53366660606013294 +v 1.6616615572446345 0.7529004182701271 0.095715819103441402 +v 0.37606543325908764 -1.1135760960731755 -0.66512924924702044 +v 5.9153970400238167 -6.8449161259713858 15.417509880516908 +v -5.7823961459995354 1.9085397772238224 -7.5625494751460813 +v -8.7659500533384112 1.8007044766923705 -5.750300446371023 +v -2.5502428430628044 -0.036108303984397939 -2.7670275480809572 +v 1.3882089685228443 1.3468281157620667 0.95807447251003763 +v 0.86763397425753364 1.9865306778621135 -0.59124631541688444 +v -0.69653409530479482 0.084296109059572119 -1.0365793822310718 +v -1.0184321494016844 0.024136180433783527 -1.3901854791853525 +v -1.9250057640020757 0.03893966915664037 -2.2797609265380538 +v -1836.2443103936514 303.00819063410819 -1054.9267872358921 f 1 2 9 11 6 5 7 3 4 10 8 f 1 2 17 19 18 15 13 12 14 20 16 f 3 4 25 23 24 21 12 13 22 27 26 diff --git a/results/search/topology_16/resume.planes b/results/search/topology_16/resume.planes index c5a1184a..2c7d2904 100644 --- a/results/search/topology_16/resume.planes +++ b/results/search/topology_16/resume.planes @@ -1,37 +1,37 @@ 36 -0.23346954584121704 -0.2536914050579071 --0.400514155626297 --0.081720180809497833 -0.57661247253417969 -0.20938867330551147 -0.11358498781919479 --0.24809369444847107 --0.15275555849075317 -1.3898493051528931 -1.0013936758041382 --0.64973241090774536 --0.22423651814460754 --1.4696091413497925 --0.47992980480194092 -0.59112828969955444 --0.06910618394613266 --0.27354592084884644 -0.15724751353263855 -0.082151599228382111 --0.14940926432609558 -0.1238173246383667 --0.023453742265701294 --0.11354623734951019 -0.27763113379478455 --0.095064952969551086 --0.50447213649749756 -0.30507925152778625 -0.35336565971374512 --0.4960845410823822 -0.54826092720031738 -1.7694135904312134 --0.80897891521453857 -0.092974245548248291 --0.1443374902009964 --0.10652861744165421 +0.21893861889839172 +0.25199210643768311 +-0.39308646321296692 +-0.034025710076093674 +0.65797311067581177 +0.26599621772766113 +0.12714831531047821 +-0.28015995025634766 +-0.16945569217205048 +1.7294902801513672 +0.4631192684173584 +-0.090650200843811035 +-0.16852264106273651 +-1.1301027536392212 +-0.34468847513198853 +0.68332624435424805 +-0.10187726467847824 +-0.2716633677482605 +0.16916041076183319 +0.098520569503307343 +-0.17075327038764954 +0.093744844198226929 +-0.027310878038406372 +-0.080692224204540253 +0.25990650057792664 +-0.10094669461250305 +-0.48169150948524475 +0.33759739995002747 +0.3510383665561676 +-0.48725506663322449 +0.74509096145629883 +1.9802089929580688 +-0.73290681838989258 +0.088454633951187134 +-0.13685676455497742 +-0.092422284185886383 diff --git a/results/search/topology_17/resume.obj b/results/search/topology_17/resume.obj index 231dba41..ff0f003d 100644 --- a/results/search/topology_17/resume.obj +++ b/results/search/topology_17/resume.obj @@ -1,47 +1,47 @@ -v -1.3179511180471446 -1.9532260383155311 3.0863648991600892 -v -1.343507508897188 -4.5712194104160941 4.349600455837753 -v -0.82959367501703507 0.1075326585002902 -0.76156027270877558 -v -0.85770627364842766 0.21734437032851653 -0.63668922515085935 -v -1.0435062215860067 -0.58179245067342877 0.83367717602313984 -v -1.1704116578155874 -1.5491023415044616 2.0162690347293379 -v -0.28668124264927974 -1.6502966807142707 -3.3265799035033146 -v -0.53701016523817002 0.9754424894021485 -2.9117833771404666 -v -0.92865193066230523 -0.76243797011865067 0.21014703809268187 -v -0.93061706569782021 -0.127518155606863 -0.046466928711661692 -v -0.57793211865927796 0.93479699391814175 -2.6452012938126841 -v 0.95216671131417163 -0.1182835147920842 -0.28288335164840644 -v -0.16095774493608875 0.87262390241120835 0.47726372663829425 -v -1.0676423258082566 -1.4645401559491216 2.5797713255421595 -v -6.1809521804526817 11.766068752453002 1.9773971405793549 -v 11.530818474105534 -1.1999521708425647 -11.439295539456534 -v -1.7474342262118361 -1.6526753101545522 3.418235283354468 -v 1.6094208407926827 -0.10103487339893176 -1.0158749564398017 -v -1.1565177639652298 -0.78332874896408422 2.3564231720642743 -v -0.14166047323293479 0.24916547041767437 0.75010111122152145 -v -2.1890975588881978 -0.33459657347973254 -1.8925931569331393 -v -1.3923499868766314 0.033675750477720451 -1.0936918212477025 -v -0.76560024275308303 0.58835799265852329 -0.13498116901102139 -v -0.66817338973093143 0.47650782327673191 -0.23282242890440355 -v -0.69327372757931305 -1.7817715611178766 -3.0581462892003355 -v -0.44070805622053472 -1.6660599314762208 -2.8061805909090065 -v -0.49255142704291061 0.41909413760737824 -0.22945743142109062 -v -0.93379464188466343 -0.50922967668968477 0.89930171458389474 -v -0.71917052304969664 0.07685066893096873 0.12560705568913821 -v -2.5154414707738391 -0.73905494136012684 -1.7046984087756094 -v 0.45544327911216059 -0.7653271212332512 4.1166969257798707 -v -0.72148290938385995 0.099637467311949335 0.074835088377008585 -v -0.49659486031240657 0.38975784303145389 -0.077805623655130329 -v 0.71190270849358994 1.9692730225248611 -3.6819289725399238 -v -1.8035168770047609 -1.6888721987278679 3.2331039168593527 -v -1.0722754857540893 -0.4850552110596178 1.1287569207946142 -v -0.41653910459387067 0.48681292346684263 -0.68612848201640475 -v -2.9827921089980061 -2.309521167603577 -1.5270011010781464 -v -5.6608266754941017 -2.8193611232559683 0.27387653457992289 -v -2.8957385278218775 -2.1987120687715156 -1.5768537733086534 -v -10.165282781617101 -5.1614661259132557 -0.70178179168825849 -v 7.9567865807310802 2.5064023521782106 9.5711347926754389 -v 1.0784275363416636 -0.65557919540370202 2.5775383610641316 -v 0.03978870228450835 -0.016311174103208387 1.0743030293526143 +v -1.5192822736513085 -2.5746267502928486 3.530174454707621 +v -1.5937066547461511 -4.7369975584693655 4.52821861833376 +v -0.87142607102814429 0.070405661833352506 -0.87287455488135035 +v -0.90321327021775488 0.20231252896785393 -0.72614602574100184 +v -1.1102079335400588 -0.6556478450942016 0.68406376894812981 +v -1.2824192871821962 -1.5129233864738012 1.8953050722542613 +v -0.38897636279341091 -1.7299305257222497 -3.1532592894608635 +v -0.60857758107801463 0.77503236143548349 -2.561679070577541 +v -1.0081861997293444 -0.81556166900389215 0.1433615624914194 +v -1.0066556610798028 -0.19999022710738867 -0.028420680970662859 +v -0.68533578316938293 0.72712410516020487 -2.11031626093967 +v 1.0860652613926585 -0.0068938483628805357 -0.20397706280537675 +v -0.22105770541559985 1.1154647581248391 0.64088082345764308 +v -0.91701835074944893 -1.3312666949817609 2.3897085299135079 +v -8.5426116488700377 13.371708141669018 3.8386917381570491 +v 8.9144512808648777 -1.0470076711344425 -7.6882062058928682 +v -1.7513931979076145 -1.5286018855695642 3.3189067531220138 +v 0.84246023225442068 -0.020282758194021682 0.048442003040834791 +v -1.5623870030927087 -1.258262411231432 3.0121420886146835 +v -0.16268111919086134 0.17009270920949349 0.98514644465043799 +v -2.193949165671722 -0.43665746849755144 -1.9994036309904237 +v -1.2592521544030224 0.06950185287652158 -1.0249620477018617 +v -0.91255236541820783 0.68092316045900958 -0.15248712289862601 +v -0.71042685250730209 0.46319382247324081 -0.33641378503779312 +v -0.63566700385367025 -1.8057693013491785 -3.0441055669288173 +v -0.47861452765351525 -1.7346153897775356 -2.8971332165610333 +v -0.53720839614135374 0.41448985454222431 -0.32771861465109164 +v -0.97936034568490282 -0.56181409399771465 0.77617735687435752 +v -0.81487121136315244 -0.080778877973426436 0.19198734309142751 +v -2.5667825364100261 -0.89178564781231273 -1.8998790960765968 +v 0.62758154986947168 -0.59388079392537685 4.1909475072145517 +v -0.7724278433591043 0.090926326327955637 -0.050488816649117751 +v -0.54094421257165881 0.38642751652543667 -0.13719521886621777 +v 0.40535524010564827 1.6188657999129048 -2.9080449554578074 +v -1.8611220193521227 -1.6118628839439344 2.8987246186331186 +v -1.1701431067599399 -0.53625953577956487 1.0685767356337434 +v -0.47850432529063475 0.45647563182332723 -0.70793724538124425 +v -3.1135726805077182 -2.5562623258672881 -1.9455342651413501 +v -6.9386190446845086 -3.6226240960790448 -0.23200290486836983 +v -2.9434935883214925 -2.3415692639555736 -1.9895760248866057 +v -7.669801790036578 -4.0187501037661653 -0.40977201183355083 +v 5.8371890313549839 1.7065186552626617 8.4997042200986677 +v 1.1489391934277022 -0.54308655277360929 2.9240958100384908 +v -0.017826208213992552 0.036989947807897224 1.2146264059864345 f 1 2 6 7 8 11 4 3 10 9 5 f 1 2 15 16 18 12 13 20 19 17 14 f 3 4 22 21 25 26 12 13 23 24 27 diff --git a/results/search/topology_17/resume.planes b/results/search/topology_17/resume.planes index 0fa7e92b..5086437f 100644 --- a/results/search/topology_17/resume.planes +++ b/results/search/topology_17/resume.planes @@ -1,37 +1,37 @@ 36 --0.91795408725738525 --0.063719585537910461 --0.15062673389911652 -0.32170522212982178 -0.13761216402053833 -0.29170280694961548 -0.084478765726089478 -0.24680499732494354 --0.19802157580852509 --0.36625933647155762 -0.38315939903259277 -0.1886456161737442 --0.42401638627052307 --0.16025647521018982 --0.23901847004890442 --1.5673397779464722 -0.20940558612346649 --2.2714629173278809 -0.4173978865146637 --1.1070547103881836 -0.090007200837135315 -0.14274564385414124 --0.32467284798622131 -0.12035608291625977 --0.4699157178401947 -0.39819201827049255 -0.064499102532863617 --0.47066432237625122 -0.15695494413375854 -0.39194563031196594 --0.22110097110271454 -0.38132086396217346 -0.10541202127933502 -0.060258317738771439 -0.1865323930978775 -0.037690415978431702 +-0.98850846290588379 +-0.045810598880052567 +-0.17296692728996277 +0.40963152050971985 +0.17259058356285095 +0.40448251366615295 +0.092390432953834534 +0.28622674942016602 +-0.23729836940765381 +-0.39945691823959351 +0.36909231543540955 +0.19144469499588013 +-0.4716399610042572 +-0.19206215441226959 +-0.29094696044921875 +-1.1739498376846313 +0.44985020160675049 +-2.3406105041503906 +0.39231094717979431 +-1.1076680421829224 +0.11703907698392868 +0.13917899131774902 +-0.3098050057888031 +0.11788630485534668 +-0.50358980894088745 +0.40928292274475098 +0.050409119576215744 +-0.58355456590652466 +0.12437721341848373 +0.44049900770187378 +-0.23040220141410828 +0.37735235691070557 +0.10680726170539856 +0.054180942475795746 +0.19809643924236298 +0.030240166932344437 diff --git a/results/search/topology_18/resume.obj b/results/search/topology_18/resume.obj index bfe69792..9ca065b4 100644 --- a/results/search/topology_18/resume.obj +++ b/results/search/topology_18/resume.obj @@ -1,47 +1,47 @@ -v 0.096217770711044565 0.48056133312762767 0.49558502107739494 -v 1.7481683149666696 0.29813090060353398 -1.2973501916003503 -v -1.377273752584389 1.7205319123249461 -0.51800989677066744 -v -1.0751809345487262 1.5887663191667838 -0.60720681103368712 -v 5.4977883509742771 -2.0151041156110452 -0.76062907690470349 -v 3.8767030828761109 -0.72368317596307385 -1.699292127840029 -v 0.31147704757591282 0.2775318405789669 0.69674005653157534 -v 0.41508137306268816 0.1916380951965066 0.76487623457498 -v -0.88785256601545681 -1.3600703014903939 6.2916374635912256 -v -1.6558842637205877 2.0626228967049025 -0.97072867973598176 -v 3.7406292298032087 -0.69173931093413166 -1.5926363907198717 -v 2.5611712169944707 0.68904641939504996 -1.5913845488825249 -v 1.7636628540121133 0.16994953402989668 -1.4689612247402406 -v 3.4485931535771921 -1.9330080033288148 -5.643875258439615 -v 0.12913041621347982 0.57684786691966727 0.58216268106460789 -v -0.70523873912668689 -0.57350647041471703 -0.033021488810415812 -v 1.0535431476596875 -0.045671343989493754 -1.0581312273445833 -v -0.61059748020356763 -0.77987138057264427 -0.37552932849229409 -v -1.2250628127400027 -0.71533146788739088 0.28731661626119398 -v -0.99129291561300525 -0.3547753831514382 0.5064984975731448 -v 4.5062368092800886 -1.6555028644713214 -2.3607921810274473 -v -1.5875247973138569 0.77695525191391834 -0.59093286182759863 -v -1.7191632596926043 -0.5152794157051751 -0.72806140939334796 -v 1.6489595233883692 -0.98890191148388962 -1.5927334987058206 -v 1.3451335690650816 -0.40983664167504535 -1.4447949207549833 -v -0.90888201000535473 0.72293370256996881 -0.75975583012015924 -v -2.0616351603226413 -1.0975615722484844 -0.72235154917642486 -v -3.9281618874924371 7.2775896872063761 -1.9657610887649142 -v 1.7308879028370592 2.9616547689577386 1.7695111597792272 -v -1.105207649499353 4.7823943161986309 -0.91849259837678643 -v -1.7728053028057871 5.0761268317724459 -1.8727823365923388 -v 3.4686912076479981 2.9966929132259725 6.160256152118448 -v 1.3510979294526535 4.2188672968693366 3.8258716588809145 -v -0.65970795051262543 2.9462356562828136 0.12526134509113679 -v -0.99524851860827057 -0.71297875268176558 -0.23745405921348198 -v -0.93088839095443132 2.342487739362543 -0.082973901823860441 -v 1.1484530925469294 -0.30547434974668669 -1.0035582420936295 -v 0.90893444102750987 -1.2142242655441946 0.85674304913806121 -v 0.43956140833630125 -0.043084196769175014 0.73207609133260421 -v -0.18309658252290392 -0.86009327651407519 -0.46755985366970282 -v 0.70808483632046848 -0.71970771043785498 -0.75475472746991301 -v -0.60498093022185939 -0.92784342112242002 1.1587207783696249 -v 0.90269947358921376 -0.99786598405100524 -1.390874258913863 -v 0.88809332370568439 2.2523764726007953 2.3409364101838857 +v 0.65354398283613802 0.69325699342712899 0.17934777036715024 +v 1.1551141471653597 1.2577373628725286 -0.18431432826606459 +v 1.1277237012719388 5.8344997293053789 -2.6321188428823614 +v -3.1073778546218094 2.5652438749986533 -0.3632322449234161 +v 4.2319767615396424 -1.1872480549736453 0.74880969873936953 +v 1.9820085783658752 0.64728703625089934 0.041485775327140262 +v 1.1851714283221286 0.23293484276929066 0.36085797645184381 +v 1.7173086434243003 0.1192926885933565 0.3566360969380466 +v 1.2838002510866031 -0.42271617314453908 0.69993873629950754 +v 1.0969119711899309 1.8359029398400935 -0.48684108863754627 +v 4.3452072665827099 1.8250058511764822 -0.87829762509279286 +v 1.6678044240113763 0.14942805513283727 -2.3115336248154379 +v 0.66463004507476398 -1.1148805864425673 -1.7251297330493782 +v 1.1320134638370984 1.4282742753105728 0.037155141404587644 +v 0.80902124004431819 1.3757669379161261 0.59528894295007162 +v 0.13211051744955984 -0.21494271210994015 0.22266276548254949 +v 1.2770023475657437 1.9346272869864212 0.289502819777123 +v -0.30932532524103989 2.3438210310277792 3.7255511263179257 +v 0.04007699406005636 -0.73695591032485164 -0.14647195645715699 +v 0.41916230793742343 -0.043695373003627157 -0.14359428230792773 +v 7.7437160720279117 -6.1644600516932586 -4.4666833079906443 +v -4.8200406037042738 1.8885576686387382 0.4897887029559701 +v -4.0531016575001422 0.68872417815357379 0.25801995463886562 +v 0.29772551503831968 0.0706855989492291 -1.6753802918783884 +v 0.31131668849112665 0.63160031896411317 -1.7376791685573714 +v -2.5484255471866479 1.7866229261908992 -0.54172608490055907 +v -0.79436006704953754 -0.4881411515592074 -1.1187205818657167 +v 0.77963654374187985 1.9832235696749498 0.72647841668384816 +v 1.6530870964839721 1.128166393576326 0.57392272181025894 +v 0.9220297148562816 1.4566635036373488 -0.4558303342378629 +v 0.34895484167107382 1.7403070784759214 -1.1849208218886758 +v 2.2285194841213283 0.67514679995037652 0.80314800840881773 +v 1.8334175734293563 1.0507802514729134 0.83882795445578562 +v 1.21698115805838 0.42173679193972496 0.40321243165624399 +v -0.29897515619519127 -0.40477101675064681 0.16467832318749656 +v 1.4026379356107568 0.65665905512789446 0.46154967705576999 +v 1.1674368571668323 1.902317236729212 0.040161066873922735 +v 0.43877489358550592 -1.5608842467002737 -1.0742942507104756 +v 1.0760220518048744 0.22747251849585765 0.10798929689226633 +v -1243.8810349709618 -80.056903659100172 -541.97009345885328 +v 33.974459769225184 9.1246458312798051 54.998013665769321 +v 2.7546894397960107 0.2214302311000089 2.0543532507888296 +v 3.2847535619304344 0.89931627194407182 3.1205231111924672 +v 1.8057773755461746 0.88472614588287157 0.7417253498596591 f 1 2 8 7 9 5 6 11 10 3 4 f 1 2 13 12 14 17 18 19 20 16 15 f 3 4 26 22 23 21 12 13 25 24 27 diff --git a/results/search/topology_18/resume.planes b/results/search/topology_18/resume.planes index 562a02e5..89f26f31 100644 --- a/results/search/topology_18/resume.planes +++ b/results/search/topology_18/resume.planes @@ -1,37 +1,37 @@ 36 -0.27818045020103455 -0.49861174821853638 -0.20557262003421783 --0.00032889738213270903 -0.00042366364505141973 --0.00034614265314303339 --0.23768813908100128 -0.13002003729343414 --0.99707537889480591 -1.8513568639755249 -1.781035304069519 --0.74695712327957153 --0.22042754292488098 --0.011565561406314373 -0.32059088349342346 -0.51311570405960083 -0.22434665262699127 -0.17565745115280151 --0.18314477801322937 --0.20759746432304382 --0.66978532075881958 --0.18657347559928894 --0.89590466022491455 --0.085723273456096649 --0.81308519840240479 -0.15279872715473175 -0.61584621667861938 --0.069688916206359863 --0.02245202474296093 -0.051462169736623764 -0.05193096399307251 --0.36558938026428223 -0.17575035989284515 -0.40295100212097168 --0.28062441945075989 -0.2459886223077774 +0.059244044125080109 +0.25941914319992065 +0.48438388109207153 +0.23269525170326233 +-0.12775035202503204 +0.12264250218868256 +-0.57563549280166626 +-0.12547098100185394 +-1.2552727460861206 +1.1547954082489014 +1.25450599193573 +-0.41963469982147217 +-0.0097256191074848175 +-0.054904747754335403 +0.25205123424530029 +0.85131305456161499 +-0.061293613165616989 +-0.36614057421684265 +-0.021597851067781448 +1.8547401428222656 +-0.23084929585456848 +-0.099980123341083527 +-0.36743098497390747 +0.28332465887069702 +0.25605732202529907 +-0.13895617425441742 +-0.25532364845275879 +0.12439113110303879 +0.1602279394865036 +-0.3094119131565094 +0.093483194708824158 +-0.20534572005271912 +-0.02274465374648571 +1.0641443729400635 +0.21051323413848877 +-0.66290444135665894 diff --git a/results/search/topology_19/resume.obj b/results/search/topology_19/resume.obj index d533b6b1..e819a7d7 100644 --- a/results/search/topology_19/resume.obj +++ b/results/search/topology_19/resume.obj @@ -1,47 +1,47 @@ -v 0.88811036191177894 -0.36535779410303687 -1.7669173605392487 -v -0.42515137093508187 -0.32411764220299988 -1.3428938914820963 -v 12.799182749272081 -15.151109129020742 -3.452051361341482 -v 3.1723240197068678 3.7333839379362552 -3.1297023819332495 -v -5.0811426346105133 -0.090353639638522096 0.14729735734471755 -v -0.62880013986785377 -0.86939943556038357 -1.194429422466238 -v -1.4100381664089414 -1.9507171772481164 -0.77638892766272072 -v -0.71548413815368606 -0.51985798498088087 -1.2184383046264791 -v -3.4592117966718137 -1.7009729561921756 -0.14255105402364854 -v -1.5946858006611619 -1.4781207188275589 -0.78675542291412148 -v -4.5665505055265907 -0.4537755129033435 0.03321047093455709 -v 0.63796419323132103 -0.39693152784108243 -0.7438624635583414 -v 0.17599956850624335 -0.37933522109640128 -0.66853341635715713 -v -0.1517811332717533 -0.47579538097585 1.9885281729079176 -v -0.20567425845773502 -0.38574871527291621 -0.1055905901213422 -v 3.0861690773834889 -0.54403260780125107 0.14381829399511137 -v 2.5497492249171465 -0.5533667406020929 0.94265673038360187 -v -0.96613135138723816 -0.38468218765969014 0.68516060537133838 -v -1.9432230878790129 -0.36443480676324147 1.2500469876090001 -v 1.5253742822410401 -0.47372666273207181 0.13890830248916369 -v 4.3481143131889564 -5.8301554646253635 1.1207710365121024 -v 0.047106285468816081 -0.10140035710229045 0.60408662595772333 -v 0.081856536356986295 -0.028347626935725068 0.26371437926859681 -v -1.7593191409602273 0.066676871912660501 6.8485008726739887 -v -0.34983028339498257 0.17641668975101379 1.2807422275035982 -v 3.9433200511740427 -5.3370033955812248 1.2049978994611468 -v 2.750404654843313 -3.5970278201526895 0.62554834494326328 -v 0.42604073069476994 -0.42763491116591446 0.13428433878390197 -v 0.17967179812096717 0.19615801332675378 -0.93776799857965387 -v -0.024790206287707867 -0.091638045426236048 -0.7664851243835602 -v 5.2776383421670703 -6.4105588336820976 1.2235395032329608 -v -0.91596884141443125 -0.53102848252318813 -0.40027173620772938 -v -1.4058116493956661 -0.99832350595315533 -0.093612734293991889 -v -0.57493928357774282 -0.85644815480844672 -0.31007645392854777 -v 1.0033713993191702 1.071887532310043 2.0302541823303812 -v 0.66811565888562763 0.55383107600303805 2.9062917842884106 -v 0.81887963108067685 0.93473181023843699 0.60483615789179423 -v 1.5840230637651913 1.5435823923231802 0.82601498980879373 -v 2.1843551765520202 0.61185718854445736 0.62502724413761812 -v 3.146819742239829 -1.8399809628779165 1.0075286286455416 -v -13.267660314566632 -11.326016544606714 -9.6772034327557126 -v -6.0241220418041408 -4.7748902433236839 -2.9346980073006024 -v 1.9205528633225779 0.41992189856992113 0.45010691965738742 -v -2.3403565864746843 -5.2934147390474315 -1.5714947094584861 +v 0.81748296407038057 -0.55772773120718977 2.4715816374463793 +v -0.41911906242505337 0.71829823005939664 4.234633290618139 +v 0.90604067173650804 -0.85443340351672237 1.8481474041681145 +v -0.47128627754719782 0.203760556495412 2.9327564627853517 +v -0.58339454330851137 -1.0841313833228277 -0.30603907502188143 +v -1.5510500327717491 -1.3872817734476115 -2.0782742518769939 +v -0.47946473772794318 -1.1927862607699851 -0.45763247162203707 +v -3.6202953008642029 -1.1364197450726088 -3.6908969409889081 +v -1.5725986134834318 -0.74903666115402623 -0.55593941653648216 +v -1.3704966991212459 -0.96639401674424474 -0.86541881895748096 +v -1.2366741072057952 -0.78662956126772388 -0.28655882317988834 +v 0.011905369462089485 -0.47518992724534492 7.0551203187960274 +v -2.3765731343152723 6.0742479890727479 -8.2799853806431116 +v 0.92483466453634988 -0.42438975124638845 1.1985835844105983 +v 0.26341974922123551 0.98532732747019058 -1.1947618886974589 +v 3.5301107133999463 -3.5119953384346325 -0.68403103676065702 +v 2.1261486504454079 -1.9452112908656651 0.77597944976661448 +v -0.20793471774266356 0.92606380954433509 1.980584549457705 +v 0.62464040576121083 0.072632982097421125 0.76746995298755682 +v 1.7089745306782707 -1.2249779284549669 0.041388208617747863 +v 0.37338987945065422 -5.5703728998677846 2.8957981143058729 +v 1.1367990369466425 0.20172096887729515 0.98403787030190526 +v 1.2007932840263924 0.55514528845859534 0.7695628087692945 +v 0.77013964510534205 1.5173707919188637 3.6015116466333303 +v 0.87675506155096405 1.60466264430225 3.0357221891133088 +v 0.19351819316763469 -6.9638858949206206 3.3323093537486379 +v 0.92422087030643307 -3.0100093143454627 0.84945359830823985 +v 1.2129154906108606 -1.0243316526319908 0.044551615957307278 +v -1.0690052298619819 0.51484035702144093 -3.0016798578878854 +v -1.1854475180789785 0.93917332567218026 -3.5834365647720778 +v -0.27619469681993786 -2.3077101757679297 1.0643896482022925 +v -0.92720151695618735 0.55877745092643527 -1.4078751757938543 +v -0.65481650751648979 -0.40922597519213383 -0.0081575095907313877 +v -0.65032896379869143 -0.85794658922878242 -0.6684523100225177 +v 3.1331398034544526 1.5639459838531433 3.0927441943266452 +v 0.063096502613733327 -2.0135910355348954 1.2000414596805546 +v 4.1086332622650632 3.7319004861506699 2.755104106514827 +v 11.165486687298724 8.2548288523138122 6.10660646328121 +v 5.9629942486804266 0.49619214359439973 1.6676684041948204 +v 1.6467459680824519 -2.1772247859508105 0.7175943478143838 +v -9.6061574768408384 -5.0240144275230074 -4.8725339967142798 +v -2.7393777313305243 -0.62669543965931018 -1.4882073773053384 +v 5.5353895191986533 0.37408747736800074 1.4657628845276336 +v -2.6241639989014223 -1.7040977298102713 -0.95849553512571295 f 1 2 8 6 7 10 9 11 5 4 3 f 1 2 18 19 14 15 17 16 20 13 12 f 1 3 24 25 22 23 28 27 26 21 12 diff --git a/results/search/topology_19/resume.planes b/results/search/topology_19/resume.planes index f9c3959b..7c22b3bc 100644 --- a/results/search/topology_19/resume.planes +++ b/results/search/topology_19/resume.planes @@ -1,37 +1,37 @@ 36 --0.44384890794754028 --0.20313586294651031 --1.3549071550369263 --0.017871247604489326 --0.39790520071983337 --0.016649914905428886 -0.078124634921550751 -0.060545429587364197 -0.020970745012164116 --0.11767705529928207 --0.30368238687515259 --0.65073102712631226 -0.056310951709747314 --0.041941419243812561 --0.0032526608556509018 -1.7062488794326782 -0.85007762908935547 -1.1556786298751831 --0.10393435508012772 -0.13917608559131622 --0.023568039759993553 -0.10720602422952652 --0.32702711224555969 -0.19715745747089386 --0.69289648532867432 --0.83434110879898071 -1.5550445318222046 -0.32772615551948547 -0.044008448719978333 --0.54254239797592163 --0.0044976919889450073 --0.082837246358394623 -0.24358969926834106 --0.0080959014594554901 --0.0027058308478444815 -0.020848220214247704 +-0.39425098896026611 +-0.88979113101959229 +0.3674679696559906 +0.50808918476104736 +0.37842464447021484 +0.082484506070613861 +1.2502263784408569 +-0.092027172446250916 +0.22139009833335876 +-0.69321167469024658 +-0.10182005167007446 +0.064483225345611572 +0.26713481545448303 +-0.14499887824058533 +-0.15923081338405609 +0.38899660110473633 +-1.2300868034362793 +1.6941089630126953 +-0.51469129323959351 +0.78514778614044189 +0.024148520082235336 +-0.010273076593875885 +-0.2917419970035553 +0.1981910914182663 +-0.14123068749904633 +0.076753176748752594 +0.18682943284511566 +0.69310450553894043 +-0.76089733839035034 +-1.0077270269393921 +-0.043073553591966629 +-0.1102670356631279 +0.23950263857841492 +0.21606859564781189 +-0.2874857485294342 +-0.63172435760498047 diff --git a/results/search/topology_2/resume.obj b/results/search/topology_2/resume.obj index a72ac5dc..daa9d8ab 100644 --- a/results/search/topology_2/resume.obj +++ b/results/search/topology_2/resume.obj @@ -1,47 +1,47 @@ -v -0.92187940340901164 1.3218691673745968 0.086625058958120116 -v -0.90273043033998235 1.3612800220780592 0.091166931497820569 -v -1.1322960041576471 -0.074440610568617296 1.0193882389293567 -v -1.1829873438337091 -0.30337129819251485 1.1344794195241443 -v -1.570811919913953 -0.55957612922962729 0.48957973871699956 -v 0.73920428796273807 3.3016474877968855 1.94855546794543 -v 3.4840943624562173 6.2210407996566444 5.3845691127952158 -v -1.4663404953064962 0.60972197120590432 -0.45916746534264119 -v -1.5725118940425533 -1.4113200845297682 1.3545263552425799 -v -1.5995537598339908 -0.60763391794625476 0.47144249400806437 -v -1.4808645215729848 -0.37499750136038107 0.51146875899795585 -v -0.65787034908591047 1.6028252429842835 0.050560192141007487 -v 0.93774770512892736 -0.18520206484866991 -1.4784310879568499 -v -0.85797511640063806 1.7931686650840122 0.22956375114848893 -v 3.5203441514674356 0.91018644965500195 -2.4528724798763362 -v -2.9641474215553396 -0.62363117044578875 0.45130189128790693 -v -4.5010125680784752 -5.5588908171142641 -0.57970424898211503 -v -1.290341536212434 0.017359090369831014 -0.20617027828557488 -v 0.70799395864425885 -0.160210018772666 -1.3456958246279926 -v -1.5010039033180667 -0.41493869783313331 -0.2556587554019043 -v 904.90259308380246 1304.4034253396665 -1407.2045041227568 -v -2.3993484784616066 -0.39981735426547371 2.6398049009339366 -v -0.57413147873115655 1.6549504175732486 -0.063660684143279495 -v -0.50918798978612134 1.6205591760865818 -0.13482773244192697 -v -1.198678093708011 0.20324115647588048 1.0356732090635909 -v -0.89757562749585929 -1.0313260774282353 0.95599360111909559 -v 0.36908497172431526 -0.88460891022959764 -0.62235495209403646 -v -0.71290407230007768 1.4185305553341914 -0.36826550498575594 -v -2.0595933300750331 -2.4868558276364938 0.46736104029249415 -v -1.7554935456373444 -0.86461264510206248 0.75137016221316466 -v 0.0091124248414044332 1.6745856513320925 -1.9896731666969343 -v -3.6747585717663518 -0.4255142917277554 5.7763342920971237 -v -1.6474061174359038 -0.7169485427797434 0.57844851191372459 -v -10.999245381585469 -1.8162328793285718 -1.8898049314009897 -v -0.70875259945904923 0.89010511403297776 -1.1482560322589068 -v -0.87688041826410201 0.86767154002546398 -1.1282723879498371 -v 3.899413169213271 0.1719937898125164 -3.6602533364526759 -v -2.4531129598908286 -0.073741246972568966 0.65893139883660878 -v 0.13311968513881287 2.9354999892847524 1.7377461492867738 -v -3.0756281378392156 -0.60124492294375964 0.42364469092126356 -v -2.8572182599182323 -0.5720985893518149 0.3976806420312915 -v 2.1885412715019736 7.1418607935096849 8.5689167367955772 -v -4.8079401039209042 -0.51169943512545635 7.2544362431115852 -v -2.1641806253123868 -1.7795894208880711 1.6523510262140255 +v -1.1816316176959649 -1.8620088370194541 0.32930068446336996 +v -1.014562091362516 -1.0365573748927501 0.041995781875459104 +v -0.27358803687274874 1.7520850440008204 0.30070692433928015 +v -0.38011195359024746 0.29843297630781096 2.1134969223338942 +v -0.83854694268516017 -1.0176345247269745 1.2342759393644962 +v 0.082980990919579584 3.7596483294765197 -0.74448419420803713 +v 161.19231617580638 606.42709821720041 61.94661490690865 +v -0.85030105415067092 -0.67930433150088132 0.55789389087730001 +v 0.45078956262202796 3.6312127770973324 2.0421381943114527 +v -0.63648236740887321 0.81135026756453099 -0.57286345788781701 +v -0.63515608671562385 0.019186375689344878 0.82842785357333204 +v 0.21776438378888502 -2.6376081325068279 -1.1133537882906437 +v 0.16440077455900687 -1.8521723599989524 -1.1530823092367188 +v 1.6577805898023765 -6.7094220918485119 -2.1875485352249529 +v 1.9863730486764983 -8.0439565993806674 -2.3818512467508337 +v -1.2116556597881394 1.1186771804206019 -0.011269558690638337 +v -2.5642971328360629 -3.6434643710846708 2.0740541830579766 +v -0.77711157476681891 0.86595414745554655 -0.45775706066155553 +v -0.25875848094588527 -0.39034586429771229 -0.87067514098136578 +v -0.99284485885610774 -0.17058073791078274 -0.090445594047406486 +v -2.0083911444841362 9.9564781214410925 9.8609243824516799 +v -0.4557303883345914 0.43024392917998022 2.6716214943365681 +v 0.31455660393093976 -3.1247654107967802 -1.6283505134914702 +v -0.22826515964341682 2.9335182826750863 -0.82310242873797079 +v -0.27447067014209431 1.5007902991629627 0.46554672650004286 +v -0.76930332842310434 4.0969897581120955 3.0321865515446436 +v 0.24197021530984844 -4.5116632833975503 -0.14489257809198017 +v -9.3219097554798491 3.0212992231900921 -0.075917636898578333 +v -0.67975152359778246 -0.69409577759563423 1.5962602777328607 +v -1.1575499522686832 -0.76409721900936467 1.2709579242996969 +v -3.8442384840160737 2.5103834477733598 2.543011881485846 +v -1.1517419811865357 0.36918371794726385 2.2323407704001133 +v -0.96042796286011167 -1.1855839258269225 1.0243969152946595 +v -3.5559149535236609 -0.22226503280767329 -0.95028746135414477 +v -0.30182252087800204 0.41621855203601638 -1.1334805211562302 +v -1.2277942308112537 0.10823042872157496 -1.0972236008484098 +v -0.057730851662879674 -0.49236350230195935 -1.2674159908489746 +v -1.118012434547222 -0.21806956283083906 0.94202781143674652 +v -0.51756858317575039 -0.15590239962807237 1.367827718832678 +v -3.1288015029115259 -0.17729459036815193 -0.64789683577760004 +v -3.6000579164975846 -0.084907598379704755 -0.36010920529447699 +v -0.40145456012594133 -0.021716541421110337 1.5935768316022445 +v -0.57891983013713344 0.23621805124021275 1.7920862729788642 +v -1.0347727082409972 -1.8937307430145056 1.5017038255358182 f 1 2 8 10 9 7 6 3 4 11 5 f 1 2 12 13 19 20 18 16 17 15 14 f 3 4 22 21 26 27 13 12 23 24 25 diff --git a/results/search/topology_2/resume.planes b/results/search/topology_2/resume.planes index 50b1c551..4b703421 100644 --- a/results/search/topology_2/resume.planes +++ b/results/search/topology_2/resume.planes @@ -1,37 +1,37 @@ 36 --1.1181565523147583 -0.48814657330513 -0.47849780321121216 --0.33997145295143127 -0.23817044496536255 --0.63330632448196411 --0.18155510723590851 --0.034668363630771637 --0.14892473816871643 --0.99829810857772827 -0.2578359842300415 --0.40382656455039978 --0.25882071256637573 -1.2089235782623291 --0.82039517164230347 --0.33504220843315125 --0.1520766019821167 -1.2273954153060913 --1.0857558250427246 -1.047176718711853 --0.31811782717704773 -0.0018969604279845953 --0.07537531852722168 --0.068656444549560547 -0.32886388897895813 --0.34052136540412903 -0.23226720094680786 --0.34057486057281494 --0.36136770248413086 --0.52146679162979126 --1.0494959354400635 -0.5113217830657959 -0.00092995684826746583 -0.026379173621535301 --0.18950159847736359 -0.0091740423813462257 +-0.6999550461769104 +0.17665955424308777 +0.10052988678216934 +-0.59519356489181519 +-0.067797675728797913 +-0.54089713096618652 +-0.10652978718280792 +-0.0078737866133451462 +-0.012573831714689732 +-0.70457595586776733 +-1.0695281028747559 +1.265019416809082 +-0.095828942954540253 +0.14875626564025879 +-1.1837664842605591 +-0.63596701622009277 +0.53889757394790649 +0.81813251972198486 +-0.40024173259735107 +-0.79959237575531006 +0.68114405870437622 +-0.2918567955493927 +0.7913062572479248 +-0.73194873332977295 +0.58747273683547974 +-0.23981462419033051 +0.83679896593093872 +-0.58794653415679932 +-0.11852993071079254 +-0.26743239164352417 +-0.75213062763214111 +0.24254155158996582 +0.24269095063209534 +-0.011027186177670956 +-0.1951882392168045 +0.044603105634450912 diff --git a/results/search/topology_20/resume.obj b/results/search/topology_20/resume.obj index 1af016a7..58b61a49 100644 --- a/results/search/topology_20/resume.obj +++ b/results/search/topology_20/resume.obj @@ -1,47 +1,47 @@ -v 4.158815231358493 -1.2290345602001134 2.0071915282082742 -v 2.9646591273138254 1.6921523610381617 1.3516518259021821 -v -0.82355033339610417 -0.58772711827673696 1.1340314830563079 -v -1.4097228541990494 0.250244703285813 0.90834589890668616 -v 2.6222040667415207 1.9583639459430013 1.2558171049460791 -v 11.966456894902127 0.15171920743896913 2.9907780157382327 -v -0.14309061970191178 0.37378814845465186 1.0841117475093933 -v -0.063581151868977434 1.2442111133554083 0.95603745566112497 -v -0.71820575278884335 2.0576370191952185 0.72373450506276615 -v -0.083562702296255925 -1.6520066961725888 1.4199733754507644 -v -2.5203884383101403 -0.39581851283345698 0.84093374811687083 -v 1.2333186886599827 -0.60400969320663944 -1.5059862065917304 -v -3.9452058392808094 8.4271892677770985 -5.4107014069921764 -v 1.3379478415583017 -0.44391427719561422 -1.3270628754755318 -v 3.5801671749754602 11.260274778754784 4.9231401764078146 -v 1.4776402022301485 -0.088452654680625048 -1.0467974517848297 -v 2.8013904157385521 1.6241593015584377 1.1255452994084685 -v 1.2571384943442445 -0.63764736232990471 -1.4857177503447878 -v 0.25516267350682542 1.5733984925807729 -2.1058466389132073 -v -0.11453762096076496 6.1421523216772185 -1.2387799881835189 -v 0.18625871143113323 0.23514567614541163 -1.1372238684065694 -v 0.16273288815979159 -0.6843051792109951 -0.027689572308201148 -v 0.70072625130194099 -1.2749385224626382 -0.030008356977657392 -v 0.13256538544798724 -0.80372446798310193 0.15146838256024731 -v 1.784130600059177 -0.020446793670574705 -2.9029806155956246 -v -3.2178705393621581 5.899437970624855 -3.3842899036486651 -v 0.11510156026678242 -0.26040441782109858 -0.46362575471482104 -v 1.4750340062193101 -0.61063903691546084 -1.4256341807530746 -v 1.41356598855871 -0.024775243541952131 -0.92936394483144613 -v 1.2313510194900747 2.9490571586688477 1.6359891977359422 -v -0.023080561303698954 1.4474451688713084 -0.13961620042483669 -v 0.93059832408442922 0.46127217060248438 -0.67172261702437153 -v 7.2458467408716931 4.5028113544348649 5.1555465350181322 -v 1.0111900644702898 2.7854526955776167 1.5700691641425029 -v 1.88935344468448 -0.40908475542927791 -1.7366576956963518 -v -0.263109987328772 1.0061658068731878 1.6791589543819185 -v 1.1299333436899195 0.47422456244845373 -0.25081150596986573 -v 0.11937313092261155 -1.3866552374893177 -0.078028138780290301 -v 0.13978208788739421 1.0271852965447263 0.87204843279112776 -v -0.12239356146794064 0.80448276515757167 0.78257808555680941 -v -0.23605898374644191 -2.4728607430543228 2.7746800018713604 -v -5.3936132733780768 -2.6530370327582271 0.052607081021332158 -v -0.025983903006075511 -2.9182293963860415 4.167339334143918 -v 0.97134751736266067 0.3319635966775481 -0.31284393419486867 +v 3.5240939450830777 -1.3157888498454027 2.0468642114705755 +v 2.5372520349808503 0.013444684447920593 1.5862060971459828 +v -0.65649472055378422 -1.2804995793593874 0.85242163488719336 +v -0.94313017971012747 -1.0840780504217222 0.74427990101550945 +v 1.60749333770974 0.90407355627800334 1.2011312636779414 +v 4.9586012860780713 -0.57165558234128711 2.3544070123522389 +v -0.081646051313723017 0.42079338664245869 0.78583693274851196 +v 0.80548376937241173 0.69784261440781759 1.0008048863859842 +v 0.029933590557715183 1.3928077339991269 0.68608459074328887 +v -0.51425626229191923 -2.7254140374000873 1.0883818730912578 +v -4.30321940762484 -3.8823103105984358 0.16667562627870347 +v 0.93587257617639408 -1.5970880225590369 -1.7787473396523337 +v -15.334779176795545 11.388675346916861 -15.577947487274539 +v 1.0104007343781063 -1.4352059120968532 -1.5617506046281431 +v 0.50858872109534692 3.5656183968374009 1.2086660398251847 +v 1.0665264993314365 -0.59118549624340166 -0.89665936358352472 +v 2.2999643952097206 0.044056012069467639 1.2746583552480955 +v 0.96070023844701924 -1.616903160270611 -1.7576908668941364 +v 0.43665123055248034 -0.22253365075161563 -1.5239934509212198 +v 0.30072961808101767 2.626144415379227 0.26444198200602598 +v 0.40560118618758556 -1.2618758252584268 -1.8612945400638434 +v -0.094475919640056069 -1.4452652700432937 0.14501114963314721 +v 1.1249019955768635 -2.3235824632080528 0.78329659959195708 +v 0.092341180879241216 -1.6686878913289904 0.613549868552272 +v 0.89990134939256172 -1.3552418091629606 -2.6985396049602528 +v -11.392335975520442 7.9364703916710884 -10.958843493027642 +v 0.066686080115671439 -1.3666954023168318 -0.58279776722462517 +v 1.2663652045401641 -1.5322572048448659 -1.4582630396941341 +v 1.0969811754768017 -1.013811319154005 -1.0803481140206381 +v 0.6006084285029436 1.5304470955397329 1.0344333733539408 +v 0.14764472151582306 0.97043088360565943 0.13214236501079535 +v 0.84708224096410512 -0.045401004089278781 -0.32277474644598048 +v 8.084412722291292 1.302104529033183 6.6244314548306864 +v 0.044844929840357019 1.0599879423190608 0.86423831366227111 +v 1.4416207140560586 -1.3821352914408425 -1.6080574692212481 +v -0.068982241778237433 0.80839495507440862 0.9073881054685411 +v 0.29038955262781913 -0.83736630424506142 -0.08618392482647208 +v -0.3708171352587728 -3.0717356248934604 0.37487129032134792 +v 1.0002472951550985 0.49452889936602074 1.0251800316610549 +v -0.16424407719958709 -0.60018008191274907 0.65813331825047228 +v -0.86249650584267801 -3.8578111761702054 1.9498508571186159 +v -7.7918490661779227 -7.0556371671353464 -0.79103389266077073 +v 2.2870031797898394 -2.7987468265577937 4.4436746327192944 +v 1.1154356487843675 -0.12885442143689577 0.084259306218961216 f 1 2 10 7 3 4 11 9 8 5 6 f 1 2 17 15 16 19 20 13 12 14 18 f 3 4 27 21 12 13 26 25 23 24 22 diff --git a/results/search/topology_20/resume.planes b/results/search/topology_20/resume.planes index c3944a8c..d78ddbeb 100644 --- a/results/search/topology_20/resume.planes +++ b/results/search/topology_20/resume.planes @@ -1,37 +1,37 @@ 36 --0.17165593802928925 -0.17916499078273773 -1.1110820770263672 -1.360571026802063 -0.31449612975120544 --1.0770243406295776 --0.1981116384267807 --0.17985339462757111 --0.15324185788631439 -0.26367846131324768 -0.6538664698600769 --0.73925226926803589 -0.26173648238182068 --0.17294652760028839 -0.23658789694309235 --0.0028195867780596018 --0.15907426178455353 -0.40421736240386963 -0.27167212963104248 --1.2273983955383301 --0.43349891901016235 -0.67173987627029419 -0.57832664251327515 -0.13210518658161163 -0.033205676823854446 -0.0017736383015289903 -0.0048125847242772579 --0.96165263652801514 -0.76867192983627319 -1.3040072917938232 --0.029185658320784569 -0.055722564458847046 --0.053177252411842346 -0.39351430535316467 --0.36227035522460938 --0.175212562084198 +-0.22417998313903809 +0.10658016055822372 +0.78778624534606934 +0.80572903156280518 +0.39909934997558594 +-0.57446277141571045 +-0.61820477247238159 +-1.0392749309539795 +-0.24908572435379028 +0.28310418128967285 +0.35811015963554382 +-0.36438733339309692 +0.25549021363258362 +-0.077675163745880127 +0.22107179462909698 +-0.15987639129161835 +-0.068020381033420563 +0.71009272336959839 +1.1112850904464722 +-1.89481520652771 +-0.59878361225128174 +0.47093889117240906 +0.42434066534042358 +-0.22348345816135406 +0.066674813628196716 +-0.007527641486376524 +0.017057577148079872 +-0.55822563171386719 +0.38341605663299561 +0.76300591230392456 +0.3346259593963623 +-0.47526746988296509 +0.35584169626235962 +0.44009453058242798 +-0.42187237739562988 +-0.3766455352306366 diff --git a/results/search/topology_21/resume.obj b/results/search/topology_21/resume.obj index 47d87413..aca660f7 100644 --- a/results/search/topology_21/resume.obj +++ b/results/search/topology_21/resume.obj @@ -1,47 +1,47 @@ -v 0.046632877834232776 1.3312021070290503 -0.74513919576649856 -v 0.057611590157221809 0.59193787082210803 -0.61530684455138407 -v 0.016179136285162505 0.54630743470060261 -0.65287671288890525 -v 0.83915398962484533 0.78746843109164466 0.19950643232520571 -v -0.50674775315400722 -18.200055602646962 1.7720038305737393 -v 1.1921207014152839 0.47009396463988451 0.63222485295528097 -v 2.8742744372764735 2.2561855723327167 2.168167882421089 -v -0.19352968699869111 0.057995044425559583 -0.80197465976338633 -v -0.19763161808966617 -0.81828181888858986 -0.66660684150837179 -v -0.2277415718601416 -0.44433642759925762 -0.7588626761348698 -v -0.17008283357339177 0.35848028697915629 -0.82453551783731571 -v -1.0198093770136369 -0.089016275055635585 1.7473003377052059 -v -0.24643762791291438 0.37562402137723622 0.056403735486762224 -v -2.052493237846039 8.3702541221779665 2.1324363748827557 -v -3.3886001800889134 13.266015879890638 3.8783616897033939 -v -4.0407554018109231 18.044007080146784 4.2379415148304229 -v 0.42536009729195445 -0.72294555346440936 -1.1025813249410952 -v 1.0545789108895907 -1.0051531457885312 -2.3421256565558179 -v -0.83737892536348713 1.2752542267187243 1.089656020319999 -v 0.53503453654195909 0.93601116973993037 -1.6709479108955683 -v -3.2252341283686747 -1.0602709002997577 2.8655240696462965 -v -6.0677202946234114 -2.2445172663836948 3.5993751837660342 -v -1.2136042718947875 -0.26545467017507995 2.7992558037483839 -v 5.5452172148326353 2.6833289564465903 -0.33708746403853024 -v 6.5285619921749101 2.9894651319418633 0.49314284713501033 -v -0.81936495039324919 -0.0047152128325937837 1.6872674851040319 -v 0.46361678143145035 0.81088921630612631 -1.5867834033703119 -v -2.9571144181269178 -6.4186154769724872 2.8146480207880682 -v 2.4606076435182338 2.8968506763921154 -0.039959258189059488 -v 2.8445950707051764 0.87620146854400283 -0.20063848404509255 -v 0.77676942344923472 1.405202774882186 0.82545458497598512 -v -12.869928873828449 -1.0471071078028213 7.6895216071887864 -v -3.1298512086260795 0.87023246852964875 2.7878262463891859 -v 13.917794165426638 6.494096259470922 0.33460412326383104 -v 4.2496634751750486 2.5654031101744605 1.9288866812043723 -v -3.6000601854755589 2.933308530157928 3.4011181457373465 -v 2.6753370875420694 3.3214801244032639 2.2582542752878365 -v 0.90587417648875024 -0.47000727911810569 -1.0600268628332192 -v 0.32689876458155726 -0.62118723159725764 -1.0686513308694423 -v 1.1346354650319115 1.6235998702744843 -0.37183041196653821 -v -0.11797557910054929 -0.2148404509116919 -0.89935309145566411 -v -1.540941488905184 -0.76427973827158535 0.82154176256084932 -v -1.7365719067017584 1.060338892080779 1.0959161611534813 -v 1.1679348370447795 1.4724189221365704 -2.2454456363036579 +v -0.68236598753400424 1.6443564705205278 -1.397004593274072 +v -0.26597402675116133 0.88399537425365426 -0.84175039356348069 +v -0.27799145673039471 0.83881868647443192 -0.84828581282064253 +v 0.8355871022353788 0.64633546836753997 0.37637799152536877 +v 0.46505839284643263 -11.490359237546079 1.693841704218594 +v 1.0085555495437644 0.011523792262292512 0.6521243524181396 +v 2.4465573663726579 1.0102937699033865 2.0572253774300981 +v -0.70917667000002726 0.41254983328317907 -1.2516803661977636 +v -0.46983454834303884 -0.93557766171729273 -0.80371184506423377 +v -0.6358384092070255 -0.1678639230536037 -1.0907589097500223 +v -0.73007231254093885 0.59994444489533727 -1.300643875023054 +v 0.25967812751413083 0.20021893998133439 1.0737436662500073 +v -0.011302994009952915 0.54453072172611572 0.050275962697194421 +v -2.065709400435745 5.3830234306074924 2.0923578163299807 +v -2.3798919461890939 6.1670433195580463 2.5984889917649183 +v -3.0489720962600093 7.6153942161702961 2.7029070827976156 +v 0.54034250652074889 -1.103999104212386 -2.0346242031974624 +v 0.70582006091420035 -2.1077844854508569 -4.9002807098545738 +v -0.22573770355530376 1.2017234758390336 0.93276448851393012 +v -0.63706088563824759 1.3845330741653059 -2.115605335890216 +v -1.3918091313762622 -0.67376515978328944 2.0850859152092154 +v -2.7238767877541856 -1.1444140673785277 2.3294388409957127 +v 0.72927632268686937 -0.10300176815512413 2.1317070648921894 +v 3.2571098758268477 1.3577040449714335 0.28386316184169741 +v 4.1457955065717123 1.1557030535743928 1.3792117624425708 +v 0.47018197644983278 0.13024226458305307 1.3871654080178863 +v -0.66572329369510386 1.1794249224752631 -1.941899153646681 +v -1.0066938565029369 -4.2282672873554157 2.0868226926216709 +v 1.2655275574389557 2.0610696459862381 0.37379730513866993 +v 2.2819708036476412 0.095709996539356412 -0.090415161001136113 +v 0.6998439833824619 0.94679488563590786 0.77172515725824165 +v -4.8349164298348208 0.57185405200267247 3.9996632180879454 +v -1.7057558493534872 0.95220010212869866 2.1640565216272254 +v 7.3461595475583161 2.1924162174554271 1.7648296073803151 +v 2.7973292019003009 1.0180753099321416 2.0332135794521884 +v -2.0627396246685694 2.541981627039251 2.4312737516661382 +v 2.0026277888599466 1.6994573999828615 2.1156172047134838 +v 0.79868141237569301 -1.0074685226705269 -1.9684418762774192 +v 0.49079706966439762 -1.0064659297332437 -2.0332811355241094 +v 0.46179207131888433 1.4356296435871663 -0.25451694486332666 +v -0.65698077208897099 0.26465958804355999 -1.3486577011171339 +v -0.86293767237793839 -0.71320371239956137 0.10328561984664242 +v -1.3774435432395247 1.2309114094467348 0.72616370010432341 +v -0.5451974070575063 1.8681280562942868 -2.5574302458686531 f 1 2 11 8 3 4 10 9 6 5 7 f 1 2 20 17 18 16 15 14 12 13 19 f 3 4 13 12 21 27 22 23 26 25 24 diff --git a/results/search/topology_21/resume.planes b/results/search/topology_21/resume.planes index 2e228ed6..77e35bee 100644 --- a/results/search/topology_21/resume.planes +++ b/results/search/topology_21/resume.planes @@ -1,37 +1,37 @@ 36 -0.28733265399932861 --0.042349975556135178 --0.26543742418289185 --0.14579480886459351 --0.014579865150153637 --0.070689111948013306 --0.16100020706653595 -0.41075247526168823 -0.039233114570379257 -0.49434533715248108 -0.015352202579379082 -0.98831057548522949 -0.46226492524147034 --0.12474013864994049 -2.495901346206665 --0.054543651640415192 -0.25149941444396973 --0.74697202444076538 -0.1350911557674408 --0.27885472774505615 -0.13206209242343903 --0.044783733785152435 -0.18201036751270294 --0.18408532440662384 --0.31132650375366211 -1.2993564605712891 --0.1103774756193161 --0.44861310720443726 --0.20535431802272797 --0.68595749139785767 --0.50938987731933594 -0.0083227381110191345 --0.41854479908943176 --0.2967979907989502 -0.31713217496871948 --0.030864143744111061 +0.21284219622612 +-0.027984177693724632 +-0.19793431460857391 +0.19405555725097656 +0.091139607131481171 +-0.020718730986118317 +-0.12689314782619476 +0.45628100633621216 +0.18709781765937805 +0.53465253114700317 +0.058378584682941437 +0.92351901531219482 +0.15064540505409241 +-0.087030984461307526 +2.1724708080291748 +0.18905669450759888 +0.64881694316864014 +-0.88768899440765381 +0.11758808046579361 +-0.42028269171714783 +0.15400722622871399 +0.050686921924352646 +0.33282089233398438 +-0.23553670942783356 +-0.012077337130904198 +1.333492636680603 +0.25571748614311218 +-0.84909027814865112 +-0.42252609133720398 +-0.63901305198669434 +-0.87521743774414062 +-0.15779852867126465 +-0.23042391240596771 +-0.22618602216243744 +0.16094233095645905 +0.12912958860397339 diff --git a/results/search/topology_22/resume.obj b/results/search/topology_22/resume.obj index 8ee3250c..ceb2f0bb 100644 --- a/results/search/topology_22/resume.obj +++ b/results/search/topology_22/resume.obj @@ -1,47 +1,47 @@ -v -0.28946205686284532 3.2264938427370877 -1.8160090461729093 -v 0.37650252918079585 1.0319729037590915 0.46337079322811825 -v -4.0335581200633843 3.9385670655320348 -4.4254995691890588 -v -1.2662823117222117 1.6621428626414565 -0.96050423042251043 -v -2.9477534133985022 2.4048580743784687 -2.5036787401000424 -v -1.0805464337915869 0.25880364809867079 0.36982781657962194 -v -0.26326905451774185 -0.092540798833746565 1.1114138729944476 -v -0.25237078979205879 -0.0783667089954561 1.1047476679365722 -v -0.21298353752482718 -0.071017667519235175 1.1191721623487767 -v -4.3706751465301803 -4.5336714585414759 2.8329897366035892 -v -0.75548223309545215 -0.99257629468453623 1.6406113913340858 -v -0.41018482946742174 2.30895667651758 -2.6543184996440772 -v 0.41560652726330705 0.69934757607389486 0.53135422843082791 -v 0.45643811368864479 -0.90732217451571662 0.19532528288439913 -v 1.104060184907151 -3.687392893166491 2.203142731423418 -v 0.28703378325741102 0.054863810902197094 -0.25393382513050922 -v 0.92078367073262246 -2.0381463108688838 1.9136844420188648 -v 0.93258034021535396 -2.3466924807654301 1.8669034788575714 -v 0.58334792987982875 -0.83144117503456683 0.78938086314150269 -v 0.55589202356398171 -1.1551060097184156 0.56156044842795005 -v 23.928186510740595 14.50057811847809 27.796637304462489 -v 6.9900538211069456 9.3563678843726361 9.2831636781572211 -v 1.2535244805862744 0.5618995546984038 -2.6419888543304637 -v 3.844631792085655 9.9310878471933286 7.0720863214118044 -v 2.1011245038319841 3.3335672451082017 0.30057928088352359 -v 1.433725817383559 3.9142759462596559 0.19930676190894769 -v 9.9359659524521415 -5.8598519454922471 -0.41603513545105419 -v -3.8659371362761177 3.8767883131710072 -4.3326502914946037 -v 0.057507681494488698 -0.48884531173196866 -0.11383499551522279 -v 0.66282299021476321 1.3252195320107172 0.93105910692840288 -v 10546.847263927813 -7536.5280090101669 9002.7125776673438 -v 0.13170340514138501 -0.10317730953184255 0.052637502265008837 -v 1.4241245391161708 -0.3594279408846191 1.3127301578585318 -v -0.45585818158507418 -0.6572172570012077 0.6604611883500755 -v -0.39590271183799619 -0.61975245876344087 0.5504535859953843 -v -0.54067790853756437 -0.63577002575078001 0.73420686488088138 -v -0.2343830130016272 -0.82935846347578068 0.59563889798513991 -v 0.013243063425129237 -2.2934970902626293 1.9218197393652452 -v 0.22483897538212419 0.057512640901726954 -0.064671670944534743 -v -0.30046993873635436 -0.57073319785055743 0.35613734810883091 -v -0.20194792170083117 0.038895970145469111 1.1969464660350382 -v -0.37403294597909453 -0.79884003578484764 0.86809923694557456 -v -0.12538442127982424 0.15511032584729742 1.2946675153746374 -v -0.70761178073809283 -1.0212497178833466 1.6444961274983387 +v -0.22270398774933675 2.7615225927376947 -1.5412782329512378 +v 0.34140583361876908 0.9026382205662643 0.38948628777215533 +v -3.4473836592230627 2.8855806995694135 -3.359296182802364 +v -1.0810265453977601 1.4033514591256699 -0.80395869346102988 +v -2.506260434308007 2.0328853389521995 -2.1119708202445322 +v -0.92459886343702935 0.22145237566352918 0.31645336105232902 +v -0.22078868729327908 -0.081112879025510648 0.95508076264598385 +v -0.20898158313383008 -0.065756767298314048 0.94785864135410591 +v -0.17250956691089461 -0.058951665464991775 0.96121551199867272 +v -3.6290931937649997 -1.6811191504077954 0.5531708848675394 +v -0.65210952312740744 -0.84055221954369908 1.3931327030798055 +v -0.37374854923924905 2.1359177621334857 -2.4213113467589218 +v 0.38803507798049569 0.67980181324443434 0.52672396179818826 +v 0.4261576946520782 -0.82027283213366264 0.21298899762848661 +v 1.3115002661552408 -4.5376012113608724 2.9847044526442628 +v 0.26413414202345364 0.058735734065736116 -0.23003019359292814 +v 0.81693012683129684 -1.7582142807382901 1.6635143797576013 +v 0.77307035871134955 -0.6110464118150285 1.8374449532955928 +v 0.52299207054954588 -0.70706131266838257 0.68414066840125998 +v 0.49816927404617156 -0.99968565196787329 0.47816891375576553 +v 19.622324768602205 12.585807988376306 22.975714660456479 +v 5.298147423441514 6.8578210383490399 6.9954106916123537 +v 1.4362188908542681 0.78557319345642918 -3.0131471282007709 +v 2.4992404830513073 6.5559910335839193 4.9019143758542327 +v 2.0791518478486792 3.8294179842205431 1.2123013428832889 +v 1.2151088444078675 3.9795585443234018 0.8723315918739809 +v 74.751878314083044 -38.242978257241873 -7.2605894322743927 +v -2.887501321953275 2.7861191703924284 -3.141738847633273 +v 0.049141137653192467 -0.43302555654536351 -0.081126390946267557 +v 0.8448909546849166 1.8364129878627824 1.2653783855311356 +v 8872.7813470078636 -6340.290092060256 7573.7586864980758 +v 0.11314344168339381 -0.10034274709134654 0.062475197075793916 +v 1.719961539825122 0.61180034005914907 1.8714344093799939 +v -0.38495486148155728 -0.56633945334038305 0.56364519886966236 +v -0.32482515825383501 -0.5287657814634269 0.45331789731660255 +v -0.46264569682837475 -0.54401389238707798 0.62824412007442854 +v -0.20629325491643302 -0.70520390037738157 0.51135374145394896 +v 0.075956347475715044 -2.3740624501346743 2.022965114561651 +v 0.20676123585295564 0.061179189614744479 -0.055441368840672356 +v -0.25768709802934014 -0.49428016880088488 0.31661415710975715 +v -0.16153138445045295 0.050390012246518567 1.038585116276683 +v -0.31359300525478062 -0.68986900977233123 0.7480018063398971 +v 0.077213220304254954 0.41277590842722217 1.3433042884395596 +v -0.60264230864781432 -0.88258910469472918 1.4207572839961691 f 1 2 9 8 7 6 4 5 11 10 3 f 1 2 16 13 14 20 19 17 18 15 12 f 1 3 28 27 22 21 24 25 26 23 12 diff --git a/results/search/topology_22/resume.planes b/results/search/topology_22/resume.planes index 92056cf2..be8866a2 100644 --- a/results/search/topology_22/resume.planes +++ b/results/search/topology_22/resume.planes @@ -1,37 +1,37 @@ 36 --0.30220028758049011 -0.50051724910736084 -0.57017713785171509 -0.32949957251548767 -0.023729996755719185 --0.073423072695732117 -1.4935098886489868 -1.4098501205444336 --1.7581700086593628 -0.028060933575034142 -0.0064578782767057419 --0.027467589825391769 --0.19052368402481079 --0.18260598182678223 --0.1660270094871521 -0.11299791187047958 --0.068964593112468719 -0.038098260760307312 --0.6822134256362915 --0.13068820536136627 -0.68992805480957031 -0.15025880932807922 --0.050526097416877747 -0.050084777176380157 --0.1907934695482254 --0.54650300741195679 -0.79941129684448242 -0.0087943635880947113 --0.032449677586555481 --0.037467394024133682 -0.092380955815315247 -0.32155674695968628 -1.2350425720214844 --0.1932329386472702 --0.34733182191848755 --0.1825205385684967 +-0.25858590006828308 +0.42828121781349182 +0.48788762092590332 +0.30300524830818176 +0.021821919828653336 +-0.06751926988363266 +1.0097482204437256 +2.0763218402862549 +-1.6493401527404785 +0.014368418604135513 +0.0033067145850509405 +-0.014064600691199303 +-0.16302676498889923 +-0.15625174343585968 +-0.14206549525260925 +0.10142219811677933 +-0.061899725347757339 +0.034195404499769211 +-0.58375442028045654 +-0.11182691901922226 +0.59035575389862061 +0.13699765503406525 +-0.046066895127296448 +0.045664526522159576 +-0.16325762867927551 +-0.46763020753860474 +0.68403792381286621 +0.0066295643337070942 +-0.024461936205625534 +-0.028244497254490852 +-0.42054998874664307 +0.29234850406646729 +1.1979496479034424 +-0.16534502804279327 +-0.29720392823219299 +-0.15617863833904266 diff --git a/results/search/topology_23/resume.obj b/results/search/topology_23/resume.obj index 1fb92502..724de7ff 100644 --- a/results/search/topology_23/resume.obj +++ b/results/search/topology_23/resume.obj @@ -1,47 +1,47 @@ -v -0.58106256959229152 0.01576894813971946 -0.51140621821342203 -v 0.30396027646574386 -0.56422351548056993 -3.2714850553539323 -v 10.49152896921461 -1.5806038554949189 -7.0961157155967012 -v -6.6107159306105885 -0.19839148630550268 -2.2754757177659397 -v -0.036084455108698794 0.16433093520421366 0.28600640533648042 -v 1.9886967649592064 -0.41299101910051017 -2.3273168635059172 -v 0.91594650169394154 0.17617200653417814 0.45604294958160552 -v 0.78639459523241018 0.10844173863767036 0.10643274457074835 -v -1.427654961764778 -0.13299071168358861 -1.3451413907320513 -v -0.71783143288565532 0.019986724152845612 -0.50660844127906612 -v 0.36876629147303186 0.18332973844474629 0.42726061814655109 -v -1.8188082383585478 -3.0920439710502454 0.46479831719192666 -v -1.4819788308796618 -2.7759108903210481 -0.19058119823349617 -v -1.4414660759310971 0.20920439638540819 1.8993056365155774 -v 2.6308804073852121 9.643463250083979 -1.8945128807541436 -v 0.14533970377590849 0.40641183112457907 -2.1390243771152653 -v -0.84498817331948906 -0.44886144387849941 -0.1575067399674058 -v -0.81851601203538282 -0.49185968410675074 -0.25893955181648864 -v -0.91270267147901651 -0.49622033854672143 -0.013834963514421067 -v 0.81588365193775292 4.2819800674959803 -1.0548816188848118 -v -1.553758220438308 -3.0056033409900702 0.21403206164599139 -v 0.69553645360179606 -6.7644946215581694 5.4186848801469498 -v 0.097267700229580839 -4.1768384236609064 1.4425835073083908 -v 9.8367898954262412 -1.5784049808254352 -6.828780492576036 -v -4.7159460522644689 0.5023464618873188 -4.2032798929173296 -v -15.05629771478084 3.608736623011739 -4.9949023745765828 -v 0.57223782393918776 -4.3261574072725262 1.4897691816317176 -v 0.48755110617800396 -0.24721413716648713 -0.53765735307647611 -v 0.92178568701472274 1.0934600713111036 -0.2725929874329876 -v 0.30923196279206122 -0.33856989145699845 -0.38766285910580872 -v 2.3728930910108179 -1.3098640367585535 -3.2669968025940559 -v 0.35204358909266964 -0.29400677382512153 -0.41091783887655431 -v -0.01065343895387799 0.22993989703227244 0.29425391463309419 -v 1.0059141503704951 0.2845651613143248 0.64887164157328892 -v 0.038230244321782923 0.26693248912289669 -2.360097917881351 -v 0.32290174952007383 -2.0712789072485291 0.43312996514038066 -v -0.67793234161278071 -0.42980987811705379 -0.18429538402448448 -v -0.25005907872186106 -0.15974981311912895 0.21439908376361108 -v 3.2715666751094892 -0.43340825717387571 -1.7764938970891173 -v 0.53430264539562367 -0.55147660731379322 0.49222749362433993 -v 1.6641442348189246 -0.17018231145994009 -0.53483404747570296 -v -0.58612169344087162 1.4396394566998463 -1.1862075707884667 -v 0.45290763265546435 1.9260627074463068 -0.11635483150791485 -v -5.3891402635017194 2.8372317504843925 -1.6100919310638779 +v -0.37901952493746938 -0.096547565013097469 -1.0307003488633824 +v 0.0084748394582930455 -0.40393125530136947 -2.4050957011687748 +v 2.4703342720760033 -2.4533001454359638 -11.49994521913205 +v -3.7537672833252156 -1.1139243060849882 -2.959142557000241 +v 0.072647715917230571 0.35517117168038354 0.41450275181134832 +v 0.6971707753284645 0.16808057386832226 -0.64072546991018675 +v 1.3912901101787227 0.33975018271497914 -0.38547501306263943 +v 1.1269519010785172 0.16370495601836269 -0.89901265854777535 +v -3.0249461614655893 -1.0461249913405841 -3.1141729153735809 +v -1.2759121455126226 -0.23442583551249441 -1.0447343213017033 +v 1.1938844290403854 0.65196123921104066 0.90012284945627064 +v -6.363179742131118 -1.4837965973733558 10.885103627505169 +v -1.8858294539761242 -1.9839524315717012 -0.36450785099040317 +v 0.82716554855636404 2.0108215524193365 -0.65870273584119521 +v 8.4656247040728587 16.816955482479326 3.9138233852136581 +v 0.0591553823806934 -0.64734866200611096 -2.893250443502362 +v -1.2656486476312609 -0.98405204315128303 -0.30016990423538337 +v -1.2143543228591405 -1.002581183092103 -0.44847388248417136 +v -1.3333605906582333 -0.99444468842536626 -0.15729040920181417 +v 0.80220137252996293 2.6685848406864472 0.39800615438477882 +v -0.57625492243666843 -2.5687009743341442 1.1767246653289227 +v 2.8762011025615744 -4.2693516345820202 6.9927526308023653 +v 1.0191052623258945 -3.1386049154922331 1.4845285563873625 +v 0.93026072014403116 -2.232804454504703 -8.1643941007623226 +v -3.3095374082532891 -0.97321694729404473 -6.1726633805798805 +v -15.201792165356132 3.0927577792135659 -6.4588447324762477 +v 1.9989162458353849 -3.5090544943286233 1.8987629811455551 +v 0.80821103053026311 -0.78521405466208694 -0.92694910764481397 +v 1.0631464973096019 0.37334043599622391 -1.2253490573315742 +v 0.81880200497333933 -0.096885621956864967 -0.87073273278769336 +v 0.92140778688897917 -0.095865288738956417 -1.0406973689243066 +v 0.45984555174845337 -0.8334939826110197 -0.35469105666248923 +v 0.09832883056727168 0.72672803596790758 0.41175658689203692 +v 2.4882768544256924 1.4467216860596734 1.4435474002116533 +v -0.1926333137301092 -0.79272553238143018 -3.4003161108415534 +v 1.0303071581728476 -2.4317247582592634 0.94487790893458723 +v -1.137416745867383 -0.96781045206129834 -0.46279645262835872 +v -0.47403165281059395 -0.43100184771955191 0.20211984016382928 +v 1.1817130518062131 0.45375484140653777 0.34786626782789365 +v 1.4587133602942219 -0.79281590010134173 1.0724221561510336 +v 1.3378827300631106 -0.75969494159712125 -0.29411599187568849 +v -1.4070160643428598 0.46780744390680695 -1.5998016266738915 +v 1.1880267499979325 1.1070641255431624 1.7667879765450609 +v -10.245571155135266 2.3705707319089777 -4.234909578984448 f 1 2 6 5 11 8 7 3 4 9 10 f 1 2 16 15 20 14 12 13 19 17 18 f 3 4 25 26 13 12 21 22 23 27 24 diff --git a/results/search/topology_23/resume.planes b/results/search/topology_23/resume.planes index 4dfc5718..16c523d3 100644 --- a/results/search/topology_23/resume.planes +++ b/results/search/topology_23/resume.planes @@ -1,37 +1,37 @@ 36 -0.0024051601067185402 -0.10133722424507141 --0.020523400977253914 --0.63795554637908936 -0.17806887626647949 --0.24197998642921448 --0.57554817199707031 --2.2703051567077637 --1.3909194469451904 -0.06645955890417099 --0.033154383301734924 -0.058816611766815186 -0.6186680793762207 --0.16123184561729431 --0.19801868498325348 -0.032221674919128418 --0.16961424052715302 -0.080310218036174774 -0.026629643514752388 --0.40234342217445374 --0.1200745701789856 --0.19000810384750366 -0.087024927139282227 -0.144966721534729 --0.093464501202106476 -0.0025977618061006069 -0.26753056049346924 --0.021577399224042892 --0.20583061873912811 --0.43415293097496033 -0.36519205570220947 -0.12178656458854675 -0.4469505250453949 -0.44397634267807007 -1.2259529829025269 --0.98858135938644409 +-0.032037120312452316 +0.21419556438922882 +-0.05693734809756279 +-0.47224581241607666 +0.30587577819824219 +-0.20155322551727295 +-0.80351114273071289 +-2.3652348518371582 +-0.21463984251022339 +0.21909302473068237 +-0.014166250824928284 +0.13217900693416595 +1.133191704750061 +-0.3671710193157196 +-0.45742928981781006 +0.094549216330051422 +-0.18615902960300446 +0.055960770696401596 +0.075643323361873627 +-0.87704193592071533 +-0.027945432811975479 +-0.28119635581970215 +0.10332227498292923 +0.19713336229324341 +-0.14644064009189606 +0.0125638572499156 +0.33043482899665833 +0.087629616260528564 +-0.50313133001327515 +-0.65722507238388062 +1.1869809627532959 +0.2056526243686676 +-0.099969580769538879 +0.18737293779850006 +0.53077322244644165 +-0.24521584808826447 diff --git a/results/search/topology_25/resume.obj b/results/search/topology_25/resume.obj index 52793145..ecfdefa1 100644 --- a/results/search/topology_25/resume.obj +++ b/results/search/topology_25/resume.obj @@ -1,47 +1,47 @@ -v -1.3581087841066644 -1.0302781766339899 -0.16358960756186192 -v -0.43827323313301447 0.40116579075358078 0.69183602517453058 -v -3.3297482955683875 -3.9427758425376775 -1.3148166233974787 -v -0.085133474785309526 0.42013806107173579 -1.3041375771895345 -v -1.7638070574006364 -1.0091595344163857 2.3174499605133358 -v -0.34911334255285242 0.55840200168513632 0.85573643538749078 -v -0.45246930200819835 0.3382810322876964 0.49992765692421681 -v 0.016722176587195922 0.52490168184369213 -1.4448556234600813 -v -4.3087992066532284 -5.5791690677055961 -2.7194614463302571 -v -11.409446756368324 -12.006701121197519 10.927284481022772 -v -6.959886117091064 -7.0673520717709701 6.3691808856236571 -v -0.89729143087909236 -0.6784341319994035 0.11412100571861095 -v 4.3087151225497591 0.063651305175080788 1.9165435407348095 -v 1.6514763004934165 -1.0975904011421205 0.67344046804960045 -v -0.17108733203663809 0.53600377422111112 0.8242941847862475 -v -2.4682507871032358 1.6798592168392688 0.63653420402094318 -v 0.34640895017483353 -1.0918992452243459 0.30076999477110811 -v -1.5865683202152474 5.2568037898671749 2.3669648752028931 -v -0.51655203100851887 1.024546252392216 0.92676239376146952 -v 0.63347511151802904 -0.82391459102303588 0.49392282452138647 -v -1.394132593337682 -3.6686366676402371 -0.11668863515954803 -v 1.2609932681154794 -0.93099655136610449 1.4647489581332165 -v 3.3353334146817408 -3.6844919223673154 2.8288256300181143 -v -1.4599600585068415 -0.24494102187450131 -0.24765155215565071 -v -0.51730841187963483 0.26282710171627138 0.32600576848159668 -v -1.6462153065973433 2.828776627347342 -0.44440927979412154 -v -1.8728945660980318 2.1696405429138581 -0.5682438446870679 -v 1601.2869320144644 -1291.2467671952772 1031.7291232707298 -v 3.0723937549397147 -4.1321593443356743 3.2090270858281311 -v 3.0504514929248447 -4.0172639131952508 3.1350523820332041 -v -2.7261986698566485 -1.2985077915895591 -2.250783847386109 -v 3.7151180101279087 1.8469457543499401 0.59341618108288197 -v -1.1671178759891392 2.0345782904636742 -2.8785547166961436 -v -0.44332706698879748 -1.221720126648161 -0.71153490859530022 -v 1.366737032297751 0.88658954944607704 0.17496942323531678 -v -7.3321849599191733 -5.3218654725903995 6.7814117710928254 -v -2.0842602255818821 -4.8359936390022771 5.0588340619961798 -v -3.0814131678217103 -0.59329151522381385 0.50765561752706678 -v -3.4166532130443237 -0.6830009508720708 0.60513537460156996 -v 2.1070631586647925 1.3532768094245473 0.85079202260077924 -v 15.938599527075798 -17.576587049876789 15.358645533030387 -v 4.1808355843490892 -5.3370612101929069 4.2190271937282757 -v 2.5282152781813516 9.4493329230948504 -4.9646635998978272 -v 0.66829195120691043 -1.4714233086416031 1.055753466590577 +v -1.5268298009062091 -1.3692953508049002 -0.30959042812705984 +v -0.72307590124755983 0.095610124241455208 0.79862460904139709 +v -3.1408616634527085 -4.0166768180067303 -1.4055384997926468 +v 0.030666325649956645 0.5199867762007383 -1.8054339411701772 +v -1.3252647707254555 -0.49212131418363214 1.9247481840831775 +v -0.60134482087925534 0.35662498853653812 1.1167096761570785 +v -0.70307949204283826 0.043247634370094233 0.48538948110221458 +v 0.14252829953296942 0.63535396651167431 -1.9908637258612059 +v -4.5381550916318059 -6.0955476423002031 -1.536875093459146 +v -72.461968213309007 -79.505281711891584 98.173378785895835 +v -2.9823061241323767 -2.6797744163139678 2.8345648816472058 +v -0.74092839771978858 -0.80530603585540472 0.19601381336721535 +v 9.8733369586452842 1.3679389809737612 3.4011431973478032 +v 2.6410794400173199 -1.1744014304810171 0.51068594756361996 +v -0.40690832286033607 0.37847067179744942 1.0392813631788398 +v -2.2941375154923223 1.0640074093901291 1.1828940292994128 +v 0.31442536973589419 -1.0217688574477777 0.22679024252858582 +v -1.87952132219834 3.1255105567187242 2.6237328068476593 +v -0.87539324175245581 0.81879121915190112 1.2547399720364596 +v 0.52822123078938077 -0.85614708146297369 0.37245114552549008 +v -2.8174672416943696 -4.04412212840273 -1.2075187049095395 +v 1.1592604372341595 -0.84612348505799551 1.364187767667048 +v 2.4542053508485751 -2.542181974594294 2.0957796211736928 +v -1.25517099835269 -0.487777846910872 -0.1082764528092291 +v -0.7702857925064629 -0.065579321864559989 0.20654093726121325 +v -1.1654183095434039 2.7127263699962043 0.070713677480294501 +v -1.8144471136944997 0.89128243274397345 -0.39924807208399771 +v 1062.1751787310104 -649.8157858747569 629.43263926794873 +v 4.0190633874663337 -4.5016399287328142 2.9188240693261203 +v 3.4997254230786128 -2.0603942884705138 1.4326837087351629 +v -2.4010085179513956 -1.7497496151238057 -2.0877841240824058 +v 8.3169243863074342 6.5391302038141497 -0.0074285335525178242 +v -0.82080505028505613 1.3177298646532438 -2.68033118545811 +v -0.86966769092012286 -1.1500448827901397 -1.5056837554027331 +v 1.8098204570579752 1.6621042977922751 -0.54416987529715466 +v -6.1471433695596591 -3.9189470887253579 5.7989402878083132 +v -0.86999616048463446 -3.3699796466364327 3.7272401197591019 +v -2.2192560905219163 -0.9939553653145482 0.82393698145844285 +v -4.0357549889381659 -2.0285923943738569 2.2020850400705911 +v 4.0392848762514912 3.5725994448407374 0.75961137414855728 +v 19.993521664901571 -16.317042948403163 16.160723117479598 +v 12.740303070460708 -10.767661997874598 10.408029257930178 +v 15.384449592054196 30.031182865868999 -12.242761835676241 +v 0.52061698536285139 -1.3007516916134003 0.88201214683133822 f 1 2 7 6 5 11 10 9 8 4 3 f 1 2 15 16 18 19 13 14 20 17 12 f 1 3 21 22 23 28 26 27 25 24 12 diff --git a/results/search/topology_25/resume.planes b/results/search/topology_25/resume.planes index a8556d78..2188463c 100644 --- a/results/search/topology_25/resume.planes +++ b/results/search/topology_25/resume.planes @@ -1,37 +1,37 @@ 36 --0.39131569862365723 -0.29117661714553833 --0.066466234624385834 --0.14954245090484619 --0.21489781141281128 -0.52040600776672363 --0.29378271102905273 -0.012397886253893375 -0.47177904844284058 -0.40940451622009277 --0.3030170202255249 --0.59207445383071899 -0.19584716856479645 -0.51510113477706909 -0.74194872379302979 --0.10167490690946579 -0.28621599078178406 --0.086266376078128815 --0.082244895398616791 --0.41310334205627441 --0.36708375811576843 --2.3097171783447266 -0.93717628717422485 --0.7603832483291626 --0.068434320390224457 -0.80356472730636597 -1.1137362718582153 -0.41060808300971985 --0.23024550080299377 --0.29080301523208618 --0.3850095272064209 --0.17150215804576874 -0.21793799102306366 --0.0061291120946407318 --0.092408902943134308 --0.1061212569475174 +-0.43116158246994019 +0.29465195536613464 +-0.076780639588832855 +-0.096311725676059723 +-0.38691464066505432 +0.58129900693893433 +-0.30469289422035217 +-0.019136035814881325 +0.49495449662208557 +0.57318747043609619 +-0.48919975757598877 +-1.0038989782333374 +0.24008260667324066 +0.50479340553283691 +0.74531364440917969 +-0.21010108292102814 +0.28708216547966003 +-0.061403088271617889 +-0.093297921121120453 +-0.5077897310256958 +-0.37220969796180725 +-1.7777837514877319 +0.79493576288223267 +-0.62579149007797241 +-0.31811240315437317 +0.81659150123596191 +1.3841178417205811 +0.47720503807067871 +-0.35208970308303833 +-0.30008560419082642 +-0.50207787752151489 +-0.37790247797966003 +0.26849260926246643 +-0.025375423952937126 +-0.27153781056404114 +-0.23730215430259705 diff --git a/results/search/topology_26/resume.obj b/results/search/topology_26/resume.obj index 13708b83..0ee18fdc 100644 --- a/results/search/topology_26/resume.obj +++ b/results/search/topology_26/resume.obj @@ -1,47 +1,47 @@ -v 9.5137149199037818 -1.305699282841863 3.71922489148458 -v 4.7007434878413186 2.8154566786780459 -1.5402282088989301 -v 2.4199171193218172 -1.5994481827405223 -0.02713987761776393 -v 2.6086280423235055 -1.4309336179472072 -0.028561078014191499 -v 1.426203391109792 -1.1122388552129754 -0.88428385268056131 -v 0.47147004165852868 5.0555786881264044 -5.293016639148977 -v 1.8924919916960505 2.2186842819311869 -2.7210849878133798 -v 1.3926668600172412 0.46081535034241144 -1.8923440526399791 -v 0.16276343178210853 -1.9671440902102277 -1.0466899665733373 -v 2.0873633027517626 1.5905551868210761 -2.2179911361802027 -v 1.7207536419902671 1.6927324823104413 -2.4854246277472831 -v -5.5596466576010055 0.20290400355836236 2.6437143532628289 -v -1.5154175778847587 0.707016084083676 1.7046026716278517 -v 5.5197519013171785 -0.029829210391431431 2.2507940786507188 -v -0.15649074179546807 1.8104745304252683 0.12734080291481364 -v -1.0936949965266132 2.2422622052266425 -0.39607257953824881 -v -0.27105893660741903 2.9224688135563124 -1.3673858491077038 -v -12.613751198900204 -2.9092939956661881 7.2978760660395317 -v 8.8629372050399802 8.0415258304546562 -8.8651142923448099 -v -0.98754361114348532 0.098584047522734183 2.4927515430749572 -v 2.0234515069041503 0.42780974490620866 0.67219865950118196 -v 6.1710044217461073 -9.0656023283810985 -3.218211542760915 -v -9.9049568112656221 5.5634565653239845 5.378697258394487 -v 0.69549382787102754 0.52872420591732616 1.0584793755407358 -v 2.3341093532224702 0.61590420845199034 0.64374073366520068 -v 0.007397134252983913 -0.52912765722644306 0.93400049045695266 -v -2.5672597623476632 -1.7601233850543623 1.265735257723603 -v 1.4270463513836467 0.23915352416137298 0.28432162427830465 -v 1.6961333504604188 -0.047516013607927239 0.2940093296788957 -v -1.5477984653649075 2.9622160392516204 -0.021165316734163997 -v -2.371473753743838 3.6591687627577292 -0.13109762015978266 -v -0.80352808648361129 1.0942567394927747 -0.47239370429027561 -v -2.1912395001492531 3.4314617689274014 -0.14048100015603487 -v 0.60967466722891661 -1.6525578174016915 -0.97344602016281301 -v 1.590335016764961 0.26321418121444179 0.46131737542210238 -v -0.44404454788486142 1.1622110254841909 -0.70793026636703194 -v 0.023163731075763628 0.31049116391640946 -0.99700288467974241 -v -0.13873338278210426 1.0782126637947818 -0.48845279689653165 -v 1.5434648885560736 0.15489566153420625 0.67073882166653676 -v 0.36152097774497999 0.30556839272732056 1.7510300111021189 -v 0.98744590075130423 0.73596223289495055 -1.633218326630498 -v 0.37815604444899781 0.23047158535699308 -1.2269288853553979 -v 0.24499568760841903 -0.58830472345145801 0.67938332659206258 -v 0.36698371494535914 1.3954167686635177 -1.4758395733968721 +v 3.6924278891203373 0.21961900525682673 2.1554971037332287 +v 3.6230021359851232 0.33949391600500528 1.9789591732588829 +v 3.2189568634357624 -0.084941849682645065 1.7796567765259788 +v 3.0182777136870507 -0.27915643344292779 1.6684231221919215 +v 2.9872645453764308 -0.28897990544065066 1.6363319486476993 +v -1.6263975933689179 15.594992194678772 -15.938833196526307 +v 1.7289552039238227 2.8394255545117559 -2.2686776985818629 +v 0.7413094924777347 -0.49220115730408626 -1.0627424862037531 +v 0.6861346105587528 -0.63522711289138145 -1.0271780148741847 +v 3.3358538863799367 0.44905424405560951 1.5338466804112869 +v 1.3768782650678588 1.5488553958960067 -1.7628366733036922 +v -8.2418519187533299 -0.045944742916960088 3.885672890706692 +v -1.0040216533923538 0.1758907664394814 2.7429601303711975 +v 3.6248450956456324 0.25033515355707747 2.1157778905704268 +v 0.26582517539249828 1.5840278542138848 0.4382066778901772 +v -0.84339944908971576 2.0833796094835679 -0.20634093272200599 +v 0.82263349786522666 2.9441581481319878 -1.7137795185046358 +v -10.783276432920777 -0.79386503182792112 5.3166396994079106 +v 4.2974549124627455 4.3318651341280363 -4.2313961167701235 +v 1.9937703931952611 -0.23438186262212662 3.0413969908273639 +v 3.4343885440958823 0.23666367832622381 1.9850269719400009 +v 2.3839239427996239 -4.1539749505900003 -1.1612735657535285 +v -21.95931095982387 6.3598721124943811 11.238923270769657 +v 0.58975089930423341 -0.056278038077938061 2.2777787172132276 +v 3.5505862872862703 0.28751882033272264 2.0026219466956148 +v -0.48639005799780705 -0.44742691655210254 2.1754964991908068 +v -5.1021103036515063 -0.66138562081148633 2.84914153076343 +v 1.9006873179428627 0.0540583135758997 0.91850787488970731 +v 2.7635722377031593 -0.31849227488067389 1.4293204294059427 +v -0.75742010696500395 2.816464991224982 -0.35189544431288461 +v -1.3178785071423063 3.3665807897791931 -0.62582851293736019 +v -0.41088619698134399 0.91364114828754306 -0.47589251582024245 +v -0.86423970518472548 2.3560030136183348 -0.51023395012941108 +v 0.058936071885752915 -0.6253983405794632 -0.44861679935437615 +v 2.0364547080885056 0.057087194472528587 1.0353468180784722 +v -0.37562198538987857 0.92406177057076277 -0.49574978947590498 +v -0.33312590995700725 0.82917817988097264 -0.51586780539228649 +v -0.19704375343558025 0.88870871169110011 -0.36533849289064707 +v 1.929277088198919 -0.35047161690143935 1.6348842263901264 +v 0.18646089463836468 -0.34631282518041667 2.9526965346708822 +v 0.29851521082020738 0.24312854092144473 -0.84413300379044698 +v 0.51803762752596227 0.4336847396549966 -0.97220484829273612 +v 0.21318414738923677 -0.54648103259754199 0.42734049025215443 +v -0.14146042365328038 1.0124901957581607 -0.67801632473270645 f 1 2 10 11 7 6 8 9 5 4 3 f 1 2 19 17 15 16 13 12 18 20 14 f 3 4 22 27 26 13 12 23 24 25 21 diff --git a/results/search/topology_26/resume.planes b/results/search/topology_26/resume.planes index b6c37137..90a368c3 100644 --- a/results/search/topology_26/resume.planes +++ b/results/search/topology_26/resume.planes @@ -1,37 +1,37 @@ 36 -0.77270340919494629 --0.87707096338272095 --1.3943551778793335 -0.057840213179588318 -1.2238525152206421 -0.90604549646377563 -0.25311893224716187 --0.27550926804542542 -0.94214928150177002 -0.1921272873878479 -0.16760516166687012 --0.37693765759468079 -0.46268895268440247 -0.41796517372131348 --0.48367476463317871 -0.65827482938766479 -0.87237471342086792 -0.59854310750961304 --0.44649225473403931 --0.012422008439898491 --0.68503481149673462 -0.17871947586536407 --0.31366834044456482 --0.12223908305168152 -0.026316247880458832 -0.814899742603302 -0.27527016401290894 -0.14490549266338348 -0.11017841100692749 -0.10961280018091202 --0.41455963253974915 --0.13099394738674164 --0.5944669246673584 -0.37547343969345093 --0.65016865730285645 -0.50148630142211914 +0.95179557800292969 +-0.55374413728713989 +-0.75031554698944092 +0.095277674496173859 +1.3218120336532593 +0.86008358001708984 +0.27309700846672058 +-1.1455227136611938 +1.5073885917663574 +0.16772459447383881 +0.046784691512584686 +-0.24920561909675598 +0.29670172929763794 +0.20712479948997498 +-0.35013818740844727 +0.6310461163520813 +1.0568245649337769 +0.83122783899307251 +-0.2835918664932251 +-0.018205255270004272 +-0.51317989826202393 +0.13268464803695679 +-0.25208547711372375 +-0.14764522016048431 +-0.053573038429021835 +0.66420209407806396 +0.25341787934303284 +0.075143530964851379 +0.036931496113538742 +0.02797820046544075 +-0.24001199007034302 +-0.082100071012973785 +-0.37651866674423218 +0.034068170934915543 +-0.58725976943969727 +0.04690869152545929 diff --git a/results/search/topology_27/resume.obj b/results/search/topology_27/resume.obj index 197bc218..edd28eec 100644 --- a/results/search/topology_27/resume.obj +++ b/results/search/topology_27/resume.obj @@ -1,47 +1,47 @@ -v 0.25526452277307293 -0.14359038818186964 0.20350373284277884 -v 0.042726622745067749 1.2632909916838391 0.72342746571343797 -v -1.1154368750366193 2.1181755972103344 1.3539898830524688 -v -0.37507318945257445 0.72644023585062967 0.67757512864984959 -v -1.2594029451033186 2.0246142360449655 1.3677545650919627 -v 2.1222646098286044 -1.4531796966844039 -0.79082964818770995 -v -0.27172074870548274 1.0743347445120146 0.75847126314148161 -v -0.6501078511192232 1.0794228057242994 0.87581272624797923 -v -0.13828120440571878 -1.5098628843354314 -0.1179715045216807 -v -1.5508833429203166 0.51878372438623566 0.96994335140266641 -v 0.025598031701754693 -1.1946608957744904 -0.066153780758633207 -v 0.69827223886062895 -1.6833875217191774 0.055798399856753694 -v 0.33231603102256191 -0.61436548466945706 0.041403749216284688 -v -1.4897076337977755 4.7996455488640066 0.031273995775200472 -v 0.595582850881198 1.5038152682833203 1.9922623542432838 -v 0.1952455325466875 -0.10185890120344017 0.1113542432576468 -v 0.84153920093506418 -0.4924587029466948 1.1431341185640815 -v 0.83519279456852247 -1.7914431675990972 0.25737860306743238 -v 0.16175186945978573 1.493148298038103 1.1162804684877445 -v 2.3555342157168031 -2.1954796683769269 3.0305414626771663 -v -0.82939013970130115 0.31527766618920361 2.2504196853033109 -v -0.31266165513474276 0.25607453443542366 0.94362439290978506 -v -0.079022669684502153 0.09118178538957647 0.47915328444774508 -v -0.063247805029350859 -0.708530622025068 1.1694195277932082 -v 0.58768565419839558 -1.8934557685888362 0.53929683673261941 -v -0.51088616579603519 1.2526340395887015 0.55376421528190856 -v 0.46232946570712935 3.0018879140763954 -3.6102515601942136 -v -0.83376243075574374 0.62422113502188636 2.1060162046538631 -v 1.5153762028776305 -1.0161491291242917 3.3524772835268895 -v -9.8250057069291312 -0.92795247597916919 0.97249466799454942 -v 4.7017139541654327 10.166666143442914 -1.1846477496370555 -v 6.0312368249127788 -5.0972445601453833 6.1795332024484084 -v 5.1431558584018537 -3.8320000848138873 5.4086660943334515 -v -0.0068807490338937197 0.042237962227686249 1.0000136585761992 -v 9.4276864016535544 -6.5384276578905158 8.4862789202442812 -v 1.0640843796187378 -0.70457081030961188 1.9157580395279437 -v -0.56659678823225745 0.44084523531359721 3.3202389949045577 -v -0.59549081840494367 1.1521284245641008 0.73258254233678444 -v -0.20768183585011851 -0.59287923720610014 1.1394515931937184 -v -4.9850804716962154 -1.5955580111348213 1.2467934881123539 -v 0.27999234423043234 -2.2005765526452841 1.2816773662599894 -v 0.22001190470743684 -1.9430744854697626 1.2265504006751022 -v 0.30158778267106195 -1.2081236821018537 0.61821435319589557 -v -2.0921088048122205 3.3344274971656058 -10.172565452808772 +v 0.28447561780752612 0.083487784349471628 0.18437372284213976 +v 0.10151814081672314 1.2850710828894392 0.77915573815899852 +v -1.2231388131886469 1.5366704471617665 1.3832676652626159 +v -0.40806996218791552 0.55011438352703046 0.64705645481143015 +v -1.418460991431719 1.4146735967602719 1.4026238900801091 +v 2.7524034404418165 -1.0474719001620765 -1.2313316582069531 +v -0.29843513760282586 1.051878194614116 0.82607196511898728 +v -0.83927816821146739 0.88620247546790409 0.95510231240504884 +v -0.17811296131656051 -1.4168368120173784 -0.30065664099301831 +v -1.901177799177356 0.22943190580945361 1.0631771465877131 +v -0.051097371619984004 -1.1999057074505235 -0.25294383976601176 +v 0.80815221571948714 -1.5502128395862214 -0.01433546954238657 +v 0.3900559429648664 -0.46600537746394394 -0.039007554545594209 +v -1.2628611823939409 3.9082811606931589 -0.063307613430272247 +v 0.52205847835941777 1.5007606282244399 1.8918368726906778 +v 0.19913700394908837 0.14585536172487756 0.046974874579126608 +v 0.87896550145199548 -0.11487790165913067 1.3381598956198251 +v 1.2174052198083045 -1.8407576162189494 0.65169806585316548 +v 0.4189681784630126 1.4895644338233216 1.653786767157261 +v 2.7554343504354963 -2.2465993188245457 3.7261161795115849 +v -1.1539810038337051 -0.0087939478664053709 2.3380022283819537 +v -0.5748479630999187 0.43469983760548953 1.0184877371169845 +v -0.21339380250163584 0.31120316811177839 0.47349482125398701 +v -0.36424321564556178 -0.68402811411423525 1.429365779372348 +v 0.56189760586605531 -1.8101261735358769 0.5963783900323828 +v -0.57622564245095476 1.1319325959843605 0.53570478434643753 +v 1.4916479195884862 3.4745087346992123 -4.7039865426448637 +v -1.0253072954467721 0.54612722406102832 2.0380124805512256 +v 1.0068498030850905 -0.69517536617364717 3.3562340660943231 +v -9.9698101479619385 -1.8777903133052727 1.0100427467290682 +v 5.5447398781744113 9.8113084662918801 -1.7372841856070855 +v 6.3458256898036129 -4.7524573304808815 7.3013763418504602 +v 4.9713904933299764 -3.2359242766072471 6.0000381804663734 +v 0.20396406133235578 -0.0057335941638725942 1.2409686532405499 +v 7.7820958785249577 -4.7816760007729018 7.3344131825988468 +v 0.83235214169407246 -0.41720521391452803 1.8699817762244224 +v -0.84991833468665412 0.1685778905885652 4.318279577065729 +v -0.75946388118282659 0.9630539815923117 0.81700775890960264 +v -0.57591095860566155 -0.56036971476297159 1.3675112841527044 +v -5.6923354097712666 -2.1193694773576848 1.4680381053102065 +v 0.26517243041799154 -2.0085210089005021 1.0651893206688303 +v 0.10164552029532638 -1.4079818817382566 0.96109813307109482 +v 0.18344599135773113 -1.1642944310698682 0.73535877396088334 +v 0.0054066847280843161 4.6346245948096891 -14.384641733644983 f 1 2 7 4 3 5 8 10 11 9 6 f 1 2 17 13 12 18 20 19 15 14 16 f 3 4 26 27 13 12 25 23 22 24 21 diff --git a/results/search/topology_27/resume.planes b/results/search/topology_27/resume.planes index a9c6bb44..098f174d 100644 --- a/results/search/topology_27/resume.planes +++ b/results/search/topology_27/resume.planes @@ -1,37 +1,37 @@ 36 -0.083706840872764587 --0.088526427745819092 -0.27376526594161987 -0.077430471777915955 -0.025986000895500183 --0.038663960993289948 -0.10639887303113937 -0.03696727380156517 -0.040397107601165771 --0.42092680931091309 -0.94793599843978882 -2.0408029556274414 -0.016185840591788292 -0.023127248510718346 --6.8620436650235206e-05 --0.024263717234134674 -0.21832782030105591 -0.95950627326965332 -0.15410546958446503 -0.054386802017688751 -0.086371526122093201 --0.14434298872947693 --1.2903485298156738 --0.59363925457000732 --0.49590316414833069 -0.010477497242391109 -0.58850449323654175 --0.70926469564437866 -1.1961027383804321 -0.336698979139328 --0.53622215986251831 --0.6167837381362915 -0.20411264896392822 -0.43151217699050903 --0.19511215388774872 --0.17785704135894775 +0.071100026369094849 +-0.083575673401355743 +0.19071090221405029 +0.17314444482326508 +0.064992785453796387 +-0.078038968145847321 +0.1223367303609848 +0.04877081885933876 +0.070085473358631134 +-0.51275634765625 +1.1125848293304443 +1.8381248712539673 +0.10514175146818161 +0.1984318345785141 +0.024767758324742317 +-0.094236947596073151 +0.37891274690628052 +1.0799969434738159 +0.16312910616397858 +0.067249059677124023 +0.13170848786830902 +-0.013661570847034454 +-1.3064380884170532 +-0.56151485443115234 +-0.50576514005661011 +-0.056555498391389847 +0.46826654672622681 +-0.67711514234542847 +1.1342679262161255 +0.23988445103168488 +-0.52460867166519165 +-0.82090848684310913 +0.15407940745353699 +0.48565354943275452 +-0.26107496023178101 +-0.10584774613380432 diff --git a/results/search/topology_28/resume.obj b/results/search/topology_28/resume.obj index 0801ee58..4e075eb4 100644 --- a/results/search/topology_28/resume.obj +++ b/results/search/topology_28/resume.obj @@ -1,47 +1,47 @@ -v 1.069736583590938 0.80828662009883834 0.93990526612254921 -v 1.5466617058908856 -0.15938503192580386 2.8804297928985809 -v 1.3686628808701675 0.83837464671499928 -0.37107403392402893 -v 1.6580853648220846 0.35077715651118896 0.41099333055988801 -v 1.8867935679355221 0.48571674110891233 -1.036344819059275 -v 9.7659428873862684 -6.7000201764883034 -3.9162428552737625 -v 2.8941811401588593 -1.5051018530004108 2.8515340499979112 -v -0.02225245959637678 3.4963287517883721 -5.3786622031459839 -v -1.3076380551155999 5.4746055964989582 -8.1086398512627191 -v -0.41860689070122681 2.211667489189673 1.3012104726737215 -v -0.057367335105217014 3.3517777649141465 -4.6648386821524124 -v 1.5960942088485477 2.1081662758910293 0.90711490785974425 -v 5.3631804200676783 0.84874295197178029 10.372234264288849 -v 2.9379129181203449 0.44486161985381056 5.3940356658218045 -v 0.26950963018219548 -1.3396858480935561 1.1474803374916283 -v 0.21083819925473532 -0.37152312370370394 0.12899166859757435 -v -0.0014761355707737813 -0.70469601045184993 -0.033322066384092408 -v 0.12471448317759816 -0.6111052045241121 0.15905341300507841 -v 0.017463818928676236 -0.87779967281432603 0.16741613779561465 -v 0.19139883192571175 -0.14879615764525367 -0.11841818193922882 -v 0.93720234564031757 0.15855135774533838 0.359716624459962 -v 1.1274713126239715 0.24585020640200281 -0.3503613902577255 -v 0.13758769005940896 -0.89539354412964378 2.0899424089516927 -v 0.19192886924479813 -1.442440708342986 0.8432676735653537 -v 0.75093936908788683 -0.48962082056863665 0.027884562258014119 -v 0.70607292038019476 -0.55499603292766631 0.11358270958185029 -v -0.51046355927465359 0.25734515763430332 7.1548693275146071 -v 0.70965731661490994 -0.6117033349002412 -0.0062875495883980559 -v -0.088146701949679163 -0.2712423897546844 3.3816930396078222 -v 9.7661299548300011 2.7587343052741717 -3.8792505985873023 -v 0.89931652078169666 0.21245402347264228 -0.90969045225071565 -v 0.22778514511533279 -0.026986099433695631 0.23739613519305319 -v 0.15603501439315537 -0.037134182486213009 0.054485420627757838 -v -10.493154349860712 2.9384006644396825 2.6487953261596253 -v 2.8683504386583727 -1.8631218913475531 1.9866515827606857 -v -4.7298975274105333 1.7003292134377781 4.3275092984335499 -v -0.62557916905667621 -1.2996469731563407 0.52773900292601295 -v 1.8635891362525114 -0.41704745821574468 -0.012270052507265206 -v 0.15123107644995451 -0.1128615980205438 0.2708975260041131 -v -0.053486955986393338 0.39161343292710243 0.5539246722780129 -v -1.4226029572692098 2.2206571113464495 1.6244673129424883 -v 0.24755673965024386 -0.55121053664089814 0.084767665033093881 -v -0.1710354695502595 4.7133127451747336 -6.2371302197014327 -v -15.59325898308297 9.2035491784630228 -14.236031785125205 +v 0.66996330099349799 0.55192532567879515 1.0757606984699219 +v 1.0710516816298536 -0.45397343483727998 3.2623216537168003 +v 1.0411034692650747 0.60457110154285776 -0.44229570214072356 +v 1.1671139598842426 0.23161307607527143 0.44967625135811362 +v 1.2901735927604254 0.52976734952997429 -1.064462648618606 +v 7.2293449604081408 -4.9891040451305555 -2.4500139689400853 +v 2.0271248443639718 -1.5340001444368632 3.7292746789543303 +v 0.80613495362805121 1.3842369822502378 -2.4088111563470367 +v -1.9171471335667081 5.760511553791039 -8.4198996522450056 +v -1.2055380319860243 2.2299727035672912 1.7463878505100365 +v 0.76807598407606259 1.3812441031371228 -2.2618034807414356 +v 1.1684337014536117 1.9947271228210932 1.5986764719890851 +v 2.0677569960614486 -0.59553970637540321 6.7742629624160369 +v 2.7764972125980987 -0.83767614228432008 9.3868328782179002 +v 0.36890143276595688 -1.6386736654461684 1.8349719657258245 +v 0.16420852495277666 -0.33313792158962008 0.073506882967620535 +v 0.098457714054008896 -0.48983785683992054 -0.022860464114085419 +v 0.16226800838606226 -0.41732219187303177 0.13549773536811344 +v 0.1165347826791692 -0.61556970507443276 0.14120448315125955 +v 0.17997272727905539 -0.19220846249402718 0.012381436606378249 +v 0.64081216954192244 0.093724725141767773 0.34722777980126218 +v 0.8885421210261637 0.29010118108852406 -0.36501182570767982 +v -0.38273598324070562 -1.3080290145464084 2.187712796459313 +v -0.30795232615199336 -1.6042337576953403 1.3089906355448198 +v 0.50573420613495024 -0.37427001571192581 0.061729619168060489 +v 0.43593668559418064 -0.46651990911606223 0.19346795613649265 +v -3.9380777331138139 -2.2452073077639381 15.921781002917662 +v 0.44479965440065278 -0.50876201561900669 0.076000302098881478 +v -0.70004601950041334 -0.83264145877677564 3.4125249169297103 +v 8.8360431458444655 3.578330898058069 -5.7938553051250343 +v 0.72096273063408167 0.34119168987161635 -0.94710420620774705 +v 0.11100625213817165 -0.044681872469909609 0.24178458915680717 +v 0.11595994824299519 -0.046260329854348109 0.25938593306444407 +v -19.641529913881833 4.3204731142687267 2.1155807970759737 +v 2.0983485330167206 -2.0068180054613673 2.2813444631426334 +v -6.0365474199069515 1.4585055334252803 5.7363021092731099 +v -1.0545130294407015 -1.4834779547988033 0.99402886260495271 +v 1.080053551100719 -0.39646826573268551 0.070068076467295501 +v 0.12519480802525734 -0.079894963975454938 0.22377270102972435 +v 0.09942738528606157 -0.026693240263784918 0.25467875991720446 +v -1.4770057507365353 2.3131382100510351 1.5972409501221914 +v 0.14472213551543894 -0.42643292178966002 0.14892940934894916 +v 1.7454953983838111 4.5146633978406747 -6.0423361195424601 +v -9.339236957161738 8.2851360057249686 -13.237866427002178 f 1 2 7 6 4 5 11 8 9 10 3 f 1 2 20 16 17 19 18 15 13 14 12 f 1 3 22 21 25 26 28 24 23 27 12 diff --git a/results/search/topology_28/resume.planes b/results/search/topology_28/resume.planes index b292ebb2..f152d950 100644 --- a/results/search/topology_28/resume.planes +++ b/results/search/topology_28/resume.planes @@ -1,37 +1,37 @@ 36 -1.027101993560791 -1.0229449272155762 -0.2576746940612793 -0.22266757488250732 --0.092711038887500763 --0.10095703601837158 -0.78895378112792969 --0.31511390209197998 -0.17266319692134857 -0.019233418628573418 --0.07116968184709549 --0.003596095833927393 --0.45356866717338562 --1.3405693769454956 -0.5684780478477478 -0.018779031932353973 --0.14116977155208588 -0.26520788669586182 -0.012313404120504856 --0.3204876184463501 --0.23803883790969849 -0.18775545060634613 --0.067475698888301849 -0.25607696175575256 -0.14787684381008148 -0.027078235521912575 -0.012757862918078899 -0.27010330557823181 -2.3078012466430664 -0.77472883462905884 -0.066997542977333069 --0.40817761421203613 --0.35830733180046082 -0.042312759906053543 -0.042776796966791153 --0.018971269950270653 +0.72998034954071045 +0.73437374830245972 +0.20393623411655426 +0.19444079697132111 +-0.046497520059347153 +-0.057057518512010574 +0.5502249002456665 +-0.23588570952415466 +0.12634061276912689 +0.009446512907743454 +-0.031951874494552612 +-0.0055240001529455185 +-0.52142786979675293 +-1.7770384550094604 +0.55463826656341553 +-0.0073926569893956184 +-0.11756212264299393 +0.19620805978775024 +-0.0059030191041529179 +-0.20882983505725861 +-0.14936082065105438 +0.16708405315876007 +-0.032903760671615601 +0.1959441751241684 +0.1715930849313736 +7.4476993177086115e-05 +0.044425427913665771 +0.28487679362297058 +2.3704495429992676 +0.80326700210571289 +0.054022278636693954 +-0.31883016228675842 +-0.25028911232948303 +0.014738435856997967 +0.011707465164363384 +-0.0030980587471276522 diff --git a/results/search/topology_29/resume.obj b/results/search/topology_29/resume.obj index 785336ec..927e9d7f 100644 --- a/results/search/topology_29/resume.obj +++ b/results/search/topology_29/resume.obj @@ -1,47 +1,47 @@ -v 1.3693551871952083 -1.411334444678074 2.4844926749384872 -v -0.76579840395560128 -1.9817249451447787 1.519281375549808 -v -0.79221517040335432 0.83604278705532953 1.6109398544856726 -v -2.7952874530304377 -1.5861841905953613 0.63622673806859398 -v -2.5874543867398505 30.638172631527691 1.9099702488013111 -v -2.2883670126838944 22.196252027247475 1.7326373323165956 -v 2.2373813360414765 -2.3968472978512469 2.8322419465774629 -v -0.46178368396873271 0.81340056523416648 1.7562459597465201 -v 1.2790669023118173 15.271945967193954 3.0564206276829888 -v 4.5157113359101375 -6.2460754683487183 3.6986850077410036 -v -2.2918028511835162 22.915648497595065 1.7575016439505682 -v -0.17045865194521617 0.48548554818968842 -0.78231738923849881 -v -1.0178357628416537 -0.2811640408459376 -0.56364391805089309 -v -0.12462407359702563 0.58202342662534146 -0.85547951702307923 -v 0.46124407160736197 -0.29836149057556466 0.56420937337036259 -v -0.76273687976973381 2.2032085585562946 -3.1393972644673678 -v -0.98733445739227066 2.2552683676266874 -3.3657344400214062 -v -0.016640710250062845 2.8130048414126638 -3.2592941404400024 -v -0.57954561920456948 3.8441717245083091 -4.8297036306624097 -v -1.3154605912719728 -0.26670286234617796 -0.80284589187909861 -v 0.54410375762303254 0.7576233836322559 -1.8821358723268085 -v -0.65348404120385017 0.89860956424946536 1.4212092592664276 -v -0.35480943411137122 0.638187798796502 0.046523854113612706 -v 1.5959884911569777 3.3574505930224845 1.8767366783910371 -v 0.034876353247780517 0.22624449350694176 -1.9235244892733045 -v 1.6269363625771536 -2.6989985846920947 -13.00989449665553 -v -1.9052053089171126 -0.97357013779596768 -0.064619249670118672 -v -0.88209287515181556 1.2134265652958145 0.27995072799339593 -v 0.21724071298713746 0.074862387705380784 -1.360578206427751 -v -2.8053559956589358 0.24901232486215544 3.2478128093604761 -v 0.58160524506987954 -0.052800248127878792 -1.9125768757773289 -v -0.20763787936472491 -0.58674738538509319 -0.69009432996547349 -v -1.6134151786295856 15.970704658975482 0.90821512485847999 -v -0.5124231494303334 1.085953009417215 -5.1223081081428443 -v 0.041644914778993611 0.30594062675598149 -2.0333034110424504 -v -1.0839972364958714 1.6123168215526205 -3.0232669753333141 -v -0.01809681088706834 0.34818746110888649 -1.5713777123285575 -v -0.51683879695975987 2.7065572077888937 -4.8409977073462347 -v -0.017867924078635019 2.3083038799972395 -3.355030223473662 -v -3.0239538897115827 1.7116376024891373 -1.8845735895213243 -v -0.30623934841208184 1.2809953107146774 0.16083725624894693 -v 0.033482834966214146 2.1538583692947424 -3.2227647155150563 -v -1.6472632306734076 0.34946248426339727 -0.98519870904626028 -v -1.6398069494914633 0.027138835518509045 -1.0179749386010588 +v 1.1370550910805459 0.28818382530390457 3.3920269848233926 +v 0.029340001803361392 -1.0171825416183717 3.2830106582231529 +v 0.32253941038002887 1.203127413206456 2.959119033485281 +v -2.0729666689624242 -2.0605516734215406 2.8062902430011127 +v 1.0786545836381758 6.1511511043108476 2.270199591343542 +v -1.4532332702127086 8.9459971743665054 0.93378379973276604 +v 2.6688207325197402 -3.0887862164401945 4.5177914959628476 +v -0.57033835420181256 1.7711917965355795 2.5663903691866041 +v 1.3262753707231267 6.1633247777324991 2.3471824411006592 +v 4.1594730524069181 -5.744182330148619 5.4946281551532863 +v -1.4066763521715531 -0.21457578639627739 2.6722718290904828 +v 0.62994905319853878 1.1655761936728715 0.29213344408926434 +v -0.27199999711391515 -0.024042483459215353 0.46542878949960537 +v 0.27023255344245639 0.91576213484079683 -0.10324792250632775 +v 0.38961530592838428 0.62122365266497714 0.80846050663028846 +v -0.38172723094195787 1.1696100466852091 -2.2810003359477298 +v -0.56559955338789281 1.2356261955203385 -2.883660796687904 +v 0.70001241035131923 1.6105702319531086 -0.45040680994361609 +v -0.43705343154822579 1.8454378671972405 -3.8187480415781878 +v -0.78326644155675484 -0.52133022654835426 0.19756856048163288 +v 1.1671664521620602 2.0178322835367357 1.0348428483202521 +v 0.37920277395983243 1.008951229506758 1.3651837371294877 +v 0.31652582600071077 0.83415683024233278 0.8348860497395052 +v 1.2890997293344442 2.2528904869822042 1.4484283168231475 +v -0.2226053177599582 -0.0052313098351629917 0.1831553914839657 +v -1.1624521288521155 -1.0784041614664128 1.3434879596313993 +v -1.1198100174353129 -1.0663088479516594 1.0754064757209225 +v -0.088732649276774836 1.1601102283384597 -0.3409786406198313 +v 0.54071567801534359 -0.51264920763217181 -0.31941604153126846 +v -0.89996640104369097 1.6568867091101966 -0.89584181575921717 +v 0.99301541951804551 -1.161665911950744 -0.12824852081711891 +v 0.20334262446922347 -0.26155171133749211 -0.5360334231477436 +v 1.152410670984406 5.6805144286137823 2.1854789231838323 +v -0.32749769731269179 -0.5463076510588637 -3.9710600018848061 +v 0.24517063579123244 -0.18246227000437221 -1.0338643973758062 +v -0.60201266099856843 1.0632572624978549 -2.6188620388159087 +v 0.22985280493219379 -0.031059692078386079 -0.8631208924463516 +v -0.29674448392418284 0.98595885500474767 -3.5702699855300071 +v 0.24915676719317548 0.77114395251260848 -1.9736829290020885 +v -4.1546335230291085 3.97518499226365 0.2077088787734008 +v -0.016772942081482195 1.2249996086155153 0.8237017055126743 +v 0.51353889476117953 0.20341046896901424 -1.2937814949492381 +v -1.0796656015207435 0.80819581058059398 0.41051155083952184 +v -0.99445415246626834 -0.43154143410242529 0.15464981942837469 f 1 2 10 4 3 8 11 6 5 9 7 f 1 2 13 12 14 18 19 17 16 20 15 f 3 4 27 26 25 13 12 21 24 23 22 diff --git a/results/search/topology_29/resume.planes b/results/search/topology_29/resume.planes index 30dd0fe9..f5d30ce1 100644 --- a/results/search/topology_29/resume.planes +++ b/results/search/topology_29/resume.planes @@ -1,37 +1,37 @@ 36 --0.71335768699645996 --0.059156138449907303 -1.6129839420318604 -0.03044915571808815 --0.04524192214012146 --0.04062122106552124 --0.45142081379890442 -0.44683504104614258 --0.18272799253463745 --0.47035416960716248 --0.010191756300628185 --0.30811536312103271 -0.12177947908639908 -0.1092921644449234 -0.0057543199509382248 --0.071682490408420563 -1.2384748458862305 -0.3559931218624115 -1.0768249034881592 -0.062778748571872711 --0.34476017951965332 --0.33014166355133057 --0.66662764549255371 --0.50430655479431152 --0.17676866054534912 --0.014634846709668636 --0.021523350849747658 --0.11695950478315353 --0.018120165914297104 -0.15158775448799133 --0.10926877707242966 --0.61717778444290161 --0.67825168371200562 --1.7848026752471924 -0.0083458181470632553 --0.48809900879859924 +-0.86717122793197632 +0.50965273380279541 +2.708723783493042 +-0.23943428695201874 +0.19529306888580322 +0.094444282352924347 +-0.12520091235637665 +0.092633001506328583 +-0.015735536813735962 +0.29628312587738037 +0.10714204609394073 +-0.3372529149055481 +0.35613036155700684 +0.13290223479270935 +-0.085898414254188538 +0.52325242757797241 +0.77041739225387573 +-0.075252406299114227 +0.85883581638336182 +0.057546947151422501 +-0.28590837121009827 +-0.090442843735218048 +-0.089209072291851044 +-0.021771525964140892 +-0.10307027399539948 +0.040979161858558655 +-0.045583952218294144 +-0.14461107552051544 +-0.10951356589794159 +0.48246967792510986 +-0.10277340561151505 +-0.37051054835319519 +-0.26942110061645508 +-0.95898890495300293 +-0.034115057438611984 +-0.15407980978488922 diff --git a/results/search/topology_3/resume.obj b/results/search/topology_3/resume.obj index 0f8c6786..2e86d5dd 100644 --- a/results/search/topology_3/resume.obj +++ b/results/search/topology_3/resume.obj @@ -1,47 +1,47 @@ -v -0.67210933386423044 -0.60391506869310263 -1.4186214015681078 -v -0.51352453433737844 -0.2834156209142194 -1.3388002122519473 -v -1.2412566780171506 -3.2064899652790722 -0.85744806640283722 -v -0.42022292149809087 -1.8234435729056397 -0.28295542711522387 -v 0.80435264213280577 -1.3603176888512629 1.5075562141822343 -v 2.6125440878177475 -0.14145411531425611 3.8391404205020585 -v -0.73940946872374647 -1.5606623996241997 -0.9734787049875071 -v 2.979593005799432 0.20200483273092346 4.256381335569329 -v -2.4762037135808068 -4.2984815895809625 -2.2983793656633549 -v -0.36540859836208867 -1.9551570437321462 -0.11383565074428481 -v -0.69877011973308767 0.27928913056632387 -1.9789659005705431 -v -0.46372431462602115 -3.6877166598237094 -1.8634425880575514 -v -1.1666463855268481 -4.6246518853892198 -2.1413899370319749 -v -0.98183696625365113 -0.58627959535182328 -1.4735780250867199 -v -0.35459793281376195 -1.4715670490808475 -1.4955289540641741 -v 0.5395044045279741 -1.1664746051503669 -1.2810490992592918 -v -2.9357695083007576 -4.5997248394912678 -2.4671838840851956 -v -1.9883631681931959 1.1705758084648525 -1.3856182407543924 -v 0.16358382729174289 -1.0195295818780898 -1.3280611637721009 -v 2.885291623332622 -5.4889841487926381 -1.521808682721518 -v 0.64166017535349262 -0.90410558524238815 -0.29239437867619689 -v 0.86415554943247741 -0.87138676603395115 -0.43276844193125241 -v 0.38523332007429767 -1.1499005424728275 -0.31070481364583324 -v -0.24921148419310865 -1.3338191932430992 0.011141720338656791 -v -0.50309619098453284 -1.2234158522775493 0.29918216435998668 -v -0.64020208293133918 -1.523793654000279 0.14316545393847369 -v 0.87516877553646699 -1.0957888394320017 -0.63533127713011761 -v 0.0057321570316386196 -1.1915221531291049 0.87717108550928113 -v -0.33918811863494058 -1.2786646947438345 1.239104854037788 -v -0.63237069419665048 -1.0008984515557735 0.15255403874139639 -v -0.40387191565571473 -0.80832328371485784 -0.62155775147756986 -v -0.96091963165321015 -0.79133378704378099 -0.66203617771943435 -v 2.7021753547724718 -1.5264812818937263 2.0745410303895779 -v -0.53348885012769587 -1.4905067136351509 -0.9256845929052725 -v -0.69406096049988086 -1.4108301115745228 0.99282270944383255 -v -0.25671752851819307 -1.5445549589673075 -3.0203916695761674 -v -2.7525379920141337 -4.1507701112339097 -2.2586346836565054 -v -0.48937393701216636 -2.2234040535493063 0.31382554013226027 -v 3.2882623287416806 0.020420218064704586 4.6068158474523671 -v 0.10333861566837745 -1.2679097476705108 -0.77545706174925721 -v 0.75015140051999829 -0.73015833699363353 -0.48900859559352383 -v -0.33722113751068433 -2.1236205517057862 0.45925002445583862 -v -0.92562776961991311 -1.2168304846810449 1.0909938094964042 -v -3.053844991341772 3.3765568433965911 -2.9633217692245086 +v -0.20304883797309345 -0.16613918832849806 -1.2560288335046903 +v -0.28896045074657783 -0.28244725723151159 -1.3005763201974843 +v -2.245305087489172 -3.8814922234944618 -0.7132958943699359 +v -0.5400652606404146 -1.5597562336363209 0.14873485251452259 +v 0.035145639407646208 -1.2019771625610209 1.1563223963855895 +v 3.6832952892002617 1.3900860677041302 7.0025719313553534 +v -1.1714525013358559 -1.7396079593970657 -1.3159541937476704 +v 4.3162308085882328 2.1543796562276829 7.4867718772147498 +v -5.8100333561667785 -7.7626598714175765 -4.153755243126966 +v -0.52742149384716042 -1.5935163672982837 0.24102283943326219 +v -0.29503300296666279 -0.053687481919466554 -1.703053837265091 +v -0.69663056453534211 -4.3869133218158911 -1.8703196363850272 +v -2.5469861523335213 -6.9460113142862747 -2.8352327139241682 +v -1.6692364319092219 0.6951469611500124 -1.7291806247720842 +v -0.37515248023885689 -1.4696077664478833 -1.453250473442562 +v 0.7740078761536332 -0.96853957429963156 -0.96376780794769101 +v -9.3186423516295367 -10.188079503077995 -5.7488017083243097 +v -1.9401709642047653 1.1887867293695102 -1.7828733715035345 +v 0.26742969120728788 -1.015415104031701 -1.1619912334749722 +v 4.0519136240718892 -5.2581091419338097 -0.14442317465958854 +v 0.35964105301847826 -0.96185697743453091 0.13818244669701318 +v 1.2313867496710238 -1.1450363636103686 -0.4379108487512986 +v 0.417870511411777 -0.92046743288455179 0.13949817848855306 +v -0.30998845624750077 -1.1564209097277969 0.33189273425565413 +v -0.99852067013816626 -0.71539884787213448 1.0068317548298262 +v -1.0351814785681945 -0.76930068678356012 0.98534015026759181 +v 1.2437514636513218 -1.252827256563662 -0.52414826566057382 +v -0.70346324125551585 -1.075855701627787 1.7202435008951347 +v -0.59941455999552151 -1.0633355883679891 1.5618507260640686 +v -1.0354434329143516 -0.59414223484589757 0.86574323894965355 +v -0.65633297464813301 -0.14573416571321926 -0.76137334709030791 +v -1.5013617296984412 0.29195367024139024 -0.88102696686797921 +v 3.4839930236114003 -2.8647928962345861 1.3226338420954173 +v -0.51618702504916036 -1.4580388210578374 -1.0624317594944084 +v -0.82122377970303451 -1.1641801738706787 1.4418898027069815 +v -0.23542255053182648 -1.7049809108710872 -3.2222494704517817 +v -7.7105251673810002 -7.943584464427687 -4.7244984889680293 +v -3.3819482849061644 -3.6134728268119511 -0.80290150230628043 +v 4.8782622108369189 2.174968319358412 8.364504133598988 +v 0.15885152503512637 -1.0961177258787005 -0.78265920218562246 +v 0.86719409854452456 -0.59547905514952515 -0.45779837772687237 +v -0.56903789783545555 -1.6318556155985957 1.1886256619110138 +v -0.87727645205085536 -1.1104993351717445 1.4645463415646027 +v -3.6596669558408714 4.3695558491855477 -2.5244011353194487 f 1 2 11 8 6 7 9 3 4 10 5 f 1 2 19 15 16 20 13 12 17 18 14 f 3 4 26 25 24 23 21 22 27 12 13 diff --git a/results/search/topology_3/resume.planes b/results/search/topology_3/resume.planes index c2368a42..aaa082ed 100644 --- a/results/search/topology_3/resume.planes +++ b/results/search/topology_3/resume.planes @@ -1,37 +1,37 @@ 36 -0.25812089443206787 --0.089519761502742767 --0.15338052809238434 -0.21087507903575897 -0.17746423184871674 --1.1315137147903442 -0.31861361861228943 --0.36370065808296204 -0.42023575305938721 --0.011089644394814968 --0.91188240051269531 --0.23012164235115051 -0.36671355366706848 --1.129234790802002 -0.077590301632881165 --0.4323786199092865 --0.00035904863034375012 -0.38066118955612183 -0.017251163721084595 -0.086394280195236206 --0.20114235579967499 -0.77137815952301025 --0.78473347425460815 --0.26861977577209473 --0.69283139705657959 --0.64261096715927124 --0.36436861753463745 --0.44971299171447754 --1.1870735883712769 -1.2850342988967896 --1.1138958930969238 --0.63161325454711914 --0.13088075816631317 -0.3682786226272583 -0.21181619167327881 --0.21462997794151306 +0.23194952309131622 +-0.1395999938249588 +-0.082845345139503479 +0.38382819294929504 +0.1013646274805069 +-1.0048787593841553 +0.28901317715644836 +-0.42479848861694336 +0.57240784168243408 +-0.25259828567504883 +-0.54481780529022217 +-0.20899753272533417 +0.34661152958869934 +-0.94442594051361084 +0.15303824841976166 +-0.83882325887680054 +0.35972380638122559 +0.52867919206619263 +0.13089390099048615 +0.1229078620672226 +-0.47481918334960938 +0.57437688112258911 +-0.80783301591873169 +-0.0074590430594980717 +-0.58639883995056152 +-0.49685248732566833 +-0.27355298399925232 +-0.38003498315811157 +-1.0747157335281372 +1.6061440706253052 +-1.0638670921325684 +-0.59158957004547119 +-0.070657685399055481 +0.42807582020759583 +0.27353501319885254 +-0.28052264451980591 diff --git a/results/search/topology_30/resume.obj b/results/search/topology_30/resume.obj index a0497538..8a174356 100644 --- a/results/search/topology_30/resume.obj +++ b/results/search/topology_30/resume.obj @@ -1,47 +1,47 @@ -v 2.152658366327993 -0.12718951118562338 -0.80913489126492677 -v 1.9056579449813253 0.13391864052443961 -0.72318134480599161 -v -0.041951315588951703 0.51236372895058258 -1.3153021641513298 -v 1.1704886387718536 0.61395702917426886 -0.69188218645317745 -v 1.7870093594481335 3.2612725009021162 1.586640997073637 -v -0.2591611860658542 2.3124348972807121 -0.05293479559371761 -v -0.66070724970206751 1.7627519981838078 -0.64936891798723295 -v 11.290702900600021 5.8390493389377163 7.8195293763250193 -v -0.055658976720578936 1.2680843071325809 -0.75039034271703375 -v -0.22826568293202595 0.84314143674891029 -1.1493386629390567 -v 0.025111208609543304 1.1986386160282649 -0.76645345992092873 -v 1.827122179352149 -0.21283875611241185 -0.74127835999488334 -v -1.241543514684974 -0.01962830919365062 0.0041302853482900748 -v -0.32889252442534062 0.30289316212143869 -0.17739803738889592 -v -0.88747508556740395 0.45434781130411456 -0.029421864013531307 -v -0.76374676832355748 0.8070229079425012 -0.021376315018055619 -v 4.0040605611921674 -2.833860046075197 -1.5326262506457533 -v -8.5856446743801929 -3.0080026296796785 1.423344525132975 -v -1.1620317593525333 2.167815063973678 0.21655299773655912 -v -0.42750605673482872 -0.089171340332603752 -0.19554044250111283 -v -1.3917361944133106 -0.57033829638777167 -0.45783414512072107 -v -0.20318109059307671 -0.20441926064015231 -0.74771443732540832 -v -1.0727402197711426 4.7776843496499302 -4.6925886775562713 -v 1.6825074859234452 0.0042070887252419814 -0.91312507406734134 -v -8.4342832803453973 -2.8943950203712348 1.3832211781497254 -v 0.23303604393023661 1.1630487407008088 -1.8305645366863426 -v -0.0092813309118032206 0.91839894171603198 -1.6368162465406848 -v 0.14115154259569937 -0.22014582486549428 -0.73530082066118529 -v -1.2197101502291761 -0.2747218647133034 -0.25996103273035231 -v 1.4109607302893257 0.37761105918224119 -1.0572968482207843 -v -0.21059959915195431 2.0768718407094964 1.5110758124953487 -v -1.3575669425652734 -0.26240177957360639 -0.17221457993389699 -v -0.26820349720273179 -0.13447630594077437 -0.64294227447990859 -v -0.092936374630520943 1.9442525182744275 0.76510106329203165 -v 0.13804391130453011 2.7389028724106597 0.64948227106500744 -v -1.2586276877013745 -0.23510460417319751 -0.40682392010214929 -v -1.2933033038130217 -0.34968106304939589 -0.39399134879852482 -v -0.2742385161587757 2.0292792219671871 1.5276131046848667 -v -0.73072863397919996 3.1109751509996775 -1.0878751642963305 -v -0.11836985779998915 1.9511264821280137 0.89848623632962621 -v 8.3567455478607275 -5.5704433712026029 -16.204475704367386 -v -1.3923935893886465 0.89024229306888347 2.3999742727900095 -v -0.41507002326412767 -0.1481953335488263 -0.33192433351229761 -v -0.30417262216293117 0.034627176665599183 -0.64146998274592992 +v 0.39933912820036221 0.078378564314370722 -2.1609130198298536 +v 1.9400490263420076 0.17180782550939974 0.24649110388432227 +v -0.007994206767527821 0.35203206172030221 -2.2211939722524296 +v 0.71715545008335757 0.64625477435989631 -0.60483880635055165 +v 0.53095679703524223 1.5629710100859167 0.8964110535232086 +v 0.12869192632663756 1.445787258904123 0.088661658763140583 +v -0.72094179738469943 1.3145897084680054 -1.3927869343747905 +v 1.5253127615313415 0.73751843605358869 0.73953768868385095 +v -0.13311374495361247 0.63203638872082191 -1.8612928847908965 +v -0.15582137722502151 0.54613072448697297 -2.0600180554166809 +v 0.0074807121313282803 0.55273153017093057 -1.8112304874547365 +v 1.3549630011691649 -0.1892040491891081 -2.1203593888536623 +v -0.6607812365784842 1.1290162171904963 1.1577936289414699 +v -0.12314929457275781 0.75878615899638913 0.20028223481401319 +v -0.52660291061742648 0.73311619639475734 -0.43550013702093621 +v -0.62392795074799923 0.72230794454962266 -0.60946750457723331 +v 1.2134847178197044 -0.014499938867031032 -1.5235493438602434 +v 5.4826010465565087 -1.2416817658815238 -1.4842567379265885 +v -2.4964608215011017 2.218749766565193 3.6489909188242611 +v -0.14728723278532579 0.94406696141799995 0.99588473491088703 +v -2.4007996954268243 -1.6271049397454469 -1.6090638498571952 +v 0.35514766488279714 -0.48483083188840509 -2.0077274643729193 +v 0.31412280023315192 5.4451927562524318 -3.6039091451060181 +v 2.6756970395030839 -2.065879075944999 -1.6583672556768445 +v 5.5000018250530855 -0.75089770388849919 -2.1058134059730573 +v 0.09058682309500983 0.69084045573576391 -2.3157210712480021 +v -0.095636583484345977 0.53417182968594457 -2.267370108095121 +v 9.2515130134242529 -1.9635583690751275 -1.9029131792577345 +v -34.318486984725745 -35.64995122076153 -27.836926748689841 +v 1.1144102199709773 0.13087498661559993 -1.6710483181828404 +v -0.00066319709338517646 1.6444452732560353 1.421022807242164 +v -0.53365915882613058 1.2961648651086857 1.3091914128014199 +v -0.12607917347886252 -0.054113915780763779 -1.0033298038572696 +v 0.094397139615139236 1.4988701375888118 -0.03017778222117129 +v 0.49657634915927951 2.8173046877589276 -0.59953303031418548 +v -1.0849353896527572 0.084075823109623318 -0.83980627876654312 +v -1.0238761746457865 -0.4823981091862205 -0.15089468008301762 +v -0.11320312307987775 1.7307024536475433 1.4475551313023067 +v -3.8039264015486216 7.0091614882646986 -0.68271540126423336 +v 0.071661911509640325 1.5184952043578241 0.27315275712099307 +v 7626.8762715081666 -10359.139102942048 -9029.9574421990874 +v -0.21892823569500594 1.689721305830838 1.6219264947070031 +v -0.35619615276488742 -0.15983974948341542 0.084863411438224345 +v -0.16154370843016458 0.12319943861458185 -1.2132236728709822 f 1 2 8 5 4 6 7 10 9 11 3 f 1 2 20 14 13 15 16 19 18 17 12 f 1 3 26 27 22 21 23 25 28 24 12 diff --git a/results/search/topology_30/resume.planes b/results/search/topology_30/resume.planes index 95ddcfce..031068f4 100644 --- a/results/search/topology_30/resume.planes +++ b/results/search/topology_30/resume.planes @@ -1,37 +1,37 @@ 36 -0.42779946327209473 -0.71703219413757324 --0.9488416314125061 --0.06357371062040329 -0.028442163020372391 --0.26908969879150391 --6.3532112108077854e-05 --0.44268757104873657 --0.55906981229782104 --0.15815898776054382 -0.28515836596488953 --0.28851839900016785 --0.82931786775588989 -0.28418567776679993 -0.29642388224601746 -0.94480061531066895 -0.74187302589416504 -0.14191953837871552 --1.1135610342025757 -1.8177672624588013 -0.94613349437713623 --0.74896544218063354 -0.54159218072891235 --0.25283795595169067 --0.013269451446831226 -0.067165687680244446 --0.030277816578745842 --0.15768414735794067 --0.027678823098540306 --0.67321944236755371 --0.40021711587905884 -0.10444445163011551 --0.081694707274436951 --0.47502082586288452 --0.099048227071762085 --0.22867974638938904 +0.61249589920043945 +0.81835591793060303 +-0.42374974489212036 +0.17315573990345001 +0.59808224439620972 +-0.13402865827083588 +-0.065357238054275513 +-0.53359997272491455 +-1.9807138442993164 +-0.20485137403011322 +0.40010511875152588 +-0.26972585916519165 +-0.44066652655601501 +0.23458957672119141 +0.23195375502109528 +0.76952147483825684 +0.54704636335372925 +0.022284023463726044 +1.0397182703018188 +1.0842322111129761 +0.88522225618362427 +-0.64260280132293701 +0.69391238689422607 +-0.22653907537460327 +0.0059178918600082397 +-0.098451077938079834 +0.11793851852416992 +-0.14534205198287964 +-0.51886367797851562 +-0.41376611590385437 +-0.28361609578132629 +0.075233198702335358 +-0.026125075295567513 +-0.31302788853645325 +-0.15928642451763153 +-0.081670902669429779 diff --git a/results/search/topology_31/resume.obj b/results/search/topology_31/resume.obj index c0b1c781..d712f421 100644 --- a/results/search/topology_31/resume.obj +++ b/results/search/topology_31/resume.obj @@ -1,47 +1,47 @@ -v 2.2134516233706347 0.24280258734531199 1.5362326447007348 -v -3.9185857401888748 1.1587812076558923 -3.2839698653044049 -v -0.17318328513395817 -0.024465012901231178 0.51670187295347259 -v -0.45299567554206721 0.30751575006925869 -0.10171252311115561 -v -1.0263495396404849 -0.57833899809855438 0.78159754382451418 -v -0.63786290573672477 -0.1403326341334333 0.40584656525077512 -v -4.0466382590924974 0.93495790033859105 -3.0510218175029498 -v -2.6702124248880015 0.95509155817625535 -2.2790271748593129 -v -4.6080692862804824 -0.55143369597780567 -1.3361639108859211 -v -0.84822268678639867 0.03225631086175574 0.046648277625516613 -v -0.23196188003567378 0.54783243903411682 -0.30329039013286752 -v 1.0673837165708642 -1.7452487673818289 -1.9941967734184554 -v 0.37070908488738702 -0.82454069571219535 -1.5473204169219277 -v -1.2601744902241372 0.14355411212055597 -1.9470312871977367 -v -0.163716756493584 0.51940059365429792 -0.42797495948273212 -v 3.736160530377008 -1.692262509476715 0.6536512240779967 -v 0.43456417444100831 -0.3043905422818538 -0.8520684468691142 -v 2.4173732677366373 -0.001447859072760631 1.4361751401383918 -v 1.408909208545613 0.35011134145347245 0.88813329480819447 -v -0.16916789722500231 0.58019824369292883 -0.35921185776578562 -v -0.4287429877709254 0.26638151141234595 -0.30892301025149577 -v -0.39912708596074054 0.23586491402065426 -0.14596079040635146 -v -2.630826560154738 3.0411591223297449 -1.7544386924544881 -v -0.13845156469228886 -0.14751949636251319 -1.1336376466646447 -v -1014.1270133768357 1267.9400423069405 -869.49341468412445 -v 2.4638092397963551 -3.4673789398120118 -0.28702432106680342 -v 1.8388355422570009 -2.6441301196153089 0.056863711322008827 -v 2.0569552785701677 1.9642845572994883 0.59879858868428948 -v 7.9252753784674512 5.3264272977510849 4.679581547981627 -v -0.7273038158176357 -0.12818805784655071 0.15360051325048432 -v -3.3052784066578971 -1.9183836218924761 -0.70008693423414381 -v -3.3746710048758897 -2.0064623404768724 -0.60346471356036124 -v 3.6714699609120212 -2.115874549729428 0.51552716812713051 -v 0.88753458102558735 -2.6286507795315175 -1.1596372521681748 -v -0.42003056576885806 -0.87222360867236726 -1.4651912807590537 -v -2.122645239391983 -1.6913087270973801 0.10984789578025772 -v -4.2906455311999165 -1.3982702428150426 -0.90700787554712026 -v -0.82611899594975879 -0.53884762195381342 0.25507808687797667 -v -2.4142700818057254 -2.5642226177677063 -0.35646862491598719 -v 0.062510127684717684 -3.2184028171944354 -0.41874452569021836 -v -0.037801560990957973 -3.0354353070090734 -0.33820349367650226 -v -2.1892114815458132 -2.4280072299681947 -0.53658607165836969 -v -2.1756620651169682 -2.3977382506533029 -0.52525706405953099 -v -0.019099565644892739 -3.0052983263160336 -0.35562658188129631 +v 1.2205535913629895 0.10352907324644237 2.1057137028968804 +v -2.3486630521870726 0.8480351521965811 -3.4411484227119518 +v -0.44730395228330688 -0.15903328577997436 0.38683020439494947 +v -0.46556032142205317 0.24969757771138393 -0.22067812991945829 +v -1.0536795944138628 -1.2979031003335975 1.2542308722412123 +v -0.64685734279617557 -0.29900365008440966 0.33643233512366966 +v -2.8377814042691711 -0.4144602269866523 -2.2496878944437095 +v -1.8460552974523208 -0.017803637205390781 -1.5716426186637915 +v -2.6986151469474704 -0.91415419502870332 -1.3602480849981502 +v -0.56818602287144171 0.012802999082640277 -0.010734334169075301 +v -0.45346302168343927 0.28678461884926709 -0.25853029881734146 +v 4.4261814064168794 -3.0063033615980377 -1.9035280350713069 +v 0.94165121411705266 -0.54383521752473907 -0.92629885044897098 +v -0.54118818432376281 0.24456463609655116 -1.4662096652328005 +v -0.37798180554616156 0.40335680968243448 -0.50234134997543123 +v 3.1346467778042322 -1.5447377408007346 0.48017122896088577 +v -0.14534469838333519 0.23769608003660486 -0.57222235799851884 +v 1.7483364680138853 -0.31482926642845149 1.790553085598531 +v 0.28176535944785336 0.27436482659817252 0.55472878474368925 +v -0.3862226795653636 0.4289885546816547 -0.42707530432537594 +v -0.40327910970329212 0.34191943793931806 -0.44899695271092427 +v -0.43487422091707023 0.24104589976087212 -0.24945643056582489 +v -1.1505650118253397 1.1920251377254192 -0.73779865230273034 +v -0.35466626631040493 0.40777148129889362 -0.61772004259793956 +v -131.71411056023237 214.12684832857886 -150.87946379296304 +v 2.536775301515287 -2.6495537060223735 0.14073309039679918 +v 2.4331788769069043 -2.5882622945469347 0.18823318216938947 +v 0.3112530345574383 1.6811772558641003 0.22490837990533563 +v 122.18660399945054 223.74891453269402 150.21474858334324 +v -0.53172461797712045 -0.0062099341455942401 0.021081477947919092 +v -1.9080287456329281 -2.7203101241273027 -0.53658828387971758 +v -1.9872125119393189 -2.9159857511919838 -0.35106534605373035 +v 3.4336407139208123 -2.2618056810035001 0.36279779948068003 +v 2.3402313568228834 -3.714328782018772 -0.77523574206648227 +v -0.51913463132988691 -0.65665914438184314 -1.1142699794076956 +v -1.3133110841105953 -2.8980321233662942 0.16393255071746068 +v -2.3738920061292861 -2.3013648156555555 -0.77242443294098762 +v -0.39029177736335019 -0.65811868862813583 0.28903524914256773 +v -1.3640096252624121 -3.3482257018968626 -0.14395029120290759 +v 2.3135721648924576 -3.8356566354424118 -0.6659017018734914 +v 1.1612621528989273 -2.9167667286098085 0.025973073751920595 +v -1.2822210702093071 -3.1572656961438748 -0.32614846058817698 +v -1.262447448167257 -3.0584943831029876 -0.30348460864141213 +v 1.1468752532886173 -2.8479777292444748 -0.0029039547187553194 f 1 2 7 8 9 10 11 4 3 6 5 f 1 2 12 13 14 15 20 17 16 19 18 f 3 4 22 21 24 23 25 12 13 26 27 diff --git a/results/search/topology_31/resume.planes b/results/search/topology_31/resume.planes index 605c42e2..84f035c9 100644 --- a/results/search/topology_31/resume.planes +++ b/results/search/topology_31/resume.planes @@ -1,37 +1,37 @@ 36 --0.10521635413169861 -0.24868859350681305 -0.18110941350460052 -0.25530326366424561 -0.32119446992874146 --0.2637486457824707 --0.13183777034282684 --0.10210662335157394 -0.0048388377763330936 --0.23263385891914368 -0.28903350234031677 -0.096402592957019806 -0.41573229432106018 -0.17972813546657562 --0.74591612815856934 --0.13498061895370483 -0.11153730750083923 -0.31993007659912109 --0.099731825292110443 --0.46669679880142212 -0.93599599599838257 --0.45780652761459351 --1.5660892724990845 --1.7564026117324829 --0.10896449536085129 --0.81117653846740723 --1.5200672149658203 --0.080818764865398407 --0.14884738624095917 -0.49435093998908997 --0.41634500026702881 -0.29701054096221924 --0.29561054706573486 --0.23995432257652283 --0.010318511165678501 --0.27541577816009521 +-0.19588805735111237 +0.22310730814933777 +0.15599299967288971 +0.12917445600032806 +0.2048628181219101 +-0.055622439831495285 +-0.12327303737401962 +-0.1388385146856308 +-0.089705877006053925 +-0.42551803588867188 +0.20801471173763275 +0.037781249731779099 +0.21756725013256073 +0.15792886912822723 +-0.41060775518417358 +-0.19054201245307922 +0.064180105924606323 +0.25671768188476562 +0.071654684841632843 +-0.97786569595336914 +1.4180591106414795 +-0.47404509782791138 +-1.5778602361679077 +-1.8665372133255005 +0.17355294525623322 +-0.42324641346931458 +-1.0946966409683228 +-0.047249879688024521 +-0.092273019254207611 +0.44335925579071045 +-0.52273911237716675 +0.12776714563369751 +-0.10074558854103088 +-0.24207234382629395 +-0.14116896688938141 +-0.21568013727664948 diff --git a/results/search/topology_32/resume.obj b/results/search/topology_32/resume.obj index 84feb334..9eac0bc1 100644 --- a/results/search/topology_32/resume.obj +++ b/results/search/topology_32/resume.obj @@ -1,47 +1,47 @@ -v 0.5794826387197195 0.3808126362479165 0.46244135789945084 -v 0.50338206730437818 0.51501509937527257 0.54185598774349442 -v 1.8518085747213875 7.105707023848832 0.14800662442211401 -v 1.8072797047748526 6.7068012629697416 0.14053314452984828 -v 0.42754490717689153 -1.2101094212064647 0.41097656786157566 -v 0.78603262262170437 -1.2872040691500977 0.099593289201381913 -v 0.31127798113684285 -0.8315720354136602 0.55190944823255472 -v 3.0190487283996976 3.3156363760712724 -1.2657120623894831 -v 0.81436787812071698 -0.75299953243558226 0.13602552793362666 -v 0.63826507502963192 2.1856620199611414 0.61672768870666439 -v 0.3173515216138344 -0.44362685842371985 0.5906125943525371 -v 1.0136801004306348 -0.38132279199042796 0.0063584774622227891 -v 1.3350814741350019 -1.643995450086257 0.25175635660662821 -v 0.48961715054182736 -0.83264178881399953 1.7012539094801644 -v 1.2060868822155688 -1.2326872120615819 0.23294312646612189 -v 0.41277264926386281 -0.14308368460556872 1.3190319648929734 -v 0.4904479467191083 -0.33167610427847399 1.2810509423550616 -v 0.9582672419665631 2.1877356791142315 -1.998430378406558 -v 0.30298412530298802 3.5770392096557808 -1.5096763634822228 -v 0.31452784640999898 2.6362452557497633 -0.75351299606153233 -v 0.0068561371962097733 -1.4988473118106824 -0.52788258420853551 -v 0.27494582438143966 -1.4441738948987508 -0.374401303172674 -v 0.36923970886292751 -1.9125875698475676 -0.29787719564784887 -v 5.9553792616903172 11.148792869552478 2.349095471001335 -v 0.28479775351342684 -0.57597495583202685 -0.40879990207601569 -v 1.5842360613781519 6.329035410912736 0.028200003718439004 -v 0.37228324092253856 0.90213746254839011 -0.42621416156105252 -v -0.56740743208737465 -2.5774636783557177 -4.1636873023240577 -v -1.1872117129580604 -2.6304004603734037 -4.265848556775631 -v -2.6466448716811488 -1.9237238556957281 -1.6471045787979526 -v -0.0066330166816194963 -1.3568841257814359 -0.037868381115143457 -v 0.26146346866976755 -1.5580385527200455 -0.76429460543447481 -v -0.88581007008685198 -5.3511093246803894 -5.3501996446338582 -v -4.3585464629077988 5.9750192750372229 -1.1234906899614669 -v 0.0042271054474489825 -1.1255958407726918 -0.20609686293479834 -v 0.29271921937311463 -1.2768813322348631 0.13259219225644081 -v -0.79676385705266706 0.24868337631961165 -0.31282465864297315 -v 1.6391550021269239 6.6837042368404855 -0.053793415531447897 -v 0.33892026703640032 4.9898364947615343 -0.92166565675502254 -v 1.8743541317194521 -7.6949642484653449 6.2573568214116531 -v 0.4556716757419938 -0.9565792934779741 0.014033494086651221 -v 0.33993342562020673 2.4281301901251555 0.1531133451769256 -v 0.50653022968120032 0.967665299219442 0.12935268964598101 -v 0.30671618182752086 0.10654791298317434 0.022727236837696355 +v 0.60922317462886832 -1.1370023135945486 0.50647022657629859 +v -0.038103065100874023 -0.44647142444330734 1.273435599824924 +v 2.2900134905101908 -1.4298084555128023 -0.88860650158394727 +v 3.6966902446308145 4.2246698436538752 0.28906433302760082 +v 323.81332455877492 -471.09030724949503 -432.19394684481773 +v 0.82766027829052058 -1.6589271471571925 0.13281220590976739 +v -0.32486978982566378 -1.7027752117422501 0.99218014513951047 +v 2.1605622594438199 0.46607400028116946 -0.036458554147275279 +v 1.4862536376059383 1.5370802879557959 0.90228361412617741 +v 0.8289410424025343 1.4700727492962093 1.3757033641735235 +v -0.76938456957619605 -0.52548775285857763 1.7983541056919519 +v 1.8290610752468552 -1.8990551103740831 -1.3062433656444896 +v 2.7153128776943052 -5.7228201823845195 -0.39490684703164186 +v -0.59165711328193904 0.38114847934843127 1.767718522701796 +v 1.1819226404311092 -2.1364906144610001 0.092701828441091705 +v -0.41771335436231577 -1.9761594532028164 3.0415127643083366 +v -0.20184789362353284 -2.3107461401548028 2.8568328171040838 +v 1.7208332281617265 -1.7747324023027671 -1.1840579747145512 +v 0.23805318126600619 1.0027172622542357 -0.24201165298664329 +v 0.16321779234121231 0.99838777818926883 -0.095996736432377605 +v -0.86944353213784764 0.26866444824925567 -3.8638653993207219 +v 1.1768868198745763 -2.3013691531959668 -1.9031313472047684 +v -2.6743374219168494 3.7656286778554438 -5.6214693416140307 +v 5.2785554675660737 2.8059244444602882 1.7917383228808805 +v 1.1867148110710184 -3.3152711846490663 -1.8707488858267423 +v -10.867057604170892 27.127576797290349 -13.771245444641497 +v -4.1784111083662525 13.580073099687576 -7.2443578926425536 +v -0.16299275620926246 -0.43092519278372748 -1.0045924214036799 +v -2.8886054332747446 3.3111117704111996 0.092186875031739779 +v -0.91114463914647437 0.78662495321887105 1.5107261090891995 +v -0.54804400519197338 0.25978329995037158 1.0350930651095136 +v 0.26193409115500854 -0.92959409148342631 -0.19033098169712148 +v -0.29740078801378961 -1.2407246829667042 -1.4135154393263143 +v -4.4497831379090664 5.4921611807654163 0.73794800437443286 +v -1.6167774421476082 0.40623426072387697 1.594310821209286 +v 1.5941555391968927 -4.2605731937286748 -2.6164850646818434 +v -2.6467433229813579 2.4411328729416537 0.40557216823825304 +v -2.5790437388229344 3.0975399152060881 0.066072278357854952 +v -0.19715516939369823 2.8440131469837828 0.51228462508455874 +v 0.77024738496696032 1.6382559986999317 1.2787678166051841 +v 0.4822497721176639 -0.016406443191534784 0.41515824889481773 +v -0.3153556153217798 2.331917616808683 0.76858981573654706 +v 0.48703045853781995 0.1676907594788421 0.45399786982252732 +v -0.1096222366259663 0.643236594601308 0.45360211306621534 f 1 2 11 7 5 6 9 8 3 4 10 f 1 2 17 16 14 15 13 12 18 19 20 f 3 4 26 27 23 21 22 25 12 13 24 diff --git a/results/search/topology_32/resume.planes b/results/search/topology_32/resume.planes index 9448e4ba..971531cd 100644 --- a/results/search/topology_32/resume.planes +++ b/results/search/topology_32/resume.planes @@ -1,37 +1,37 @@ 36 -0.44459474086761475 --0.059494484215974808 -0.526580810546875 -0.70156371593475342 -0.23278190195560455 -0.27890950441360474 -0.26091486215591431 --0.020725209265947342 --0.44836390018463135 -0.046450287103652954 --1.2391371726989746 -0.36027207970619202 --0.28400248289108276 --0.15201561152935028 -0.17400833964347839 -0.33020448684692383 -1.0523428916931152 --2.5486159324645996 -0.37902787327766418 --0.37420091032981873 --0.49000024795532227 --0.34743702411651611 -0.11999344825744629 -0.28632861375808716 -0.43844765424728394 --0.0052763214334845543 --0.10532401502132416 -0.25695887207984924 --0.052706297487020493 --0.055874869227409363 -0.022076616063714027 -0.0036741320509463549 --0.071043796837329865 -0.30433535575866699 --0.0038261478766798973 --0.0094064055010676384 +0.62284642457962036 +-0.32546266913414001 +0.81871604919433594 +0.33474829792976379 +0.11931925266981125 +0.17510272562503815 +1.5203238725662231 +-0.037509985268115997 +-1.6358602046966553 +-0.26908886432647705 +-0.20106549561023712 +0.017289254814386368 +-0.88018327951431274 +-0.50842154026031494 +-0.10770032554864883 +0.14242781698703766 +0.2799561619758606 +-0.60121780633926392 +0.18117159605026245 +-0.2458488792181015 +0.41062527894973755 +-0.20627167820930481 +0.8366166353225708 +1.5764262676239014 +0.22990112006664276 +0.017128383740782738 +-0.1094854325056076 +0.2786860466003418 +0.35002574324607849 +0.44093644618988037 +-0.05236353725194931 +-0.065435431897640228 +0.31660488247871399 +0.11073717474937439 +0.0028888003434985876 +0.05684053897857666 diff --git a/results/search/topology_33/resume.obj b/results/search/topology_33/resume.obj index 1ac647b3..7f1cc528 100644 --- a/results/search/topology_33/resume.obj +++ b/results/search/topology_33/resume.obj @@ -1,47 +1,47 @@ -v 0.60960599599484677 0.12070660919030944 -0.87921151458034008 -v 1.8680528659244471 -3.4452738702525205 -1.3706006029838169 -v -0.53000613592889223 -1.8990799207049482 -1.2302239638196013 -v 0.26099608411838332 10.572461503440234 0.69208598413484512 -v -3.0924452219075458 24.758759259126212 2.7118070461652581 -v -0.98499005261921824 5.2550114217220889 -0.16318118563339157 -v -2.7646183486465925 23.845016613152399 2.586104562362582 -v -2.087852024934389 0.46979906871253285 -0.93211998294054743 -v -1.7220656972907222 0.52854976905660722 -0.90885729474762322 -v 11.942379067576525 -43.816917270833159 -7.0975245579524548 -v -1.8043718039249061 22.73733311264316 2.4558074574013755 -v 1.0717820150980835 0.95222911498679852 -0.39962876232066535 -v 2.7076055060701525 -10.101702732642758 -3.0170182660164615 -v -0.53524008872768125 0.74977010077285422 -1.2383034927981686 -v -0.95318777460030868 5.0228231992515324 -0.12294853765671715 -v 11.573712378430104 -23.85171496009983 -2.9729721489588306 -v -1.5447994930354541 13.030304491889291 2.0597208421140429 -v 5.7442156031314422 -14.82588006991392 -3.0065094747942123 -v -4.6376690775541674 0.7361760774383439 -3.224149996586867 -v -17.965579543726562 47.9811647648012 4.9019581117360875 -v 0.40742107033981362 0.10354660692952963 8.3470414759805465 -v 1.0246225944448812 0.96561144459000881 2.2256813033209237 -v -0.08404910839367985 -1.0175903623696856 1.3872844511353415 -v 0.96943849386672465 0.82541293367038915 1.0545461515936467 -v 0.45580142460046164 -0.072560971218305709 1.2330675479221029 -v -31.839791289185822 -57.90125975214108 -24.769950367575291 -v -1.4687791413250375 -3.618752488755927 -3.0396616921847164 -v 0.42561424353445665 -0.12050484063478227 1.3750905944883138 -v -17.870252629418765 164.81326820706084 27.301024251548483 -v 1.1771962278648942 0.86543008456009551 0.97978052564944329 -v 0.61670053429746285 6.3096781516766391 1.2254064445040351 -v 1.1385156827533438 0.83132657813570432 1.346412070542174 -v -0.89339333166823498 20.509012042845733 2.2870291773875344 -v 0.58651415871200951 4.2455412201449239 3.250058289076617 -v -0.57501574678002965 3.2099724873035935 1.6315640928602317 -v -0.59077683068487341 0.78368014487602866 -1.8086241762565125 -v -0.61322387676868495 3.7111749410291335 1.8823321391020471 -v -0.53607757649942434 2.8484786129576434 1.5769172127980127 -v 38.673530901540623 -115.99694026043811 -13.49557045879469 -v 0.37686964037375098 1.0880418474821214 1.2707738871318555 -v -4.798950698623865 0.20348145708037191 -3.3426398200586585 -v -1.9103917056838569 0.48595088319407648 -0.7573888279385379 -v 0.71384992203489361 0.75835522106227737 1.3824455941552172 -v 0.53364909917582048 1.0912983962705354 1.4116949824426634 +v 0.41343325598424507 -0.60772141187800321 -1.0208928248457945 +v 2.0684353339752795 -5.2593561973414564 -1.6605881230699238 +v 0.25331948436976726 -0.88559383786934354 -1.0707560205982318 +v 0.20882735665702892 9.3729731470415061 0.50219516115544616 +v -2.9124437222134585 27.579736241551146 3.1569900325767186 +v -0.89494654569560861 4.4566883293919775 -0.30223331579690788 +v -2.7818818307173396 27.133327728735022 3.0943281815208064 +v -1.7333472607673224 0.40931126486179176 -0.96132448417351557 +v -0.15870791181401106 0.50129213634945369 -0.87636843607527048 +v 42.136064351376142 -129.19378240766878 -18.88526617089423 +v -1.9976322012869112 26.177440395665553 2.9828542156235001 +v 1.0590993311075236 0.55072920863856623 -0.41245168168477564 +v 2.6740375378539372 -9.6940768328155915 -2.6832371966382191 +v -0.55528455532973697 0.48998673876918225 -1.1154109069470399 +v -0.84741211157438701 3.9582751166194421 -0.23856121436815653 +v 26.658093917449602 -73.975853958133058 -11.050626288325468 +v -1.1481098857943561 12.102723524964349 1.9840982475634674 +v 13.565913987700005 -48.28367937197158 -9.1950037242196796 +v -2.9399241612976419 0.86963295031157506 -2.0183153562339968 +v -20.651811306347831 54.826314274713106 6.0324709580993101 +v -0.094139288900900314 -0.22504298537988934 12.39603150109958 +v 0.98933255621229532 0.66264034295921281 2.0689396624040897 +v -0.29850418602631873 -1.6337705868148493 1.0081116229623597 +v 0.94818187494839234 0.47654338449972572 0.82404689875788617 +v 0.44641560175045469 -0.36551664714250637 0.97654873781092133 +v -26.038002566428183 -47.613310885532755 -21.075829721902664 +v -0.28737164583655445 -1.9776257287694037 -2.8901940078318744 +v 0.36088265269493003 -0.50515226033524474 1.0444989621494456 +v -4.4186332343979524 45.099494431539661 6.5435744786614398 +v 1.1590158087495031 0.49360439071248335 0.74833991020538337 +v 0.64365865502805975 4.8221616028217156 1.0843005436052688 +v 1.1249742100415574 0.47428445835600874 1.0645516153256032 +v -1.8994166635126277 25.953664110401142 2.9618864673246033 +v -0.097555416115374577 7.9520445811463212 4.5493837075541874 +v -1.0243609356916095 6.5237654307788393 1.7466757607003587 +v -0.59938422961133531 0.55779018057545948 -2.4093211083875765 +v -1.5800124540166838 13.932339398646331 5.9543048697053935 +v -0.69292633876385357 2.7730891539620908 1.3285415944143244 +v 44.722216405972539 -136.43859156169336 -19.74445765371529 +v 0.44969146306004903 1.5483511924139703 1.0414488163091182 +v -4.8597369396692986 0.36927121609324132 -3.7465668584998761 +v -1.3465204606050762 0.41053001629459795 -0.54815977324628262 +v 0.87226448893433062 0.45801221649664736 1.0786358913103213 +v 0.57145844202466201 1.384228931515664 1.1590720926092879 f 1 2 4 6 5 7 11 10 8 9 3 f 1 2 13 18 16 17 20 19 15 14 12 f 1 3 27 26 28 23 21 22 25 24 12 diff --git a/results/search/topology_33/resume.planes b/results/search/topology_33/resume.planes index 58d7a150..20e58042 100644 --- a/results/search/topology_33/resume.planes +++ b/results/search/topology_33/resume.planes @@ -1,37 +1,37 @@ 36 -0.035290937870740891 -0.13638666272163391 --0.89936959743499756 -0.44032689929008484 -0.28100588917732239 --0.91156584024429321 -0.3951389491558075 --0.22437921166419983 -0.0082417847588658333 -1.3436084985733032 -0.13138023018836975 -0.15397484600543976 --0.32517856359481812 --0.039458643645048141 -0.029319142922759056 -0.4469565749168396 --0.0097833946347236633 -1.2367606163024902 --0.11925050616264343 -0.72089296579360962 -0.05447513610124588 -0.51463717222213745 -0.32668277621269226 --1.535332202911377 --0.37805646657943726 --0.17548167705535889 -0.40018260478973389 --0.4896216094493866 -0.027215689420700073 -0.54409158229827881 --0.13393941521644592 --0.085757791996002197 -0.15099388360977173 -0.12846052646636963 --0.053887244313955307 -1.4048185348510742 +0.041501864790916443 +0.1416393369436264 +-0.92257797718048096 +0.34309402108192444 +0.2331974059343338 +-0.80808448791503906 +0.53022056818008423 +-0.31070983409881592 +0.028920738026499748 +1.2670416831970215 +0.13960482180118561 +0.14493227005004883 +-0.4733462929725647 +-0.04337315633893013 +0.013859978877007961 +0.36781340837478638 +-0.035096209496259689 +1.0164024829864502 +-0.028233552351593971 +0.46017476916313171 +0.025076333433389664 +0.62523138523101807 +0.4672296941280365 +-2.057802677154541 +-0.30517125129699707 +-0.1428702175617218 +0.28613901138305664 +-0.34574076533317566 +0.015516201034188271 +0.37957081198692322 +0.34250685572624207 +0.1266777366399765 +-0.17781674861907959 +0.065553434193134308 +-0.073483459651470184 +1.0913056135177612 diff --git a/results/search/topology_34/resume.obj b/results/search/topology_34/resume.obj index 843464fe..8b524f1d 100644 --- a/results/search/topology_34/resume.obj +++ b/results/search/topology_34/resume.obj @@ -1,47 +1,47 @@ -v 2.7500046902253499 -0.5020771651315965 -2.7770343159475122 -v 2.3795209277578415 -1.0834365376733726 -2.0835055759351917 -v 0.78715569897986681 -1.1538814725328672 2.6731497416897416 -v 1.2422247677263383 -1.1569221577405995 1.2968377311114663 -v 1.5847733268986663 -2.7183640683798602 -0.87938847840436218 -v -0.12844450582310102 -0.46140674065843312 5.9442316924284411 -v 3.8210194013795964 -7.4325801411040446 -11.079314391340699 -v 1.9959185588255184 0.14830252986491818 -0.02443114131293056 -v 0.42716607623710506 9.0112125374656618 11.193961306952261 -v 3.6036003631890292 11.303783965333412 3.2792435726256146 -v 1.9269788016729195 -1.3163086091364038 -0.88734865506136107 -v 0.48821811117344327 -0.72077387846850483 0.67631859134817884 -v 2.1969722440063095 -1.132583711060583 -1.797403449031953 -v -0.54335270623831411 -0.76264091071400997 2.2377814218137582 -v 0.59222024412540286 -1.7417926267246855 0.75919246190409562 -v -1.6622252491572995 1.0618727214864034 3.4931113697062202 -v -0.55145566631625109 -0.44534449336515797 2.1756005418993847 -v 0.39801808090352042 1.6480124003875514 0.25678964023936823 -v 1.203603487307084 -0.82656868474449385 -0.37494053286030504 -v -0.77846831497424984 2.0228601919410689 1.9385579329810456 -v -5.8525413054897291 1.7795765407260498 3.3135699874300792 -v -1.2743951609063073 0.16011166411643385 0.15894510208070711 -v -1.0435430731374657 -0.036810863124886579 0.77546694995377363 -v -1.1501155225571602 0.17247230189792834 -0.30568907724114452 -v -0.83292742396623065 0.029529190654334455 -0.31739120801608989 -v -0.92525449968854268 0.19313125525414859 -1.1348835084470834 -v 1.9405380137188952 -0.83907919429652167 -2.9853042586966492 -v 0.70413410372355156 -2.3504642645163267 -0.85515727214643511 -v 0.32182375700379734 -1.709151512513168 0.53631647371340474 -v -1.5638831946329783 -2.6075704132427293 -4.2468883159596729 -v -1.8147748692234287 -1.1236366413030721 -0.28543030834459637 -v -0.7586952260820623 -1.3503682464147122 0.30046675614561602 -v -10.970713071545745 5.1032625027822061 6.8537450288539397 -v -0.23566982677680665 -1.1888488430812514 -0.61005298817589182 -v -0.77310592309479331 -0.76090658402329647 -2.2788267505611994 -v -0.34001363794630313 -0.98469445649287546 -0.0073851919712788483 -v -1.6681792093237819 -1.0421520844253018 -0.69943422392592036 -v -0.84322749896019966 -0.32874389369242724 -0.42047993832983882 -v -0.15993363832720586 1.4456011658979853 0.1479778144915751 -v -0.55739902828947729 2.5971275155525988 2.2187091882810961 -v -0.7709586123937332 0.89178363229153745 -0.35743724328146897 -v -0.48681073865261226 3.7342738782452121 2.8835742178677153 -v -0.8402051815048015 -1.1787941949470095 -0.42039050422452739 -v -0.49460203936677183 -1.2741954571412468 -0.13567669909770644 +v 2.1127436539959294 0.50975274510562119 -1.5627573580279588 +v 1.6922153666486726 -0.90497448548498649 -0.64438219994148049 +v 0.49990995390640952 -1.4726657536801828 2.8788177392460645 +v 0.94528756606971387 -1.3497973525786207 1.5389374352031109 +v 1.3881342119061648 -2.7354577043986565 -0.19590945469879323 +v -0.29961302190711564 -1.1584887348586079 5.4268873821372408 +v 4.25134488531745 -7.0400078781395994 -10.169814039707646 +v 1.4998086323499635 -0.65610561031716097 0.015075331069343112 +v 0.19550443590561026 5.6559521797410595 5.720310969607155 +v 1.9442999297336589 6.2975587752641395 0.50170407801898187 +v 1.5253070787378207 -1.1586268566730795 -0.19768253756931314 +v 0.45147491366976872 -0.93943486919088581 0.9898925155815147 +v 1.4244302158750586 -1.1281277249829804 -0.23562600438499026 +v -0.63522096184276877 -0.94657064430870896 2.4152766390533391 +v 0.45412611737061948 -1.8564062554374641 1.2246181611638933 +v -1.910048962881129 1.096183939582325 3.55461349574807 +v -0.62520889745007147 -0.63868919450549222 2.3221838682292679 +v 0.69888466137726912 1.7521090400377954 -0.033378347490224169 +v 1.2836241224548877 -1.006992543980995 -0.082642233806440868 +v -0.73402927082815328 2.2731427367056596 1.7083374970630554 +v -5.3934192068793925 1.7633918502398265 2.5105337547737356 +v -1.3085871841788084 0.36256366143582747 -0.36910853931616527 +v -0.97533060133440652 -0.12171755095284874 0.77323305972195056 +v -1.1890653209544508 0.3991250747549101 -0.74203711286747043 +v -0.91385110153656657 0.23312337414267828 -0.66944864848706298 +v -0.97476088065347144 0.4384874501096962 -1.3132034774198043 +v 0.19307908278116015 -0.01466424988354011 -1.9404637075162841 +v 0.6988710506290271 -2.3928595533162782 -0.38388982773406155 +v 0.23244513500227901 -1.7851893464103497 1.0067741274960316 +v -1.7183539003589277 -1.8742178534622049 -3.8009025696346113 +v -2.0290786151997624 -0.82872300564474044 -0.28698211954108466 +v -0.89776692997405994 -1.3059837443965781 0.36507699592236498 +v -10.488456557096974 5.2723198830942488 5.0645133051559235 +v -0.49453021082891663 -0.74904811450316455 -0.62051845776495296 +v -1.0169100122971206 -0.0042707050740404713 -1.8001302524244915 +v -0.34350936351434258 -0.97756074469332788 0.2830386627132751 +v -1.6369592487578155 -0.46008734326085621 -0.9556721661972527 +v -0.87742861575314146 0.68602085443904581 -0.61968641847812667 +v -0.5615112178532774 1.234340451405076 -0.47388179756872906 +v -0.43996186404827381 2.8529139104630175 1.8835143643870056 +v -0.83744043641981036 1.0303708476628284 -0.67089446329004243 +v -0.34885150826090205 3.6611825545895123 2.1970121169040966 +v -0.94599807539679603 -0.92049446913383781 -0.27443939980950094 +v -0.50149091301898185 -1.2430050566948032 0.20790748499581635 f 1 2 11 8 5 3 4 10 9 6 7 f 1 2 13 12 15 14 17 16 20 19 18 f 3 4 12 13 27 26 25 24 22 23 21 diff --git a/results/search/topology_34/resume.planes b/results/search/topology_34/resume.planes index 94b41b44..80fa3160 100644 --- a/results/search/topology_34/resume.planes +++ b/results/search/topology_34/resume.planes @@ -1,37 +1,37 @@ 36 -1.6706728935241699 --0.40462672710418701 -0.55329161882400513 -0.56301820278167725 -0.087731346487998962 -0.37430682778358459 --0.14741921424865723 --0.32318854331970215 --0.048029232770204544 --0.55917972326278687 --1.3699721097946167 -0.47776710987091064 --0.67984271049499512 --0.56561893224716187 -0.073898434638977051 -0.020973201841115952 -0.065285332500934601 --0.22898723185062408 --0.99402844905853271 -0.50580352544784546 --0.25242534279823303 --0.78727579116821289 --0.0027898293919861317 -0.088356122374534607 --0.14810192584991455 -0.75922155380249023 --0.6528816819190979 --0.13536043465137482 --0.00046399759594351053 -0.16415335237979889 -0.099984429776668549 --0.20112508535385132 -0.33337733149528503 --0.11221977323293686 --1.2726691961288452 --0.2902238667011261 +1.4032795429229736 +-0.12156318873167038 +0.45530411601066589 +0.62934821844100952 +0.12480032444000244 +0.48043236136436462 +-0.17010924220085144 +-0.31956368684768677 +-0.085848808288574219 +-0.77861082553863525 +-1.3791011571884155 +0.34147316217422485 +-0.68636423349380493 +-0.49998641014099121 +-0.011729088611900806 +0.11424607038497925 +0.030693046748638153 +-0.36296463012695312 +-1.1450600624084473 +0.67177408933639526 +-0.30112656950950623 +-0.83670681715011597 +0.056606300175189972 +0.097224168479442596 +-0.090332657098770142 +0.94188600778579712 +-0.8486291766166687 +-0.16568060219287872 +0.046576466411352158 +0.18382541835308075 +0.10915429145097733 +-0.20715336501598358 +0.5023655891418457 +-0.066141851246356964 +-0.84994173049926758 +-0.50734168291091919 diff --git a/results/search/topology_35/resume.obj b/results/search/topology_35/resume.obj index 43d57d26..1ca25579 100644 --- a/results/search/topology_35/resume.obj +++ b/results/search/topology_35/resume.obj @@ -1,47 +1,47 @@ -v -0.68928969461587797 -0.75051062296733084 1.69721161790593 -v -1.0813958673069288 -0.0149165931773967 0.50229440471629916 -v 0.075897869249631156 -0.4103793926819026 1.1703180116038787 -v 0.78460828716423436 0.10733813518628361 0.35598257032217567 -v -2.9502897719701604 0.69612732867413296 -0.69307772621433772 -v -1.0715630149721485 0.30198372143263108 -0.0076469637928320844 -v -1.9464572674239835 -7.7799289669895335e-05 0.45498460068885554 -v 0.27137580854371857 -0.34035253035118512 1.0628672818545084 -v 0.50424259386378456 -5.8655750970494802 9.9647461376915558 -v 1.1501588328064565 -0.21602148818589517 0.88648598032174653 -v 0.47955616037391363 -5.824588853264987 9.8980902105385926 -v -0.60812842884835538 -0.90719713332370577 1.9857521139735197 -v -0.51931730177540669 -0.93332123232544095 0.94885117248024753 -v -0.30394914041217486 -1.092217327737943 -0.67638352175769967 -v 1.6488168538021655 -3.9873239285626356 -1.8762244465206908 -v -0.75663958333783199 -0.65907623928335579 1.8169269269113435 -v 0.26887948609480594 -2.4948404257702319 4.1219959682698368 -v -3.108336485905864 3.4518696669113136 -2.5495686848804726 -v -0.94727209133453238 -0.19225742012045063 0.21971558713271111 -v -4.2807943460820788 5.6281749755592241 -5.9063080320046835 -v 0.81014487083279108 0.18076776923066823 0.8893425140215685 -v 0.58222444876365309 -0.039386759003327991 0.60001253963386847 -v 1.2538368194343699 0.87064072407780491 4.1368982002338424 -v 0.91881609571582334 0.26779888114280159 0.84302315923212956 -v -0.38600432269125279 -0.82919487806937953 0.86491307489376501 -v 1.6763973825078196 1.3597013509115525 5.504373553304025 -v 4.1783888139494039 3.6068209622396679 6.9379646166372293 -v -1.697159844059454 1.7190913874251337 0.75345066051202125 -v 0.54868719703825364 2.8322594817138889 2.7918012927416163 -v 0.20581266627681519 -0.22747164298876815 0.25721298180782454 -v 1.0766198012932648 -0.17052197422918847 0.7592940132893955 -v 0.7110144900061407 0.92379745466788599 1.408860218631399 -v -0.99989861481918996 -1.4750131644114082 1.5317692963356384 -v -6.1716534966051997 -0.063940998760010775 -4.398410624530757 -v -6.8394246460298023 0.66953439966780359 -5.1602191199617309 -v 1.7273313093190588 2.1059286559120287 4.6894567676273207 -v 1.5810076979291385 2.2788333192851917 4.5226134326497522 -v -3.2754641866782745 -3.0643449372319185 2.6476162409202457 -v 0.48486974695427398 0.40839665918913898 1.3335732169729297 -v 0.81355972818724442 1.094345355460713 1.4581073605834936 -v 0.52255529268536682 0.37142551694754361 1.2754706509399951 -v 0.12941700984433702 -0.24127291015923691 0.22800583417677694 -v 0.7748519177709986 1.1394676598118607 1.4133252661184825 -v 1.5922859188656997 2.3212945600075279 4.5938779963711118 +v -0.6201257557119465 -0.72572054272189135 1.6616709945502581 +v -0.99816884694879904 -0.016508950803740166 0.50961005828012407 +v 0.076271509978012159 -0.41239975606292406 1.1760797030156522 +v 0.78847103738471314 0.1078665922648664 0.35773512707638067 +v -2.9654533252337885 0.69999736496619225 -0.6972201887711611 +v -1.0775899526233255 0.30393698115979001 -0.0084560714792052405 +v -1.9560401161335588 -7.8148482299930866e-05 0.45722452905397404 +v 0.27280497977206164 -0.34448196520455743 1.0720531401854194 +v 0.50672561335463095 -5.8944531920821746 10.013805802487235 +v 1.1558213537126873 -0.21708508416543995 0.89085046187153194 +v 0.48191708726906179 -5.8532642421814254 9.9468202137558865 +v -0.55931329679438835 -0.86219520433197328 2.0553836826373608 +v -0.46169282370503689 -0.89091060736080352 0.91563050134662305 +v -0.26927403516413556 -1.0254124888750822 -0.60587637783184323 +v 1.632173393262107 -3.8444359395062597 -1.7741854811854667 +v -0.73150149498775585 -0.57451654517162298 1.8596428226500634 +v 0.25847836885801578 -2.3176623384983248 3.8149158304212665 +v -3.0661881305006013 3.5117066775926067 -2.5219221805152632 +v -0.88558127057168834 -0.16537424185533076 0.27240483647889746 +v -4.1862718592956378 5.5907956237765699 -5.7287147210193918 +v 0.81810355453558514 0.18541532840494296 0.89796629126493155 +v 0.58347941008716808 -0.041214506845936347 0.60012640853280175 +v 1.2600094778875859 0.87492684293599554 4.1572642521244356 +v 0.92480375794342129 0.27086791695437906 0.85248705622093901 +v -0.38790473721960383 -0.8332771754547299 0.86917117187344184 +v 1.6846506187326118 1.3663954809513632 5.5314727005004265 +v 4.1989610781781419 3.6245792350179995 6.9721223661545171 +v -1.707090063228254 1.7272334600252186 0.75534902224926337 +v 0.55548381341790554 2.8486924498638104 2.8088810129133717 +v 0.20942349247005101 -0.2281222531869283 0.25947234459010421 +v 1.0814825013751084 -0.17109070728266049 0.76227513526965773 +v 0.71475551140737215 0.92915823753669569 1.4158131450483047 +v -1.0023377096481529 -1.4829525278600257 1.5421581927423833 +v -6.2020418376667816 -0.064254941486948727 -4.4200689148442756 +v -6.8730989723421141 0.6728292113611225 -5.1856260442699238 +v 1.7358349938465765 2.1162961789415307 4.7125430113983491 +v 1.5887908054958446 2.2900523463811342 4.5448780705275933 +v -3.2899142935091774 -3.0806731725248997 2.6638948055785034 +v 0.49112145023393716 0.4120282656256371 1.3431443520534025 +v 0.81954621483416035 1.0974234849007944 1.4675780127591915 +v 0.52725912802404551 0.37657564106746805 1.2874282455643589 +v 0.13005413838374402 -0.24246073518867695 0.22912831345808185 +v 0.77866664301700828 1.1450774455049022 1.4202833474613867 +v 1.6001246179905324 2.3327229102363103 4.6164939367044182 f 1 2 7 5 6 3 4 10 9 11 8 f 1 2 19 18 20 15 14 17 13 12 16 f 3 4 24 21 22 27 26 23 12 13 25 diff --git a/results/search/topology_35/resume.planes b/results/search/topology_35/resume.planes index e0459009..ab5b285d 100644 --- a/results/search/topology_35/resume.planes +++ b/results/search/topology_35/resume.planes @@ -1,37 +1,37 @@ 36 --0.0038245287723839283 -0.22744303941726685 -0.1412695050239563 --0.74284142255783081 --0.47969099879264832 --0.051539242267608643 -0.2882440984249115 --0.34218758344650269 -0.033309474587440491 --0.091209903359413147 --0.13335183262825012 -0.17331978678703308 --1.3324832916259766 --0.0081854173913598061 -1.1601210832595825 -0.62914741039276123 --0.4246084988117218 -0.6782492995262146 -0.042606543749570847 --0.10455816984176636 --0.062036857008934021 --0.48293197154998779 -0.13155931234359741 -0.54998540878295898 -0.1358867883682251 --0.03964611142873764 --0.027811137959361076 --1.7001428604125977 -1.0711002349853516 -1.288270115852356 --0.01366925984621048 --0.27244186401367188 -0.16449107229709625 -0.49759423732757568 -0.21912603080272675 --0.20930936932563782 +-0.0038433575537055731 +0.22856278717517853 +0.14196500182151794 +-0.68467164039611816 +-0.4421277642250061 +-0.04750334843993187 +0.289663165807724 +-0.34387221932411194 +0.033473461866378784 +-0.091451987624168396 +-0.13370576500892639 +0.17377981543540955 +-1.3390432596206665 +-0.0082257157191634178 +1.1658326387405396 +0.6345410943031311 +-0.42824867367744446 +0.68406397104263306 +0.042816303670406342 +-0.10507293045520782 +-0.062342278659343719 +-0.48530954122543335 +0.13220700621604919 +0.55269306898117065 +0.13655577600002289 +-0.039841294288635254 +-0.027948055416345596 +-1.7085130214691162 +1.0763734579086304 +1.2946125268936157 +-0.013736555352807045 +-0.2737831175327301 +0.16530090570449829 +0.50004398822784424 +0.22020483016967773 +-0.21033982932567596 diff --git a/results/search/topology_36/resume.obj b/results/search/topology_36/resume.obj index 9ae5c34b..7275dfe7 100644 --- a/results/search/topology_36/resume.obj +++ b/results/search/topology_36/resume.obj @@ -1,47 +1,47 @@ -v 2.7723186304301923 2.9392022002754046 3.3499121893390766 -v 1.6972811019790608 -2.8946412603894625 0.62443172459017426 -v -0.88525015596307899 0.8468635899565915 0.93009171136008195 -v -1.3690619198901599 0.90942467124201143 0.74097107156608466 -v -0.0023746304126692616 -2.4933919769849666 0.030079939434127796 -v -0.87548998822436219 1.2107945312501409 1.0748548834087643 -v 0.24038328506328951 -1.859804853769538 0.38162461979131579 -v 1.1474021325699779 -2.8169445527734371 0.41203003191227422 -v -0.81732524165292153 -0.38999561676317412 0.48266172836618781 -v -0.98750983243217016 -0.59470621206905738 0.32863459202813705 -v -1.0498985890339443 -0.17298063300330066 0.46390030713610553 -v 2.6135199702190488 -3.009745607979879 0.1129574229718282 -v 3.8352973124324921 -16.897889154579801 -8.2214112127263981 -v -1.0162368575564058 -5.3115232682360372 0.60269831197265766 -v -2.3685265504591673 -4.3660183323925912 1.7897314256597028 -v 0.43846871601109172 -3.6787050905586445 0.80218758816843372 -v -0.77418508555164722 -7.3750223635907703 -0.6651697267968486 -v 0.79889404446838497 -2.1925896403808065 1.4542107284053851 -v -5.1161366433026112 1.4400384181785257 6.366095126823847 -v 15.076776099562851 6.6482283025348767 -0.59109819985914946 -v -0.040586832805578163 -0.90843031227635151 0.20382628696105587 -v -0.56866940620556738 0.3249024895720391 0.74512272688478254 -v -0.81676774935190322 0.23026345543041635 0.5668132191273102 -v -1.8325734483291432 0.58747013028935147 0.31468991554360654 -v 1.2479510417598505 -2.1058830356059381 0.045927378127716745 -v -0.36682075113547158 -2.0749925238537705 -0.6994665037753095 -v -0.26301246991970861 -1.8962489075367941 -0.5355562014592411 -v 1.366909303917909 1.4317123550908297 -0.73256580091442869 -v -1.0032619150754207 -4.4606281720705816 0.66868497489130174 -v -0.525564342495904 -0.7012642121124586 0.61766714123569832 -v -2.1459384187694326 0.27201134488460316 2.0256569149923429 -v -0.027268177491216222 -2.7711207318136815 0.025376524946959716 -v -0.75447647809038465 -0.35924317507739606 0.23238553040067791 -v -0.67425501837112378 0.41227024194657369 0.014940485610041234 -v 0.32343189648306869 -3.426025630435142 0.76457562301355741 -v 1.4203786789456863 -2.3228783197315614 0.22008361597524978 -v -0.50607442506868638 0.92461273331480198 -0.15678442550945113 -v -0.81910759226478103 1.1017729126239979 0.69770216870272572 -v -0.69910223043811326 -2.5607373638404156 -0.29859491915696901 -v -0.38393251462851613 0.63448446218888044 -1.1300142826112003 -v 0.68560904830279368 -2.0078693465238149 1.2193836707409456 -v -0.94330154823538681 -3.1699815757717213 -0.033495310763068442 -v -4.6332863576091796 -1.3342725876875068 -2.1926550159456681 -v -0.12309504440612086 0.88516125109605559 -0.6889217741103344 +v 1.5764031908551903 -1.248697943483623 1.4466445638454033 +v 1.6378726457331307 -1.5714647820518284 1.3211567412586722 +v -1.4829142016587979 0.19946653274815423 -0.25944707923285137 +v -2.256308401317686 0.45530419045921156 -0.75073081070136194 +v 0.62094654237315938 -1.2596801172802965 0.66178365800540373 +v -1.7700099712929851 0.78321044667083439 -0.17590775939056974 +v 0.77032136079222679 -1.2280681844508636 0.80075179357384485 +v 1.4026808510993758 -1.5216995186739597 1.1565031216411066 +v -1.3600416517353806 -0.080948178006766569 -0.31183804406100013 +v -1.4084409665015432 -0.20339256803295661 -0.41790752305930423 +v -1.4987239919948969 -0.016993012717137799 -0.39009751348545929 +v 1.8587961457816784 -1.4098409908260596 1.2362530619062713 +v 6.8379267909218644 -9.8186254097552137 -4.0155760970006842 +v -0.96864820522783868 -4.5866854656288698 2.0158628594865431 +v -6.4746468424053258 -9.320363431403031 3.9364379294162437 +v 1.4934274640401 -1.8073306318669908 1.340605144941017 +v -0.60901489581290491 -5.1127647460653121 1.6590455294908655 +v 1.3921706944304797 -1.3457867097016103 1.5278883853435576 +v -4.4031591335444267 1.4405530173434027 5.7013605006163921 +v 9.1733067095124454 4.3106473889127983 -1.4725025508249494 +v 0.45550194976990355 -0.83152610768240043 0.48684053382238957 +v -0.31742086353100829 -0.34268383305123024 0.28601750824733402 +v -1.3635201091298204 0.01132423896465831 -0.36859087267660573 +v -2.3435670030795555 0.37140022551778618 -0.94649774558999078 +v 1.0728274731671228 -1.2089738900901188 0.66339592274474946 +v -0.59847953425786193 -0.97558521728030478 -0.7958493300575743 +v 0.11494459535570339 -0.97187325506706856 -0.044346566124734976 +v 1.6821036212210478 1.8865830214656629 -0.6195537152716194 +v -1.2229288861754357 -2.7837288771639446 1.279997544259907 +v -0.059342581437528838 -0.6807483917201097 0.42438648839745285 +v -2.2386479691736918 0.33665600484135139 0.0053650114274101102 +v 0.5733181029886858 -1.5266023099590671 0.77056816659585192 +v -1.2831659667137774 -0.11901379976733142 -0.43948086995400309 +v -1.2920979296474873 0.024223438255619855 -0.52050734249781538 +v 0.75845930591195931 -1.4067094569815468 0.89470151303838197 +v 1.6164443749273252 -1.4563591754004441 1.186820923080528 +v -0.90435614081295523 0.89969099081527337 -0.87912659752818789 +v -1.5881972448077541 0.77460685352561109 -0.44579541697024494 +v -0.92793343763806702 -0.90616949950638814 -0.60720286513542376 +v -0.78694667189257961 0.64804599279579378 -1.9627489781313692 +v 1.0942053423595368 -1.2118371004238733 1.133252613509542 +v -1.2157712899862667 -1.2363749985120955 -0.38660730368096091 +v -4.3612180423339808 -0.73896246709245528 -2.407207103836321 +v -0.042703118898545438 1.0583986969060919 -1.4210702873176952 f 1 2 8 7 5 6 4 3 9 11 10 f 1 2 20 19 18 17 14 15 13 12 16 f 3 4 24 25 27 26 13 12 21 22 23 diff --git a/results/search/topology_36/resume.planes b/results/search/topology_36/resume.planes index d23163f0..555919e4 100644 --- a/results/search/topology_36/resume.planes +++ b/results/search/topology_36/resume.planes @@ -1,37 +1,37 @@ 36 --0.32601267099380493 --0.28544655442237854 -0.73958569765090942 -0.96647709608078003 --1.102898120880127 -1.9795173406600952 --0.23342546820640564 --0.31613340973854065 -0.49257627129554749 -0.12304621934890747 --0.013586148619651794 -0.15099823474884033 --0.0083450879901647568 --0.0090228831395506859 --0.035092685371637344 --0.64468657970428467 -0.02217395231127739 --0.15916755795478821 --0.48502564430236816 --0.1115490049123764 -0.73406600952148438 --0.44772729277610779 --0.49480217695236206 --0.17323054373264313 --0.45520895719528198 -0.038657095283269882 --0.3304799497127533 -0.13928812742233276 --0.01119761448353529 --0.076003514230251312 --0.34947842359542847 -0.92717224359512329 --0.32025820016860962 -0.33081817626953125 --0.60090959072113037 --1.076256275177002 +-0.34965270757675171 +-0.23334769904613495 +0.42891761660575867 +1.1224334239959717 +-0.52970564365386963 +1.9122714996337891 +-0.30010253190994263 +-0.35673773288726807 +0.28665840625762939 +-0.00023338971368502825 +0.051347196102142334 +0.12588731944561005 +0.023974258452653885 +-0.042415358126163483 +-0.077623963356018066 +-1.128136157989502 +-0.3890627920627594 +-0.56341844797134399 +-0.24003212153911591 +-0.033699579536914825 +0.36535966396331787 +-0.27515816688537598 +-0.58570945262908936 +0.0089501459151506424 +-0.56441986560821533 +-0.1336519718170166 +-0.93652844429016113 +0.31850370764732361 +-0.17970000207424164 +-0.30147752165794373 +-0.43104749917984009 +1.2162688970565796 +-0.32915252447128296 +0.22673316299915314 +-0.51874446868896484 +-0.48065286874771118 diff --git a/results/search/topology_37/resume.obj b/results/search/topology_37/resume.obj index 2810462f..fd46ce1b 100644 --- a/results/search/topology_37/resume.obj +++ b/results/search/topology_37/resume.obj @@ -1,47 +1,47 @@ -v -1.4101024416833481 -1.4261003083688522 -0.86196192904489322 -v 0.67079000519664866 0.64678468499474462 -0.96516479486817597 -v -2.4623665664537548 -1.2120771960154377 0.87146547778747296 -v -2.1644416761459424 0.9729390962855573 3.3717310006437748 -v 0.4573184217834726 1.4263769383235656 0.36704117041606826 -v -0.1674173525046323 2.9160445054375717 3.2111059119152991 -v -2.0481645205987853 8.3257109616233791 13.005220231810718 -v 0.50775227956537472 2.9933491888171875 2.3847539827068585 -v -0.95263194751534341 -0.078956000444848004 0.30269673195373714 -v -1.1029211048100311 0.88857270464274973 1.7982592867882445 -v -0.47639216302094034 0.59064420790454408 0.53906504897104968 -v -7.1347601253193007 5.8003984437171665 2.3989106934194995 -v -0.65226793104970326 -6.4785846788772492 -2.236712280399157 -v 0.85522108726272905 1.2343810644871418 -0.88131877834182326 -v 0.21938978586655319 -1.8588714466619345 -1.4161735518883858 -v 0.48270442049245288 1.18581295078355 -0.78858394267031628 -v -0.034574565166332831 2.0038292173109853 -0.4559333694357241 -v -0.66714066665827598 1.8542155023712079 -0.3139207416681411 -v 0.96731205124599551 -2.5172387915252084 -1.7764052153141141 -v -1.4044042511034698 7.252681909457122 1.1347541198623332 -v -0.82508838508823423 -4.4824806881646122 -0.46624427265066259 -v -1.0369286051878128 -1.0525163761671055 2.6742559728176656 -v -4.3090093329923516 0.67149588381782799 0.5988574513241024 -v -2.387328984054899 4.7187133321852004 6.8111516336407956 -v -5.706468832079592 3.6673107223086427 1.9423889454366792 -v -0.87358910918177235 -1.2660507946042598 2.6520553258124937 -v -0.91697935438829414 -4.5694833895342821 -0.65817261028298457 -v 0.57590717472882702 1.8652009008312631 0.36405036645837013 -v -0.075041471775962612 -0.61635914025386596 0.32630330005751257 -v 0.29042265702344827 0.30554827873050766 -0.0031738194025795058 -v -0.36435381870624312 -0.32354001483975109 1.3479750633498651 -v -0.38790898006843672 -0.44423371031961434 1.3236220009398552 -v -0.37863610496023264 1.2906172352465304 -0.19156855520366148 -v 6.9344918523364285 -1.7273190996663537 -9.0107211866954451 -v -0.94642864695026929 1.6476568517961634 0.70942663471778189 -v -1.0480808502246242 1.4918259369394513 0.4834747754517274 -v 0.10158491397647212 -0.71786653784228638 0.3290844195733208 -v 0.2978264732665491 -0.67308492055538593 0.28551139019843474 -v -0.53657799815577678 -1.684890032169938 0.71404288469536303 -v -0.48224403812332839 0.18518459044392074 1.2437024776564933 -v -0.57179819781938257 0.12624283043977849 1.0625700713492134 -v 0.059486942279990448 -0.43561580731676036 0.74848463243574959 -v 0.40066390265995039 -0.48786133529887393 0.27184661636716195 -v 0.30218895181723576 -0.28117808947933576 0.30670120262901701 +v -1.7501416221108197 -2.0452482286936071 -2.1539233316466548 +v 0.089446867704903815 1.6409183175215432 -0.22862120612667819 +v -1.4911324394181482 -0.38162844651887584 0.75760460816639719 +v -1.092958736052293 0.87827097734451054 2.2401817808635585 +v 0.14448110695296551 2.1126251892534262 0.66273731595572782 +v -0.31377923798164897 2.9929458678809873 4.3321693669392936 +v -0.55563436636049413 4.4174857834201502 8.4831954630695581 +v 0.04103717831177902 3.4076242159213606 4.0199949422659262 +v -0.83713846903000733 0.49052887254850058 0.43094643321717147 +v -0.86343830840018376 1.0509612353199711 1.8178193467505053 +v -0.51583497789930233 1.0882068306550912 0.66076038806849857 +v -6.6377514390985359 5.6663191939851361 1.0781906673797443 +v 0.23763694413850078 -9.4870370067822272 -5.5215067977048378 +v 0.21963613378566801 2.4000033365632376 0.14520716451020466 +v 0.35370552567797509 -1.2759074428672914 -1.5954456300284803 +v -0.18986345398477664 2.2060153130993028 0.015406850576592857 +v 0.11931138953483798 1.9122939445280673 -0.096495289480539093 +v -0.98356726862874966 2.0976648620150846 -0.10855000508678558 +v 1.2539497929517347 -1.7451984948169426 -1.7372344114660199 +v -1.638746157987238 4.1403166238225255 0.80581856699816323 +v 0.043599388122335186 -2.2855952604374656 0.57436405353622666 +v -0.099183618021335421 -0.47350814073445285 2.0177842960481707 +v -3.2764376295076767 1.1044367158639106 0.33497500768086674 +v -2.7116054515965677 1.5914026286695129 1.3037051576227601 +v -3.1866457003287967 1.5323860960379192 0.79479110952394783 +v 0.18609443729188796 -0.70132748780583554 2.0937295692343016 +v -0.17045293742329132 -2.5989537015586692 0.094866851388611728 +v 0.15333220184130733 2.5216206301282553 0.67500049112032556 +v 0.1025069165289884 -0.030918200845913461 0.5647738515470927 +v 0.22367293372953742 1.6870207733217368 -0.024746966301756934 +v -0.024654887459626157 0.18196540361299823 1.5768707282734777 +v -0.040263215668274371 -0.12805676338916022 1.6354968717071205 +v -0.78684772986606544 1.9525263956380778 -0.068306148804154643 +v 7.5803006412851017 2.5560793383510552 -9.5107150770194231 +v -1.1000987104946827 2.0498500633656231 0.71684344229931207 +v -1.3036818865905537 1.8579002832225386 0.3085367520473834 +v 0.33434069281591977 -0.12196007200213603 0.58500815676688478 +v 0.58131641656935307 -0.12273560971128729 0.57386161910369793 +v -0.052538740023111222 -1.1260285871759335 0.94416206328584551 +v -0.21236144267419502 0.57609866029992363 1.4574154623725213 +v -0.36613537619993264 0.49712687784917869 1.1787139494621082 +v 0.36952415141671457 0.14957923865933323 1.131274079496041 +v 0.74551048468336167 0.27858260376998184 0.57889126462361518 +v 0.48322628500392523 0.61160629772759012 0.60101303976260778 f 1 2 11 5 6 8 7 10 4 3 9 f 1 2 18 17 16 14 15 19 13 12 20 f 3 4 26 22 21 27 13 12 25 24 23 diff --git a/results/search/topology_37/resume.planes b/results/search/topology_37/resume.planes index e157515b..71e1d6ba 100644 --- a/results/search/topology_37/resume.planes +++ b/results/search/topology_37/resume.planes @@ -1,37 +1,37 @@ 36 --0.26633188128471375 -0.25772711634635925 --0.19349586963653564 --0.22866901755332947 -0.18874110281467438 --0.81971591711044312 --1.7140874862670898 --1.4655551910400391 -1.485014796257019 -0.17270050942897797 --0.046247318387031555 -0.062159385532140732 --0.29234513640403748 -1.0762152671813965 --0.6107056736946106 -0.018366007134318352 -0.0352153480052948 -0.11890782415866852 --0.29260268807411194 --0.50071108341217041 -0.30760139226913452 -0.25602975487709045 -0.09370528906583786 -0.16770258545875549 -0.087390244007110596 --0.02108173631131649 -0.37191638350486755 --0.8643990159034729 --0.10566780716180801 -0.46175488829612732 -0.46323007345199585 --0.23085959255695343 -0.35688468813896179 -0.16854846477508545 -0.11511744558811188 -0.13283777236938477 +-0.691303551197052 +0.44597116112709045 +-0.1933254599571228 +0.075125761330127716 +0.39332690834999084 +-0.82484143972396851 +-0.90491300821304321 +-0.81986749172210693 +0.9397575855255127 +0.17419017851352692 +-0.0044539598748087883 +0.022822432219982147 +-0.71567267179489136 +1.8557193279266357 +-0.51555854082107544 +0.023106677457690239 +0.16999988257884979 +0.50015056133270264 +-0.084423854947090149 +-0.19250522553920746 +0.10112851113080978 +0.64007622003555298 +0.46828988194465637 +0.53929907083511353 +0.027112940326333046 +-0.018638191744685173 +0.6020427942276001 +-0.65505039691925049 +-0.18641720712184906 +0.41424739360809326 +0.63894110918045044 +-0.26608610153198242 +0.37276163697242737 +0.34708228707313538 +0.64750522375106812 +0.63860797882080078 diff --git a/results/search/topology_38/resume.obj b/results/search/topology_38/resume.obj index fa176672..f92dc47b 100644 --- a/results/search/topology_38/resume.obj +++ b/results/search/topology_38/resume.obj @@ -1,47 +1,47 @@ -v -2.1710356236048569 1.141774171746645 -0.35227509306205129 -v 0.9784241633340236 1.5469333484126533 0.49736432001000636 -v -1.0746440940488025 0.55117335961213976 2.5050627617136034 -v 4.1750615107695497 0.83550679702188901 5.29025558922892 -v -1.1647792689324454 0.79043956549144512 1.6024558207409618 -v -2.3206321620357273 0.61581942875384366 1.3814093109118954 -v -0.70617635631535203 0.90808182596435416 1.5208500604047415 -v -1.4787809360256947 1.6628150402059863 -1.6779502924768486 -v -0.69698304051452942 1.3660356462453125 -0.075870412000351994 -v -1.6913804115373308 1.1635622579056379 -0.083124793957521981 -v -1.5220393547455682 0.92091241879974928 0.8883701513997917 -v -5.6253657160298838 -1.7064207727438914 -2.0719344627275635 -v 2.5383414104599482 -4.3782709851756776 -1.0893736011941351 -v 0.84246112740466195 -1.3163104626454973 -0.47191976970793403 -v -0.61173733147027598 -1.7164024170051353 -0.93403321339068335 -v 1.2050074678634519 -0.62523618364407019 -0.16292152782846056 -v 1.4613337929915489 -0.18628823802808817 0.0392731653004183 -v 0.052137230011986328 0.88957254669829011 0.071099300051562758 -v 0.37257601129754758 0.25648989346072965 -0.063437002465395936 -v -1.0943098034563468 0.91898748253841045 -0.18020837887337404 -v -4.2250404915118827 4.6652329544761715 5.4411606793528984 -v -3.4556876238032519 -1.3862292085062606 -0.70287911142108539 -v -2.1413482819335017 0.022254859922551815 1.432488781412971 -v -2.7235136701458913 1.1836421246891025 2.4064231624515298 -v -4.4703618461552361 -0.72348649934719811 -0.46943326790120732 -v 2.2330550324692258 -3.2803439772640037 -0.052910859713200864 -v 3.4810052116698658 -1.5342151157820223 2.4141858220446846 -v -1.8228204036484708 1.5028521455252744 2.3046903881139786 -v -1.5577749207394427 1.7244860876122459 2.5406057870299303 -v 0.500244197780494 0.034634742716428642 0.89336137270045102 -v 1.6937852581906809 -1.1659601151684786 -0.28693967334950704 -v 1.8204294247105055 -0.46371399942248093 0.43406948329658357 -v -2.3636315078437815 1.0618441254917903 2.200207962762474 -v 0.55450755970706744 -0.4881167711360076 0.15468348828979994 -v 1.1128619207146151 -2.1385490148891622 -1.1356910383134027 -v 1.5129444928107918 -1.8292467592705883 -1.0696503230851631 -v -0.25099129542312676 2.6855791918990848 -0.71696553603507895 -v -2.4204700839817082 0.78036052503140629 -5.7062226254369657 -v -0.79787157959862454 2.269462428851226 0.17937517181804441 -v -2.1978724094138631 1.1657576131330758 1.1827071201930617 -v 0.14427729705309905 0.28359583974152341 0.3565617779156447 -v -0.28575263886754354 1.8029796415608141 0.024985359952768404 -v 1.3205625733168003 -1.0982191314236995 -0.8576734572384983 -v 3.7632673349527357 -5.8210075111628132 -0.23401682477529331 +v 0.0044409428193351152 2.8582826601252038 -0.047141873999858752 +v 2.5545328438041559 10.496090367959985 1.7611680503442761 +v -0.97256039347531065 -1.1555838953417046 1.8098377448936782 +v 22.658530690950364 46.580737646555789 72.583711146959359 +v -0.64929569732431081 0.19425311817419827 1.1444181547119738 +v -0.87291162059642247 -0.33603571093498674 0.65889503098408508 +v -0.79233528053446933 -0.58415694763200732 1.8634804984738862 +v 0.35262062923858678 3.0153517372395289 2.2762902418084128 +v -0.1843143716320722 1.8403401265930504 0.88005168630613073 +v -1.0092155718687736 -0.38927486392803928 -0.27001241498371786 +v -1.0270494315224321 -1.0024752251398408 1.0296648777691062 +v -4.6804123774663813 -2.4737134031583383 -1.5183892815880355 +v 3.9672673324655259 -5.5933634804148529 -1.5602859430924927 +v 0.79678428114975719 -1.4181838584924771 -0.89998817646586027 +v -2.054262099056761 -2.6037274030242634 -1.3572169290314395 +v -0.9524762188994782 1.6507688215493426 -0.37284778640546867 +v 0.7812947727292292 1.9839880926114244 -0.17728878343637067 +v 1.2001040896124544 1.0423929570467154 -0.34749903763063267 +v 0.80311609413958529 -0.67906533828933224 -0.74228518859388293 +v 0.46491570389356185 -0.58138092763686322 -0.74582103857343307 +v -4245.2424839912665 13121.05566580571 14626.983451948836 +v -3.2272403372740128 -2.6687551512420433 -1.1106549276392861 +v -3.4373776884648608 -0.74225618814483152 1.2222088010194823 +v -2.588459134215908 -0.79864670642793467 1.5329119731952949 +v -4.0236291630688088 -1.8242414251451602 -0.40471164933832404 +v 5.9924783937986499 -3.8396508305821699 1.5600944748347925 +v 0.55039086762148415 -1.7755687858178866 1.713529116588699 +v -2.6450036515011885 -0.37062928014931318 1.0968383889792424 +v -0.49870111379818804 1.9492194925230499 2.9087399064683863 +v 0.90607421651943965 -0.88176669621012882 -0.37761488426735995 +v 0.54031477202859113 -0.21712827277957483 0.40353948341508789 +v 0.32869646682038178 -0.82099064039976455 -0.16084220380001818 +v -2.8296161671270394 -0.60588905441747631 1.2716107894074971 +v 0.48704168708038892 0.95632260256230806 0.74030045262900257 +v -0.055864875082331032 1.1228098637760329 0.41390408327895434 +v 0.80197680328423604 1.417634429809683 0.38343131278921022 +v 1.4666189442349509 4.43161647075351 1.2526944610333657 +v 2.4980019683563985 5.1488796826123799 5.8027787024162816 +v -2.0703709365657792 0.37270985821066782 0.4504668207071415 +v -2.7612658187416335 -0.49653628919382076 1.0009495247623539 +v 0.62855928331768318 -0.74378041656680915 -0.50208327782682161 +v 0.90224044882572263 0.65468071364692981 -0.10337179392527851 +v 0.89550163024368756 1.7626344155437443 0.56970426213316638 +v 0.56276302954822865 0.18730544061560317 0.18824165326032405 f 1 2 4 3 7 5 6 11 10 9 8 f 1 2 17 16 18 19 20 15 14 13 12 f 3 4 27 24 23 26 13 12 25 22 21 diff --git a/results/search/topology_38/resume.planes b/results/search/topology_38/resume.planes index 8cc3f959..3e4da7cd 100644 --- a/results/search/topology_38/resume.planes +++ b/results/search/topology_38/resume.planes @@ -1,37 +1,37 @@ 36 --0.27228882908821106 -1.3237318992614746 -0.378090500831604 -0.04561224952340126 -0.065672397613525391 --0.20039291679859161 --0.4803357720375061 --1.0936400890350342 -1.0170139074325562 --0.015270078554749489 --0.41936066746711731 -0.41112968325614929 -0.14979842305183411 --0.28559929132461548 -0.43010991811752319 --1.422491192817688 -1.7568058967590332 --0.052319396287202835 -0.30964213609695435 -0.12264135479927063 -0.16039711236953735 -0.12399271130561829 -0.077963009476661682 --0.046064760535955429 --0.022235265001654625 -0.12542325258255005 --0.45271697640419006 -0.12401844561100006 -0.057825110852718353 -0.23665924370288849 -0.14642679691314697 -0.33443924784660339 -0.058009114116430283 -0.87269258499145508 -0.38199803233146667 --0.52534431219100952 +-0.77229565382003784 +0.2341998964548111 +0.099900528788566589 +0.044874876737594604 +0.13277474045753479 +-0.62408715486526489 +-0.59693247079849243 +-1.6725257635116577 +1.3274163007736206 +0.096802011132240295 +-0.37251198291778564 +0.36227414011955261 +-0.2247181236743927 +0.73102951049804688 +0.74666285514831543 +-1.3993507623672485 +1.1939202547073364 +0.12898916006088257 +0.38687187433242798 +-0.14474877715110779 +0.24214500188827515 +0.15739189088344574 +0.14890822768211365 +-0.18584081530570984 +-0.047873411327600479 +0.11899963766336441 +-0.19636517763137817 +0.038340482860803604 +0.14735805988311768 +0.2808074951171875 +-0.17467805743217468 +-0.61536163091659546 +-0.29273048043251038 +0.46349358558654785 +-0.075333550572395325 +-0.093186281621456146 diff --git a/results/search/topology_39/resume.obj b/results/search/topology_39/resume.obj index d130d142..2ff6cddf 100644 --- a/results/search/topology_39/resume.obj +++ b/results/search/topology_39/resume.obj @@ -1,47 +1,47 @@ -v -0.15319686573467703 -2.0729974623688086 0.43482648095559284 -v 1.1490837916778565 -0.73389693809370127 1.1600182037098354 -v -0.50876981764439311 -1.4120691008372022 1.0553274011143055 -v -4.1034145637472319 -3.8374036764837567 0.066968559717086484 -v -0.03163387385646637 -1.8187464783293157 0.60557653826169067 -v -4.2617869924254679 -4.1166415783155612 -0.11402300933112841 -v -1.2523650897819933 -2.7764224454505686 0.16305873660972947 -v 7.4054850573812558 -0.36299130352732389 -0.18976683906122369 -v 1.4182415234881991 -1.1247254780762759 0.77760531028881474 -v 7.5919694013346843 -0.37974252824556426 -0.25217112589213331 -v -2.2822598960892138 -5.8254675403959997 -1.997170255089338 -v 1.8895653053146848 16.781338283633378 -7.1501091361619808 -v 2.4368966497429301 -0.81049469378336225 2.6064574732854107 -v -0.53682077295077624 6.2857987981200507 -4.3359779931342111 -v -0.10286225233156941 0.1133599513953623 -0.64847223841753765 -v -0.76395897752379205 -1.9485235567856229 -0.29705760458268915 -v -0.67979561663959609 -2.1217674990962974 -0.11493833526946262 -v -0.80584759865726729 7.9486806142687261 -5.4955510405104766 -v 0.3683158978720934 0.1157745699557045 -0.13510444939331015 -v 0.011154469494248071 -0.32916517817323682 -0.29355206586581023 -v -0.55084941329364656 -0.87609659256925798 0.74192093728278108 -v 1.2524024014095294 -8.2029485766577608 5.807027868668893 -v -12.041490657150248 -0.24325329033374968 -6.9023406095563686 -v -0.46836055805693277 -0.22265746847684179 0.44489143597792563 -v 0.08245381283032957 0.18264064352300488 0.57833764851325753 -v -1.2687418996908055 0.21542236235619083 -0.29829107076833083 -v -0.10087001617097248 -0.17001591067137034 0.65038946791321528 -v 0.57560165477665637 2.6652026707735863 -3.4978311345326007 -v 0.41585916123436412 0.028904256930210294 -1.3899309384833645 -v 1.3034768669988108 -0.62669418045426151 -2.2978703057624266 -v -0.29729951325672299 -0.38975473900743368 0.0069999973040749675 -v -0.37301559142967089 -0.82833464010688962 0.4335650508874771 -v -0.1372628855437299 -0.56516899601242909 -0.1163105191265964 -v 2.2419293213326692 -3.7645542945084363 2.5901186346784209 -v -0.19144224753554107 -0.9400380491739343 -0.86786537683642428 -v -4.0639091564834944 0.18517727325800407 -3.5825375160469792 -v 16.417085740795386 -8.8333807030431792 5.1714016143926855 -v 0.10866441654668335 0.021080563470583093 0.058854244651600898 -v -0.5293666204448263 -0.34077526887100335 0.36091082797811042 -v 0.18075526065782091 0.13561323488922492 -0.027481420153673289 -v 1.826014797420672 -0.12481300018810881 -2.2675134422365222 -v -2.0164280125681251 -5.2971347478222244 -2.0609190704484819 -v -6.0916591012823682 0.68453142895635644 -5.1681587279866381 -v -2.3075934284345667 0.21439833698362662 -1.3656704774531894 +v 0.079136984460318485 -2.5424850311813318 0.73289853967614804 +v 1.4192015130141991 -0.75080042925373747 1.5250806401944859 +v -0.45595350433688547 -1.8278047153814998 1.3015674437346518 +v -2.8726708897219266 -3.7207414745112786 0.70106524035970352 +v 0.1378195125514084 -2.3904935672811956 0.8130926152668646 +v -3.035555920443433 -4.0383704015121733 0.54298573621198576 +v -1.1334474661756893 -3.1515926182354836 0.64241414978327716 +v 3.4705139787779626 -0.20380591250255209 1.3789950454067512 +v 1.5342021183200341 -0.89193025718144192 1.4105789020700208 +v 4.5023425301985434 -0.36870858927930034 1.0331998028354161 +v -4.6121913602005362 -13.290280163047974 -4.8099109211671554 +v -3.3308486236773271 14.979358684786819 -10.322821200043389 +v 2.5277321828686121 -0.8914786686712407 2.8447590556540474 +v -0.22328517132263262 1.2680268491211582 -1.1714253118119684 +v -0.12277878786632598 0.3252865697820021 -0.67104220423337757 +v -0.50517820854371309 -1.779656115865913 -0.2446559018642197 +v -0.0058056340171893303 -2.5558559636392886 0.64166361191963517 +v -6.9027880682147345 11.659009727689185 -13.030209642912014 +v 0.37918464166201438 0.255728302141977 -0.071069482784210714 +v 0.1341559670282641 -0.14749032559788805 -0.18496346685447468 +v -0.51084946553549171 -0.79618045504349322 0.67277464997724479 +v 39.123212786574882 -42.041529859493416 51.902039985242148 +v -650.11336319235556 566.04255861626098 -776.48078379477511 +v -0.34960928225973686 -0.37079231587909961 0.54162731868659719 +v 0.23276607994358503 0.28735584865711622 0.57070741789867063 +v -2.3398289709907409 0.65869414990831443 -1.4345699499970386 +v 0.040988111270016801 -0.16684886573635999 0.69707016454298731 +v 0.68983197932411766 2.559230668112475 -3.4062699541985095 +v 0.48970311518770016 0.21873171177461384 -1.5009200968361218 +v 1.1627668017561108 -0.029533749624559069 -2.3226388391728299 +v -0.12230950845602315 -0.46393098705182723 -0.12876269985904315 +v -0.29075012955504431 -1.0490502986787011 0.52218001788012436 +v -0.029763233630246928 -0.5648645410380988 -0.19579354074758029 +v 23.025381513448156 -16.889676184598592 23.219554386158222 +v -0.08833411922492386 -0.85103605261222226 -0.84886816204877114 +v -5.7911350902247536 1.1431416513315322 -5.1136952737817261 +v 9.5417743605144043 -3.9744077718893469 6.8380209073441733 +v 0.2089452472156674 0.10160311070904002 0.059134104739857161 +v -0.42132500855886895 -0.52549189427718623 0.44735564101446612 +v 0.28827819128380205 0.26980103729263577 -0.073423023064242768 +v 1.2340828517796063 0.092389756073798832 -2.2819051801499661 +v -3.9235689282598054 -11.488271854957267 -4.5661836121935568 +v 68898.234213279124 -14301.733078269132 70979.332905347648 +v -5.0436169506053927 1.0392579537985038 -4.2417143483078554 f 1 2 9 8 10 11 7 6 4 3 5 f 1 2 13 12 18 14 15 19 20 16 17 f 3 4 24 26 25 27 13 12 23 22 21 diff --git a/results/search/topology_39/resume.planes b/results/search/topology_39/resume.planes index fc918e83..aa203b3f 100644 --- a/results/search/topology_39/resume.planes +++ b/results/search/topology_39/resume.planes @@ -1,37 +1,37 @@ 36 -0.31584861874580383 --0.95750325918197632 -1.2008818387985229 -0.2114880383014679 --0.10081056505441666 --0.19363334774971008 --0.23456613719463348 -0.19731238484382629 -0.36892813444137573 --0.2892281711101532 --0.13221967220306396 --0.18728236854076385 -0.37819370627403259 --0.67946052551269531 --0.82112383842468262 -0.0038615977391600609 -0.038347143679857254 -0.054095681756734848 -0.82059574127197266 --0.70695501565933228 --2.4371747970581055 -0.046910800039768219 --0.051130175590515137 -0.037836600095033646 -0.010013566352427006 -0.1483139842748642 --0.009888223372399807 -0.086900785565376282 --0.041632987558841705 -0.017332509160041809 --0.4753967821598053 --0.083490371704101562 -0.46277093887329102 --0.22833521664142609 --0.33862197399139404 -0.1853623241186142 +0.38173604011535645 +-0.99999666213989258 +1.6159512996673584 +0.18395219743251801 +-0.066146679222583771 +-0.16157121956348419 +-0.22020447254180908 +0.18088987469673157 +0.3160003125667572 +-0.2539883553981781 +-0.11849773675203323 +-0.1722383052110672 +0.35778450965881348 +-0.67823570966720581 +-0.79555308818817139 +-0.014116819016635418 +0.04176805168390274 +0.044549629092216492 +1.685329794883728 +-0.41156706213951111 +-1.7187595367431641 +0.092822261154651642 +-0.067963123321533203 +0.040914203971624374 +0.047802001237869263 +0.30807411670684814 +-0.0042764521203935146 +0.14972153306007385 +-0.059178173542022705 +0.014516035094857216 +-0.47362321615219116 +-0.053971104323863983 +0.44886800646781921 +-0.19897471368312836 +-0.27403852343559265 +0.13792626559734344 diff --git a/results/search/topology_4/resume.obj b/results/search/topology_4/resume.obj index b03ecf92..34360bc0 100644 --- a/results/search/topology_4/resume.obj +++ b/results/search/topology_4/resume.obj @@ -1,47 +1,47 @@ -v -1.3979602093401431 -1.7499852772841473 0.482638342679162 -v -3.4357095383423832 -2.3300886047910332 1.2439908295915461 -v -2.0687548310980666 -10.542988512394508 4.7153541304858484 -v -0.59955286578130873 0.17079176685596384 -0.59962181916821722 -v -1.7974860629482243 -0.48867592300208929 -0.0046306106723357221 -v -0.28095069639281139 1.8235267460156863 -1.4417629442683153 -v -3.1505220483199263 -0.067827024634463898 0.12776629741113332 -v 1.509097115306191 -0.32629430951588206 -0.87946422917698153 -v 0.90717045930919471 -0.51005871893148302 -0.64882549947681289 -v 0.6970762971845329 0.20631615477790441 -0.9296433966833213 -v -2.5650758823492534 -11.731895623691052 5.3857577623330872 -v -0.97333110656566202 -1.4344440999414365 0.57890606256598209 -v -0.31537789537500693 -2.2165854349012633 -0.9364821728438234 -v 1.6070870254605241 3.3884329892857141 4.9687109360114725 -v -0.13327842214453103 1.241521212743427 3.4562365262176229 -v 1.0713769268948627 -1.1205566894170977 -0.5362698263976905 -v -3.794122734694926 -4.4178837496037628 -1.222598664466864 -v 0.94014108011760533 0.39577422642742455 1.547434930292543 -v 1.864013879008303 0.70702095136016663 1.2654275501821024 -v 1.6276468435940881 0.98515749806067343 1.8060994835915196 -v -0.73518446601249399 1.0323558470589884 -0.39577654973547249 -v -1.2079725908582379 0.17355440360089419 0.91334609104633824 -v -0.80464212625568454 -0.99834368652778582 0.091717455915732216 -v -0.38432615994948782 4.1859634910652446 -1.7572639374536991 -v -1.3291779287748793 -0.72787637518244974 1.3545410985547355 -v 1.7688167708895981 -6.2836638098548265 -5.4904246903096707 -v -0.8304882021951836 0.2904476883493633 -0.043732999975882536 -v -2.2852096450885622 -1.3171803265169906 0.98741303157479254 -v 0.10520174817787301 2.3543656287644872 -1.4462289998847946 -v 0.54092247989995867 1.8325910613682899 5.5440274542659331 -v 0.301317588859215 2.3549551891435332 0.23054459362984669 -v 4.4417069281461634 8.2137976725514612 -0.86032193092005738 -v -1.5415341659987996 1.0019455495953551 -1.5424197583374686 -v -4.6274543047276593 3.0658871324937946 -2.3041298632781788 -v 1.3932329604823643 -2.0557991412193539 0.23679252451636079 -v 2.6191192438831794 0.042713446087826561 -2.2721849472312705 -v -1.3886253868316654 0.071184380378115503 -0.70651734345839268 -v 3.1242934184453368 0.48259615059707106 -0.71966252667027431 -v 2.3306742865515906 0.38030425113598176 -0.8355020157588392 -v 5.1778347034023371 10.210986078987267 -1.6165933724731525 -v 1.5855611308750726 1.2172905814046684 2.8400354618244261 -v 0.24989343069675074 0.11377495662598847 1.6361664943369085 -v 0.82669480412950846 0.83636534772201043 1.5094358756194399 -v 0.45388290299171702 1.9646500115572159 0.70904417865325531 +v -1.5157380734727424 -1.8090887706513363 0.8284890853021365 +v -2.7627976816293787 -2.1152763108027082 1.3650853166553283 +v -1.885075930597744 -8.8984346339163825 5.1009394364709637 +v -0.58156006706624463 0.10512431532998449 -0.56376157837667851 +v -2.0102870582275432 -0.78842326261718088 0.37001377166973981 +v -0.3628144750143798 1.510914496904505 -1.4525840486826018 +v -2.7943632841606374 -0.68914563065890244 0.53589104603553861 +v 1.6560638035250641 -0.50650924131148667 -0.84417973306996719 +v 0.93998649635540454 -0.66740546708644943 -0.54482909595445583 +v 0.67120561833938153 0.20651167245454957 -0.9816164434451824 +v -2.2922522260784102 -9.7515505322739742 5.7188095957100389 +v -0.96502394282994197 -1.5072167057214685 0.79721717701173223 +v -0.10218220849608127 -2.396888267876458 -0.93359955341083611 +v 1.4316329720860894 3.4624831881231537 5.1734872861476813 +v -0.76148734985581401 0.67501313461468204 3.3413561658628295 +v 1.0945470807685074 -1.1711476321995185 -0.2983365963886605 +v -6.3545002485589626 -6.614409348173246 -1.5540295091837297 +v 0.8825203240074454 0.026491064658354786 1.3353241118776715 +v 1.7750373353737696 0.20268713082578987 0.89828355940636362 +v 1.4681339559529554 0.7303539166496108 1.7746130347686369 +v -0.80846029569021771 0.84385323306042004 -0.25739106879685214 +v -1.1758142843989201 0.29232086568626936 0.75370714796778759 +v -0.77032295347070456 -1.0369510220414639 0.20887626068671283 +v -0.5918796587385099 4.6128102239151856 -1.8685464975092223 +v -1.2846323594230904 -0.80773129758074169 1.3292974969738132 +v 1.9035347970059358 -5.274852768482635 -4.7182572248709285 +v -0.89243798138338037 0.17042594192909499 0.1350755425997574 +v -2.3765497101109085 -1.319559325901035 1.0859595509416762 +v 0.11210146368263205 2.1393722036367944 -1.4426623670678982 +v -0.42101439437955124 1.0053927075909452 5.2200793540026709 +v 0.20533610414523457 2.1697887596269374 0.0071340958012668931 +v 4.253616743743895 7.584043931793671 -0.79843788926810744 +v -1.8620174554243001 1.0025383603360287 -1.6620831496542605 +v -4.9556619389280465 2.6745026294679661 -2.4229689376452712 +v 1.343772893965355 -1.900799690249092 0.42070856258152534 +v 2.7498514621114625 0.25575488206943131 -2.4577322534278689 +v -1.617559639862679 -0.036627596306592757 -0.59918275449249081 +v 4.7222576640422966 0.82049350483411609 -0.45039769697135457 +v 2.3376897262409324 0.44796142286075485 -0.83627601938097107 +v 4.8815038734095397 9.2322494748050179 -1.437395099645365 +v 1.4312432952053735 0.7106124036228465 2.5787093401497949 +v 0.15015840972496644 -0.13954325190110686 1.6375982247722454 +v 0.73979552528263093 0.59316929746721658 1.5028085295252342 +v 0.48632431274900134 1.3768995397573347 0.93362113744069564 f 1 2 7 5 6 8 9 10 4 3 11 f 1 2 20 15 14 19 18 16 12 13 17 f 3 4 27 21 22 25 23 12 13 24 26 diff --git a/results/search/topology_4/resume.planes b/results/search/topology_4/resume.planes index d05bd63e..5d494d73 100644 --- a/results/search/topology_4/resume.planes +++ b/results/search/topology_4/resume.planes @@ -1,37 +1,37 @@ 36 --0.12646080553531647 --0.24206823110580444 --0.52291154861450195 -0.39484572410583496 --0.69273519515991211 -0.52897787094116211 --0.71211487054824829 --0.044369477778673172 --0.28628641366958618 --0.93314975500106812 -0.67972493171691895 -0.10890242457389832 --0.22673599421977997 --0.54951536655426025 --0.57039868831634521 -0.18145257234573364 --0.14140374958515167 --1.1182695627212524 -0.22248135507106781 --0.4829426109790802 -0.19584652781486511 -0.79721575975418091 -0.19722457230091095 --0.093311890959739685 -1.7586157321929932 --0.47245541214942932 -0.46409714221954346 --0.032372657209634781 -0.35225456953048706 --0.089272052049636841 --0.55329209566116333 -0.25252392888069153 -0.38239234685897827 --0.48894557356834412 -0.57154315710067749 -1.0334291458129883 +-0.13390524685382843 +-0.27521002292633057 +-0.46823605895042419 +0.46709972620010376 +-0.78615933656692505 +0.63695752620697021 +-0.67475932836532593 +-0.086101539433002472 +-0.2921212911605835 +-0.91144728660583496 +0.68806940317153931 +0.044178448617458344 +-0.18107591569423676 +-0.5694584846496582 +-0.51509666442871094 +0.20783665776252747 +-0.13889962434768677 +-1.1502487659454346 +0.24380068480968475 +-0.63509541749954224 +0.24184241890907288 +0.73780363798141479 +0.20109499990940094 +-0.051666200160980225 +1.7123143672943115 +-0.4623282253742218 +0.49006131291389465 +-0.033825602382421494 +0.25697615742683411 +-0.039060022681951523 +-0.54433906078338623 +0.32736799120903015 +0.44525113701820374 +-0.45874163508415222 +0.54472267627716064 +0.95433145761489868 diff --git a/results/search/topology_40/resume.obj b/results/search/topology_40/resume.obj index c7d92469..e5620ad2 100644 --- a/results/search/topology_40/resume.obj +++ b/results/search/topology_40/resume.obj @@ -1,47 +1,47 @@ -v -1.2142460285992356 -0.37826748248037984 1.6515711957726282 -v -2.222492280270207 0.15818772340561871 1.4026532063008879 -v -0.91349842126924174 -0.61337984693669145 0.73537664749433851 -v -0.22047604364275056 -1.1577627859787512 -1.4102107890835813 -v -1.2391155697086698 -0.47899798820458767 0.14233807985385638 -v 2.8007267635813569 -2.6584652162062206 0.74405140701897321 -v -3.5453857104988633 0.61247322202952037 -2.2157830312718896 -v -3.7675653787517449 0.80655109375674949 -1.2700493208538322 -v -0.92971900481157832 -0.66742061491342042 -0.095219547857191333 -v -0.91061041737301884 -0.64968299298864474 0.27754221764835707 -v -1.480596986615393 -0.30509377614818112 0.68177708851582164 -v 1.574309894705451 0.89087675195225302 0.12049873138607881 -v -0.2252228938974227 1.0016342673808087 0.35890184241902412 -v -0.41937357705858463 0.9062484303383368 0.47116361670686613 -v 6.6880886734041765 -4.424871602120791 3.4751490955457185 -v 3.8895910800151765 -0.55587006402213868 0.86533449034472987 -v -2.3745517592476859 -0.60871538108374212 2.0486696014148178 -v 4.6443869284494355 -3.0683320630735635 2.7535883309920894 -v -2.3893044927946216 -0.35851243585850329 1.8496267292148296 -v 0.25172651214715119 0.56290612466072942 0.6257775895026938 -v -5.3785573237757278 -3.2775611552581383 1.9108684167722472 -v -1.5592455993834333 -1.7258848637597761 -0.56288437165668104 -v 1.8730767289490091 0.72996805275194321 -0.64296715061009468 -v 0.31784709266177824 -0.68190266878304173 -1.2105624186264645 -v -0.63176871775765486 -0.78124841839754999 -0.017131434991896857 -v -0.82553165675106821 -0.77517340794032252 0.2795740351738093 -v -2.4761972101609779 -0.90819060680476316 2.434146219153428 -v 0.47879767336948031 0.36003184550036871 0.65688390979655864 -v 0.24589667869602042 -0.47037830736085617 -1.3054313245369762 -v -0.3835117930451315 1.0447079346147352 0.5491676061018127 -v -2.669844177874388 -0.42152790842758897 1.5909302957579803 -v -1.8410660965176338 -0.52101338973251299 0.69771601741102363 -v -0.93329540356718532 -0.29233839641113452 -0.0047416480290829082 -v -2.3965011136501411 0.40150450679752248 -3.0803789640895527 -v -6.052768704885735 2.1158187169650389 -5.6622337559873968 -v 6.1706674185417834 9.574948383726845 -0.29967986141233383 -v -0.19211245373131261 -4.0831030157713766 -0.66849001291684695 -v -2.8989189484946629 0.94695466937503003 -0.40044391859166606 -v -1.8281062605940193 0.98580480921466862 -0.010229515954099861 -v -2.0729403362967065 1.044024613300923 0.24137655599202235 -v -1.6695405153262259 1.0822015980420443 0.50794939297714214 -v -1.2279143435797888 -0.73227016209535223 0.74084762367063206 -v -3.1455705295870637 0.80732056369789318 -0.52229325917791569 -v -1.8335342898512883 1.2669429874257789 0.4808431013769196 +v -2.0201951460991103 -0.12078010089281828 1.3997242449822882 +v -2.3772167981038317 0.003792254394718269 1.4124631763536146 +v -2.119825956599775 -0.085982705091651332 1.5396295475174293 +v -0.65579275816984639 -0.59732286733950057 -0.54398793828869618 +v -1.6795972255009155 -0.23984118845616764 0.51095095098427512 +v -2.619581450555565 0.087574575191006809 -1.7117651275302415 +v -5.4065297739913749 1.059670651905765 -2.9263362848236927 +v -5.3236840774750256 1.0309017388426951 -2.378935407285562 +v -2.3565954244757306 -0.0041916467361639157 -1.7406230810602756 +v -1.4884976835283739 -0.30648522594404154 0.64246054405111186 +v -2.4914229778456058 0.043628131935438616 1.3643447756269129 +v 0.82380955715422721 0.5574496139610654 0.33877746046669299 +v -1.3738772568299014 0.66406197113982857 0.79637594362818231 +v -0.17509894732630818 1.2661772789684067 0.16754985843565567 +v 3.5633519115760213 -4.7029397819583778 2.7132734478608671 +v 0.35600333922015298 3.3820350675151345 -1.1730527303266283 +v -2.7874985228240061 -5.2868434496537615 4.5479415969197285 +v 2.3796417081726866 -3.5166299107171968 2.3113797047506859 +v -2.5861634389165928 -0.37933616758842476 1.6818369627149188 +v -1.129376594178906 1.5558413484090068 0.22647041671742138 +v -3.0694071147225879 -0.55570250510456543 1.4670566022563674 +v -1.6922026408137549 -0.5930991425794867 0.31144927684939461 +v 1.1827559081449364 0.54980122467066683 0.041268592447334759 +v -0.2799954407660703 -0.37368402702350945 -0.42128489564743382 +v 0.81369391968513693 -0.40639069452189153 -1.3442743056300468 +v -2.1136650740260947 -1.1680862965045862 -0.36379727807350076 +v -2.5425791754754168 -0.2565212148991648 1.5750097427021623 +v 2.0097048393746411 1.3952735950167192 0.87015727734471615 +v -0.32966726318793449 -0.10767515533147642 -0.52147089173654082 +v -1.5614284945036818 0.66800393959341486 0.95306580599325863 +v -5.8584221593939638 -3.2247752966903733 2.1765817394651465 +v -10.86118560824686 -5.4623575821520243 4.9642962557997219 +v 0.43793629687393332 -0.16665380237826788 -1.1882208900452835 +v -4.4593166888982632 1.0032026141377657 -2.8836121364419012 +v -5.9026873766769121 1.8353425472853153 -3.8353125006493758 +v -0.77871307712285498 4.0058733350980695 -1.9126155538576577 +v -5.6333132806156572 -0.44374654011582076 -3.0543560979426414 +v -4.1801334874547695 0.91512700950100456 -1.2413527182575494 +v -0.73363024277890942 0.68786225582452265 -0.58850899414005742 +v -2.1053633247670018 0.71277096009527718 0.64699550135554518 +v -1.7966563007191818 0.68382499589145718 0.90143662219795295 +v -5.4133468765788697 -8.9080487667538328 8.918668141597518 +v -4.5675616578249798 0.80844115576101827 -1.4545218591689411 +v -2.0488041315650798 0.8099518156959683 0.74829307591350069 f 1 2 8 7 9 6 4 5 10 11 3 f 1 2 19 17 18 15 16 20 14 13 12 f 1 3 28 25 26 22 21 27 24 23 12 diff --git a/results/search/topology_40/resume.planes b/results/search/topology_40/resume.planes index 6b92eef9..030b25a4 100644 --- a/results/search/topology_40/resume.planes +++ b/results/search/topology_40/resume.planes @@ -1,37 +1,37 @@ 36 --0.49321454763412476 --0.89547407627105713 -0.067893803119659424 -0.12176214903593063 -0.53909921646118164 -0.66863930225372314 -0.12846179306507111 --0.17668578028678894 -0.08750934898853302 --0.25361597537994385 -0.21153365075588226 --0.25888064503669739 -0.65591692924499512 --0.27554455399513245 --1.1118277311325073 -0.031473927199840546 -0.88746845722198486 --0.17472690343856812 --0.28637722134590149 --0.8657451868057251 --0.16929206252098083 --1.2802611589431763 -1.3333655595779419 -1.0635685920715332 --0.1194627434015274 --0.08219156414270401 -0.33600854873657227 --0.53115570545196533 --0.37370288372039795 --0.43038749694824219 --0.44431409239768982 --0.28967362642288208 -0.71385776996612549 --0.019285500049591064 -0.082129262387752533 -0.67642509937286377 +-0.25692382454872131 +-0.73635691404342651 +0.00018422541324980557 +0.14540804922580719 +0.35375082492828369 +0.61592674255371094 +0.0021432230714708567 +-0.0047511057928204536 +0.0027079542633146048 +-0.29542267322540283 +0.21327149868011475 +-0.35897406935691833 +0.14523312449455261 +-0.083254538476467133 +-0.29305931925773621 +0.03553655743598938 +0.61654883623123169 +0.027024781331419945 +-0.019266925752162933 +-0.88960468769073486 +-0.74862456321716309 +-0.96893966197967529 +1.3067618608474731 +1.1070153713226318 +0.13350708782672882 +0.54463022947311401 +-0.51521879434585571 +-0.37678718566894531 +-0.22619497776031494 +-0.41377204656600952 +-0.89912605285644531 +-0.54873740673065186 +1.0284610986709595 +-0.15680864453315735 +0.8822476863861084 +0.98478883504867554 diff --git a/results/search/topology_41/resume.obj b/results/search/topology_41/resume.obj index 0619aef2..9353b108 100644 --- a/results/search/topology_41/resume.obj +++ b/results/search/topology_41/resume.obj @@ -1,47 +1,47 @@ -v 1.1770428646010784 -0.39224611151625544 -0.76268057974903969 -v 1.2148899592147422 -0.055840428474421083 -0.48034932291837401 -v 1.32353116965118 -0.83841397248882399 -1.386001010828551 -v 1.1869638347981675 -0.68202324826697025 -1.0596830055483208 -v 4.2665519547607973 3.2946227547320062 -1.0528498356572136 -v 2.0042499025012521 0.69600171327044036 -0.74113197413288345 -v 1.3954236682252401 -0.43370793443315309 -1.0797038877169902 -v 3.2609448269519108 2.6103503572976243 -0.45211572349073426 -v 8.2389444386220969 3.6204076065463249 -5.759443247425752 -v 41.958242771054572 34.702181464157128 -17.915203929147282 -v -17.185912488062961 2.6538269399920624 25.462587601435501 -v 1.2608933487963134 -0.70522246627518981 -0.97860663431343575 -v -1.7171759437822451 1.0649933766343123 -0.74027276383549157 -v 1.3106396896488548 -0.11410531677403433 -0.48908519092638314 -v 1.3957702797923717 -0.026161182919251961 -0.38574055567247162 -v -1.5457053174628104 1.2104364618088848 -0.5573153622326148 -v -1.6665812598997727 1.2057407136925691 -0.60850310686117404 -v -1.6996040829887378 1.3370218127672822 -0.51708702744508606 -v -70.563278660244066 8.6827683345319553 -21.711465029377003 -v 1.6812073386130071 -0.81192272672885213 -0.89843363995570968 -v 0.87317632446746563 -0.54650217508390475 -1.2484268176449254 -v -0.14056181499988085 -1.2408118951776888 -6.6055423451942632 -v 0.24143189990544081 0.29526323779248165 0.75723288688849533 -v -0.65044317449020628 0.76682795576194795 0.58296144025522045 -v -0.061429365363824817 0.57057927895432048 1.181049341042435 -v 1.6375898675780198 -0.89937144508519595 -0.88393641259238187 -v -0.15587474634034876 0.46923607379734117 0.52823572099560367 -v 4.5095438385109281 3.8281980854473581 -4.0614746456673387 -v 1.3738182164846566 -0.0059376860923397359 -0.91398873958148952 -v 4.5439231911252111 3.6463056843292532 -1.4778051842874331 -v 5.2961078560961674 4.5067429109095949 -1.5397192174999499 -v 10.164422652368007 10.354925600283334 -5.2052227429229987 -v 1.4265222766829513 1.9895238206473811 -0.35454010594902113 -v 0.13372230649449618 0.71801495733186704 1.0411698606970412 -v 5.7426655608140331 5.8231485517811326 -5.1447303506919635 -v 1.5449919605303821 -0.029618628141538587 -1.1596852389800119 -v 0.22775640390347421 5.1208424899102294 2.3065140978404033 -v -1.0764705314736898 1.5451797427878158 -0.86220999821100652 -v 1.0960154871284764 3.0223837733937402 -2.1583022711053634 -v 0.95344488389908177 2.878992977857167 -2.1522880110509228 -v 0.83170476524925008 0.54825297918035731 -1.5057850749067276 -v -18.01690841850418 -18.855417193519624 12.247894613901281 -v -6.1706197121174888 1.91930653046425 7.394930410395415 -v 0.15453217106510597 0.15818073932954274 0.84917462137324695 +v 1.0964217101343094 -0.38015933796621371 -0.74749400555929246 +v 1.1276221525412706 -0.039798174940497047 -0.47096638370387717 +v 1.2595434156280401 -0.97392586297875261 -1.4979548921439858 +v 1.0917743775009028 -0.75135327303398547 -1.0852713961596963 +v 4.2257881741808045 3.38084413481862 -1.1228623769562569 +v 2.0969905357970116 0.90154503712001421 -0.79424019538395108 +v 1.3139112554905232 -0.4822251689758964 -1.1099227985566953 +v 3.4073440082871742 2.8095627553621871 -0.64309196742707619 +v 12.139351213922737 5.7725045121217917 -8.6602083315426572 +v 28.811218361403672 24.456928217474207 -11.911630983727081 +v -14.253854199535706 3.782255769096329 22.018053412461335 +v 1.2095840275940122 -0.80234871103261951 -1.0350463429181076 +v -1.8582975509354231 1.0244000064480256 -0.73236266803327821 +v 1.2415762946788058 -0.11125471848573883 -0.48501626663209702 +v 1.3444097323262374 -0.0042611130843010561 -0.36411834232532664 +v -1.69137615826191 1.1290273902668309 -0.58990465044475315 +v -1.8213875362053749 1.1212824193140623 -0.64341474041097335 +v -1.7920553574191873 1.2121533383176024 -0.56191687408422608 +v -68.137574438063993 7.1279320789506055 -20.181388085811918 +v 1.6656463501768839 -0.86085536520245853 -0.91407913449289935 +v 0.72930221887684654 -0.62177357951275758 -1.3280242006827123 +v -0.51079770965799198 -1.5554432446417816 -6.6049684036169012 +v 0.28744326085961097 0.24552693763338843 0.66658353837941497 +v -0.47937119170219478 0.69100253621585894 0.70633568396249191 +v -0.05532515806365676 0.57424698016529296 1.1028143634603591 +v 1.6049331383410432 -0.98184195509076522 -0.89349884666160362 +v 0.16518941453233474 0.29420300590099735 0.60076246626320762 +v 3.4752913183725447 2.7464586161006972 -3.5738504073001569 +v 1.2898532560456661 -0.012594715517575556 -0.94691974767830345 +v 4.5215650310846032 3.762866970287448 -1.5706314789637434 +v 5.2520443677164161 4.6096154175392634 -1.640529901672251 +v 9.501029178357042 9.7870981414981451 -4.7479868397815093 +v 1.3837032049752473 2.0833545952691237 -0.52943501262760395 +v 0.22820489356490184 0.79265615782673993 0.90456713877471584 +v 4.5439067255954093 4.8493432076559246 -4.6562007297729071 +v 1.4507719090403222 -0.046442296071388417 -1.2039031211741371 +v 0.047239416292110391 4.9851170848241138 2.3076423915603939 +v -1.0991377051333495 1.5846110000844742 -1.0030192288684543 +v 1.1329118861598027 3.0641746256518925 -2.1888732247170504 +v 0.69796218179475611 2.638140368022067 -2.1700607970204802 +v 0.61903685860914481 0.61582791402809323 -1.5989868138229733 +v -12.011062855689735 -12.890952817447141 8.2083707416754663 +v -5.4737392245322525 2.3201645883385584 6.6359240766905669 +v 0.26487752906480849 0.20119903779599665 0.69630588073225341 f 1 2 11 10 8 5 6 9 3 4 7 f 1 2 14 15 20 19 18 16 17 13 12 f 3 4 26 25 24 27 23 12 13 22 21 diff --git a/results/search/topology_41/resume.planes b/results/search/topology_41/resume.planes index 77deaae2..30cfdb82 100644 --- a/results/search/topology_41/resume.planes +++ b/results/search/topology_41/resume.planes @@ -1,37 +1,37 @@ 36 -0.39461910724639893 --0.30613622069358826 -0.31187045574188232 -0.20063433051109314 -0.40633770823478699 --0.51105833053588867 -0.10512115061283112 -0.18271386623382568 --0.043572951108217239 -0.81366419792175293 --0.71570086479187012 --0.06121286004781723 -0.45800301432609558 --0.10437607020139694 -0.3291451632976532 --0.27293694019317627 -0.89487302303314209 -0.562427818775177 --0.35699591040611267 --0.19232000410556793 --0.76056677103042603 -0.33874854445457458 --0.3936614990234375 --1.3554204702377319 --1.3696887493133545 -1.3245706558227539 --0.88890588283538818 --0.12229475378990173 -0.44822618365287781 -0.55270421504974365 -0.23159107565879822 -0.36162018775939941 -0.12649266421794891 -0.45052003860473633 --0.14602616429328918 -0.47462481260299683 +0.34878814220428467 +-0.26195886731147766 +0.28307580947875977 +0.17873972654342651 +0.38128110766410828 +-0.48946300148963928 +0.080429486930370331 +0.14238107204437256 +-0.04409322515130043 +0.78169089555740356 +-0.67959332466125488 +-0.063457019627094269 +0.46663647890090942 +-0.081227779388427734 +0.30289849638938904 +-0.27685695886611938 +0.85734200477600098 +0.54857814311981201 +-0.42588093876838684 +-0.22624334692955017 +-0.86004185676574707 +0.33283725380897522 +-0.40037882328033447 +-1.3718394041061401 +-1.3857492208480835 +1.3740534782409668 +-0.92159080505371094 +-0.10751863569021225 +0.37417137622833252 +0.47640910744667053 +0.2500268816947937 +0.37772470712661743 +0.10681205242872238 +0.42023870348930359 +-0.13370425999164581 +0.45371663570404053 diff --git a/results/search/topology_42/resume.obj b/results/search/topology_42/resume.obj index d6efa006..b3ffcffa 100644 --- a/results/search/topology_42/resume.obj +++ b/results/search/topology_42/resume.obj @@ -1,47 +1,47 @@ -v -0.28002735167457893 -0.52219616968817784 -0.68870371498544047 -v -0.22739003631930543 -0.65208267414134335 -0.5613325948728789 -v 2.5560576280724554 -0.62142778743939031 0.19283291907458111 -v 1.5340651248102652 -0.81120663069191667 0.070700512253764947 -v -0.2897713638253448 -1.220747487257875 -0.085819561181251558 -v -0.56527280095792665 -0.71678262457459474 -0.60001451221964008 -v 3.2061889071194338 -0.66306273283662398 0.41128715971910013 -v -881.89673236713713 1071.5208858472504 -1177.3978407886111 -v 1.7281997365953932 0.32332821862220118 -0.8584441288353396 -v 1.5571973314029519 -0.90444056338610868 0.15801922871008101 -v 1.3830397736412245 -0.14566797291699418 -0.54865787055466275 -v 0.061259738886342383 -1.3783132982287765 -0.88698948807050726 -v 0.56047150963326875 -2.6763038624320847 -4.5297444482765163 -v -1.4472896133055067 2.4230065228137008 1.2456766081832509 -v -0.1934067270814068 -0.70658347325259963 1.6735822300559469 -v 2.1667191788508373 -6.3822014526232662 18.250007986134293 -v -1.0237372246275456 1.7672339677805662 30.823948307216156 -v -2.2892775598699346 4.5355325451097457 1.7644230317905936 -v 0.016351150044443742 -1.2620706226958662 -0.59766156387504443 -v 0.22125753182277616 -1.7612506328577213 0.37055286452885139 -v -1.1640459960124512 -15.553199178617072 -38.165199718924974 -v -0.32537366816270608 -1.1638527095697986 -0.17109849912768549 -v 2.1498717029889445 -0.2391890027099399 1.3627263300776038 -v 4.8568495013303066 -1.0543435140970934 -1.8222039891328201 -v 1.1915457293012357 -1.1895428162317883 -0.8081373894572712 -v 1.6624573086552741 -1.0865286951680861 -0.71041448577592037 -v 0.2565919344879658 -1.3426914069824978 -0.86537777768370816 -v -1.9017351278347532 3.1491900432589772 0.15702011691078188 -v 0.32543800598919076 1.3389926300022374 9.4929978061089457 -v 0.342423108644129 1.3180076573742874 9.5477711936247296 -v 0.37285744581343389 1.2234663246161093 9.5156518622988902 -v -0.36285430752245473 -1.3836029541744777 -0.90063527859874981 -v 1.1123425954158235 0.9372025558875372 0.20364711864531859 -v 79.755150859828049 -486.08828276153298 1183.9670177033345 -v 1.8187946567482733 0.62331893233592883 -0.34892062021271947 -v 1.7075442005894956 0.56070962163751747 0.046710617415149147 -v 2.9258834408319498 -0.97747193651280517 -0.70601518803653263 -v 8.6750049587241111 -7.1222781492168066 -2.0330651058442166 -v 2.7219826020678792 -0.37660876332384219 -8.5984360400218023 -v 0.49113941185426985 1.0597680354936048 8.3259126851302039 -v 0.76081176599014166 -1.2342452241161441 -0.80219440476081272 -v 0.20028236431625657 -1.3066358874527855 -0.85033008645853669 -v 2.1585326703117675 -2.6465942788540326 -1.134353308258818 -v 1.7518369835000149 -1.3587772718191089 -0.83297230589341975 +v 0.45820951615039385 -0.10281868886063809 -1.0472318428371694 +v 1.5259539043984152 0.40291440980346072 -3.958034997248451 +v 0.89319772863161373 -0.38938869947716442 0.33204901444684098 +v -1.5916091949823963 -0.20288031857293165 0.0061795805819847838 +v -0.65969460291227211 -0.2415879006342814 -0.034287987058216673 +v -1.0630266879021066 0.056878312550591115 -1.4837372528808339 +v -6.6368213546674566 -0.96832970098949389 5.3023946966121498 +v -2.1388638433091307 -0.027439490070849608 -0.7652628050555017 +v 3.5138388144573276 0.040713674556785616 -2.5882285786840269 +v -0.88730822491291594 -0.64274779600094489 2.1137807226535159 +v 2.8227950130170822 0.25902505304346546 -3.5455665155269438 +v 0.038658297018498003 -0.50498932674570252 0.085255152678484492 +v 0.31954694594200322 -1.6944799892035693 -0.75368691898233098 +v -0.73534962876481047 0.67536077209390055 2.2809236175919789 +v -0.11674220719264226 -1.1219594030886468 0.47881974618804102 +v -0.79055450539999017 0.67020745653362879 2.4325810094477487 +v -0.79715146151100957 -0.44566612050067778 2.3889721772290242 +v 0.2814338621732877 -2.6809564529998258 -0.70339022768211101 +v 0.11714709526088789 -1.3364082019670707 -0.17679352470373738 +v 0.1951976204828105 -1.8763514029105051 -0.42150214554483317 +v -0.022997747417929933 -1.7484349453716945 -0.85832362125476502 +v -0.43770895681024075 -0.71320666451039394 -0.16008794188242509 +v 0.9297785907497893 1.1441006630815029 1.4883307127957026 +v 12.130927572437768 5.1623925205960992 6.5993974292933002 +v 1.2667167818353893 -0.91535781616966194 0.0078086650625107668 +v -1.7188169675789595 -0.69519029336556648 -0.38667058015766864 +v -0.79656674534062621 -1.3586721485332696 -0.71114825112145075 +v -1.0721821675899921 0.31529398465821273 -0.76048965167921367 +v -0.15570571962358817 -0.75750173793547049 1.3473083933083818 +v -0.59981371724340304 0.65412418941869477 3.0055634294445621 +v -57.321380842713594 54.104809950696215 -166.34802186416866 +v -1.5581250558159521 0.94744616598366604 -1.6878249117389805 +v 160.57888513744771 38.358121756489489 -167.78462563510189 +v -1.7498384364281061 0.12249648155502714 -0.46248902917429291 +v 2.9868669075522738 1.2155497566104527 -5.6183192472069239 +v 2.8186947277462084 1.1623656495685866 -5.6087997926972069 +v 0.23805627578896349 -0.90137353220214955 0.74513234073066847 +v 0.58796687700882777 -0.83958906698941649 0.35862824568818147 +v 0.44752893323324211 -1.8680211874964858 -0.27276554341007464 +v -1.889632156471974 -2.2594999678454255 -0.93343996127808548 +v -0.19548304443701872 -1.7612450871110845 -0.94376378475221423 +v -0.4605226578402436 -1.7458121115811658 -0.72646530735579395 +v -1.7054096234945892 0.33266173829758638 -0.32446699172437443 +v -2.0209312796599819 0.9069188689417601 -1.260618492572394 f 1 2 6 5 8 7 10 4 3 9 11 f 1 2 18 17 16 14 15 19 20 13 12 f 3 4 26 27 22 21 13 12 25 24 23 diff --git a/results/search/topology_42/resume.planes b/results/search/topology_42/resume.planes index 26b99f91..1da84382 100644 --- a/results/search/topology_42/resume.planes +++ b/results/search/topology_42/resume.planes @@ -1,37 +1,37 @@ 36 -0.16288729012012482 --0.50345724821090698 --0.58071446418762207 --0.41820722818374634 --0.16724458336830139 -0.0022806695196777582 -0.12781146168708801 --0.90770637989044189 -0.34095054864883423 --0.62987536191940308 --0.23813003301620483 -0.10408969968557358 -0.7979540228843689 -1.0956854820251465 -0.39777663350105286 -1.0698351860046387 -0.99062645435333252 -0.047778833657503128 -0.11082781851291656 --1.0329442024230957 -0.26286664605140686 -1.1810891628265381 -0.35700669884681702 -0.068300820887088776 -0.015217386186122894 -0.12701211869716644 --0.52219456434249878 -0.97182273864746094 --0.59712976217269897 -0.17877718806266785 --0.64537286758422852 --0.87634658813476562 --0.31523355841636658 -0.0056245140731334686 -0.097000695765018463 --0.21137438714504242 +-0.013487541116774082 +-0.27042877674102783 +-0.05193275585770607 +0.070459924638271332 +-0.0014170127687975764 +0.025599999353289604 +-0.053574353456497192 +-0.21427659690380096 +0.28587383031845093 +-0.60059511661529541 +-0.31023246049880981 +0.10324291884899139 +-0.20889505743980408 +0.65089035034179688 +-0.053922742605209351 +0.68752557039260864 +-0.43347814679145813 +0.55313843488693237 +0.30118927359580994 +-1.0149880647659302 +0.43944796919822693 +-1.4360800981521606 +-0.010181572288274765 +0.47777259349822998 +-0.11934336274862289 +-0.32689160108566284 +-0.16029928624629974 +0.48331731557846069 +-1.6584236621856689 +-0.72706425189971924 +-0.16732627153396606 +-0.15682071447372437 +0.29265162348747253 +-0.9057355523109436 +-0.74457794427871704 +-1.051846981048584 diff --git a/results/search/topology_43/resume.obj b/results/search/topology_43/resume.obj index b2173cb4..9afec2a2 100644 --- a/results/search/topology_43/resume.obj +++ b/results/search/topology_43/resume.obj @@ -1,47 +1,47 @@ -v -0.091905214965499665 0.63521407537681285 0.8966511950557936 -v -2.2745972091287663 2.7405519253343722 -0.11764871158516166 -v 0.95204693450350542 0.024329253691698 -1.5198314635871786 -v 0.7176506138255474 0.36423877648886266 -2.4626024185857913 -v 1.2653231995961218 -0.46765294164015059 0.016284909981679474 -v 1.4944665138335602 -0.67803844443353922 0.044841285173425338 -v 0.71772735498992901 -0.032048907540970187 0.44009519484318327 -v 1.2606838791635289 -0.51883701086786904 0.42188674131601522 -v 2.7234451156944193 -1.7129470123130324 -0.48672598014245272 -v -2.0444655327403334 3.1188909229495869 -4.4086138459435489 -v 0.11416564949579076 0.51039613918840543 0.45065609659058314 -v -1.2669732220810961 -0.50997148885997323 0.052557791731935553 -v 0.33260199212210978 -0.85180233538943961 0.95297832470873156 -v -5.9364331389752882 2.41051624829193 -2.3244636285639837 -v 4.0250213347799315 6.7490482599416728 4.1288724569789883 -v 0.69349546061088774 1.0029378302759451 1.4088137086043853 -v 0.850318526043915 0.054017938623156556 1.3773579133656049 -v -2.441145105192148 -0.53060503359229338 -0.64391688732493635 -v 8.5823208024389501 -1.3931329842584852 5.7566348624900057 -v -2.0119482586020938 1.2666016933678255 -0.15524876171478785 -v -0.35629342772396888 -0.25925121080777391 -0.68071937449582187 -v 0.78516298489187053 -0.44366885560142472 -0.20467843188444984 -v -1.7139578286104644 -0.50937214403630726 0.066507277290655697 -v 1.2521798567678399 -0.6348080058992438 0.31374521571723363 -v -1.7070692552335152 -0.1083809908016819 -1.0555869833993934 -v 1.5751790899844327 0.052143891725846561 -1.6194327805385669 -v -0.18108522426440685 -0.13776473055926911 -1.0267274070521073 -v 1.1118594941810562 -0.61012252403404699 -0.11236586495137005 -v 2.3885116423657622 1.3753108997650341 1.2671709772071729 -v -1.7331276915873342 0.097180877887291114 -1.2031369309461022 -v 4.3777476093918564 2.3766934205361769 2.6080406181970615 -v -1.8497838700099403 0.69040738800468948 -1.0297843981810311 -v 1.7122892464032171 -1.2253839121795105 -0.70578697429187964 -v 1.4784199113862695 -4.443256069039875 -3.708362916875815 -v -4.4795207372507138 -0.82531976946887775 -0.14614983186304287 -v 2.5490077707995691 -1.9065072825089462 -1.3678846318820286 -v -1.8649246410648757 0.11538996972347708 0.65535096430809014 -v 1.2315620792142425 -1.4450842641898485 -0.47796053280438733 -v 0.26559979220503865 -8.9308909572391624 -7.0699999982194877 -v -2.7133016204701734 2.4134098547170684 7.0573604077978489 -v 4.883209557552453 -3.5599038703683505 0.57347217058102418 -v 3.6166701491572364 -2.1791725391742323 -0.26709229031156956 -v -0.23450783329318636 0.19387303428849859 -0.1452107555743283 -v -1.9187052458243794 0.99110306150179373 -0.80040874407996099 +v -0.84626154448518831 -0.92749612345451493 -0.014387684751999252 +v -0.99316462499837643 -0.94919474246130564 -0.14636103598297978 +v 0.80228980866841981 -0.34840380847069591 -0.68679090061517012 +v -0.60546805575486384 0.16829850128316434 -6.6013378395380427 +v 1.8307590619254386 -0.31923664340139385 1.0247855380109736 +v 1.0277681099036495 -0.42588811741901494 0.22668347304988906 +v 0.69489753404074583 -0.63881743247203304 0.97847078157832323 +v 0.92677539931691255 -0.48586576215176475 0.42509773910519733 +v 1.1767602845004059 -0.2458057751459877 -0.65380339354927286 +v -1.4521642662842154 0.22432543994656845 -8.524002780288491 +v -0.58944963808045381 -0.74012150258416609 -0.74261334340651586 +v 0.96001415605063389 -1.0748157149728936 0.76138898444804459 +v 0.94001934988344715 -1.0945229848479219 0.70916235211299938 +v -0.13419933391171551 -1.5664770332912223 -0.89659097921248165 +v 3.8567474558048094 -0.79433743169333915 3.0622969791258341 +v 1.1274914085381305 -1.1461614399674436 0.71534274176095503 +v -0.16441750767683938 -0.11398582212793121 2.0559234217410012 +v -0.84438294067437891 -1.3643169928304051 -0.90662291101673986 +v 282.46381902197817 356.43775619635056 899.77897806475198 +v -2.9787840985973202 1.7761459774068211 4.243309455481354 +v 0.65279738636583062 -1.3110978411788594 -0.11922194135423725 +v 1.0029376483695303 -0.46191598797848515 0.20305347904664528 +v 0.23373847061707659 -2.8016216405582655 0.052253084052880205 +v 0.94726754783971034 -1.035894044410389 0.66759944380148095 +v 0.055360697876037715 -2.4726874074834959 -1.006753149299314 +v 0.77951135485159295 1.2397685312432802 -2.6387841011719835 +v 0.73850621985916254 1.1361667906940023 -2.6716455156847916 +v 1.4613864115869584 -1.155417991530052 0.68289614705613366 +v 0.59647337630577135 2.0141698899737057 -0.28204780183934741 +v -0.22022654933312666 -2.0615007019915796 -0.96659074492290564 +v 1.2916074073613306 3.8096058804813513 0.35425392008416567 +v -0.83208879645945477 -1.1063036985123806 -1.6079557934236393 +v 3.2414749201028825 -4.9753837126338034 -1.1730262859412406 +v 3.3069705829491767 -5.0844738379615606 -1.2272707104357101 +v -3.7233028346679893 -8.0063715694698931 -1.9352178660537347 +v 3.0244976662040406 -2.4399411986027322 -0.022981187649936619 +v -1.0710500803255989 -0.89935931923290469 1.0119397230615699 +v 2.683258017620489 -3.4661870186278527 -1.0021294438328163 +v 4.5573210025348576 -9.2146599184361619 -1.2329781671471274 +v -1.6096462425535141 -0.29625924631506351 4.5552678202607808 +v 2.9795766797167187 -3.7086783736367428 -1.0188820023745648 +v 2.4180149199918501 -1.4787132982181979 -0.75272713032597671 +v -0.48199627537526252 0.53096819696156439 1.3667151049680646 +v -4.6431674301752288 4.3858580280854076 2.3018145070918905 f 1 2 10 4 3 9 8 6 5 7 11 f 1 2 20 17 13 12 16 19 15 14 18 f 3 4 26 27 22 21 24 13 12 23 25 diff --git a/results/search/topology_43/resume.planes b/results/search/topology_43/resume.planes index 48e07cba..f0ea00d7 100644 --- a/results/search/topology_43/resume.planes +++ b/results/search/topology_43/resume.planes @@ -1,37 +1,37 @@ 36 -0.33215871453285217 -0.36860308051109314 -0.050314359366893768 --0.37533479928970337 --0.083086922764778137 -0.63523048162460327 --0.0056170346215367317 --0.44951644539833069 --0.16067349910736084 -0.14241725206375122 -0.11479997634887695 --0.29701635241508484 -0.0078503787517547607 --0.24511754512786865 -0.26208195090293884 -0.68663585186004639 --0.73786699771881104 -0.73729312419891357 --0.1211833581328392 --0.64618164300918579 --0.8788377046585083 -1.5742573738098145 -0.60588920116424561 --1.3767995834350586 --0.060858972370624542 -0.25357338786125183 --0.099085770547389984 --1.7368470430374146 --0.30643010139465332 --0.1201682984828949 -0.042747702449560165 -0.048553168773651123 --0.050805293023586273 -0.041345551609992981 -0.068289883434772491 --0.023185854777693748 +0.17834924161434174 +-0.61989277601242065 +-0.096604622900485992 +-0.25701728463172913 +-0.88150668144226074 +0.43102723360061646 +0.93623334169387817 +-0.29178956151008606 +-0.24832978844642639 +0.40621870756149292 +-0.013046868145465851 +-0.40696358680725098 +0.092965036630630493 +-0.48929145932197571 +1.0962541103363037 +0.71325409412384033 +0.21533508598804474 +0.42813834547996521 +0.034649621695280075 +0.088539250195026398 +-0.66871416568756104 +1.7949022054672241 +0.54444944858551025 +-0.7745671272277832 +-0.32516396045684814 +0.15261530876159668 +-0.075402095913887024 +-1.1284917593002319 +-0.75209134817123413 +-0.043522637337446213 +-0.27969571948051453 +-0.35765540599822998 +0.22977282106876373 +0.30116656422615051 +0.29238662123680115 +0.13483850657939911 diff --git a/results/search/topology_45/resume.obj b/results/search/topology_45/resume.obj index 7d89b166..0d51ac32 100644 --- a/results/search/topology_45/resume.obj +++ b/results/search/topology_45/resume.obj @@ -1,47 +1,47 @@ -v 17.786105614197769 6.5370380796446197 -7.274190577429672 -v 6.8982893288225959 2.2649273891086401 -2.337965237997587 -v -0.48427428727539129 1.1037255396339645 -0.95554434328385096 -v -0.16235437550562223 1.1190269227491969 -0.97582811533785385 -v -0.72159108287253726 -0.30001164353613524 0.63566875904164333 -v -0.98296875519776528 0.11137359656870886 0.17238653338124876 -v -0.63418491908678298 1.6956932777731273 -1.6242716039856726 -v -0.29266566302460667 1.3216881014962218 -1.2040411142274061 -v -1.92682769800896 -0.73942153006442302 1.1441720747452599 -v -0.31782071494636494 0.035595912770557465 0.25204545279579216 -v -0.47649016200320476 0.159084819106731 0.1137163662469402 -v 0.57127696063148192 -1.289618905779979 -1.2146608611783065 -v 0.92092355663287695 -1.0581867394420752 -1.2197592631996972 -v -1.9174207310496358 -2.0705546261570906 0.23202728504271211 -v -9.3397545663249701 -9.5900962589006991 -3.9033990660265316 -v -10.206589805949626 8.4569804481255133 26.423874969921471 -v 5.5167306872644142 -0.38748558507716008 -5.1472023499516766 -v 0.54134361116569929 -0.87926580220141737 -0.51391607353247581 -v 3.0156450352491335 0.20623024124693698 -1.4490584977863259 -v 0.27288396676180637 -0.55319900793608012 0.31011908799088783 -v -1.2288041750683965 1.756450435012739 -0.85439263075959249 -v -1.4638510204193336 1.2852221457733413 -0.8758460492900193 -v 6.6463820059267968 4.6074253079735348 -1.1553786875147876 -v -0.37358177618037064 1.5245689418312396 -0.92976113780808567 -v 2.6957310852347973 0.2185276291951242 -1.2376015891054579 -v -0.51623780595893942 -0.12907274353869744 -1.0505845989978817 -v -0.33831922612341087 0.82824812571257933 -0.98700183881264458 -v -11.863600320321554 -5.1107311404464033 -8.6150226072813378 -v -1.7047280859778442 1.0931358865165324 -1.0344555988300588 -v -0.49834256849918174 0.050995739070030237 0.70140988970098506 -v -0.6027980867624636 0.38031651343534989 0.43879298991961108 -v -1.1989602268855244 0.038926958172138031 -0.016717415096909494 -v 2.5690653784432631 3.8744363448300509 1.0118769069026516 -v -2.0553716464209759 1.6906706297417773 -0.19087212555673005 -v -2.3789206206162348 3.4942324280844099 5.0205554241822314 -v 1444.1766174623826 -534.60895985410571 -2924.3781681196742 -v -6.5754192484003431 -1.9193004713972279 -5.3604554256359673 -v 2.9849769618739468 3.6638916252884814 0.62155831712970544 -v 1.807608870398822 -0.62486636102009718 -4.2571287499090156 -v -0.23466863309855265 1.0269492153891313 -1.5835460926686191 -v -1.7902220045367201 2.2769110950768225 2.8462471881516285 -v 0.07429491307779186 -0.42162848638555839 0.055609625165596949 -v -0.40738177350354299 1.0508413596084301 -1.1685582266168542 -v -0.84815262342273767 -0.14532013503921684 -0.95040698990960137 +v 16.712918514100519 5.3968725138352793 -8.941401979760208 +v 6.1588454220414697 1.6837819796737521 -2.8226208542336653 +v -0.44672525692797793 1.1052032760843389 -0.96026073332653372 +v -0.080828520822565642 1.0660421040601182 -0.98315801668984715 +v -0.7168539547278423 -0.27683002157803482 0.64696230914533315 +v -0.89701565202470723 0.052277777524725871 0.3090228177422169 +v -0.52186989333805689 1.7321705464223984 -1.6531672254297762 +v -0.19451653767515356 1.3270513814069875 -1.2565204256971554 +v -1.9046354608472023 -0.59901988276330498 1.2277293524666755 +v -0.31825825074610958 -0.011193985958046972 0.27452790481190065 +v -0.45867903489629447 0.091183174744127751 0.18486239148395617 +v 0.66741295524105659 -1.2715859413411708 -1.2120211345297975 +v 0.98634533948987446 -1.0380308054968905 -1.2103940412722629 +v -1.9265069236325012 -2.1596024641755096 0.32957857482615771 +v -4.7847185235616729 -5.1755592687786418 -1.1035870691719194 +v -10.824168275509866 8.2539627617342077 26.306750434770002 +v 5.3922494570852493 -0.27561216533364991 -4.9754567248762198 +v 0.59006781181888501 -0.88896714420142642 -0.53721891016912526 +v 2.8697398657763036 0.23220612004293498 -1.3682993819694784 +v 0.27993387954476623 -0.51797025594735069 0.38056839528421726 +v -1.2582271321625174 1.7518265972935017 -0.8643405620634359 +v -1.5006682178020094 1.2914988078763066 -0.88838024966701135 +v 5.9914486447815332 4.3581859639966902 -1.0452816264790923 +v -0.3362932168485977 1.5579267320561614 -0.92971257216526659 +v 2.6002985818607542 0.23282589158154735 -1.194987274401341 +v -0.46234497744380321 -0.22600888826299703 -1.0667616041137822 +v -0.26408410417686878 0.82970158785812231 -0.99232923666678863 +v -8.6201883773625667 -2.8777861933623181 -6.052544362897927 +v -1.8623510599341819 1.0105361428017801 -1.117748530129751 +v -0.52820498728883036 0.021598371544093976 0.69416809294471304 +v -0.60453938294344567 0.29834916642827031 0.48550373204964148 +v -1.2214590044491653 -0.067736666778977883 0.04031292484501825 +v 2.4538494383254483 3.7694487932272356 0.89357976646109405 +v -2.2749956686515671 1.5950147145471931 -0.27347968762472874 +v -2.8221892240459692 3.6461293082799946 5.8299242141506742 +v 1475.390165536244 -437.76145921482276 -2666.6552298023239 +v -8.315880920156129 -2.7063792090984911 -5.8921602655069778 +v 3.096502384033692 3.4502729084215669 0.30103493579517171 +v 2.1995405349701929 -0.64853097717297525 -4.4251023531110931 +v -0.18848111275913224 1.1029490399539792 -1.5322777120302016 +v -1.8356938362359887 1.9430105411135812 2.6171080213265006 +v 0.051631808674534041 -0.38840734392778642 0.090721367496430422 +v -0.3262955824955211 1.1030973948631908 -1.2276549838216622 +v -0.86968577913770206 -0.23334395677512068 -0.83745037470804717 f 1 2 8 4 3 9 5 6 11 10 7 f 1 2 17 19 18 13 12 20 15 14 16 f 3 4 27 13 12 26 25 23 21 22 24 diff --git a/results/search/topology_45/resume.planes b/results/search/topology_45/resume.planes index b398123b..df39665f 100644 --- a/results/search/topology_45/resume.planes +++ b/results/search/topology_45/resume.planes @@ -1,37 +1,37 @@ 36 -0.0011674219276756048 -0.14359705150127411 -0.12685263156890869 -0.34023106098175049 --0.50715667009353638 -0.3115222156047821 --0.070996016263961792 -0.08383120596408844 --1.0635249614715576 --0.55998939275741577 -0.25464257597923279 -0.54205602407455444 --0.74591296911239624 -1.9830754995346069 --0.73260897397994995 --0.35682958364486694 -1.3729500770568848 --1.120820164680481 -0.12810708582401276 --0.11907584220170975 -0.20073860883712769 --0.17379096150398254 --0.16962872445583344 -0.047915086150169373 --0.13062363862991333 --0.081062711775302887 --0.049697011709213257 --0.021617241203784943 -0.17662960290908813 --0.042976792901754379 --0.9577290415763855 -0.27730539441108704 --0.41456106305122375 -0.1023460328578949 --0.057719402015209198 --0.10969719290733337 +0.016190385445952415 +0.099603623151779175 +0.088369198143482208 +0.36161881685256958 +-0.49605864286422729 +0.32271799445152283 +-0.057372331619262695 +0.085753880441188812 +-1.0634698867797852 +-0.55476045608520508 +0.26333799958229065 +0.55220884084701538 +-0.73466986417770386 +1.9924516677856445 +-0.73545080423355103 +-0.35727414488792419 +1.3855104446411133 +-1.1337957382202148 +0.12723162770271301 +-0.11178016662597656 +0.19820156693458557 +-0.17520831525325775 +-0.19629703462123871 +0.050259634852409363 +-0.12686388194561005 +-0.078237608075141907 +-0.057356428354978561 +-0.017369229346513748 +0.10828211158514023 +-0.027390455827116966 +-0.9253961443901062 +0.25398820638656616 +-0.41878247261047363 +0.084505461156368256 +-0.061868399381637573 +-0.094217360019683838 diff --git a/results/search/topology_46/resume.obj b/results/search/topology_46/resume.obj index d01d04b7..708f2ff2 100644 --- a/results/search/topology_46/resume.obj +++ b/results/search/topology_46/resume.obj @@ -1,47 +1,47 @@ -v 1.7110215323505227 3.4763873550614681 -2.6421951736557596 -v 1.0648540905728545 1.651931588219431 -2.3720916225922908 -v -0.2114766571097664 -1.0557849479718666 1.595778150147362 -v 0.26819055173843365 -0.43462125538576835 -1.4149632732639001 -v 0.6833017536393875 4.2825537284067794 11.999741220600811 -v 0.71646444151466759 0.95476890802390313 -1.1282575960771366 -v 0.44934722748877454 0.50920088395472818 0.16639520162368671 -v -0.097271474255740092 -0.31393639750258806 3.1555404684896611 -v 0.74422416202187625 1.0466126548895929 -1.0882541910936341 -v 0.83790088257757911 1.176249816372241 -1.6443212264036018 -v 0.13844343410422663 0.11918333943503981 2.1661471897537066 -v 0.8545382751356797 -0.98587401535189145 -1.5186861214246996 -v 0.53664297034988184 -0.52925484001101097 -1.8929645913675843 -v 0.78729896931708065 2.5066646044479732 -2.8696735177373052 -v 0.999154038312979 2.1121451598014098 -2.5864566735827568 -v -6.2767140155620931 -3.5836698815389969 -5.1056737801457439 -v 4.548386001294598 -1.8301561225543514 1.1594394041607172 -v -0.33354804461790771 -1.5254705886831972 -2.0762916975691263 -v -1.0288078209309783 -1.3201003408879908 -2.5977704539605169 -v 0.84525675298366365 2.0958438324728066 -2.6787571857319619 -v -1.2663016048402982 0.72946639075890995 -0.38330881252150162 -v -1.2931745795568608 0.71605297581763472 -0.27300038210384026 -v 0.55929155433297106 -1.2004347191523004 -0.12338644224344841 -v 1.2064132693487932 -1.9391975477626013 0.11793827606492457 -v -1.1615839208052214 0.3597924244574835 0.33835536017219348 -v -1.1601820510629413 0.48296026898682176 -0.0016226835640359427 -v 1.3098076473822498 -1.8328950731324594 -0.45573962918694155 -v -1.137541608776599 1.8389464411203065 7.3469885651918485 -v 1.3807955996892289 2.9103413211236036 -4.4569324329117439 -v 1.3092190777422947 5.3154533550818508 15.123399499168112 -v -1.4521427771394355 0.53664194119062913 -0.41112707849132701 -v -1.769219874424967 0.32043168154883594 0.43256418694029519 -v -0.42032468601818335 2.0203835917504391 3.0078794718319299 -v -0.72518309822458482 0.92208182808886963 5.5544531093940011 -v 0.73112642231300995 0.86658975472083877 -1.1848565832439204 -v 0.19115780994606565 1.1167977658682759 1.2844480663803823 -v 0.31733020812924734 -0.56863255857184014 0.91638066690823217 -v -9.1153718470016294 0.70647307495331146 3.0597784538334092 -v -5.3456295319045104 -1.0183020631713777 0.41906662782691939 -v 1.9771252022366035 -1.3851549348160987 1.4502582321395145 -v -7.5671849635740411 0.4746116375983136 2.2462214404942409 -v 3.7439572149844258 -6.1682173507469216 -6.5118192040511627 -v -1.4654642175363628 0.28140247735799506 0.28410195158807861 -v 0.91434538954998179 2.3145596368347037 -3.2229875023713959 +v -0.98377792794022367 0.63458541819926162 0.009054352222626837 +v -0.72122449918410014 -0.0092004422141723809 0.15502820253994931 +v -2.1981274449726511 1.3798895355764838 1.0608074604734081 +v 0.13669035630907836 1.1091311417853322 -1.8604864467810442 +v -1.7046751556289155 0.10117772268158901 1.3883466973876 +v 7.3691773881514218 -9.7483246414206572 -3.1592110411949959 +v 0.55628783700982909 0.64444894427070731 -2.0636467633698663 +v -2.8212763368656169 2.3238559530581737 1.166136317048704 +v 2.4574209227422501 -4.3259322950703574 -0.76779718519430284 +v -0.42431221722652573 0.83682417760657635 -0.89758336424660012 +v -4.7282997827273237 4.1457212787030233 2.3138692446498674 +v 1.7077114683159038 0.42295479659795782 0.21087688784296973 +v 1.12516553171216 0.5900264919502809 0.14261851484695054 +v -0.2870967184037026 0.89982213937389277 -0.0035593993399595791 +v 1.4052998162312476 0.79564562135395978 0.11748965848145919 +v -7.7420937755120711 7.4480430051421846 -1.7708453924553147 +v -1.5633724440449113 -0.095285185156912255 0.1227450598259983 +v -0.4801307854447443 -2.0718730856245684 0.58728719144508623 +v -161.59171762153494 110.86078372758053 -31.813398355029712 +v -0.11967573324705481 0.62039359865332078 0.062956001759999686 +v -0.079253869322225542 0.85472392831711541 0.64810484007016478 +v -0.27091505336920757 1.1470963911375167 -1.2759788255070132 +v 5.2083463828491023 -1.2026263620216151 5.6002179866316979 +v 1.9246140773132188 -0.53052150768667805 7.3754113368331522 +v 2.5042881969327202 0.26198865953163147 -0.23637433335593894 +v 1.6327011049805933 0.4794726089561886 -0.078305565699117105 +v 0.69144295091114794 0.3050736961946674 3.3706553446037382 +v 2621.6840003015232 -110.30319525824474 5805.9043187947436 +v 1.1608401966725805 1.3581324494528169 0.46058292946227419 +v -0.95222796772548313 0.25371356956614127 2.0813534404542295 +v 0.66214149787010168 1.1862939099358978 0.37452013290032649 +v 0.16198645271691819 1.3453533155384796 -1.460273996465806 +v -1.0764748634110692 1.210209748415553 -3.2124843946701267 +v 221.6868127927423 -509.87831865783704 -315.16292753259233 +v 1.5750192951990685 0.44967147726106554 -0.049334417296216848 +v 0.75341274673382119 -4.292282997230549 -9.5243304131773865 +v 6.05605618267818 -2.8060073024320702 4.9667637619495375 +v -7.9768315025398389 11.754345144822976 4.658958310673138 +v -3.6871798030629459 4.2848495411244363 2.362706062514297 +v -0.25404776608884089 -1.0405610511508705 1.580572788120834 +v 2.0386965717814096 0.6427006645556067 -0.22152694233161035 +v 8.8757997100543893 -17.164317624849136 -4.3298532444439752 +v -6.8984538631005012 12.70403300278395 7.4834105365422889 +v 0.017489045450958068 0.30574529025167629 -0.12897985051907115 f 1 2 10 9 6 7 4 3 8 11 5 f 1 2 17 16 19 18 13 12 15 20 14 f 3 4 25 26 22 21 13 12 23 27 24 diff --git a/results/search/topology_46/resume.planes b/results/search/topology_46/resume.planes index dd761615..06fc5ac5 100644 --- a/results/search/topology_46/resume.planes +++ b/results/search/topology_46/resume.planes @@ -1,37 +1,37 @@ 36 -0.25841918587684631 --0.088120691478252411 -0.02299029566347599 -1.0048024654388428 --0.58851337432861328 --1.5714194774627686 --0.32038268446922302 --0.31879955530166626 --0.11681633442640305 --1.0256977081298828 -1.0069359540939331 --0.12743449211120605 -0.4767971932888031 -0.013216800056397915 -0.10292313247919083 --0.17562371492385864 --1.4846407175064087 -0.71897858381271362 --0.39344549179077148 -0.50810360908508301 --0.89352899789810181 --0.039046432822942734 -0.2526182234287262 --0.14630025625228882 -0.029495876282453537 -0.11520757526159286 -0.084499627351760864 --0.22371506690979004 -0.69389230012893677 -0.25046205520629883 -0.68011772632598877 -0.16732263565063477 -0.15358297526836395 --0.31043887138366699 --0.485423743724823 -0.22272060811519623 +-0.32340535521507263 +-0.18658065795898438 +-0.24118569493293762 +-0.01106614526361227 +0.037978965789079666 +0.18740189075469971 +0.22830848395824432 +0.8388526439666748 +0.1047249361872673 +-0.32259184122085571 +0.85503947734832764 +0.1620606929063797 +1.1353932619094849 +0.79670780897140503 +-0.49718213081359863 +-0.99399077892303467 +-0.70479226112365723 +0.43573978543281555 +0.19015894830226898 +-0.035853266716003418 +0.47186517715454102 +0.93908560276031494 +1.1778827905654907 +-0.75459229946136475 +-0.016773927956819534 +0.12745359539985657 +0.097707927227020264 +-0.0074898982420563698 +0.13644064962863922 +-0.22902531921863556 +0.15745247900485992 +0.087124548852443695 +-0.030305216088891029 +-0.89379376173019409 +-0.93747353553771973 +1.1768008470535278 diff --git a/results/search/topology_47/resume.obj b/results/search/topology_47/resume.obj index bfb959c5..6923c630 100644 --- a/results/search/topology_47/resume.obj +++ b/results/search/topology_47/resume.obj @@ -1,47 +1,47 @@ -v -0.38228241135474678 0.96963942827673721 -1.4103296049348082 -v -2.4530018255567141 3.3673864209527093 -0.069277661952851358 -v 0.87485700087839557 -0.69349107373963825 2.2341120457777595 -v 0.46849944216724526 -0.20328805519996759 2.0745357799503727 -v 0.27422220283226839 0.072937782057964681 1.0985240802452494 -v -0.33956364615404477 0.79686286992902666 1.2122364860534351 -v -0.015281836023086491 0.4069080712517375 1.3129863957710584 -v -0.41879329419742223 0.90033069159650114 1.0115411467682436 -v -2.2725860765314039 3.1417690706926171 0.17298611929718061 -v 0.75815259979018124 -0.49562145350360559 0.9613967890733367 -v -1.0942528498922515 1.9564413188488201 -4.4393675281884066 -v -1.911860281830742 0.42100765601862888 0.33367417533896804 -v -1.3741347851584533 -1.0337657792506512 0.25568412336557189 -v -0.31144992296381857 -2.506136322679132 -0.35398895762210203 -v -1.2498543838885732 -0.86663313630609784 0.074178112165106336 -v 8.8458891079835027 25.718886638958558 -18.895143143219972 -v -18.822275427122989 100.53086180327266 -14.868585083752777 -v -1.9886670110312754 0.76922251910063377 0.29920869713364112 -v -1.3060797647889657 1.7026954411920592 -0.70272269813131616 -v -1.1211428165109161 0.0031117718291859085 -0.34005625815287954 -v -1.7277709456470605 0.22963956086572546 0.41698012820265284 -v -1.6117056012511417 0.66736632219762326 0.66979971564437046 -v -0.058159295262566302 -0.25955069568418332 1.6196379225568598 -v -1.1440821516879114 2.6781954795544043 1.7770896682467048 -v -1.9645477982852069 0.71428327159064808 0.39538540279569601 -v 1.2647338522228257 0.0050238218608914427 2.8064889116503648 -v -0.055499673634723141 -1.0869393694446738 1.3250412396724265 -v 0.61425070055438469 -0.54348683949281928 0.93270668878095475 -v -0.12390308472888507 0.48508254351488911 1.1448696049651745 -v -8.1239688181794065 -17.079874221189932 -10.2630395046172 -v -2.3431822923171453 -0.77944592910886967 -0.29725820328920349 -v -0.37933382800020754 -0.065795677197879363 0.78537942534449545 -v 0.14502306132241755 0.034082021310191432 1.2663803071368642 -v 0.36930049266560544 -0.91963434642116626 1.3670889062957119 -v 2.3605485548016416 4.7732375565324485 -3.1758706291752667 -v -0.077871222357749251 0.91042044693326551 1.1937447751844816 -v 0.68781330526562978 -0.86311730311352675 1.5116470879192394 -v -0.28682767168953482 -2.9737934147038541 1.0671953588034189 -v -1.909407770901334 -0.80679972357973118 0.33345145299179579 -v 1.1497348568121282 -0.96957453467608234 4.7176664619490882 -v -504.84750515830046 -606.08556319856734 617.45253564477548 -v 12.070905136657414 -7.0633152660724319 20.157570615654066 -v -7.2806251245231248 -15.616978991498677 -8.8948503286718967 -v 13.85004278398338 -7.7972195640188362 22.686226163003706 +v -0.23871480518514659 1.3417064580734475 -1.5674545405805196 +v -2.3284794205365675 3.2551875156750083 -0.014272297195816463 +v 1.0476781428539912 -0.9676196198950211 2.2738163688363984 +v 0.52753695269397427 -0.35133788045629427 2.0667258657065357 +v 0.18130352888362375 0.24835464570933166 1.1255491301843128 +v -0.35391188812250968 0.80952987571645918 1.2218384095861037 +v 0.0088077966104087857 0.39677363226246715 1.2941430269023424 +v -0.42206782407423937 0.93891297865735934 0.98851243151534729 +v -2.2026029063344725 3.079320230772308 0.14915620324601203 +v 1.02046837192504 -0.73290370577394404 1.4044772920163469 +v -1.0942928362618476 3.5108832537163281 -6.807259913149279 +v -1.7730457932820491 0.33436220967381042 0.3582560106256748 +v -1.2416089456368695 -1.079576486858234 0.26518210470919612 +v 0.050252681403757285 -2.8474921002797964 -0.50450643607709478 +v -1.116448102528109 -0.89928076294151749 0.076149511090564281 +v 4.0174180633784324 11.822389311422647 -9.4116706418268539 +v -10.087247643636784 47.273775441889356 -6.2657419443984992 +v -1.8760760300212473 0.81635194813736833 0.30862564227326472 +v -1.2786584195720678 1.6543723568366184 -0.58631751071500848 +v -1.0970870555789429 -0.02664758460099843 -0.22811145627559704 +v -1.5892044487041064 0.15092624145928721 0.44480875425786248 +v -1.4599341487119788 0.6786626165213977 0.76078182967683561 +v -0.033203144322943474 -0.22384281399782216 1.6349090908630073 +v -1.0163912534006758 2.3696290626963306 1.7984016618816321 +v -1.765818816802929 0.72181876216382135 0.51497247577180616 +v 1.5464561582534688 0.16086457990168171 3.1403466079590809 +v -0.1320750464807022 -1.1449019318250975 1.1922386834486098 +v 0.64096273354171929 -0.57160295312347253 0.86998276886582859 +v -0.096156424502330223 0.47455003841687143 1.1423643280235436 +v -18.111696566679885 -45.17588466851705 -28.625078009200692 +v -2.1770977465303347 -0.82388467507278751 -0.26324635759490489 +v -0.37008497474071655 -0.024203856575335744 0.78966601007416037 +v 0.13542365423817246 0.10945703366770401 1.2517896658859877 +v 0.41141942533482778 -1.0093627532073277 1.3842280774350946 +v 2.5827002023662553 6.0143802364421433 -4.7956670719689845 +v -0.073359850884888472 0.97378059903002578 1.1434049736478715 +v 0.99149665681881927 -0.90699424600705569 1.655310770122143 +v -0.42746575096847406 -4.7707258340045211 1.0029057393903016 +v -1.7360133949580965 -0.835724598591154 0.3790486002465423 +v 1.4520310004762762 -0.52208715768658387 4.2784856463112284 +v -244.81219146440114 -541.51084906886422 664.71597698088124 +v 16.443800431259586 -9.0970449927254275 25.956564388252854 +v -2.1234546361837707 -8.9061546050442271 -1.1159866569370611 +v 81.448472238921823 -36.79971565176762 117.62443865583751 f 1 2 9 8 6 5 7 4 3 10 11 f 1 2 17 16 14 15 13 12 18 19 20 f 3 4 27 13 12 21 22 25 24 23 26 diff --git a/results/search/topology_47/resume.planes b/results/search/topology_47/resume.planes index a7c15a25..f57aac42 100644 --- a/results/search/topology_47/resume.planes +++ b/results/search/topology_47/resume.planes @@ -1,37 +1,37 @@ 36 -0.22142423689365387 -0.186374232172966 -0.0086717084050178528 --0.70677071809768677 --0.22422969341278076 --0.69041156768798828 --0.80296385288238525 --0.34894931316375732 -0.97279143333435059 --0.26464003324508667 --0.33440637588500977 -0.70047640800476074 -0.67398625612258911 -0.21861931681632996 -0.56937456130981445 --0.45168271660804749 --0.001082831178791821 -0.99564015865325928 --0.421160489320755 -1.0890636444091797 -0.72772711515426636 -0.67705452442169189 --0.2900719940662384 --0.107181616127491 --0.20965211093425751 -0.33607488870620728 -0.15876507759094238 -0.073018781840801239 --0.16076198220252991 --0.09803406149148941 --1.4861576557159424 --0.095323070883750916 -1.0179800987243652 --0.62334293127059937 -0.020107308402657509 -0.41209545731544495 +0.3456788957118988 +0.31686499714851379 +0.074731960892677307 +-0.65570288896560669 +-0.20500066876411438 +-0.62967485189437866 +-0.7959282398223877 +-0.36018890142440796 +0.92721402645111084 +-0.2396719753742218 +-0.34399029612541199 +0.67258471250534058 +0.66044127941131592 +0.21998456120491028 +0.48206618428230286 +-0.45627963542938232 +0.00288993283174932 +0.97528022527694702 +-0.43793174624443054 +1.1005146503448486 +0.73817604780197144 +0.96789306402206421 +-0.33506953716278076 +-0.12076105177402496 +-0.27621051669120789 +0.36552375555038452 +0.19642052054405212 +0.093069255352020264 +-0.19586527347564697 +-0.12519028782844543 +-1.3969970941543579 +-0.11027751863002777 +0.95732945203781128 +-0.6170470118522644 +0.027257850393652916 +0.4406934380531311 diff --git a/results/search/topology_48/resume.obj b/results/search/topology_48/resume.obj index 6cdd60cb..63dd5c7f 100644 --- a/results/search/topology_48/resume.obj +++ b/results/search/topology_48/resume.obj @@ -1,47 +1,47 @@ -v 0.38326061021854907 -1.1202052362560864 -0.71770342201409032 -v 0.63820670462902074 -0.84858698225916973 -0.81698667009444981 -v 0.36085699768612195 -1.1722450220930845 -1.5470005638954003 -v 4.2672174700895464 3.1098285668124483 0.50911474596884299 -v 3.8555270756515951 2.5946795008707935 -1.6073291075554317 -v 0.12989951099008148 -1.3310216081217601 1.1394381333178687 -v 0.052923068154954088 -1.5128348201301933 -1.7994797048827769 -v 0.59362473043045583 -0.91873206342470648 -1.4733386620616142 -v -0.082218307206608846 -1.706595280384178 -3.2277318883729662 -v -5.2270346405913433 -7.3682587701027247 -6.5907376629252727 -v -1.563786140306751 -3.1360934263044093 1.7803300680538443 -v -0.042064106235633725 -0.90888763243867021 -0.64966568284774495 -v 0.84252562999729919 1.341239262175945 -1.1862243336836484 -v 0.0058867302363927506 1.0131429936315246 -0.94314457736814794 -v 0.022433096343029528 -0.0067401374505465699 -0.79719783282833334 -v 0.033665295160250838 8.0293130579702421 -1.9801550009377671 -v 0.3919040878011017 0.22119587846535166 -0.9167427221256953 -v -2.3538150641518105 1.8887826779317367 -0.52208424940537035 -v -2.4103057031295338 4.2273645374582838 -0.8524176003848879 -v -4.4184436209705105 3.0200472722544194 -0.20730537412867767 -v -2.2075477857733454 0.18763629354680095 -0.031279281043328 -v -2.5903039208127296 0.69854184542429065 4.2587454552232868 -v 0.12910253167638086 -0.90878957591911713 0.44549251966458081 -v -0.2413293080489764 -0.69212136033130656 0.93487685276848553 -v 1.386818764679604 -1.6036844847783973 -0.67879755126598829 -v 0.6892331932835114 -1.3386613143533233 -1.6425962832984329 -v -2.6942001570158847 0.33466939105431764 -1.2027301544760705 -v -1.3045840590781934 -0.18766554078611414 0.79103880286092954 -v -0.2469207564519994 0.80994918699912044 -1.5275041084945609 -v -0.75693155358714426 0.77892570101595437 -0.3110355445009565 -v 2.1788030386291228 2.1019503894612752 -0.078225918348267975 -v -1.9320474480163843 0.40920277572488295 0.60637713481740185 -v -0.70623773905160547 0.9151122872827695 0.40951313130581918 -v -4.2311888160611666 8.7887582480592936 -5.5713888038745241 -v 0.64737450008713593 -0.55773321410088161 -1.3172121928512994 -v -3.1333278755973981 5.5130910409773088 -2.6821986144265857 -v 0.20345958463269914 -0.050644053159252043 -1.1384873868666687 -v 4.9306780764687774 -5.3164863126235744 2.3584533790324116 -v -4.8988614284336487 -6.7076390627378553 -5.864377838194013 -v -0.25550816566418533 -0.92723124057598472 -2.0683447873866498 -v -3.2804542625251276 5.3943137130780974 -3.0226904901053251 -v 0.69281360149723881 1.1326712752120829 0.3048416117562488 -v -0.3010008607979559 -0.60078615456974915 -1.4094303595093116 -v -1.5773859520907325 2.6393417189216315 -0.14554585134482151 +v 0.17630618932544531 -0.74286650197138093 -0.012191755473895505 +v 0.39005255829831403 -0.43742517530620284 -0.14810684003158026 +v 0.20105791374406817 -1.9787233809050571 -1.8166109071141101 +v 2.3797682632368038 1.7391748299097387 -2.3513655545272356 +v 3.4155136219692639 1.1492712605272557 -5.9225220137148966 +v -0.26141843958842559 -0.90777012887704289 0.91423240880285894 +v 0.069751340187464136 -2.2609591790641477 -1.866223963554267 +v 0.37876532811643143 -1.7102122446411629 -1.9091104142953708 +v 0.2742420079944658 -2.262955693844511 -2.4102240903624592 +v 4.8973602319958474 0.96605638275913441 -10.102067852613105 +v -1.6164972957679566 -4.664691517537789 -0.78568695640865227 +v -0.82296162774498505 -0.6985351712871799 -0.41797859600027321 +v 1.8782596768072617 1.823087706034408 -1.1890945829814918 +v 0.067920363939886971 0.67946902193057812 -1.0586802370429609 +v -0.029357278778876096 0.10569579554180954 -0.68935891310310893 +v -22.340593478671966 4.362884674769429 -12.060286919785796 +v 0.34631724992088586 0.38740585346431028 -0.74781513615002981 +v -1.4030848557784266 -0.3710818925661637 -0.86693147739575649 +v -0.75346764164769808 1.2084401134709624 -1.740550797493436 +v -2.3861344251941801 -1.348293319794251 -0.54420647151345014 +v -1.8126113297205979 -0.27124115478592736 -0.25647134087304124 +v 13.591337498900231 26.36675604842042 46.147420556411738 +v -1.2252540698348 -0.087590178738742044 0.2902103195637965 +v -1.528485686499675 0.022184765147867869 0.30861798180815186 +v 0.63823333300214002 -1.9862108981325379 -1.6215832581128207 +v 0.47772506005927479 -2.2126020373462567 -2.0299074203062442 +v -1.3540587315278307 -0.90273376007392125 -0.96834075610201831 +v -0.63592170389543257 0.14320960883429623 0.90710768872518632 +v -0.02534164991842509 0.53004790818769942 -1.3063087674644729 +v -1.1032000891916378 0.21055587507652521 -0.21300712476116535 +v 0.70291409843652508 0.87475726586285318 -1.6829106542567946 +v -1.9612492582782746 -0.29119636875134514 -0.037967417372341411 +v -1.371922990418599 0.27514094670248607 0.46491502179018718 +v -0.43571255882780674 1.3157195941572495 -2.2041415737752965 +v 0.63706465015753388 0.535381990448489 -1.7015576332219853 +v -0.61941261051563445 1.2066444149325741 -1.9386961681623034 +v 0.95721552594034343 0.51318446076084046 -1.8567041950419645 +v 9.2345780246189069 -19.968656285237149 2.7752940503210382 +v -0.529618025806874 -0.78351370794678654 -2.1798375307687934 +v -0.24661018402260795 -0.51826346338060669 -2.062095920787363 +v -0.56242893732563581 0.85954613002730895 -2.0418016897335582 +v 1.7294268657009289 2.7213216528524193 2.9930522778082338 +v -0.53775878007991351 -0.50047848929182559 -1.2964738607027662 +v -2.9098085087065502 6.4929193004885688 0.85685755214992998 f 1 2 6 11 10 5 4 8 9 7 3 f 1 2 15 17 14 13 16 20 18 19 12 f 1 3 25 26 27 21 22 28 24 23 12 diff --git a/results/search/topology_48/resume.planes b/results/search/topology_48/resume.planes index 1674ecfc..3bbf9262 100644 --- a/results/search/topology_48/resume.planes +++ b/results/search/topology_48/resume.planes @@ -1,37 +1,37 @@ 36 -0.75216782093048096 --0.69742941856384277 -0.023444915190339088 --0.17169399559497833 --0.10826072841882706 --0.73706597089767456 --0.34379333257675171 --0.70928299427032471 -0.053796336054801941 --0.41751939058303833 -0.95298343896865845 --0.15074333548545837 --0.19357059895992279 --0.13959693908691406 --0.084715612232685089 -0.92059487104415894 --0.018918365240097046 --1.0972747802734375 -0.66182184219360352 -0.30945801734924316 --0.39392438530921936 --1.8692237138748169 -0.065699130296707153 -0.78477221727371216 -0.074821256101131439 -0.40301385521888733 --0.95761573314666748 --0.17015911638736725 -0.21404097974300385 --0.11779014021158218 --0.28745093941688538 --0.13076497614383698 -0.044938560575246811 -0.014421178959310055 -0.20954310894012451 -0.62828892469406128 +0.39752864837646484 +-0.21134942770004272 +0.15020743012428284 +0.13786865770816803 +-0.26020294427871704 +-0.36793419718742371 +-0.1388607919216156 +-0.43298375606536865 +0.29464823007583618 +-0.42658790946006775 +0.64895182847976685 +-0.23092111945152283 +-0.094125382602214813 +-0.23302361369132996 +-0.1608915776014328 +0.73122471570968628 +-0.05171005055308342 +-1.641103982925415 +0.62802791595458984 +0.21122562885284424 +-0.36398357152938843 +-1.3539985418319702 +0.049957875162363052 +-0.91649895906448364 +-0.5624510645866394 +0.1742745041847229 +-1.1855735778808594 +-0.16264893114566803 +0.20308707654476166 +-0.06656927615404129 +-0.95403695106506348 +-0.21341167390346527 +-0.35784104466438293 +-0.56299644708633423 +-0.1946578174829483 +0.87899386882781982 diff --git a/results/search/topology_49/resume.obj b/results/search/topology_49/resume.obj index a0af0c6d..1a60718b 100644 --- a/results/search/topology_49/resume.obj +++ b/results/search/topology_49/resume.obj @@ -1,47 +1,47 @@ -v -1.0217802391753186 -1.6001490413934409 -1.6455804375384138 -v -2.1446893313008468 -2.8709555194599359 3.7430696281287603 -v -2.6771566672008222 -0.70815151389653286 0.40551541344660325 -v -3.6818649150975955 0.12925725969612506 1.0196070512478668 -v -3.2182081506607041 -9.1389297851223645 19.662238363112962 -v -2.4994815215773794 -1.3642778320182745 1.3794897466080884 -v -0.13625157024503437 -3.415972465650245 0.10973930502744911 -v -0.55557975417298311 -1.2990839887247703 -3.400068664187732 -v -0.72919021813702367 -1.3371904692293333 -2.9044111063273812 -v 1.6758846763100872 -6.7374724320580519 2.8614222960572873 -v -0.61898713397122129 -1.4776878629029173 -2.8681118643025254 -v 0.5145243676869482 1.7955748544104462 -1.1457270152988224 -v -0.75196516657140411 -0.81378238654151291 -0.65520509484023681 -v -1.4008799206447595 -1.4810716392797623 2.7775700456510961 -v -0.14100945849645924 0.47772088690061021 -0.73626121724734506 -v -0.77672684711950413 -0.97646514539602103 -1.1761106649434301 -v -0.35354433394674595 -0.48652368283821884 -3.1545293491127868 -v 2.8571669989337427 5.6948013707787757 -6.458581375745168 -v 1.3025453431968868 3.6118588476185405 -0.53537790361730353 -v 0.15010141796806989 1.3176602081441109 0.29193287714614619 -v -1.0892680395572987 -0.047793668060320794 -0.41152572764428008 -v -0.22634721752714895 0.48563546080885361 -0.84203099726243802 -v -0.076643931186052006 12.394289228056289 -0.002451534902977559 -v -0.33487824923330506 5.3661794700803735 -0.40506503371186786 -v 0.12101393456210477 -0.44619451315620201 -1.1040413407915508 -v 1.2063093436371461 5.8309978287059305 -1.2117033870703415 -v 0.71299054840303577 5.2281438992827551 -0.98863992675182 -v 0.87485416991721909 -0.23616095012512936 2.0380332825051397 -v 0.9769927137227602 -0.27565653000548962 2.2380381578759332 -v 0.7659598475631918 -0.014265191292151489 1.3851825841399827 -v -1.9918017821354086 -1.1010052940010817 1.2498368695241486 -v 0.35007095938493693 -0.11523837251821048 1.2109331426758572 -v -0.065523645275789383 3.4307824183775724 0.14885320434616031 -v -0.56067862976838789 1.1293922972531261 -0.78470465235565579 -v 0.230604197084532 -0.26099157222716735 0.78044150784754374 -v -0.036069841196780236 1.5586718549986953 0.23343053269603292 -v 0.9625845397642393 0.21697780834580793 2.0655366655340801 -v 1.2134543456827123 5.7512845415787837 -1.1992662525287292 -v 0.73917432921915815 0.77417091388013703 0.64571480388925051 -v 0.93946205136977101 3.1650639784086576 -0.36143941841507121 -v -2.0334097904213695 0.038146836452296003 2.5978310384638026 -v -1.6726025741627886 -0.40999234374986465 1.0032321012014795 -v 1.499857940354185 -0.50431395706194881 0.65863545164532145 -v 1.3955368216496682 -0.11541109975328984 0.8212732169261473 +v -1.2470598453490787 -1.5657768762683499 -1.7793795774353549 +v -1.5221919714038794 -2.0128736105393692 3.0674543360142303 +v -4.1045203449132073 -0.87470743317697552 0.78036662496103038 +v -5.6104247757334189 -0.45339994028217395 1.6178841343099695 +v 0.0051835498055459537 -2.9517251016441475 6.7995569894296288 +v -2.6669203192148965 -1.4501177264688623 1.5322066930225207 +v 0.25704017669188339 -2.3594173098646256 0.72341334092991982 +v -0.57685957061905568 -1.5571631103800128 -3.908620397093745 +v -0.88200562653426884 -1.5547038764256738 -2.9963171084579536 +v 1.6537906862539338 -2.9341417663412552 1.5941882215346355 +v -0.58232047728271197 -1.6873742511032026 -2.7256685858553857 +v 0.6876975304525117 2.0452433159903278 -1.2291222614524082 +v -0.97327291344393763 -1.0433309325953524 -0.85222267141870023 +v -1.2114976161119506 -1.4396989522504571 2.6586598741432685 +v -0.11484946351337583 0.55787730377913525 -0.67841999781542639 +v -1.125639559568866 -1.3369588079840187 -1.581691590315033 +v 0.059293651443106082 0.84962200171524682 -3.0966902948656658 +v 2.4660811894054131 5.3032464794633123 -5.259337434789825 +v 1.296864636878573 3.1900523018790481 -0.47272580490971189 +v 0.27076553681879595 1.2888611244001906 0.26738520955296308 +v -1.0068706606504474 0.20631565150507167 -0.64265912170488582 +v -0.33986897596596327 0.59101949585332514 -0.9256893723716203 +v 0.057744141274487161 9.3558679841169496 0.21923423187075075 +v -0.30524377520199203 4.6901860595852716 -0.31258066415964109 +v 0.09558261456321239 -0.87212355435188593 -1.374301217487675 +v 1.057068788642481 5.449777888485257 -0.89467725605064685 +v 0.65422849069198474 4.574748240884035 -0.82265046120119834 +v 0.88503565129938111 -0.21267474235509867 1.7315548790857287 +v 1.0736546028414988 -0.29097212755897189 2.0450976186148955 +v 0.82158111918562171 -0.0069082175501961147 1.248609491937259 +v -2.2336712488477701 -1.225944590428784 1.4024525192278978 +v 0.46476674931952494 -0.09388617269004762 1.1500508336903228 +v -0.072466574294818231 3.3354495841854175 0.093065195681649046 +v -0.56021189028160723 1.3516987281402986 -0.68522514546996771 +v 0.29488419424377982 -0.26520899469159648 0.75496328929291912 +v -0.036353078163693736 1.7070803714595941 0.17707562129545767 +v 1.0192086747928044 0.27253806845267786 1.9230056007759091 +v 1.2174048417389032 4.3570677664215109 -0.83052127142353127 +v 0.8310622009829729 0.76915713666032659 0.59336492138936725 +v 1.0120754269804979 2.6662131968977691 -0.26852039498368696 +v -2.1406459414732608 0.077516114616590415 2.5918141295371155 +v -1.833719871046595 -0.43644596740856278 1.0986683822156151 +v 1.5337262987537454 -0.40630085250052811 0.65511769554949284 +v 1.4507464976662066 -0.10152180587302105 0.75781032322378916 f 1 2 10 5 6 4 3 11 9 8 7 f 1 2 14 15 20 19 18 17 12 13 16 f 3 4 27 24 23 26 21 22 25 12 13 diff --git a/results/search/topology_49/resume.planes b/results/search/topology_49/resume.planes index 247897d2..686f109e 100644 --- a/results/search/topology_49/resume.planes +++ b/results/search/topology_49/resume.planes @@ -1,37 +1,37 @@ 36 --1.5918164253234863 --1.420859694480896 --0.66679090261459351 --0.35548588633537292 -0.16597273945808411 --0.034936226904392242 --0.42038556933403015 -0.059494629502296448 --0.76891809701919556 --0.072699807584285736 -0.17554521560668945 -0.071791812777519226 --0.13242067396640778 -0.00098049419466406107 -0.067818246781826019 -0.41764986515045166 --0.075082361698150635 --0.095182798802852631 --0.9846007227897644 -0.34109976887702942 --0.31864514946937561 -1.4653048515319824 -0.20245353877544403 -0.45578271150588989 -0.55583250522613525 -0.33998769521713257 -0.91763567924499512 -0.054343990981578827 --0.47581389546394348 -0.14601700007915497 -0.36391684412956238 -0.21372054517269135 --0.27762505412101746 -0.060107316821813583 -0.20422224700450897 -0.65005403757095337 +-0.6631767749786377 +-1.9398740530014038 +-0.21658934652805328 +-0.32545185089111328 +0.17473366856575012 +-0.0023560549598187208 +-0.47485551238059998 +0.14243233203887939 +-0.92546701431274414 +-0.076424106955528259 +0.20376415550708771 +0.09685835987329483 +-0.11621357500553131 +0.0010429162066429853 +0.070171423256397247 +0.51410841941833496 +-0.098886385560035706 +-0.10968117415904999 +-1.0360958576202393 +0.3911224901676178 +-0.347606360912323 +1.4843817949295044 +0.24545787274837494 +0.47095191478729248 +0.53573840856552124 +0.36881071329116821 +0.92428809404373169 +0.071426868438720703 +-0.50766915082931519 +0.18942923843860626 +0.37957015633583069 +0.21023297309875488 +-0.31723746657371521 +0.08654601126909256 +0.20090992748737335 +0.63608425855636597 diff --git a/results/search/topology_5/resume.obj b/results/search/topology_5/resume.obj index 265e97ea..ee1d4d76 100644 --- a/results/search/topology_5/resume.obj +++ b/results/search/topology_5/resume.obj @@ -1,47 +1,47 @@ -v -2.5548692835477564 -0.48400178588535092 -1.6026011110042655 -v -10.89101503981342 -0.57285579026037203 5.9384133797020588 -v -1.3881355612458681 0.027823969926880021 -1.1306476583252578 -v 0.54360909950983061 -0.15996987285368178 -3.5154852938024002 -v 0.35974240162721077 0.22111515070388235 -2.1776010659246019 -v -0.30719382885724528 0.43546314075851644 -0.89694663487642434 -v 1.5599267435461797 1.6688645485802378 1.1255555240358324 -v 4.9403066984774267 1.0404439354858848 -3.9646393696212234 -v -0.061351652049711436 0.58798839554900084 -0.66085052849770831 -v 2.8291291222049795 1.6740522905457693 -0.048095625623559249 -v 1.3970463079397681 1.4980575257103845 0.75579086793342021 -v -1.2229063169045966 -0.89929632386452329 -1.7365364101439105 -v 0.71995359758095301 -0.51908254921420438 -4.3905409089123726 -v 2.4875929048999543 -0.45117524208001647 -6.1119280311051636 -v 1.5739848291769456 -2.1404841240744985 -1.0972868447369635 -v 5.992979363127267 -1.1629665524269808 -7.4148664885370206 -v 1.6609770061996416 -2.652025549675221 0.10190999363312447 -v 0.64256587188257319 -1.9986994997259573 -0.63302012024098375 -v 0.8329708777278263 -2.2612862822451363 -0.14541668816930545 -v 0.6530966494263537 -2.3635688760446323 0.26757140377200328 -v 1.921850074520755 3.0932684279663678 1.294082252024088 -v 0.31059620330650944 0.33994396749576083 -0.73495876685894734 -v 0.19556820815500842 0.56746198565242079 -0.59441098198261422 -v 0.71193260999360808 0.26958274979560981 -0.73845394609260384 -v 2.5903509480112312 2.2889988018589573 0.82586772372854034 -v 0.52393164778771106 -0.27265896286729913 -1.1239228207861314 -v -0.27626596938241677 0.25549647656050378 -0.85592258677262478 -v 2.499600014562231 0.98693393241560423 -0.060328889301571001 -v -0.76887662816601443 0.52112162585515487 -0.83119390827347006 -v 1.7260342258164523 3.021624265364069 1.3615170464760289 -v -0.34607297484506455 0.68639053624509372 -0.95646966480365392 -v 6.059986662505561 2.1141773032587281 -4.9234177003897024 -v -0.077748976350811169 0.96426293790457285 -0.70344845882844664 -v 2.3095949395782323 4.005683597433725 2.6417357672949793 -v 2.9908874923029214 -4.9141164463480687 -0.97978619478586926 -v 1.1173581128868526 -1.218557835009149 0.65952185377833716 -v 0.84565891967889195 -0.70137882656149642 -0.30181242263733354 -v 1.1191988024087967 -1.2259663724548604 0.41633361169219202 -v 1.0629266599238625 -1.1129134037483575 0.59701532560893034 -v 1.4224789409264127 0.26813047598296702 0.86645896386585952 -v 1.6094252805375591 0.22869011313567267 0.77760871481074978 -v -0.56020854119201768 0.48892245505920245 -0.7756438432265963 -v 1.3521138427796173 0.27492920241650581 0.79460955048568527 -v 0.79554460192191312 -4.4339221209789077 0.067463921536635718 +v -2.2593263511262722 -0.66344569670083386 -1.5516926992732254 +v -7.7999148689692124 -1.2468453014983027 5.1323106293128973 +v -2.3797922134219478 -0.72005785490825269 -1.6002432950679268 +v 0.23328736628819269 -0.17832518862885582 -3.5759896174971715 +v 0.18071841543143982 0.15662079485154456 -2.009838791044217 +v -0.15921147816399212 0.25780626505632503 -0.99519462869563569 +v 1.2330055225432912 1.2999646721615687 1.277898047076057 +v 5.6580584235857314 1.5404343196371124 -5.0554758006684244 +v 0.10312752522823528 0.43439342990662616 -0.65421162051663673 +v 2.5295817455473744 1.5461371350309092 0.19768720531686343 +v 0.93292236161549136 0.99336255800075168 0.42616096627071764 +v -0.82116376456750284 -1.1228979136102033 -1.6520097475511624 +v 0.33788329872543016 -0.52877743256300802 -4.313463685472299 +v 2.6495740493160889 -0.42566563352356235 -6.7267991196125294 +v 1.1809569618803735 -2.106582569419591 -0.87099901269339364 +v 6.6546762235982895 -1.0473452626674944 -8.7664482793990821 +v 1.4721542007867237 -2.6726309440526457 0.37442098059158385 +v 0.59551081852223831 -2.0257439427381021 -0.54599969972732398 +v 0.80392511951816359 -2.3178072124693494 0.042817307386328496 +v 0.48739172527040414 -2.3882373792519029 0.52394982651898392 +v 1.7179161972165946 3.6372528568787668 1.5075160973011439 +v 0.22325473170713381 0.22563008232015794 -0.71740549028076495 +v 0.15890849981324648 0.39325273458031823 -0.62484001818013024 +v 0.53605540751095693 0.18710293324891522 -0.70245000090596454 +v 2.5332587499388475 2.407255928154663 0.87000291382472206 +v 0.4057887168707966 -0.40799852820020988 -1.0746910104787815 +v -0.13566885113469293 -0.010717071895104357 -0.90258944871304791 +v 2.4160526507365008 1.2915399977026376 0.1875560623301871 +v -1.0801109859149267 0.36548661216025286 -1.1390754079988969 +v 1.3605601247680448 3.4916008872306947 1.6510963204061329 +v -0.21248825355258624 0.87653298136397328 -1.209165511332337 +v 6.750635125103523 2.523684983853951 -6.1137865987791482 +v 0.16958504177273265 1.3707492020962919 -0.7638156962204653 +v 2.1011320055668237 5.1524872108644031 3.7579822183239608 +v 2.345547998187218 -4.8661611056191196 -0.48224870323204189 +v 0.92908337285352516 -1.2611242915374583 0.91653208009887766 +v 0.71399852732756186 -0.89080824039648143 -0.20420481599045165 +v 0.96421055627038987 -1.4010068190500664 0.50183660756770798 +v 0.88278072496069859 -1.1611937180005039 0.82740336057830233 +v 1.24509598046881 0.19886446616042475 1.0536344246923748 +v 1.4296844962396817 0.17016751358286752 0.95885230402271349 +v -0.41926474443037276 0.29874330249015735 -0.85283426905364812 +v 1.0611784076605435 0.20657938190326103 0.78522775704456216 +v 0.76155300319052466 -4.5277228876396363 0.349384354656463 f 1 2 7 11 9 10 8 6 5 4 3 f 1 2 17 19 18 15 13 14 16 20 12 f 1 3 21 25 28 23 22 24 26 27 12 diff --git a/results/search/topology_5/resume.planes b/results/search/topology_5/resume.planes index 35abdc26..936a2b12 100644 --- a/results/search/topology_5/resume.planes +++ b/results/search/topology_5/resume.planes @@ -1,37 +1,37 @@ 36 --0.20998166501522064 -0.68525850772857666 --0.22404807806015015 --0.55533063411712646 --1.5771217346191406 --0.63246804475784302 -0.074426747858524323 -0.45835822820663452 --0.68107509613037109 --0.47719985246658325 -0.87554866075515747 --0.4554821252822876 -0.38868451118469238 -0.1984269917011261 --0.0031029719393700361 -0.075896970927715302 -0.43456166982650757 --0.033208787441253662 -0.48953616619110107 --0.25989970564842224 -1.1453826427459717 --0.3607952892780304 --0.21222963929176331 --0.65901917219161987 -0.13658908009529114 --0.055794991552829742 --0.54542392492294312 -0.85550343990325928 --0.042760696262121201 --0.35709455609321594 -0.27833864092826843 --0.018933020532131195 --0.27438005805015564 -1.2187182903289795 --0.59789252281188965 -0.75366461277008057 +-0.17227210104465485 +0.45498964190483093 +-0.10308912396430969 +-0.55547720193862915 +-1.6075652837753296 +-0.60076624155044556 +0.077867820858955383 +0.3835829496383667 +-0.64048385620117188 +-0.62456357479095459 +0.98406040668487549 +-0.55621343851089478 +0.30324527621269226 +0.12562398612499237 +-0.016688024625182152 +0.036450251936912537 +0.28947287797927856 +-0.016656005755066872 +0.61268693208694458 +-0.25182521343231201 +1.2694544792175293 +-0.39440181851387024 +-0.25750705599784851 +-0.64641523361206055 +0.22151795029640198 +-0.077706694602966309 +-0.52953851222991943 +0.69746601581573486 +0.0013324342435225844 +-0.24621017277240753 +0.32589542865753174 +-0.049435943365097046 +-0.2247309684753418 +1.2192226648330688 +-0.57258987426757812 +0.72671931982040405 diff --git a/results/search/topology_50/resume.obj b/results/search/topology_50/resume.obj index 2ae9011b..78fc88dd 100644 --- a/results/search/topology_50/resume.obj +++ b/results/search/topology_50/resume.obj @@ -1,47 +1,47 @@ -v 0.82442713757329733 -0.1455103910500142 -0.68996466030436721 -v 0.57423839985921132 -0.48421232310469586 -1.8637964404957301 -v 3.7634008815512496 5.7579034323159446 -0.82027651311369087 -v 1.8116964294267583 1.8236431758109839 -0.63292638511029065 -v 0.15535545315792307 -1.4672916583438027 -0.82055827039122553 -v 0.24072147896421808 -1.2497625649885915 -1.157432614704403 -v 1.1034146930243844 2.5463874212908344 -16.117500525755979 -v 0.3727799787837392 -1.0909270979197792 -0.39361044248704063 -v -0.19106282158511506 -2.9718609614481482 5.0435898402628334 -v 0.67130302838474998 -0.79773592044415254 1.809356402778957 -v 1.1812619964246311 0.0084509517455737919 3.3644173996571562 -v 0.13273245489178961 -0.58960501621033035 -1.4246130731572373 -v 0.74715653950355054 -0.17595301938371799 -0.67428259490531095 -v -0.37932258847428263 -0.4136232581584891 0.60555238947165391 -v -0.95518891218713209 -0.30525812143166464 2.4320510132778819 -v -0.49490887085225066 -0.78091479379402928 -1.0118306728796043 -v -1.6754946827926531 -0.66977682964393936 2.1665050702064019 -v -0.71432325487609283 -0.71560214829717794 -0.19339148557201657 -v -1.5430515671636829 -0.62491375724789699 2.1023158995315816 -v -1.4825350385309455 -0.55192791126523588 2.3406523900150678 -v 0.095995286575266917 -1.4723467161053649 -0.62769085625219667 -v 0.19965441410269288 -0.71401635544968745 -1.1766271861589357 -v 0.005071109655839498 -1.2641419026759462 -1.0030507614175159 -v 1.887355412377274 2.9835606367006156 -1.6285442953038869 -v -0.087670284199704268 -1.9735647681984438 -0.48155328080808768 -v 4.5672693064338086 6.7255479099996327 -0.25698625797964347 -v 3.5948495195472527 -1.2623515239964824 5.7500740285755594 -v -0.022918201805565766 -0.92365955652585985 -0.39949333469824283 -v -0.033948668183442936 1.1887012925521223 -0.96179606692871844 -v -404.75537958459284 -2845.2902730827277 2109.9240672158103 -v -0.55771341149281095 0.55982364498519821 0.9053417555878247 -v -0.59106295782639617 0.38033757266722062 1.0636952802693258 -v -1.0851372212613801 -0.076465314318176589 -1.4384229248957565 -v -0.95481675011695921 -0.54105995748569014 -0.38424052868603908 -v -1.0665309669446446 -0.41830220766642978 -0.43213323265497827 -v -3.4453252780150607 2.0000273135284541 -0.84429732564972448 -v -1.9012359563362258 -0.39156479445428505 1.97605979524063 -v -1.2043980153607243 -0.21960990307345946 -0.94284012347835833 -v -6.9044836059386929 1.1381938745173474 1.6748268142964853 -v -1.8665873278175216 -1.4128170845449179 2.8325755432645643 -v -5.475712033685924 4.2610712315288986 -1.2486122560880673 -v -3.6226012424834129 1.7901976971263203 -0.77098348273806527 -v -1.2131021742913299 -0.22974383778047566 -0.46807762542787656 -v -1.3263576771332988 -0.36623375551348447 -0.77182103975189986 +v 0.89166223862846339 -0.060395454867300066 -0.82655165757840976 +v 0.60198123731936748 -0.52213218471016654 -2.0164838174397861 +v 4.563704438024268 6.791201877653263 -0.96829006646392024 +v 1.937405758934523 1.8788145420499287 -0.68357950758071162 +v 0.16075518515706713 -1.406835492011373 -1.0628282996385101 +v 0.2199533356437488 -1.2811048554278481 -1.2980036021374122 +v 2.2261109541276674 4.3120482356195087 -29.582014857968638 +v 0.34365017508532059 -1.1034731523276733 -0.49203159728998552 +v -0.35115792298605708 -2.7332673027491405 4.6178000405387269 +v 0.61788804549161847 -0.73958900620298851 1.7511548266786607 +v 1.0714013666218705 0.011734778307226506 3.1803218262797484 +v 0.11341347271027832 -0.63670171039729073 -1.4739844178130468 +v 0.75192163985750515 -0.12438930531383217 -0.79123819858311861 +v -0.37051878300880636 -0.33760553019391121 0.64701406779013704 +v -0.82614499784897766 -0.1591423307211359 2.2480644364413798 +v -0.4015727320943327 -0.83493729275961415 -1.1995154761188671 +v -1.5738060305362735 -0.59877241606513509 2.0637543541931285 +v -0.70256867356378883 -0.74834656004659716 -0.26199311934761993 +v -1.329639784369224 -0.50389400852278976 1.9370409999003031 +v -1.2265193425551664 -0.3806536107473667 2.2027648403833786 +v 0.064742607021556375 -1.4083004486353872 -0.71831946509390743 +v 0.17325638257050319 -0.755112468139855 -1.2264935392748759 +v -0.048850518245423705 -1.1694530109415637 -1.2036300942164835 +v 2.1017323314273204 3.1799511107418099 -1.7971265746363509 +v -0.18587159741063794 -1.9253055974263908 -0.63796012504922228 +v 5.1280702298458811 7.481168466423112 -0.62629729094144793 +v 3.3416424958270445 -1.1890226926498346 5.442853070638316 +v -0.025490733166911937 -0.95297045572316152 -0.47782935403236648 +v 0.015057482849841262 1.1925085794069425 -1.0144448121524956 +v -742.45290587055911 -4854.6972341817973 3546.5025576050539 +v -0.48490958118750405 0.55046570441486953 0.89520618997752155 +v -0.52539166725988684 0.33895850671550626 1.0789188840073463 +v -1.058170382956839 -0.12146279703802018 -1.5287382021615263 +v -0.82162023556411801 -0.66207629293240289 -0.35766699015111714 +v -1.0664940734528463 -0.39883893253643776 -0.46987706418346431 +v -3.2688979567927627 1.7579126806892638 -0.69667262740025193 +v -1.7363793117024764 -0.41051050407656492 1.9391641342760135 +v -1.147580014805154 -0.23720337520696319 -1.1209144752581057 +v -7.1287551931461648 1.2614229529246552 1.6067143930251149 +v -1.7156695122807439 -1.4829691416190804 2.826392110972173 +v -5.881543641386334 3.9549192561599078 -0.87625338641776918 +v -3.674757743018418 1.2555351240169592 -0.51577763159395629 +v -1.1646178582324043 -0.26697745537886752 -0.48883427655125983 +v -1.3126758360571653 -0.44368030174076251 -0.88780038897914015 f 1 2 6 5 7 3 4 10 11 9 8 f 1 2 16 17 19 20 15 14 18 12 13 f 3 4 24 13 12 22 21 23 25 27 26 diff --git a/results/search/topology_50/resume.planes b/results/search/topology_50/resume.planes index 033cff64..d83eaa89 100644 --- a/results/search/topology_50/resume.planes +++ b/results/search/topology_50/resume.planes @@ -1,37 +1,37 @@ 36 -0.75329321622848511 --0.37616997957229614 --0.052014250308275223 -0.1300763338804245 --0.29987338185310364 -0.058802343904972076 -0.77028828859329224 --0.40161764621734619 --0.40935793519020081 --0.20641879737377167 --0.018115999177098274 --0.064005792140960693 --0.75004243850708008 --0.78061151504516602 --0.25130569934844971 --0.34249609708786011 --0.82147330045700073 --0.31969594955444336 --0.058693304657936096 --0.15993955731391907 --0.59968167543411255 --0.62215602397918701 --0.66210067272186279 --1.0113356113433838 --0.60473859310150146 -0.5025942325592041 --0.00035909257712773979 --0.56344854831695557 --0.36653625965118408 -0.37479710578918457 -0.14334265887737274 -0.61117297410964966 -0.72292327880859375 --0.76228523254394531 -1.1223748922348022 -1.3690817356109619 +0.73931801319122314 +-0.39676809310913086 +-0.026021635159850121 +0.12179147452116013 +-0.2325223833322525 +0.06057778000831604 +0.77644819021224976 +-0.43814143538475037 +-0.39737051725387573 +-0.19181302189826965 +-0.0097556402906775475 +-0.053498640656471252 +-0.74093931913375854 +-0.77868533134460449 +-0.20980662107467651 +-0.36579048633575439 +-0.86641061305999756 +-0.32608219981193542 +-0.092500306665897369 +-0.16424860060214996 +-0.66368317604064941 +-0.68249499797821045 +-0.70600366592407227 +-1.1086869239807129 +-0.56757897138595581 +0.46107545495033264 +0.0064197168685495853 +-0.5474926233291626 +-0.35556262731552124 +0.36065614223480225 +0.14257507026195526 +0.60446113348007202 +0.72732925415039062 +-0.73528891801834106 +1.0627833604812622 +1.3018287420272827 diff --git a/results/search/topology_51/resume.obj b/results/search/topology_51/resume.obj index 7ca99d26..4ce39c16 100644 --- a/results/search/topology_51/resume.obj +++ b/results/search/topology_51/resume.obj @@ -1,47 +1,47 @@ -v -1.0024126713960579 0.021543934410077653 -0.63514828998948969 -v -1.4381455596217345 -0.048813572853933278 -0.61983600805572137 -v -1.0335152663397986 -0.060406178134360507 -1.3098111632205367 -v 2.3611320780407903 0.41358379903444908 -2.080382777447336 -v 0.99666574151534959 0.59755458388431248 1.5189592587852969 -v 2.0510352708730428 0.28887074279680974 -2.7251599390972947 -v 0.75163158005192943 0.13650719238648845 -2.1748382011093494 -v 0.62979710925093646 0.29617837898303107 -0.59515410839112903 -v -1.03404101619938 0.11094827585456563 0.19617586184873076 -v 0.26463760797934627 0.38388523469264452 0.70605673089588961 -v 0.90007553656399442 0.53841290358436389 1.1398399515973456 -v -1.3589818514354204 -1.1652301017977922 -1.2528336012053523 -v 1.6063637608039083 1.0887410986513413 -0.36630879547438822 -v 0.70304531112335589 3.3253851250220441 0.99513006127577763 -v 0.91722148785565882 1.2994886350726391 -0.16236760499909503 -v -0.65477849997262927 1.9880888587474062 0.4188530283418555 -v -0.016725589396669415 1.1477356930357447 -0.13007706586635193 -v 3.5410132326855317 -3.6381973918806909 -3.2467857033721854 -v -1.3926898914265764 0.11873156251913065 -0.53202135726965549 -v 0.42650380358273643 0.26426404391030611 -0.67866858134637953 -v -0.44697780864079334 1.7119100237898512 4.8829602528871163 -v 0.11019312376907826 3.6853288763963219 2.4237821615623418 -v -0.37609419052934884 2.0703480076350376 1.479621602871509 -v -0.59053879286392175 1.4244325810201688 -0.84390112960012265 -v -0.47538962604055229 1.751442031067304 0.97431514229894978 -v -2.5877796974762659 -5.3508417497474197 -0.62461410082766822 -v -1.1342249817501313 -0.45184745363507356 0.13460718361777901 -v -0.64563246478635172 1.2343189588623702 -0.74522212271722221 -v 3.4746201415984053 -3.4505233382950555 -3.2238805174890079 -v 0.37178046963047762 5.2768559692336154 0.9480231659930638 -v 1.547255851185587 6.1909210361276532 -2.6708024245702702 -v 0.29468621492488967 1.7721919045153334 2.8491032605965994 -v 1.2141270106455846 2.097883104494934 0.20652180385196389 -v -0.51018546735424108 1.7975589278553212 0.46655517373471139 -v -0.64033570337674495 1.9687771314551645 0.94595942279210132 -v -0.82573999127178366 1.8305097697536121 0.34673806055792167 -v -1.0639355552613363 1.3485949350790085 -1.4439203091970119 -v -0.2088662607630791 1.4374498169344687 -0.52159842651900035 -v -1.3174065411933424 2.8615827068855899 -0.45209123641349747 -v 0.20957367440311017 0.84935191126018217 0.29790008253265299 -v -3.4547395297798231 4.9474259533158635 -0.53484018392640309 -v -0.9590637462120416 1.9359841948514256 0.29987221898784894 -v -1.6951085192540161 1.084255781701418 -1.1715300479616135 -v -1.6950878546901427 0.58772333595849413 -1.1582946018198326 +v -0.85912818939456326 -0.057020755612481121 -1.7581903437404847 +v -3.4130988837981704 -0.49090052014547852 -2.8917863743402008 +v -0.79378205736344976 -0.034530661541366373 -1.0213575043391918 +v 1.6075347947873575 0.35936386995034736 -0.82885029565499779 +v 0.75299597643174221 0.25340102536677084 1.2288056432566337 +v 1.3028819737668691 0.30330060071805803 -1.2317894660278066 +v 0.54686384846792657 0.17265589888797298 -1.704646277640542 +v 0.56861916096527709 0.20008190220411021 -0.22013368666077823 +v -2.7672868382131557 -0.3659295019584331 -1.6568578202401514 +v -2.7402440618156136 -0.36505308740722048 -1.8759163557549994 +v 0.69401675949046826 0.23847456448110471 0.89766281780336166 +v -1.4834319683181767 -1.5402959446173818 -3.7457331538106797 +v 1.5051483178617751 0.48544914690014707 -0.53390369596709153 +v 0.80222360498665535 2.597848613272411 1.9259157592997169 +v 0.10344961590710412 0.92625420754603394 -0.31285295343160646 +v -0.56929950298911203 1.4239506777805253 0.14860297826230928 +v -0.10392406281802603 0.91052770986235232 -0.38067513164382105 +v 0.90554473367021171 -0.49828784566548207 -1.8952900659106109 +v -3.1055072402560859 -0.14607255374827074 -2.391897088474261 +v -0.29593331233798142 0.80200202661940667 -0.56017196208993725 +v -0.093592306067707978 1.0343639755966199 3.5763452883301809 +v 0.091364594125983037 1.6790081824118845 3.3478457448061256 +v 0.2635567042648399 2.1793702072080685 3.532582913027726 +v -0.46732713891436567 0.93147687824713876 -0.74035470864266406 +v -0.25013320740069112 1.1216902933387267 1.248810859340121 +v -0.3680729965649171 1.4310455295374789 -1.4748786074822364 +v -0.30808379531958624 1.5133408037130656 -1.0439939792945965 +v -0.45835598715613413 0.92992672637638185 -0.62072550637807866 +v 1.7885059616761578 -1.1523009131282098 -1.7997300838109027 +v 1.3068051820028574 2.87241677755003 0.78487524040984469 +v 1.5332328713059766 2.3456188790522838 0.046108913498729476 +v 0.034169252635979822 1.2946846385842377 3.353983783641544 +v 1.2495415990664855 1.4924623449391761 0.44389093712952277 +v -0.58699594411110012 1.4631281315886504 0.74551930579203773 +v -0.85418022608691002 1.7717002786769975 1.4544580434294758 +v -0.71758669428372313 1.3200719384871944 0.21935082748292434 +v -0.21905864289106544 0.46069179382395259 -1.9456715238009321 +v -0.13873168732853752 0.94625184054929767 -0.44143932097457728 +v -1.9334317882644088 2.8367985430487574 -1.003532383739171 +v 0.38514624281914822 0.4187388391660794 0.46517414021221448 +v 3.5128084933149428 4.6512149469740125 2.3959906832763109 +v -0.59220070095767152 1.5720894851451648 2.0328777702239433 +v -1.3697906685181154 4.3390720433647729 -0.3568721522424454 +v -3.5288728477147546 0.77747290504506239 -3.512613898572635 f 1 2 9 10 11 5 4 6 7 8 3 f 1 2 19 17 16 14 13 15 20 18 12 f 1 3 28 25 21 22 23 24 27 26 12 diff --git a/results/search/topology_51/resume.planes b/results/search/topology_51/resume.planes index 7002ac50..8cd60c08 100644 --- a/results/search/topology_51/resume.planes +++ b/results/search/topology_51/resume.planes @@ -1,37 +1,37 @@ 36 --0.041309136897325516 -0.24964751303195953 --0.028419854119420052 --0.072930619120597839 -0.32495266199111938 --0.58223915100097656 --0.92187219858169556 -0.27205890417098999 -0.0094526614993810654 -1.4248743057250977 -0.25459906458854675 -0.52713918685913086 -0.29636779427528381 -1.3619765043258667 --0.40596809983253479 -0.54207438230514526 -0.41143518686294556 -0.00022093088773544878 --0.19671174883842468 --0.021025961264967918 -0.51228457689285278 --0.66238361597061157 --0.042027350515127182 --1.5756367444992065 --0.91089999675750732 -0.011924136430025101 -0.44876039028167725 -0.4269554615020752 -0.45950412750244141 --0.18045918643474579 -0.26681658625602722 -0.24393841624259949 --0.74271148443222046 --0.28545260429382324 -0.25366222858428955 -0.32778948545455933 +-0.017607411369681358 +0.10819161683320999 +-0.001740779378451407 +0.13338017463684082 +0.71135926246643066 +-0.57277321815490723 +-0.63517302274703979 +0.20004202425479889 +0.050224602222442627 +1.0265957117080688 +-0.1460898369550705 +0.41881918907165527 +0.23415163159370422 +0.89585417509078979 +-0.30168193578720093 +0.40542331337928772 +0.38086119294166565 +-0.012977735139429569 +-0.87320518493652344 +1.1762914657592773 +-0.1030910462141037 +0.68995332717895508 +0.74041271209716797 +-1.3076859712600708 +-1.4587208032608032 +0.22890147566795349 +0.7396811842918396 +0.31829965114593506 +0.36941942572593689 +-0.073343545198440552 +0.23464478552341461 +0.095783114433288574 +-0.42703706026077271 +-0.16167213022708893 +0.13354527950286865 +0.17112401127815247 diff --git a/results/search/topology_52/resume.obj b/results/search/topology_52/resume.obj index 0d514545..c9df9caa 100644 --- a/results/search/topology_52/resume.obj +++ b/results/search/topology_52/resume.obj @@ -1,47 +1,47 @@ -v 1.0022114212211435 0.55138048893476188 0.054044004158024621 -v -1.4790401630343473 1.2639012477404643 -1.9451269876993922 -v 0.95077777783963369 0.48815921057550271 0.054761973759160101 -v -2.4408562836384631 1.1754423907478244 -2.5229553540724283 -v -0.59592666332547473 -0.81719111742584605 -0.24572740734853793 -v -0.17766608137925288 -0.4771918344418713 -0.15744481496259588 -v -1.7519736211249715 -1.8473613562058344 -0.44085108853702093 -v -1.6117177803577409 -2.058016015937894 -0.23574615562317425 -v -0.49731456526817619 -0.95800545440984131 -0.10546370845706887 -v -0.88651253540059372 0.85503825383657139 -1.3386838776998811 -v -6.288144250244029 -3.3734545893882504 -2.5666144750534201 -v 1.8789700176256994 0.38967096690284492 -0.092431531717118542 -v -3.908094919239185 3.3201544050324987 -16.769354329280326 -v 0.52754631974518584 0.53345339453869822 1.1321881905528022 -v 0.91864504028844807 0.53330366645421323 0.38515413320318714 -v -3.7595729393567461 2.1850114410735642 -6.303761973333434 -v -6.3673374583707529 1.8106730507250952 2.2317497146480556 -v -220.80501539655839 101.512540190077 -531.57358869668656 -v -1.3379179813322057 1.1749113913978737 -1.3724594979121658 -v 1.3420329106295104 0.43100798698216508 0.54365153142011557 -v 8.6053202762678183 3.0287293037308975 -0.79597140533620292 -v -0.76971951438884234 1.0079354959545404 0.36412313926472983 -v -2.1141989919382227 -1.7326717877259148 0.26505266164594576 -v -0.52963874363646868 -0.61581619661927456 0.15294564982379139 -v -2.157109911936955 -1.6936876376757568 0.27558664129053345 -v -0.57610853202689494 -0.46236445371248375 0.17640078725643821 -v -0.17245008770038564 -0.66626341002496259 0.094943462731906708 -v -3.285073442143799 -3.0622951798392495 0.29326687787727035 -v -5.3536685110410174 -1.1711670880299792 7.9140063121073974 -v 0.29780933560566036 0.86305731299193822 2.4304448970599881 -v -4.7223434990409867 -0.32512830558625766 3.673624115209519 -v -1.5621420296209796 1.098324319799129 -1.0691325705344417 -v -1.9066709841740481 1.1858538672560865 -1.9750425759500998 -v 0.40853423205643324 0.8943971951987042 2.3729310427389922 -v 1.1412122963802482 -0.13792065366526016 -1.7904237071807694 -v -1.5011480726799717 -1.1870889166561645 0.51766231868277157 -v 1.5425726121909547 0.10510717847978335 -1.9227963172183709 -v -2.968251305890703 1.0200090534913935 -5.2142169554528248 -v -2.1584899256989241 -1.6910022564105285 0.27180530243492462 -v -1.8143967628624644 0.49785969950719106 -7.0115654902940019 -v -0.58126499613663429 -1.3609300557090007 -0.76243085744832695 -v -1.7815866383858856 1.0642287383763567 -1.7385262886657005 -v 0.86969305780482309 -0.61624053530380041 -0.89896408874589029 -v -1.2909419729434406 0.98867514020317171 -1.1610278152568938 +v 1.5632169907095232 0.6181362419739127 -0.26712726602255427 +v -1.7552762848474239 1.4541509098799688 -1.8346178056998457 +v 1.3957469101697542 0.47083579585802016 -0.21994772057172909 +v -2.3204154070929763 1.3741743283457366 -1.9533785112587529 +v -0.76487670573945765 -0.80597407589152326 -0.026846555470074196 +v -0.15391560986041039 -0.44510823556708995 -0.081330880396325883 +v -2.185716180439742 -1.605432659309622 0.073360743467584616 +v -1.6126944303209112 -1.908127101309925 0.44954863252720723 +v -0.70390617574340963 -0.9226975631396539 0.069505518040041292 +v -0.78885047527084573 0.99022672475810158 -1.231205536321526 +v -3.8366766805357932 -2.6520204131156349 0.26820295071430256 +v 2.8645028069716885 0.32870874564882629 -0.6328297370965662 +v -8.1501817490407404 3.7743934966793513 -22.961262845856062 +v 0.54041224172505964 0.77901991192130815 1.7207528543185016 +v 1.0222552774511162 0.7007738705372375 0.84690879137300801 +v -5.5916319426474548 2.7532974419876375 -12.139823215234266 +v -1192.7592435321824 252.82805288556153 678.17331046076424 +v -12.318817767283004 5.0667128784078228 -31.11198805524845 +v -1.5172147276208303 1.368915312430715 -1.0772330230951952 +v 1.4401887502144699 0.59711708793153351 1.0026667504307989 +v 11.207450189636848 3.9195723540602017 -2.9808603549102877 +v -0.94597715428028939 1.2258968061978179 0.438004652653886 +v -2.744984359598774 -1.6279654491396476 0.94561302791255553 +v -0.69279631191568802 -0.58818249078784179 0.36794965468017743 +v -2.454603992948051 -1.711518429868949 0.864018796361957 +v -0.72815467472901929 -0.43724193827019353 0.37779719503509557 +v -0.30626551260532181 -0.63135645577368771 0.2592955702383265 +v -3.1233009573731243 -2.6632155144506058 1.0526304457656102 +v -8.8495500062246055 -1.6665517829810241 9.658179548877257 +v 0.22889335845244563 1.0491989451599877 2.7885427642257703 +v -8.5102066776650211 -1.2900264683855653 7.7145326769494957 +v -1.6140006404767222 1.3364983280912319 -0.96064471754680614 +v -1.7410960870030088 1.3734625370818507 -1.3244055183726926 +v 0.40814395654412555 1.0921789750528528 2.7181766701570922 +v 1.2532170910403528 -0.18981479733471918 -1.5253991025267977 +v -1.0060861882651566 -0.42304268767557118 1.1977667286668496 +v 1.9367994064862439 0.13844388458520498 -1.7592472237298253 +v -3.8681285630862394 1.1008190486881093 -8.1158439927292569 +v -2.6348999923302618 -1.5588799780787079 0.52191651719239818 +v -2.676366367858606 0.7292591003122878 -8.3390540163515858 +v -0.79453639007840093 -1.2858068032749381 -0.497368056289826 +v -1.6350292389714824 1.2517868487217572 -1.0925379385286846 +v 0.84106227475342699 -0.63125945004408091 -0.67641407009359245 +v -1.5026705336592434 1.2318633312019496 -0.92986001129986906 f 1 2 4 11 8 7 9 5 6 10 3 f 1 2 13 18 16 17 19 14 15 20 12 f 1 3 22 21 28 25 23 24 26 27 12 diff --git a/results/search/topology_52/resume.planes b/results/search/topology_52/resume.planes index 84e0e592..9ec9aeef 100644 --- a/results/search/topology_52/resume.planes +++ b/results/search/topology_52/resume.planes @@ -1,37 +1,37 @@ 36 -0.11369902640581131 --0.094484806060791016 --0.17479158937931061 -0.14591847360134125 -0.72207683324813843 -0.07624875009059906 -0.020175080746412277 --0.014855745248496532 -0.13716277480125427 --0.22229306399822235 -1.1432263851165771 -0.19500003755092621 -0.12474251538515091 --0.17042204737663269 -0.065341271460056305 --1.7636493444442749 --1.7746682167053223 --0.61665999889373779 --0.64323270320892334 --0.22880275547504425 -0.22252242267131805 --0.23546665906906128 --0.36027523875236511 --0.26502662897109985 -0.21722030639648438 --0.38502785563468933 -0.20838402211666107 --0.38347110152244568 -0.32079586386680603 -0.36776778101921082 -0.47718864679336548 --1.0016461610794067 --0.39210006594657898 -0.19425719976425171 -0.6876869797706604 --0.075072117149829865 +0.065594539046287537 +-0.14358313381671906 +-0.21544796228408813 +0.21497730910778046 +0.92097204923629761 +0.036073829978704453 +0.045023657381534576 +9.9918870546389371e-05 +0.16012942790985107 +-0.24328154325485229 +1.3840363025665283 +0.22564218938350677 +0.12404097616672516 +-0.19701635837554932 +0.086038269102573395 +-0.71437978744506836 +-1.9853670597076416 +-0.50933170318603516 +-0.82234954833984375 +-0.209991455078125 +0.26598444581031799 +-0.19582450389862061 +-0.27900630235671997 +-0.24014069139957428 +0.19176298379898071 +-0.41487538814544678 +0.23508869111537933 +-0.65903347730636597 +0.58349108695983887 +0.60766702890396118 +0.33906459808349609 +-0.9352613091468811 +-0.32170060276985168 +0.23855815827846527 +0.82133722305297852 +-0.093505755066871643 diff --git a/results/search/topology_53/resume.obj b/results/search/topology_53/resume.obj index 6f48a0f8..cc54ac6d 100644 --- a/results/search/topology_53/resume.obj +++ b/results/search/topology_53/resume.obj @@ -1,47 +1,47 @@ -v -1.68763255048224 1.7851187540711126 0.078935312768225047 -v -1.0367193587662162 1.14428335202835 -0.38882029634832938 -v -1.6454882134047319 1.855797245370244 0.53944277955712494 -v 1.4146977440401114 -0.87317419071076596 -0.41775157529011914 -v 1.4216427299869554 -0.81890713874456811 -0.1553840558630894 -v 0.8664607222227354 -0.34054861149775462 -0.054948195720005928 -v 0.60148186336264386 -0.23313707933093461 -0.53600439897657748 -v -1.4120601276159619 1.6028378458316201 0.27042711472959691 -v -1.5326688153097892 1.9301017068695656 1.2694730914576522 -v 7.5690063415741946 -6.0133324969940753 -0.81989624725988997 -v 0.82253635584690499 -0.41671133715248221 -0.54584017378448313 -v -2.019868682012842 0.83010439635697897 -0.061230145324568053 -v 0.29100127145105259 1.5736342877598872 -0.82972801096503002 -v 0.66167074761531841 0.61198488917517913 -1.2724513500899199 -v 0.12588100967164145 -0.10329643399159004 -1.2547163387147151 -v -3.0623469001851769 -1.7145048165738572 -0.36745173721786717 -v -1.683586539047377 1.0502070771850398 -0.13999152626354427 -v -3.4255005499645286 -1.1764666910130437 -0.053137053338543794 -v -0.85101277347090631 1.0156360265496063 -0.50625811652868391 -v -3.1826303730145571 -1.0805856130104758 -0.1286634730654157 -v -1.5334113514194805 3.3521368603625792 -9.7141316410068299 -v -0.64321785903444317 4.5696377706011564 2.4290228349829861 -v -2.977260033887807 -2.0222815419687246 0.41530342134162079 -v -3.0474207398407005 -2.2905754385464512 0.97012144436842851 -v -2.0900707811502501 0.6123737298024805 0.048942755264962834 -v -1.9691466791693422 0.92849196372420684 0.37611667104313629 -v -3.5336147183869677 -3.8717547939958949 2.3758084328888902 -v -2.0595397556759174 0.62883620401737361 0.68731996204517998 -v 0.028388647283748916 1.2213559762884889 -4.3862277301136334 -v 0.91210945791184272 0.10469489400789905 -1.0382301946438837 -v -0.37179050764060201 3.8879736124774786 2.1891403788825663 -v 1.6324846975106084 -1.2033707302630503 0.20138672763607524 -v 2.4466177187684957 -3.1949922317034027 -0.31968870506622049 -v -7.6042454969452757 -5.0260400086164614 3.2328503265676569 -v 0.36343065575980826 -0.63236320875142649 0.17149001336297698 -v -1.2670818721947388 -1.2057446851913531 0.049083363482601561 -v -1.8878485611633131 0.81304316593420134 -0.080421928997361891 -v -1.1868375875579933 1.460795514489025 -0.62762024458396937 -v -0.936983644009036 0.74898412110430956 -0.22531720403589597 -v 0.718362680168392 -1.1068207418125369 0.32460265149432821 -v 0.16653726040567823 -0.91268722888473353 0.33650930636663978 -v 0.49027001272658993 -0.71987813507155618 -0.28720223002502215 -v 0.79845567684335084 -0.63966108099511376 -0.34561088302415555 -v 0.88615623715054326 -1.309792171792405 0.26351478068545947 +v -1.6984816158227078 1.760210660860511 0.079705094777403521 +v -1.0606368089282738 1.1322415455915369 -0.37865934166522597 +v -1.6497000016423886 1.8420202326213024 0.61273740763637619 +v 1.4398356404654755 -0.92730424610668327 -0.41568529849938213 +v 1.447701877149518 -0.86583859072782987 -0.11851437195967457 +v 0.8314613642147598 -0.34394391568780747 -0.046731590947442302 +v 0.56430988627657586 -0.23565174197880082 -0.53173194461696438 +v -1.4421092998051681 1.6170601022075886 0.37349799600982636 +v -1.5490182150670122 1.9071504700431852 1.2590637637763051 +v 7.4601890847188344 -5.9555795135095044 -0.80907717216177966 +v 0.79773438212900083 -0.42949857591460505 -0.54211816555515435 +v -2.0265947374015574 0.81704804568002587 -0.058720888977816132 +v 0.29376087623337116 1.5702193224555114 -0.82842592540936921 +v 0.67415826048293426 0.58333223644417187 -1.2827681907152821 +v 0.11477401982698161 -0.098178317084487807 -1.2449623534173084 +v -3.0595395083594523 -1.7023549158287181 -0.36156996581844969 +v -1.7069713505526118 1.0262472833213603 -0.13358059012531287 +v -3.4418362686292112 -1.1914156358394958 -0.047077551812464868 +v -0.830847040363349 0.98493441653161096 -0.52046404217730147 +v -3.1763734498262224 -1.0866153685734208 -0.12962971495049613 +v -1.536488638243698 3.3535080415886527 -9.744640799418546 +v -0.64387630810595775 4.5743165039313718 2.4315098991331654 +v -2.9743124042787352 -2.0065164002921354 0.41299763815801954 +v -3.0403640422082954 -2.2590972313280742 0.93532182633432459 +v -2.0921396389824931 0.61318684529339174 0.049185625744247119 +v -1.9755495550301454 0.91797509780384656 0.3646333181432051 +v -3.5424512666089267 -3.8919637598880907 2.3869595989296073 +v -2.0674207361852925 0.61341941030139213 0.68092538317901508 +v 0.027407366934782667 1.2293400525757028 -4.3741160950417619 +v 0.89885270621375313 0.12818994049624402 -1.0726241478906313 +v -0.37217106398703059 3.8919544376606687 2.1913818480929557 +v 1.6394219666072922 -1.2154340644600445 0.20589989832171868 +v 2.4567351192987248 -3.2153262928727915 -0.31904982959624861 +v -7.5196725256347756 -4.9480290174308132 3.1595600444113843 +v 0.35041906641424347 -0.62300308531380133 0.16980880875437349 +v -1.2825584506454226 -1.1987763193552405 0.050722951130856286 +v -1.8897784014205232 0.81399424395545117 -0.080267974640825579 +v -1.1857460454206628 1.4553780777134402 -0.64871931577968267 +v -0.98582233943803332 0.75309554976231707 -0.21801518245564333 +v 0.71075030824173413 -1.1046780349308085 0.32525057002582691 +v 0.10683674277303135 -0.89221978333792695 0.33828110759682473 +v 0.49085092098850713 -0.728146964677718 -0.28640495450231518 +v 0.77342156698229692 -0.65459720317593151 -0.33995894276685701 +v 0.88495250642538315 -1.3154016743608623 0.2618295377207922 f 1 2 6 7 11 5 4 10 9 8 3 f 1 2 13 14 19 15 16 20 18 17 12 f 1 3 21 22 28 26 25 27 24 23 12 diff --git a/results/search/topology_53/resume.planes b/results/search/topology_53/resume.planes index 49b19bd4..9fd744a6 100644 --- a/results/search/topology_53/resume.planes +++ b/results/search/topology_53/resume.planes @@ -1,37 +1,37 @@ 36 -0.18199662864208221 -0.22187168896198273 --0.0507085882127285 --0.39402469992637634 -0.27230378985404968 --0.92137384414672852 --2.0574996471405029 -0.70399761199951172 -0.080247275531291962 -0.89481991529464722 -0.39326220750808716 --0.10502707213163376 -0.20049014687538147 --0.5216863751411438 --0.22691898047924042 --1.4710475206375122 -1.1294333934783936 --0.54756623506546021 --0.0077583747915923595 --0.019458172842860222 --0.042311210185289383 --0.044741272926330566 --0.031694009900093079 --0.27959930896759033 --0.069433815777301788 --0.05476611852645874 --0.0087511567398905754 --0.095982752740383148 --0.10848867148160934 --0.13234253227710724 -0.024031898006796837 --0.47675666213035583 --0.52796506881713867 --0.068994514644145966 --0.23171347379684448 -0.58038330078125 +0.16583788394927979 +0.20217268168926239 +-0.046206392347812653 +-0.39284923672676086 +0.27149143815040588 +-0.9186251163482666 +-2.0596063137054443 +0.70471853017807007 +0.080329462885856628 +0.8957362174987793 +0.3936648964881897 +-0.10513459146022797 +0.19657216966152191 +-0.51149159669876099 +-0.22248454391956329 +-1.4725537300109863 +1.1305898427963257 +-0.54812681674957275 +-0.0077233961783349514 +-0.019370447844266891 +-0.042120460420846939 +-0.04474852979183197 +-0.031699147075414658 +-0.27964463829994202 +-0.072999514639377594 +-0.057578574866056442 +-0.0092005608603358269 +-0.10414878278970718 +-0.11771868914365768 +-0.14360198378562927 +0.024199599400162697 +-0.48008358478546143 +-0.53164923191070557 +-0.069065175950527191 +-0.23195073008537292 +0.58097755908966064 diff --git a/results/search/topology_54/resume.obj b/results/search/topology_54/resume.obj index 02c075ad..4a3c3c70 100644 --- a/results/search/topology_54/resume.obj +++ b/results/search/topology_54/resume.obj @@ -1,47 +1,47 @@ -v -0.84121129505297365 0.35768503102564608 3.7343485480615835 -v -1.2436695943105009 1.2812814593319932 4.9585548086454594 -v -0.28432362952426588 -1.8155018484405383 -0.8759465104662747 -v -0.40527966578476904 -1.7086011744428493 -1.0640574810389658 -v 0.89586484864836702 -3.5020350967517633 -1.1368511212926682 -v -2.5297533481550407 1.9552394600139229 1.4511252679321105 -v -2.2126006474941127 1.0998102560558365 0.070711970353278142 -v 62.702805028824983 73.1049511873602 522.51009336602078 -v -0.084342810141158839 -1.8642198657269227 -0.14785987094405328 -v -8.5994733786951478 9.7619638700642639 -0.031965229601627843 -v 7.247909387636617 -15.904877944443024 -13.374968350839366 -v 0.20968818047858864 -1.2683669424391792 -0.82939489199704486 -v 0.35036312508677597 -2.3784594975444193 0.1126032225726871 -v -0.21719469600809588 0.33249314009830494 -0.61186132776214697 -v -1.2162953789960382 2.602370684795849 2.4671525321733228 -v -0.45096910194549494 0.99789992868582911 -0.12509591905175985 -v 0.12759388564943996 -1.6145965866886962 0.35062270286843938 -v 0.10612618431565679 -1.6392187805806901 0.54449601319519003 -v -0.61654761175278139 0.3242417778894518 2.2120017923839717 -v 0.0042561274352292348 -0.77876096290614683 -0.23611188754445295 -v 2.1583405838860426 0.76185232424503913 -0.55187576698817353 -v 2.4019657133980337 0.8581290208826905 -0.40159368437200127 -v 2.5668617975873262 1.2404626219797523 -0.53257211131581417 -v 2.4798881706003204 1.4240100756247873 -0.74610118543784076 -v 1.6941685828115527 1.0424896720342016 -1.1786760251293253 -v -0.49155433711306235 -1.3482773014781164 -1.4066473256019201 -v 0.44093719134090714 -2.1041568314527037 -0.006511222103696479 -v 2.0962923936541156 0.68885145030001316 -0.66805704413436051 -v 0.82363860186566051 0.71052398478186607 -0.61008228314800839 -v 1.1106251862041301 -0.46607145352470986 -0.76880196694743108 -v 2.4014937633577618 1.4029780675059575 -0.59254650234956807 -v 0.37703532987829741 2.8523581172353132 -0.32444770284147256 -v 0.026630856750984134 0.59252535429973985 -0.59012983586464718 -v 1.8817577977543507 -1.1008490786211971 -0.88120241580608594 -v 0.52466318111333832 0.55898880892977409 -0.84815606180186209 -v 0.78007733648427702 1.7705522808456291 1.0941383447559958 -v 0.98095182878885456 2.0573837240402626 1.5514127979882906 -v 2.7862616057115872 1.4949154023641893 -1.4765900897285318 -v 2.5162210475046987 1.1816368439375295 -0.34943316689445059 -v 2.173873706930435 0.77729476048116575 -1.5669789426770184 -v 0.7097511610464593 0.81670554665849437 1.1920824891193775 -v 0.0038028091256957987 0.3541373517323394 -0.5798744085692249 -v 5.1702483025286678 0.61000947345833456 -3.1660361037157103 -v 4.1346199233796783 1.0216936914207091 -2.4169894497003788 +v -0.57826676165752133 0.49096935063453173 3.3511243065165917 +v -0.94708454851002566 1.3489330442298959 4.3180222072220138 +v -0.090978292194613841 -1.6625544334533893 -0.8135445664664277 +v -0.39512221831261551 -1.4005945262093142 -1.277416739446678 +v 1.0946352768512146 -3.3799127855521651 -0.97594988997788801 +v -2.0367478928422309 1.6764761915228743 0.92659799755593875 +v -1.7947950347897494 0.90075680876094488 -0.31028897158857505 +v 44.022252448965062 49.742996019310063 319.5293985092419 +v 0.1251106456526408 -1.6288676136716798 0.13822232293611281 +v -8.17680867747187 9.6609161987780343 -0.80660935503592135 +v 7.6078596422867868 -17.040579361586868 -13.831309804357256 +v 0.29872401470541859 -1.2276398964421054 -0.77994355853198216 +v 0.4561393965690792 -1.7589201192408876 -0.25189734108610362 +v -0.26525959269589372 0.31910013671228921 -0.6391700744235923 +v -1.2842804958652856 2.620808675482234 2.4243030153377143 +v -0.55308787393703251 1.0291633641839817 -0.11538211795069464 +v 0.28856031732985593 -1.4386728451712987 0.58393504285599951 +v 0.28153998640072009 -1.446585100518271 0.74048304967674272 +v -0.49711690738972825 0.43219649770903029 2.3976011877795025 +v -0.12325979335601316 -0.095273796017297033 -0.53252527227300572 +v 2.2050050168269824 0.78209088624353973 -0.52991748804799998 +v 2.5992240331777192 0.93606028778542538 -0.2878071204023136 +v 2.5761456158940672 1.2125110323992194 -0.50972124052522605 +v 2.495752848818011 1.3770741272000462 -0.70170161174782519 +v 1.6645474031908765 0.98623626508461737 -1.1640157400471294 +v -0.44966088439522467 -1.2645407452068651 -1.4254232950859729 +v -0.048365729763302556 -3.0775238970690864 0.2544505752291002 +v 2.1502833492796816 0.71848587883323434 -0.63076360022718447 +v 0.90012871201520117 0.72117290929562883 -0.6168903205018802 +v 1.0172068144587672 -0.59562758693905504 -0.7327752261963606 +v 2.4298706383624897 1.3616751494759458 -0.57783405269854926 +v -0.075638541220257191 3.193445744872196 -0.39107057319382843 +v -0.16025960465524791 0.42138684768067197 -0.63141313261137255 +v 1.9681760050683674 -1.3485471610004027 -0.80868073152177655 +v 0.53541056332168757 0.54194489874879204 -0.89944157671152336 +v 0.51831095373181935 1.8739367002148855 1.221365995391408 +v 0.84306923647234244 2.4321435344308657 2.1075996040954403 +v 2.7490893185397494 1.4117171579153935 -1.4311564394475498 +v 2.458455169229528 1.0766519347400283 -0.085678600019893913 +v 2.2952784433709175 0.8853417140238381 -1.5110679566533867 +v 0.62899675918681475 0.8156260308791331 1.5189389554138029 +v -0.15746953166302149 0.28025643333591188 -0.62432263874367078 +v 5.4151907368858048 0.45577400876903046 -3.1895121633190264 +v 3.6644034056752686 1.164640434370861 -1.9901902033434409 f 1 2 10 7 6 11 5 3 4 9 8 f 1 2 15 16 14 12 13 20 17 18 19 f 3 4 26 25 24 23 21 22 27 13 12 diff --git a/results/search/topology_54/resume.planes b/results/search/topology_54/resume.planes index b83ed3a3..45b2a2d1 100644 --- a/results/search/topology_54/resume.planes +++ b/results/search/topology_54/resume.planes @@ -1,37 +1,37 @@ 36 --0.89311206340789795 --0.65613168478012085 -0.2014043927192688 --0.20522497594356537 --0.050761006772518158 --0.029171399772167206 -0.74912178516387939 --0.60609835386276245 --0.82612472772598267 --0.028292218223214149 -0.08096226304769516 --0.65133267641067505 --0.0088178794831037521 -0.77906179428100586 --0.48480322957038879 -0.87157148122787476 --0.74401742219924927 -0.0020183026790618896 --0.14703655242919922 -0.33578002452850342 --0.029075734317302704 -1.2258555889129639 -1.557032585144043 -0.83910006284713745 -0.15527905523777008 --0.017336189746856689 --0.05733763799071312 --0.29167965054512024 -0.32199302315711975 --0.58024579286575317 -0.6463698148727417 --0.3375287652015686 -0.67756223678588867 --0.14919552206993103 --0.11447605490684509 --0.37706872820854187 +-0.68189084529876709 +-0.48702797293663025 +0.17205420136451721 +-0.16860717535018921 +-0.060512259602546692 +-0.010619532316923141 +0.74652373790740967 +-0.60471808910369873 +-0.83096718788146973 +-0.007252243347465992 +0.05785403773188591 +-0.6647225022315979 +-0.0038174961227923632 +0.79188042879104614 +-0.49737823009490967 +0.87743401527404785 +-0.7566414475440979 +0.0011059662792831659 +-0.14302538335323334 +0.34362807869911194 +-0.033352617174386978 +1.200011134147644 +1.5565786361694336 +0.83176827430725098 +0.063617542386054993 +8.3796170656569302e-05 +-0.023365283384919167 +-0.28570535778999329 +0.34016013145446777 +-0.61813044548034668 +0.76029402017593384 +-0.39305880665779114 +0.80288773775100708 +-0.15098202228546143 +-0.13903027772903442 +-0.51248764991760254 diff --git a/results/search/topology_55/resume.obj b/results/search/topology_55/resume.obj index c14c2ea8..55da4859 100644 --- a/results/search/topology_55/resume.obj +++ b/results/search/topology_55/resume.obj @@ -1,47 +1,47 @@ -v -0.21096471506188633 -1.0493222412241001 0.22783900064900769 -v -1.2649786745043348 -1.4066002881851902 0.88611293667603186 -v 5.1212077729274785 2.2724107642467044 1.6201004556254817 -v 2.2053582203689808 1.5544709857659715 4.2845585770608769 -v 0.2076580307917997 -0.7800133125383798 0.36372487351147365 -v -0.58283534959027794 -1.4347465964826664 -0.34878037227991587 -v 0.058357351260639991 -0.38023473376689171 1.8615296134589805 -v 2.9768383031533761 0.31530137941745834 -0.87722083850370636 -v 1.6810481962782413 -0.039608540192274638 0.19501789228136956 -v -0.18222802200250013 -0.37258127132355812 2.289974616529463 -v 1.8708940237930272 1.3514990131431692 4.2140246702641004 -v 0.19538496987972892 -1.8870322468996361 0.91429348039552538 -v 8.3307681461509198 1.2440082435866182 -4.5264973587859467 -v -1.8979871987816472 -0.80878362698361073 0.4983924205317049 -v -1.3710051841221003 -0.86216135701310048 0.39290381925771811 -v -1.3812069981513635 3.8652126423886637 -4.1607734567574495 -v -1.9238427853366138 -1.8886280393408694 1.5469543687594853 -v -2.4098538127726394 -1.0124951671515583 0.84718786549757019 -v -2.2045541951471526 -0.2637952285833513 0.06437620692917162 -v -3.2825001638777418 -0.062504411718668149 0.19137279617947991 -v 2.3104246022850381 -0.47487006424046097 0.55679069114220214 -v 2.1580446606009906 -0.80699626691581328 0.17543301618460749 -v -0.43555166841016046 -5.827162002905208 -5.1972476289221365 -v -0.96785189438654839 -2.2836238205097552 1.7825429352454372 -v -4.5152579855854738 -3.4650701548990113 4.4798326347663728 -v 0.8335648087393065 -0.0298913438607088 3.3352173859066259 -v 3.2256476761969304 0.047814006751091445 0.24589975677079057 -v -0.19716104215104718 -0.14256319800080744 1.1515498262887578 -v -0.14792350445261382 0.68919970188173973 2.1332448146435725 -v -0.53688399565672096 -1.986776568556172 -1.0066201815052258 -v -9.054337358478616 -3.162024411860342 -1.7166464612941272 -v -6.6599806282986735 -2.0626256996510377 -0.60575581964818159 -v -0.020769754517183169 -0.44227624818015693 1.5110770298204019 -v -0.45799995849165914 -0.30987315991511077 0.03212039800999076 -v -1.7713472594667958 2.4172634910458211 -2.1676668466708118 -v -0.3672212544104122 -1.2821919328914904 -0.57046235941250745 -v -0.33913564525578405 1.1203949441492982 1.8458505269082746 -v -1.5519533074734218 2.766163576633923 -2.4911047049606498 -v -0.88029136108014461 -0.17524163889447233 1.4925289135124806 -v -1.7808780062279561 -0.65765012734589468 2.5801478319224067 -v -1.5503635782373104 0.6271709019477596 0.61497588134301606 -v -1.4321163371825634 -1.4600973862990587 1.1255993116768306 -v 1.0912851531413963 -0.42127033353631183 -0.040184379461311009 -v -1.9443855400494308 -0.65196064529602116 2.8750435258310985 +v 0.062838468407497364 -0.66701704055131517 0.37172027430083132 +v -0.17676372566437679 -0.7210813259759703 0.56427175658443229 +v 4.3769932784093877 0.86274512594182562 0.97795442217245532 +v 3.6985015789987727 1.6147491892732353 8.1502386276824978 +v 0.24251405783202548 -0.61502743071259436 0.31114308822281034 +v -0.055297594291998868 -0.72792599115044898 0.21586544624801651 +v 0.098701696940585004 -0.60852316229098913 0.71193382748335132 +v 4.5425962357526686 0.45529162933972445 -2.4120476216160505 +v 1.8407205240253186 -0.042109318825334092 0.58117954897957769 +v 1.4029102908108471 0.46287796811916193 5.3537847751754786 +v 3.2305740098077314 1.3972385548374084 7.7067670385445188 +v 0.76897536372016906 -2.0829527091021034 1.3352026190673687 +v 6.0928109608313319 1.2019013844155921 -4.9681506432543454 +v -1.4351022577243207 -0.013922606585677837 0.61229852496902781 +v -1.8230427770081812 0.13839247377810213 0.69095576979894102 +v -1.0455960495586138 2.7931931319363867 -2.3434512727585854 +v -0.22594180757325921 -0.77530232264436294 0.64570394333612713 +v -0.40203767544372598 -0.49307981097245834 0.47431986141745103 +v -1.3881553320376103 0.77788238748856675 -0.18466458934042437 +v -1.6476831372572536 1.0214273871126458 -0.26970695893462709 +v 2.8655406371406489 -0.47321297953818797 0.57288263765869363 +v 2.1160027553692009 -1.197692697292106 0.034849393929536066 +v 0.38068084607638608 -3.3402606837466413 -3.7420864109801597 +v -1.9062623904212297 -3.826955605319549 3.9947318815892512 +v -3.883103604251414 -5.0203054670002043 6.4788026762851842 +v 2.7266986502314317 0.69431222379036439 7.5553617515531331 +v 1.8542847039308776 -1.2850012340183328 0.74826897174995177 +v -0.29281708275316848 0.58502007820498192 1.0901148122268949 +v -0.40822105836926365 1.0136216230252293 1.373115075932994 +v -0.043947820056909642 -0.63955731254073878 0.27643411089801423 +v -4.1259955965369262 -1.3477541799153843 -0.46107611902028267 +v -1.9247183470006208 0.18742474761851138 0.71774256071228759 +v 0.16506215783043721 -0.16261293068834182 2.0956990167969334 +v -0.070670450772602728 -0.37831081557121332 0.23645270280155703 +v -1.2582441395245416 2.0190576821463813 -1.3480438533456622 +v -0.0039631771892863548 -0.53732687477591856 0.27105907607134472 +v -1.2258566840137144 1.9861405699547752 -1.2323191848315922 +v -1.0410995479131724 2.5443767607672774 -1.894460675405832 +v -0.51333383400675858 0.02100882865142575 2.2862288395045209 +v -0.43170983202481006 0.07902962390688105 2.1176190488169091 +v -0.92348393215095292 1.5588975387096162 -0.19331416007459623 +v -1.7856319673968302 -2.7246658347215074 2.9879789988187455 +v 0.5119339447809379 -0.8702002921566756 0.42011113636227754 +v -0.56860086316008007 0.36648119381244165 2.8029410869343745 f 1 2 6 5 8 9 3 4 11 10 7 f 1 2 17 18 15 14 19 20 16 13 12 f 3 4 25 23 12 13 21 22 24 26 27 diff --git a/results/search/topology_55/resume.planes b/results/search/topology_55/resume.planes index 788a0614..22733001 100644 --- a/results/search/topology_55/resume.planes +++ b/results/search/topology_55/resume.planes @@ -1,37 +1,37 @@ 36 -0.39027318358421326 --0.72375446557998657 -0.23207937180995941 --0.12492532283067703 --0.40433958172798157 --0.41948294639587402 -1.0243333578109741 --1.3419276475906372 -0.75939595699310303 -0.043376687914133072 --0.64134281873703003 -0.54121637344360352 --0.47949618101119995 --0.12564735114574432 -0.13050694763660431 -0.11214015632867813 -0.37908145785331726 -0.26099586486816406 --0.017581328749656677 --0.13926626741886139 --0.16215556859970093 -0.040643498301506042 --0.024023693054914474 -0.022998642176389694 --1.1876211166381836 -0.19910058379173279 -1.0888831615447998 -0.00034237935324199498 --0.09989330917596817 -0.16123796999454498 -0.12163084745407104 --0.60163670778274536 -0.07904680073261261 --0.95271778106689453 -1.305217981338501 -0.76172327995300293 +0.21908190846443176 +-0.65319728851318359 +0.089211784303188324 +-0.061300616711378098 +-0.10195533931255341 +-0.10490651428699493 +1.4326242208480835 +-1.7164773941040039 +0.31549525260925293 +-0.030763940885663033 +-0.32985931634902954 +0.48702403903007507 +-0.21758219599723816 +-0.083172135055065155 +0.037236202508211136 +0.30383417010307312 +0.71471083164215088 +0.39302730560302734 +-0.026266155764460564 +-0.054610230028629303 +-0.062939770519733429 +0.23125314712524414 +-0.086120449006557465 +0.082314498722553253 +-1.0639435052871704 +0.63934260606765747 +0.57253062725067139 +-0.038613859564065933 +0.025073928758502007 +0.1896466463804245 +-0.25101137161254883 +-0.63970112800598145 +0.21817755699157715 +-1.0852839946746826 +1.08579421043396 +0.61258155107498169 diff --git a/results/search/topology_56/resume.obj b/results/search/topology_56/resume.obj index f676bae7..1ecfb3fd 100644 --- a/results/search/topology_56/resume.obj +++ b/results/search/topology_56/resume.obj @@ -1,47 +1,47 @@ -v -1.1515440538329624 -0.18367759525011951 -0.99201841969636118 -v -0.1739310188441672 -0.51344578035348432 -1.1902064373318872 -v -3.0065916574301017 0.32084004469260624 -1.8154985914051138 -v -1.2383447413049986 0.17847060287396094 2.319342453159658 -v 1.6752256094077567 -1.1371234572253259 -1.5642939618834335 -v -0.52367690989119187 -0.23504916427990219 0.46807040890448715 -v -1.313116720795048 -0.21463288970100725 -1.8048673362925063 -v 1.5624281271633587 -1.0490420751912126 -1.0463503301247994 -v 1.7395418227174393 -0.98076150414262309 0.18455786813400721 -v -0.36967564455845303 -0.24532525085351911 0.84919423264917171 -v 1.9596926691097041 -1.0690576120422326 0.0010511087309453826 -v -1.5567077409518351 -1.7093471446682644 -0.59059306657470745 -v 3.5514996833603658 -12.116567790843096 0.041810214383232625 -v -0.32133412700500308 -1.4908647492738891 -0.9630394494111969 -v 2.6819139243943426 -1.4320170456157564 -1.7777591714098548 -v 4.394853214803252 -3.517979307894032 -1.8353439001579526 -v 1.7859118621821872 -1.1270572985181069 -1.5966383973773195 -v 0.15108252158223523 -1.2780419074531197 -1.1302956357644685 -v 1.1307441695768572 -0.82754970797014415 -1.4788974548447207 -v 0.11823789516093797 0.010272676359604365 -1.3689576597250677 -v -1.5263463583469308 -2.9585856916183841 -1.9306117948764276 -v -2.4745843540711889 3.255817311338062 2.7985725682253264 -v -1.1218526145526428 1.6142758176362839 4.2272826148609646 -v -0.79547524200027353 -0.7053841707339118 2.3950240195813226 -v -1.109891298623654 -0.9676923313239153 1.3342909629722852 -v 5456.5221611301504 -872.17914004603563 12274.709332048933 -v -1.0253248120604792 0.10866045182444374 2.757870002241563 -v 1.9772961153967152 -1.2029933829355832 -1.7819071370878683 -v -0.39907925677372152 -1.2719653998438338 -0.69281070191544447 -v 0.32672778666431951 -0.55575087348583974 -0.28804823506577426 -v -0.062968753157221391 0.97392931051032738 1.5252049461840893 -v 0.6856549123546456 -0.02662999162672753 0.0976859160573611 -v -0.29323237469559482 1.0506387178156298 1.7191964377118034 -v -2.8778329703943824 2.2964300282039281 -1.7254670759615265 -v 0.76510532168125545 -1.3240131564915048 -1.8118332391125034 -v -0.44445103474795739 -1.5123447781565083 -1.8446845503528593 -v 0.16480110948784599 -0.14081878636224598 -1.7716438918558819 -v 3.5631484744996955 0.77469517630144646 -1.6622477542711482 -v -0.17837841484607508 -0.72312064283409605 1.8504551900420818 -v -0.51753785550250864 -0.10726711122651277 2.070118981261766 -v -0.69567795140997668 -0.10843470203753303 1.2671635121650335 -v -0.72367817186035532 0.072273285639807519 1.6526569953725678 -v 1.5800740902871326 -1.0042038564817288 -0.83829193542537839 -v -0.6954691651460454 0.44841293190196629 2.154801067554454 +v -0.83909011990145133 -0.0022777837331885266 -0.48503333660986891 +v -0.37202435288869623 -0.21165619346701578 -0.56804563474793601 +v -2.6101658338254019 0.67902532261256254 -2.9428317315294166 +v -0.93586698234152554 0.20170791326459137 3.4852005601339613 +v 0.22082910984456475 -0.47467433996532793 -0.60575204360700918 +v -0.41998136273290887 -0.14297785611429575 0.60175714017762116 +v -1.2238040800661716 0.092850742001057252 -2.3201149759730177 +v 2.3529130369824829 -1.3698507979721506 0.50700669317788227 +v 1.6138540211442989 -1.0071282900235707 1.4115723686258812 +v -0.046857999036582144 -0.32833814288312302 0.090058653110569931 +v 2.339045688868973 -1.3469239793990297 0.92077587016981921 +v -1.3291206439408398 -1.2198633409055266 -0.17118539144206824 +v 2.4562767919928428 -12.125195849026545 0.60882481514461495 +v -0.35039511685770169 -0.77368104948052929 -0.48474976974527895 +v 2.3646126181727389 -0.63201160490273245 -1.1816625265748197 +v 11.248076291882988 8.360584648502698 -4.8075663649472453 +v 0.8888954342875377 -0.34864717565512315 -0.85971671371716296 +v 0.16018050420456395 -0.43004187219342965 -0.66582111154329104 +v 0.65911028057859766 0.31198581433791367 -0.90685210498047419 +v -0.31126132080720259 1.2947931588096693 -0.82081280183968441 +v -1.3542594814337514 -1.8627189685002403 -1.177491895935884 +v -0.47051026905945148 1.6341106962339029 7.4623376151891563 +v -0.88754415637740092 1.9049214186905987 6.0738782303232304 +v -0.21795507688960791 -2.606091913051372 2.5980040385952634 +v -0.54155183553384534 -2.1189374368733396 1.9083565949324464 +v 38.871991122786277 -35.671733107104586 121.99131464885855 +v -0.56879691969810753 -0.92494120075916186 3.4640412330212014 +v 1.3772262275185458 -0.31431897441512829 -1.5655555772861163 +v -0.38358628736905037 -0.66100506969393857 -0.26878886112197531 +v 0.05181378359819562 -0.30087427386924259 -0.14860134119816071 +v -0.22475562812070971 1.2828630776452339 2.6868967799335519 +v 0.047968791931057103 0.99088378402054422 1.930704819791381 +v -0.4712711710088115 1.2227988143874156 2.8499254994331391 +v -7.8416440495507471 8.735853550436099 -8.7844363917045651 +v 1.1413851824900563 0.44943817058363428 -2.0681902676029269 +v -0.24660015640552072 0.91535256568686263 -2.6193820888815669 +v -0.23162116965273552 1.1723205104332952 -2.7699515731655673 +v 3057.46022902696 4255.6514164452874 -1943.3342417418166 +v 0.94332908806886162 -2.1690065787876569 1.8333526772429931 +v 0.21342319657606804 -0.87307854219456582 2.3480322235204172 +v -0.42699440552611112 -0.3480763090840957 0.60683591013976468 +v -0.47248190061124817 0.12025851083077692 2.0274764802261211 +v 1.5156663866232438 -0.5478945249045768 -0.62733736118082239 +v -0.49193965522782018 0.59926990212155617 2.8501778627689927 f 1 2 6 5 8 11 9 10 4 3 7 f 1 2 20 19 18 17 15 16 13 12 14 f 3 4 23 22 26 27 25 24 13 12 21 diff --git a/results/search/topology_56/resume.planes b/results/search/topology_56/resume.planes index 440d5fc4..28b455b6 100644 --- a/results/search/topology_56/resume.planes +++ b/results/search/topology_56/resume.planes @@ -1,37 +1,37 @@ 36 --0.12788307666778564 --0.40363034605979919 -0.04079098254442215 --0.32227569818496704 --0.23138795793056488 --1.2046971321105957 --1.5218201875686646 --0.70889639854431152 -0.62639135122299194 -0.09541599452495575 --0.20694677531719208 -0.1950889527797699 -0.035767544060945511 -0.078083902597427368 --1.7645727396011353 --0.7232087254524231 --0.45574671030044556 -0.16111055016517639 -0.15130721032619476 --1.0073992013931274 -0.20426969230175018 --0.12539902329444885 --0.38529059290885925 -0.028380721807479858 -0.22857971489429474 -0.28689506649971008 --0.081214569509029388 -0.78529888391494751 -0.11642087250947952 -0.8860965371131897 -0.20698867738246918 --0.29065075516700745 -0.20608891546726227 --0.21699310839176178 -0.099720373749732971 --0.062507212162017822 +-0.13003601133823395 +-0.29482355713844299 +0.011977962218225002 +-0.15865384042263031 +-0.10074421018362045 +-0.63855737447738647 +-1.4523353576660156 +-0.47961655259132385 +0.34267315268516541 +0.087402738630771637 +-0.13337744772434235 +0.083021663129329681 +0.28511881828308105 +-0.86646872758865356 +-1.4503861665725708 +-0.52688723802566528 +-0.33375635743141174 +0.09315723180770874 +-0.040329430252313614 +-0.59488987922668457 +-0.40129604935646057 +-0.069317638874053955 +-0.29045897722244263 +-0.062083393335342407 +0.49876067042350769 +0.4933796226978302 +-0.010622195899486542 +1.1577022075653076 +-0.037672150880098343 +1.7366807460784912 +0.11720946431159973 +-0.065518297255039215 +0.04091963917016983 +-0.38826242089271545 +0.012863217853009701 +-0.016672322526574135 diff --git a/results/search/topology_57/resume.obj b/results/search/topology_57/resume.obj index a35251a8..88ee79e6 100644 --- a/results/search/topology_57/resume.obj +++ b/results/search/topology_57/resume.obj @@ -1,47 +1,47 @@ -v 0.38301212178343219 -1.6452347944426804 2.0475654365152303 -v 0.36792628805385774 -1.959080182372875 1.8847352295646855 -v -1.1650087265806639 0.43040409561955251 -0.48522048045147859 -v -2.112676002027543 3.9836663516346715 -1.0918294132028772 -v -1.6301095315028253 -0.061984632339072677 -1.7076916023480075 -v 0.21461226617172097 -1.4391480921048472 1.7638885345421673 -v -1.5809762449502311 -0.73017319688333904 -1.8763723926235274 -v -0.97431098359950141 -0.78443583850007692 -0.56984242466187496 -v -1.5603761379551984 2.6160290326974533 -0.4475065433479537 -v 4.4179227707842514 2.1645374245806277 12.461930883774677 -v -0.82980161914121164 1.3217212746091485 0.61767076310515567 -v 0.61616691781715249 -1.2044421240032239 -0.14264634801096504 -v 1.1064174405796361 3.3796210709635535 -0.8444074341517952 -v 0.54944005229727622 -0.96245827578161014 0.87710482871231743 -v 0.55245327285327028 -0.51365850868343821 1.3217488613013013 -v 0.45128163030547414 -1.5692927330479898 1.3495508364707316 -v 0.56874879039487924 -1.1336056583220564 0.47408353647826118 -v -1.0427492276761607 -26.70653141695551 -8.4314329964432062 -v 0.21703293296091133 -1.7207905939947661 3.8610270472628399 -v 0.57114636655773321 -0.3738332436498023 1.2576722797965392 -v -1.0185307543934365 0.23174625669959598 -0.4468939996028265 -v 1.0754722840570512 -1.8587287335815281 -0.017507948691628139 -v 0.26467009238274941 -1.1034752783195729 -0.17519898514741933 -v 1.6868303583599042 -1.5047397985499049 -0.044636869733861273 -v 3.3924286567446429 3.6527450485954382 -0.77972562078821872 -v -5.4313104371146927 7.6652700953564663 -1.8306142723553083 -v -1.1715913451247075 1.5561234397692332 -0.66354528307032412 -v 0.12415044406440306 -1.037269181486981 0.12721805977977396 -v -1.0441272322550796 0.14389731820265073 -0.5737110828837636 -v 0.9831463281833881 -1.1710317492989568 1.362647610544617 -v -3.6982697945942968 4.4642060357505526 -0.56186700673102563 -v 1.3327903391811888 -1.4295760752288604 1.6654863876358639 -v 1.0223953330451023 -1.7442084284342971 0.86333923165342519 -v -0.53432610087869237 -0.71934150664761087 1.5051712720361514 -v -1.0366375083289099 0.33997971506538044 -1.6073705397176099 -v -1.3227583095612598 0.58342839518133849 -1.54541688043515 -v 0.73557857735324994 -1.8280017624004428 1.3736941473594544 -v 1.8608538235908729 -1.7491267205783185 -2.1398317488413396 -v -1.0649083794741303 -0.56814875572752499 1.4822489435358479 -v -0.5034361925675257 -0.74720727098217388 1.3007280853944136 -v -2.1526883056665698 3.5763086882077144 -0.78875112506164968 -v 9.5151383687161992 2.9319644671437475 -0.9729137089384694 -v -0.17776985558040814 -2.234993045541227 2.1512124401272841 -v -0.96256943807070949 2.0455451882619347 0.30529115996679645 +v 0.43275182763873576 -1.6758789358756625 1.8195884885458868 +v 0.40272371661233547 -1.8893422870250005 1.6321749535045003 +v -1.1402400367797234 0.5149438982399176 -0.63453474648971731 +v -1.2790800727147296 2.4445895783151417 0.10487442935486427 +v -1.5545333064694993 0.32044323999716695 -1.7057108225275281 +v 0.24685289108968295 -1.4445401134483071 1.5143718191842164 +v -1.4542336425297178 -0.38189928412458729 -1.8590307130662569 +v -1.0939659424161532 -0.51777308595274762 -1.0954847300423354 +v -0.97540852672783673 1.6039419227368421 0.34865758223275611 +v 2.3972451801594725 -0.38263666063304891 7.103141999958785 +v -0.721628996383476 1.1045068114900123 0.66421718717047407 +v 0.56464524165487662 -0.93494140488599986 -2.1146774819583491 +v -0.0080886500726978939 -4.9009475193582928 -3.1387081429973986 +v 0.56133696888396079 -0.83227231714394789 0.91722543450306537 +v 0.58025240682661616 -0.6935422578191941 1.1384382231605885 +v 0.45877615589468923 -1.5235486829513194 1.1916768008477352 +v 0.53519051706536747 -1.0372673114419251 0.29137842067793795 +v -1.2659763241546276 -13.55884021733139 -4.1155176061809238 +v 0.31178382304220159 -2.4099776237059851 4.1086743818107205 +v 0.58614302165343457 -0.65390896906893337 1.1209719400747762 +v -1.0475108089079064 0.27588701735527532 -0.76976691305634892 +v 0.75620479693187226 -0.82807720417816522 -2.1888252520272071 +v -0.5026561776295998 -0.099619360706426116 -1.2127844709734741 +v 0.65210165705533885 -0.95674390938563036 -2.1726450929538963 +v 11.519767423223637 8.9858742172090356 -5.053769689108 +v 6.3687640579815881 6.418660203125099 -2.9552947015559035 +v -1.0142126718314235 1.2048890589762027 -0.47163486400583132 +v 0.10995884222754707 -0.90210041597447188 -0.061296298472415134 +v -1.0653632622343745 0.24506187914282471 -0.84570751328586458 +v 0.86805761418005967 -1.1664334612353544 1.0757669652628796 +v -3.7178106944895739 4.6596384326840461 -0.19334149415237345 +v 0.95406733794689846 -1.1593994851839746 1.2539011251254797 +v 0.88528949127260614 -1.2092809240847855 1.0527287104377203 +v -0.54655643249668662 -0.78580954953244808 1.4048049950696579 +v -1.0748851977842544 0.52833897457724688 -1.846801596601368 +v -1.3107442930042259 0.68427643581780351 -1.7345630814911639 +v 0.57056242469796725 -1.6148407061754799 1.2015995490436169 +v 0.60936948613352704 -0.92037499687360469 -2.703933489961416 +v -14.440532852366971 3.0438775099368658 2.6498025432079295 +v -0.51889766505423152 -0.78069980373338599 1.1252292433752804 +v -3.094269844299411 4.8426291861369988 -0.39124758482294869 +v 7.7567907628883921 7.9198530929270312 -3.8530772323793805 +v -0.26410655648324227 -2.7211109290513189 1.781639454636712 +v -0.75687068655716538 1.3521348823526591 0.56969712414704399 f 1 2 10 9 4 3 5 7 8 11 6 f 1 2 19 18 13 12 17 20 15 14 16 f 3 4 26 25 13 12 24 22 23 27 21 diff --git a/results/search/topology_57/resume.planes b/results/search/topology_57/resume.planes index b0baa42a..a891abf4 100644 --- a/results/search/topology_57/resume.planes +++ b/results/search/topology_57/resume.planes @@ -1,37 +1,37 @@ 36 --0.69312423467636108 --0.13084205985069275 -0.3164064884185791 -0.70474368333816528 --0.065915949642658234 -0.061756175011396408 -0.01663762703537941 --0.055755253881216049 --0.35258296132087708 --0.33518490195274353 --0.20649543404579163 -0.21069683134555817 --0.43846625089645386 --0.49081870913505554 --0.096284031867980957 --0.26808232069015503 --0.92775344848632812 -0.085948184132575989 --0.002948645269498229 -0.4020828902721405 --1.5936139822006226 -0.15672457218170166 -0.19913418591022491 -0.28834050893783569 -1.0632989406585693 --1.8133963346481323 -0.29983335733413696 -0.079414859414100647 -0.42172661423683167 -0.94344210624694824 --0.11515819281339645 --0.052735336124897003 -0.051484856754541397 --0.83038771152496338 --0.061573952436447144 -0.21025721728801727 +-0.60106843709945679 +-0.14222255349159241 +0.25829645991325378 +0.67397254705429077 +-0.098378933966159821 +0.0040668058209121227 +-0.5851103663444519 +0.3460317850112915 +-1.0129107236862183 +-0.27303966879844666 +-0.18461175262928009 +0.1391233503818512 +-0.38687089085578918 +-0.48833957314491272 +-0.13450449705123901 +-0.22635562717914581 +-0.80912315845489502 +-0.037181805819272995 +-0.73374909162521362 +0.33272147178649902 +-2.0041706562042236 +0.13026385009288788 +0.22692243754863739 +0.62024134397506714 +1.022773265838623 +-0.84513711929321289 +-0.14011606574058533 +0.16282394528388977 +0.32967504858970642 +0.80298936367034912 +-0.11175480484962463 +-0.064713828265666962 +0.036768335849046707 +-0.78749781847000122 +-0.035855188965797424 +0.19968250393867493 diff --git a/results/search/topology_58/resume.obj b/results/search/topology_58/resume.obj index c4099e4b..2944db06 100644 --- a/results/search/topology_58/resume.obj +++ b/results/search/topology_58/resume.obj @@ -1,47 +1,47 @@ -v 8.0648811201265325 4.807204315604956 -2.0731344784576473 -v -0.57445917097153654 2.1183651486092954 -0.98372799862608473 -v 0.47508148496808694 1.2165760859665786 1.6110864194053931 -v 0.50967263521954154 1.3786125185447353 1.2709009820691195 -v -4.1761260083304226 0.50144714804417234 0.57148588228283304 -v -3.1994834404874193 0.48217916733938737 1.16591057993887 -v 0.1117200933974499 1.6001365499227616 0.55433279143202618 -v -0.036946054788969028 1.180689016174933 1.4015413940589698 -v -3.4157390997014714 0.5623140433277235 0.86585918749006263 -v 0.37951692153998784 1.5279904109216209 0.86576168641649942 -v 1.0034864040568485 5.3751099634400479 -7.3224730842658445 -v 1.3897482654877311 -8.2189644512093292 5.2585302929438091 -v 0.90160434965750647 0.062161180334035143 0.32129521734635202 -v -1.6900904010287909 -0.399746315290744 0.44377227132923636 -v 5.2000269269811215 -2.009203525583688 1.8000971468221483 -v -1.5034328811509541 -0.14807995141802904 0.30549268041533717 -v -0.24279904634037563 -0.13298728541549609 0.37015226487654795 -v -0.73009048739124283 1.6793599061348121 -0.73258955442598928 -v 0.41363749008574929 0.14178511556672094 0.24560577783570503 -v 2.3000960747819024 -10.021560527061148 6.3801934569460927 -v 0.72071624035653481 -0.49022862701739556 1.8284451516589071 -v -1.0594356024876384 3.3643700904078813 8.0994124128317484 -v 0.43467101736898917 1.7228466639668421 1.3675578848817889 -v 1.7862949918824087 6.8741255929646838 -10.837442665887522 -v -0.1565756549520424 3.1463675643518769 3.3183207126966896 -v 1.4217482952297944 -1.1453947581924182 -1.4361285436349993 -v 0.69295012960286018 -0.13329312212914568 1.6527529530764922 -v -0.91989525445551001 0.058823408769557786 1.824782947553846 -v -0.17662030393911965 -1.6542881244661927 -0.99320583029866816 -v -2.7515035518173541 -0.13554830266753851 0.26614747081189627 -v 6.2423720601621868 -8.9745941019418662 -10.937815409146545 -v -1.4174514952841348 0.15123464417545276 1.6809873487440392 -v -1.0349260757477878 0.26469774151925402 0.69513710149573771 -v -0.32030460880593881 0.8897046214924933 1.3049837526153869 -v -1.2515001893781612 0.65225489249065416 -1.4315254575740957 -v -0.020353932825683246 2.9056805704380171 -4.3410400747715547 -v -0.55078227825792014 3.7049094990363973 3.8038778943110709 -v -9.1170942624922695 2.2038554261014398 2.1087312623885528 -v -1.1264138566007733 1.0228532309325593 1.3722083204174917 -v 2.0864406630405847 -1.175220803792896 -1.8308790154636934 -v -0.21121132789532207 0.61514267124283173 -2.0583643806167746 -v 3.038318232988217 -0.412684411807623 1.4026000117914021 -v -1.2679415727402128 0.62279479246372971 1.5979313798588151 -v -1.362980350066795 0.20951915310758887 1.2902589231093211 +v 2269.5027175197092 1038.4981958713026 -964.86256462271069 +v -0.64518940811750058 2.0005025392540166 -0.83555583823483515 +v 0.31366016683224185 1.1672703381036182 1.7803601985360857 +v 0.43898477910577832 1.5660547828435394 0.91473804575041529 +v -4.0760580129679873 0.63317315854967127 0.1477568219319596 +v -2.3269066270738024 0.59709384381694763 1.3902928426751804 +v 0.016857269047173197 1.8321144290185782 0.0027661637029461339 +v -0.10296197646752181 1.290759615524925 1.2111294878819625 +v -2.7963227464589515 0.83096664954904309 0.52360446015339523 +v 0.56209882044112902 1.69342737092482 0.69320108664214897 +v 0.086571390411169055 4.2103480236468949 -5.6077071793289059 +v -1.4357432313499594 -9.9355242891836948 7.2875477491460856 +v 0.34726270726487879 0.19294204804396314 0.26392616768125737 +v -1.0904204678020673 -0.26237210128188382 0.7391498945714583 +v 6.2487891026196882 -2.7968404609280308 1.5820496662319938 +v -0.86626603309437 0.21740901569487997 0.39003247957593867 +v -0.20401635271858559 0.068363398078391729 0.4125042479811547 +v -0.64518562121934919 2.0005151008942126 -0.83556473424838285 +v 0.10709281606767698 0.24585393483192863 0.25654400188794158 +v -0.95624272414169964 -11.487181747418663 8.2751275363676697 +v 0.16023065838772968 -0.18968426132768909 1.8081914349901054 +v -0.11379407894205411 4.6594241499675659 10.496517101817027 +v 0.45304767899783061 2.1654210694383971 1.476395035022662 +v 8.1212357196737948 29.157883403001303 -48.409011425098811 +v 0.33254516779457727 3.8629656301920741 4.780560221110437 +v 0.30236652620782101 -1.3438592812050298 -1.0817345346813607 +v 0.1929151830951408 0.0074601013734796875 1.6930744248322627 +v -0.68761930365097224 0.13673354541964436 1.7724903950994415 +v 0.67767233447020447 -2.7056295548667006 -2.4189489901156298 +v -6.5604651057465571 1.9415712893680053 0.68856118909863584 +v 9.1597647046926092 -15.491751913200611 -19.522662755908975 +v -1.1844067464875134 0.30259434207587843 1.7049881727699381 +v -0.73903906238122308 0.37544595126251729 0.60173506934815868 +v -0.23644230824361742 1.073130887964991 1.1748843686155515 +v -0.91599235883005681 0.82750519316140392 -2.1022989520346016 +v -1.0855313487794791 0.40893590013360537 -1.6385262730868018 +v -0.06038729753940221 4.4791387881789442 5.3535304452026882 +v -9.6689901756198431 3.4457474721593653 1.4769378360602787 +v -0.95782237826892147 1.0635639257673619 1.3040864467646289 +v 2.0046161060868601 -1.0652019650959466 -2.4400155343925269 +v -0.1185343279952225 0.72268904222549435 -2.5407904908070593 +v 3.8217664420684128 -0.74338329637989231 1.4869200919252883 +v -1.1060648898443872 0.56842167444394609 1.6045720561557082 +v -1.1715239471516754 0.33234540812157232 1.4924800950590043 f 1 2 11 5 6 9 3 4 8 7 10 f 1 2 18 15 14 16 17 19 13 12 20 f 3 4 26 12 13 27 21 22 24 23 25 diff --git a/results/search/topology_58/resume.planes b/results/search/topology_58/resume.planes index 878bdb54..5f50dd2a 100644 --- a/results/search/topology_58/resume.planes +++ b/results/search/topology_58/resume.planes @@ -1,37 +1,37 @@ 36 --0.36558058857917786 -1.4368530511856079 -0.64722549915313721 --0.013166381977498531 -0.1336665153503418 -0.22549793124198914 -0.91466456651687622 -0.15274323523044586 -0.16576038300991058 --0.29095494747161865 --0.86639547348022461 -0.44995656609535217 --0.78306287527084351 -0.69410526752471924 -0.20623704791069031 --0.011198657564818859 --0.24803969264030457 -0.2762310802936554 -0.61659461259841919 -0.74588954448699951 --0.35741394758224487 -0.094263307750225067 --0.148177370429039 -0.16991910338401794 --0.44695553183555603 --0.66285967826843262 --0.70251327753067017 -0.22118879854679108 -0.6697726845741272 -1.3257509469985962 -0.031393151730298996 -0.22902512550354004 -0.038539908826351166 --1.1862063407897949 -0.35632669925689697 --0.11221525818109512 +-0.40541201829910278 +1.4581226110458374 +0.61304867267608643 +0.034811936318874359 +0.19935508072376251 +0.29631879925727844 +0.34326738119125366 +-0.038154099136590958 +0.032120931893587112 +-0.3094332218170166 +-0.75850015878677368 +0.41357302665710449 +-0.77171218395233154 +0.45231705904006958 +0.12611939013004303 +-0.04839174821972847 +-0.18932412564754486 +0.1704133152961731 +0.805869460105896 +0.93166083097457886 +-0.44925916194915771 +0.067842490971088409 +-0.053928077220916748 +0.073959216475486755 +-0.6199907660484314 +-0.78917062282562256 +-0.93889790773391724 +0.2220941036939621 +0.71831768751144409 +1.2932174205780029 +0.062109861522912979 +0.28807207942008972 +0.044095266610383987 +-1.1418665647506714 +0.32770043611526489 +-0.023344997316598892 diff --git a/results/search/topology_6/resume.obj b/results/search/topology_6/resume.obj index 1534b918..7c0bf830 100644 --- a/results/search/topology_6/resume.obj +++ b/results/search/topology_6/resume.obj @@ -1,47 +1,47 @@ -v -0.16699645707001201 -1.2228859307222488 -0.044987768528579324 -v 0.013538481312141318 -1.1741243951426941 -0.12801118345252074 -v 2.9215308129140807 6.0041259367086086 0.45298036113184476 -v 2.0230522604615442 4.7398496751808477 0.55961396718730894 -v -0.11159228096021527 -0.87294122900286708 0.030051359855435639 -v -0.3476992478178268 -1.0281926057096558 0.11118034119597621 -v -2.5722621843248032 0.38119319832388271 1.7374126901045761 -v 1.0911461606355046 -1.6086070829219987 -0.84128911062350487 -v -5.3637243113077044 10.406609765231153 6.2557199335166702 -v 2.1145349407525034 5.1753819085682595 0.64081982027976003 -v -1.9152241277048339 1.2716185955353692 1.6491975828583971 -v -1.6206168810924002 -0.40403582638473018 -0.2105309018228958 -v -1.7540448713075176 -0.58971508148844465 -0.046151273994186504 -v -1.7713968302216294 -3.6961874253139078 2.0972343645231044 -v -0.78232824938875745 -0.89184702795690374 -0.1043320718440679 -v 0.2068430711237699 -1.3898338393883978 -0.03245910657761264 -v -0.89068510745793039 -4.3316706552767918 2.2934761935643442 -v -2.3771277720059936 -3.5783326353980818 2.1820254418696341 -v -0.25640443408009506 -3.3081741939024778 1.4151080184217475 -v -2.2886741601581839 -7.7234641855967228 5.0114865840635305 -v 1.7892397667232578 4.3461301248497737 -4.0537090715663275 -v -1.4581306047390958 -0.18429172717744866 -0.8677428292886149 -v 6.7623714048477312 11.245311116723169 -11.719574068080739 -v -1.6390264970963258 -0.42557375432973077 0.10482163390651623 -v -1.0895075201770692 0.36948326479570254 1.6038859926690903 -v -8.2451313905988606 -9.4826562042783724 17.997826749405281 -v -1.7358042911110283 -0.53838250767204576 1.7923158759902766 -v -0.79465588537039711 -0.94137416729379808 -0.064295380850304729 -v -1.5111868399327348 -0.40977303108971969 -0.68477919011680377 -v 0.41882726533708936 -1.4361461177895145 0.63602877567553318 -v -0.28961856349538317 -2.9584425204620985 1.7925695062824036 -v -0.16687612773475108 -2.7447406793509805 1.6354464775844952 -v 0.56787702187662958 -1.6969460643189038 -0.22796155035607713 -v -2.4221118020389709 -0.229112596229224 1.8717307016414462 -v -1.3955327061702909 -0.63487420146811668 1.1069463448829109 -v -2.6026910633353388 0.16235285960906948 1.8632373119219305 -v -2.1395940131099676 -6.0931976474694549 4.2315396872406916 -v -0.90039368510681728 -0.77041569337805105 0.10824968992640782 -v 1.7451126609022374 -7.0964246726464681 -7.1242081719995003 -v 0.88912839872713678 -5.4811510758890076 -5.3982317991107251 -v 0.57883205737418542 -0.54000230991311438 1.4257815358380355 -v 14.120468208282789 -4.1148281440379737 -38.222886524119311 -v 0.18968760351174344 -1.4185559156431744 1.570694946875854 -v -9.6174248634913528 -18.35100241730817 23.416855383563828 +v -1.6683575743847494 0.099961447007172383 -1.0753721656550039 +v -1.5621883674196135 0.22932925436323492 -1.2154251628272155 +v -0.22393533255053941 1.4461548840082012 -1.1386635310469297 +v 6.4209106213814637 8.9429933226300609 -7.2337035445762154 +v -0.6308653093303489 1.0925427009025999 -1.2349815559203172 +v -1.5811300867767166 0.13752849307276468 -0.88454836289028904 +v -1.3035546136428338 0.13104567352787713 0.28367551092636534 +v -1.5117602625427791 0.52835567593556321 -2.3394702967899748 +v -2.3413115243805991 -2.0920624947930988 5.9195675758443738 +v 2.1610429726940965 3.0515038036833571 1.5051936948862366 +v -0.91325328110724924 0.41876733965894819 0.60503216116557179 +v -1.091163469296645 -0.19139085038499398 -0.90107026546788105 +v -0.99296681573780476 -0.09801925905048034 -1.0058825329017784 +v -0.067708672506053266 -2.3631825618618203 0.96506057591528527 +v -0.16760547750381444 -2.244672649598662 0.87084472914666766 +v 0.5600882356731085 -2.48056950456224 0.96696132251008104 +v 0.6015816534371119 -0.17273207247645275 -1.2112498151396072 +v -1.1843015200516358 -1.7571884424485533 0.58801403249786066 +v 1.7514598148500853 -0.89737231631474101 -0.72834408210249713 +v -0.34328918890861121 -4.4485820298721901 2.9744858811900139 +v -0.5536046807866114 0.81835156994814262 -1.0528340487514574 +v -1.0724403055177729 0.062552039646841306 -0.72118712381037375 +v 6.224063433180735 4.4095172926498423 -10.70228636630543 +v -1.2675910146309828 -0.17187498723653399 -0.55424836636416797 +v -1.2520191514514174 1.0790297523801922 0.47535904816899494 +v -0.29721090907080361 1.0468622875041733 -1.3394382548652874 +v -1.1571125336717318 1.3158937230337666 0.49815768255149728 +v -0.21957546677528242 -1.4297150820131017 0.37083996298009742 +v -1.0848488262681317 -0.31567924066809877 -0.49763658415206358 +v 0.87401171170696668 -2.1363382051752047 1.0485800180153353 +v 12.429764381682242 -4.2902367516158204 5.0294230120258741 +v 1.9102070005028111 0.29782762072869534 -0.16738226565804593 +v 0.71167766777623143 -2.724166925833269 1.0514345153234186 +v -0.69899083634397541 -0.94490106877168156 0.71739127625621912 +v -0.42461190852150921 -1.1031008468864771 0.60819347808962343 +v -1.3298253189215659 -0.061885611105359568 0.48703314813074639 +v -0.20946817443036914 0.81449288259310448 -1.3701655041624281 +v -0.34119229578583543 -1.1018703206455618 0.40901804123880381 +v 1.0245523068660043 -11.167321883984089 -5.1276870029355859 +v 0.58117150780135185 -8.9142809026904732 -4.142096090763701 +v -7.0898592453410751 11.760998780425227 -1.736928030198263 +v -0.75728612771855652 -0.075499861666619442 -2.0716177446569128 +v 0.81228020470158135 -2.1503540180343852 1.2400677491898937 +v -2.9199183563659363 -5.8831533609437816 10.195006703610419 f 1 2 8 3 4 10 11 9 7 5 6 f 1 2 12 13 18 14 15 20 19 17 16 f 3 4 23 21 22 13 12 24 25 27 26 diff --git a/results/search/topology_6/resume.planes b/results/search/topology_6/resume.planes index df1d6ebf..c3c57e3a 100644 --- a/results/search/topology_6/resume.planes +++ b/results/search/topology_6/resume.planes @@ -1,37 +1,37 @@ 36 -0.090620651841163635 --0.050270970910787582 -0.16752989590167999 --0.164928138256073 --0.41450023651123047 --0.60208266973495483 --0.88825798034667969 -0.63051348924636841 --0.0087918564677238464 -0.08742959052324295 --0.33627781271934509 --0.389070063829422 --0.20817510783672333 --0.1009301096200943 --0.2258867472410202 --0.34811845421791077 --0.7404782772064209 -0.52033799886703491 --0.44868913292884827 --0.96198141574859619 --0.091894872486591339 --1.5568512678146362 --0.14788398146629333 --0.63370919227600098 -1.0329806804656982 --0.31314897537231445 -0.3810393214225769 -0.22463805973529816 -0.13438840210437775 -1.4179782867431641 -0.83875662088394165 --0.21527408063411713 -0.20967820286750793 --0.76550751924514771 --0.10476764291524887 --0.36530840396881104 +-0.67765307426452637 +0.73486173152923584 +0.16509151458740234 +-0.11463198065757751 +-0.62380021810531616 +-0.66310650110244751 +-0.99747800827026367 +0.45095145702362061 +-0.53279018402099609 +0.071546413004398346 +-0.18391364812850952 +-0.30719724297523499 +-0.27691572904586792 +-0.27530092000961304 +-0.29695925116539001 +-0.70234388113021851 +-0.30491754412651062 +0.38107690215110779 +-0.53840035200119019 +-0.77483910322189331 +-0.23028245568275452 +-1.158137321472168 +-0.11481384187936783 +-0.25854089856147766 +0.64409446716308594 +0.37216860055923462 +-0.97522515058517456 +-0.26436120271682739 +0.026474475860595703 +0.82543444633483887 +1.5236245393753052 +-0.4185258150100708 +0.46054992079734802 +-0.40900105237960815 +-0.13167956471443176 +-0.17211331427097321 diff --git a/results/search/topology_7/resume.obj b/results/search/topology_7/resume.obj index 7c272263..05056d78 100644 --- a/results/search/topology_7/resume.obj +++ b/results/search/topology_7/resume.obj @@ -1,47 +1,47 @@ -v 0.98976447425811698 -0.33193643395299699 2.9068392802510314 -v 1.7167040961623474 -1.8837589316922672 0.16012684799926927 -v 1.046317132718825 -0.84080528889373563 -0.92161628245358151 -v 0.39737757918126726 0.21319339066279386 -1.5551457108036753 -v 1.0439479521724035 -0.40912558073788735 3.0604550352403854 -v 13.489502412401613 -19.512779400924476 25.550141388050655 -v 0.99879710741010275 -0.7197037001504587 -0.55898016059027855 -v 0.21636272254413119 0.59828512339052986 -0.88354453435741931 -v 0.21961506083861773 0.73025949179452121 0.39789885822531429 -v 0.36729797858756114 0.36000711186717821 -0.67222314002453831 -v 2.7349776025338381 -3.674110028614618 -0.11686381207432273 -v -0.43713638687765388 -1.0215260082691557 -0.23798439298142737 -v 1.5453204752784349 -1.9528626566575176 -0.18623820924809542 -v -0.4670010340328431 -0.64799876848695148 0.58272246488237611 -v -0.39248006201257402 -0.63062254840501408 0.70437332248920614 -v -0.48306948554207396 -0.70941822875628879 0.42470381878303487 -v 23.541775622843563 -10.477618397519953 4.5215188863335527 -v 0.063919293110979464 -2.0722381073873284 -2.0879959240416501 -v 0.13883307873677611 -0.99013179248649053 0.46709995997041298 -v 0.060189669900185219 -0.91049136581792423 0.56260859162324939 -v -0.40363718561915202 -2.36702102166557 0.85737542904981623 -v -0.32874866155213189 -2.5754616438859976 1.001934555820577 -v 6.2298760228368213 -0.42749486067714981 -3.1308256002658732 -v -2.1130936171336439 3.069246554659006 -3.000686094330443 -v -4.5626818109939906 -2.0771632600060248 2.1184200434143476 -v 0.94065028003760254 -4.4788855482469616 2.1108838734237283 -v -2.1371224075554043 -4.3806713773620691 3.1397928347817849 -v -0.39666913165003498 -0.5910380084725223 0.69352942723936972 -v -0.316427803823431 1.0123522232907538 0.66802852788847333 -v -0.50523613274569557 -0.11217189652944741 0.46651181265228059 -v 2.391201854517544 -6.8000361618145249 5.9218987844472837 -v -0.27727081722593527 -1.2957283802388437 0.96077842396578506 -v 12.523177288830093 -1.0584622195244155 -8.9184331410068651 -v -0.77615599770866317 -0.63298802110483066 0.82321268406623926 -v -0.65491961973388413 -0.73492144222401878 0.46559417449836599 -v -18.479078636895117 -2.7339658394641173 6.4780487978475021 -v 0.90673340094954291 -0.70100928762381554 -0.44836868430215371 -v -0.67688456836880229 0.88095929863367395 1.4745105990219809 -v -2.7571248185543018 1.8534909878510899 1.2215888375947257 -v 0.23672418360242958 0.87913465548232783 0.37978628731029485 -v 0.69976472896502773 1.4193276994221731 -1.7092312395635025 -v -0.6756811968823816 -0.31492486389227159 0.7647509922304947 -v -3.3163531211234858 -4.878279280876356 4.544777810163291 -v -9.0501811987939522 -3.1805149673487949 3.6010195745364677 +v 1.6964226069594639 -1.1173188425483904 1.4685625012756045 +v 2.2860307697363327 -2.0012685839657935 -0.38927002609836103 +v 1.0231205818122711 -0.65561978764914197 -0.96815708195124706 +v 0.20902240163191291 0.23584462061723394 -1.1413279564922751 +v 0.34976451373275463 0.35553580468264351 1.16729083394686 +v 6.4142129482097143 -5.6272571392698101 7.9330995738881338 +v 0.95839297542988444 -0.54543375770188085 -0.65480467217767258 +v 0.009243277000849124 0.50874863324220188 -0.73326768546433962 +v -1.4340462428623555 2.3944029992183751 1.4996884328028091 +v 0.52046634432829197 -0.0086463994231719323 -0.27157028204225592 +v 3.1933916242166949 -3.1821699856486343 -1.7550973920867365 +v -0.22519928502390846 -0.87987020287310924 -0.42693115851536678 +v 1.3102574466482293 -1.6227959284818949 -0.57612422916013495 +v -0.34575996656844299 -0.59794319892283387 0.25725880116889188 +v -0.19870870692670312 -0.60607133090721421 0.43251422133729311 +v -0.32665747870352468 -0.66314837951735683 0.087091377413472434 +v 4.7596849397678689 -3.4635578626042549 -1.4278927292267396 +v 1.2784633486117398 -2.5677362009241378 -3.4612788555727705 +v -0.11009682497245644 -0.67102528190106503 0.35749886937317787 +v 0.032151266632716842 -0.77862641197018789 0.22705908056978569 +v -0.38224271701201507 -1.8372837252855319 0.11227589536591309 +v -0.086568201729790947 -2.6100383734484747 0.40281025962259415 +v 1.8790960188688561 -0.52128835385134575 -1.3294216783660318 +v -0.31023061931263785 1.8648506539333383 -1.7894223546188575 +v -1.9229134789669833 -1.5027912605870504 0.47033621659978564 +v 0.17340123815885317 -3.2675774265523558 0.64715702477178105 +v -0.56108548736005781 -3.2138281328692515 0.87145422732860789 +v -0.22375182921630851 -0.4920785835441846 0.4118756057920418 +v -0.47048792088206781 1.451183202572631 0.27559674747214874 +v -0.47161601748762288 1.2689017295766247 0.25934246069572658 +v 2.1363110332025492 -4.011562044296066 2.94748096417961 +v -0.16939527691352715 -1.0899114796900833 0.42801993510290737 +v 5.297115135852307 -2.1789526442989757 -7.9868653853968441 +v -0.70713238985886229 -0.60898314560703315 0.51832852648282257 +v -0.49275293549586563 -0.71350430943907428 0.099459538966570116 +v -6.7241018737177356 -2.4061352600404167 1.0306470228319886 +v 0.080594206725560003 -0.49146462302749006 0.17136423753200858 +v -0.80933822560285673 1.6149770057343193 0.93752255454006472 +v -4.6196196443444189 5.0231808618187097 2.7931012574462057 +v -1.2535277420407116 1.9588269616881264 1.3445656866111531 +v 0.76304862729872125 0.40971162774926606 -0.54592416596683702 +v -0.78322953434528264 0.10612296258993248 0.73546275819677143 +v -1.4992014387076544 -3.2694794355758314 1.7583381485240195 +v -5.2622702949099409 -2.5457061612130647 0.74167339778437702 f 1 2 9 7 3 4 8 10 11 6 5 f 1 2 15 14 16 20 19 13 12 18 17 f 3 4 12 13 26 27 22 21 25 24 23 diff --git a/results/search/topology_7/resume.planes b/results/search/topology_7/resume.planes index 7a56124f..6cfde8e5 100644 --- a/results/search/topology_7/resume.planes +++ b/results/search/topology_7/resume.planes @@ -1,37 +1,37 @@ 36 -0.46120581030845642 -0.26674506068229675 --0.028642317280173302 --0.38134300708770752 --0.79246389865875244 -0.34679639339447021 --0.24664661288261414 --0.56302225589752197 --0.68405026197433472 --0.57024204730987549 -0.034016069024801254 -0.34446054697036743 -0.14857906103134155 --0.63172042369842529 -0.23043161630630493 -0.36243057250976562 -0.85352873802185059 -0.3010459840297699 --0.23525284230709076 -0.056686475872993469 --0.095910720527172089 -0.14820899069309235 -0.041282642632722855 -0.47931826114654541 --0.032805364578962326 --0.024089464917778969 --0.035125240683555603 --0.015023407526314259 --0.14660555124282837 --0.15457648038864136 --0.49936571717262268 --2.3900306224822998 --1.2656117677688599 -0.31939524412155151 --0.0042752549052238464 -0.26656034588813782 +0.29973244667053223 +0.26747661828994751 +-0.032140243798494339 +-0.28842306137084961 +-0.63875436782836914 +0.2123819887638092 +-0.23677591979503632 +-0.35052531957626343 +-0.69135183095932007 +-0.35321831703186035 +-0.024142269045114517 +0.29525458812713623 +0.15325529873371124 +-0.45815661549568176 +0.19276158511638641 +0.50230759382247925 +0.48720639944076538 +0.13657979667186737 +-0.3149963915348053 +0.016696890816092491 +-0.16538329422473907 +0.087728008627891541 +-0.14697034657001495 +0.5147748589515686 +0.065455995500087738 +0.016391279175877571 +0.082870662212371826 +0.034148450940847397 +-0.16822691261768341 +-0.22633275389671326 +-0.39963915944099426 +-2.9298524856567383 +-0.60657089948654175 +0.11487078666687012 +0.0042394925840198994 +0.12177247554063797 diff --git a/results/search/topology_8/resume.obj b/results/search/topology_8/resume.obj index 1d3b4835..843161c1 100644 --- a/results/search/topology_8/resume.obj +++ b/results/search/topology_8/resume.obj @@ -1,47 +1,47 @@ -v -1.2106194143373465 -0.47459345183102619 -2.8098392696971088 -v -0.081387913741651802 -0.8730856910434166 -1.5181417226451401 -v 0.31403085343891179 -0.16873864658369861 2.4332865379531574 -v 2.1621261058050951 -1.9268183879688683 -0.038310747746569618 -v 1.4213756006502525 -2.0617032284994874 -2.5288140399970009 -v -1.142819467538684 0.17200194571730662 0.047989889311122136 -v 1.0588005560738221 -1.8061862680711585 -2.4145986552615635 -v -0.66851793668655213 0.19553083832738313 1.3821031494822762 -v 0.96552384758828236 -0.95017156566371652 0.89163153372625414 -v 2.1244064472887936 -2.7781764628185828 -3.6667533240289951 -v 2.4274904865191038 -3.9298818858524371 -7.6520578230059879 -v -0.51693658126395192 0.3397668941004876 -1.1379756499005707 -v -0.55785659310634206 0.37354523423578617 -1.1687453928231777 -v 0.63328293045644291 -0.63930235575177963 -0.29761338541028864 -v 2.111074564234201 0.32851283018113508 2.6279101600993733 -v -0.56999561553332179 1.1939632511143492 -0.505792875134213 -v -0.9752956031724539 0.59551721281299519 -1.5843231887870042 -v -0.50867471341701387 0.27674339265463754 -1.1783739895616083 -v 1.3990105787980938 0.42165860213257922 1.6822561119703761 -v 2.0661188075733281 6.4114788955015367 7.6080665758140267 -v 1.7288812104829421 -1.6365309897257121 -1.4823813665091632 -v 2.2420277026659985 -2.1185311762907033 -2.0664868219112953 -v -0.55088989264233035 0.37027458955698905 -1.1223220039495623 -v -0.20145131305624236 0.038536759465524803 -1.5783511335159532 -v 1.2200713836760779 -1.0918124631136525 0.20590559117924889 -v -0.97702941745009109 0.81383255598977666 0.081497089332781186 -v -0.97583078489460573 0.80824122047741831 0.0059811175632586699 -v 1.8970842181433878 -2.2527300684553491 -2.5699979598938665 -v -0.99709002678473468 0.47101071981662856 0.73462416688718934 -v -1.1344291403102762 0.21690833722013325 0.14168056196835638 -v -0.43059335020056905 -0.4470390675626591 -0.66502216614402498 -v -1.0607848169205962 0.47663856376204933 0.70112120265642575 -v -0.44133989048900957 0.1902870528963945 -1.2342805157431485 -v -0.47958503902756078 0.21707562315643145 -1.2223563273859952 -v 2.2396960668123511 1.340570980802418 0.21159010087949504 -v 30.31460827925396 135.60016217295259 107.4416581084119 -v 2.1799816395012974 14.282412421113133 9.9504740223149213 -v 1380.2992409686672 956.01841374760932 -32241.858364890955 -v 2.6480556966382598 -1.4233856696931795 -11.300301425653275 -v 3.3674658675567462 11.965307711266059 -19.850065530417908 -v 0.16907882903187932 4.3538057826493812 -6.328581522124697 -v 2.306818585931266 -2.7783936869043133 -4.0351839119599564 -v -1.4945766350671708 -1.7661230716489253 4.8662640276775804 -v -1.7881146084595203 -1.5408511291241969 5.7322219152538691 +v -1.3648082515806135 -0.40278219506567609 -2.6095086554596927 +v -0.33749343671411997 -0.74908001921829537 -1.3696569570741421 +v -0.24600313296315834 0.0022384503787893912 2.341677402800185 +v 1.9522920823763079 -2.0551756431418822 -1.0656495095943206 +v 1.4049954452653202 -2.0906462855053016 -2.7388249044043782 +v -1.329429994876502 0.1922119836595457 0.22733620874550953 +v 1.0423692787237957 -1.8461649636234034 -2.6136863691826018 +v -0.84834019740037381 0.22471411822127915 1.7041945428746965 +v 0.99478857351252759 -1.2387034881022374 0.0516894956308529 +v 2.0767643000753564 -2.7485519255825417 -3.9144340072034423 +v 2.3351160592354816 -3.9206127645530509 -8.5976489734211317 +v -0.81960227641168926 0.70351207044728004 -1.0428681638071884 +v -0.83304768804403173 0.71727196764886447 -1.0525959896557069 +v 0.41424330598950981 -0.65482411152444941 -0.2175302223121309 +v 1.8335406159148588 -0.19229475483162423 2.1581453720042365 +v -0.81311073620271579 1.3633641936108203 -0.56873946897664018 +v -1.083212613141495 0.90841350478435279 -1.2792847482675072 +v -0.77963318239066925 0.59938635041913235 -1.0584792239447367 +v 1.1791608517176568 0.53502956262487444 1.7252948075474845 +v 1.8292184093949173 5.5574256607785939 6.2015969394203223 +v 1.540028230180412 -1.62740040245573 -1.5164486639640897 +v 2.0183452911802968 -2.0788590188286573 -2.1591960111250086 +v -0.80628207890457904 0.69053818623005658 -1.0503288342642745 +v -0.44763379331359676 0.35123440966451486 -1.5116254222213077 +v 1.2462353971263456 -1.3695791126757908 -0.61552113978318546 +v -1.1271829973228975 0.96453453834668634 0.13161166540230909 +v -1.1174924988717359 0.96402095874422766 -0.10577417323193333 +v 1.8078995037168835 -2.2753998167004368 -2.8155525180083694 +v -1.0185168112455179 0.46794590823973264 1.1622557114063692 +v -1.3224612154053383 0.23784265967481694 0.34204790790256123 +v -0.67743866199709402 -0.34152003781294793 -0.45474554058033934 +v -1.2739839346736233 0.50186707348972137 1.0131174705087651 +v -0.71121079563002498 0.54022143658304966 -1.1449718726271332 +v -0.75860877896391332 0.58094494995254153 -1.1223271527410419 +v 2.042131731256966 1.5510478913852235 -0.038891899342260228 +v 30.885092115867593 142.56699777817889 105.08702985987757 +v 2.0211566442707065 14.721627551855827 9.4038277622734352 +v 703.24135398301758 1014.3210398541149 -10735.238429047333 +v 2.7879522513159882 -0.75700875740230522 -13.796404788535769 +v 3.6244543802513971 11.305123142148714 -19.103160851041771 +v -0.38977655383144871 3.1635308232175858 -4.0454709394585215 +v 2.1005826895083271 -2.7480331548731374 -3.9626947436700002 +v -1.7414267435542168 -1.6524040327769789 5.1861764201220888 +v -1.9849220636314819 -1.4420122254037908 5.9290584129726991 f 1 2 11 4 3 8 9 10 7 5 6 f 1 2 18 13 12 16 19 20 15 14 17 f 3 4 22 21 25 24 13 12 23 27 26 diff --git a/results/search/topology_8/resume.planes b/results/search/topology_8/resume.planes index fca7e8a2..057b461f 100644 --- a/results/search/topology_8/resume.planes +++ b/results/search/topology_8/resume.planes @@ -1,37 +1,37 @@ 36 --0.24143567681312561 --0.38398894667625427 -0.092606939375400543 -0.25930511951446533 -0.14969912171363831 --0.18050786852836609 --0.020673014223575592 --0.023741476237773895 -0.0014297268353402615 --0.067097969353199005 --0.18779309093952179 -0.096018992364406586 -0.1715724766254425 -0.59850513935089111 --0.79429155588150024 --0.095420300960540771 --0.13265877962112427 --0.0080193756148219109 --0.66290402412414551 --0.30417203903198242 --0.32802832126617432 --0.14690263569355011 -0.79514938592910767 -0.41285628080368042 -1.2311452627182007 --0.74058246612548828 -0.60998386144638062 -2.2069590091705322 --0.059474460780620575 -0.092566698789596558 --1.1094293594360352 -0.28860950469970703 --0.038978651165962219 --0.63754981756210327 --0.18746988475322723 --0.1673445999622345 +-0.27860358357429504 +-0.46492877602577209 +0.10098769515752792 +0.14298057556152344 +0.069725662469863892 +-0.098995886743068695 +-0.076227806508541107 +-0.076568402349948883 +-0.0029460960067808628 +-0.11652424186468124 +-0.30792000889778137 +0.12956507503986359 +0.12944170832633972 +0.67061954736709595 +-0.93508368730545044 +-0.14870248734951019 +-0.15928642451763153 +-0.024795854464173317 +-0.7336311936378479 +-0.31417334079742432 +-0.36545023322105408 +-0.15015985071659088 +0.94893050193786621 +0.47304925322532654 +1.1047024726867676 +-0.62294375896453857 +0.53851372003555298 +1.9631205797195435 +-0.083180218935012817 +0.12037933617830276 +-1.2826308012008667 +0.32930278778076172 +-0.053071636706590652 +-0.77807915210723877 +-0.20999091863632202 +-0.19556035101413727 diff --git a/results/search/topology_9/resume.obj b/results/search/topology_9/resume.obj index 3f029d43..74981cfa 100644 --- a/results/search/topology_9/resume.obj +++ b/results/search/topology_9/resume.obj @@ -1,47 +1,47 @@ -v -0.006912127704871816 -0.32443221599687805 0.22196928849191211 -v 0.95627737418131187 -0.7137016195401511 0.62415761715188389 -v 0.10992227069813015 1.2100668646383899 1.2981955436965951 -v -0.76687541832670914 0.070738171148774898 -0.038175552680638547 -v 0.71717564659077959 -1.4755745441533061 -0.033343193237474922 -v 4.1210440938687523 -4.8605363857703159 0.08278422058852955 -v 0.31968182909593756 -7.1803229477102022 -4.0093225587997035 -v 0.17513760531355527 2.8191962799212313 2.3877944927343573 -v -1.2982218387653339 0.7609716382707199 0.048822733362943904 -v 0.81289870200864001 0.15940702981892546 1.0937963567534439 -v -1.1125450637698544 -0.82820224910193785 -0.85718658292039285 -v -0.77584600962854322 -0.014775876570889718 -0.044888879219433409 -v 0.16958841753315443 -0.42134109040115197 1.5501599997394722 -v -1.4767562168184343 0.24845679224541797 0.64524008810814393 -v 0.61040138794637488 -0.5808818910412622 0.82134043948251068 -v -1.5407549942911127 0.28439378304702645 0.12449986646898537 -v 1.8606394663221406 -1.0931824046621188 1.687779031254194 -v 1.5158210073587959 -0.96585995149876014 2.1340705456410465 -v 7037.1241504455093 -3172.1532587093034 19016.494386989947 -v -1.0442434426222684 0.11230229131718995 -1.0695639806452468 -v -0.27052489132412172 -1.0728626015312326 0.88686440330285043 -v 0.54744205648772848 0.8631225496214433 2.0513008248762064 -v -2.5174503513297246 -0.65345802003404074 -2.8524129650574999 -v -1.1720634700680765 1.2560291495454863 -0.81703677509556771 -v 0.19012809862013269 5.872643968809836 0.99093149911089151 -v -1.0079080174889838 16.326780779838732 -1.9667775931402387 -v -1.3733253291545751 0.5209947015784 -1.0791736079940917 -v -1.7965172951406929 -1.2320954218517994 3.5948574193022216 -v 3.3810497969346955 -4.7724972573726134 1.1239394005530396 -v -0.65074148763854001 1.0947283658856843 -2.0717350692836249 -v 14.167935839156513 -17.28379798936782 4.4290881765025265 -v -0.050886445286717499 -0.82771393938517979 0.13129156367548567 -v -1.1571452198279546 0.83476738956315155 -0.8321482781924725 -v -0.60102109564561346 0.97195331594747481 3.7070537083616286 -v 0.33127663675573743 1.4215556506579348 2.7891036012478598 -v -6.9836595691715697 1.9744244109433988 13.223982220959485 -v 0.53437465923849559 -0.83884756439300967 0.72088549448787109 -v 0.29136902556599342 -0.95748562909365209 0.95900419103060686 -v 0.60739899374339557 3.9723326876011096 1.2371970454250627 -v -0.77211782921075411 1.8645979942734203 -0.34885427737622077 -v -2.7125791303577849 1.1575020455776204 -10.129599015285145 -v 1.0391534218967138 -1.294867867865884 2.9784201349973025 -v -0.15436228331571744 0.0029205369134637669 -3.2195788650618136 -v -1.1345051562946791 0.28731208240647671 -0.85966575732049433 +v -0.12075735925011828 -0.42762931837560769 0.085252441218583441 +v 0.76513724621756429 -0.70975265996774095 0.24178580335714184 +v -0.021319050582778262 1.5506779133648512 1.262005879291402 +v -0.82755239150186688 -0.01169129475914764 0.070431826289676092 +v 0.53240704148836138 -1.1764875062377289 -0.11125328232465698 +v 4.350944563926463 -4.877106137160383 -0.86942056349937613 +v 0.015260107228665089 -4.526907176188975 -2.2298492143988806 +v 0.40599616708772784 2.5579078093995418 1.9968768099306631 +v -1.5250562659510489 0.74303567789585023 0.25434413326649719 +v 0.41935871322140678 0.95033318748843998 1.0745791260018387 +v -1.2384868751814431 -0.90686306337677325 -0.5939105511984657 +v -0.61759228237219854 -0.30572510263253205 0.46582440482088061 +v -0.10720834998464529 -0.5311951364280183 1.3675756842162805 +v -1.6395306197616479 -0.096712674670480794 1.7867929308337565 +v 0.36072115703361524 -0.61563624164780495 0.61748632296391992 +v -1.9482357849503782 0.1040066611982421 0.41159643646668931 +v 2.0832751581309483 -1.1724372729787698 1.0280364306310079 +v 1.2446280202891971 -1.0124529384311269 2.2609040939905904 +v 271.38335136722844 -151.46232869042717 880.76005161631917 +v -0.92800545373975341 -0.087358118521935271 -1.1302414103659528 +v -0.31701660532276932 -1.0628240214679483 1.0726686578342619 +v 0.41777127228895883 1.167179044794119 2.0608008116584164 +v -4.5531799322707593 -0.40830863767807041 -6.2641118912242071 +v -1.2247063354556635 1.6222717738535748 -0.80830947143703702 +v 0.34290025006843067 3.6009615163659587 1.6371013582671627 +v -1.0048918833453933 17.468085321606619 -2.3552155507284986 +v -1.7478692890486056 0.6978626317346136 -1.5923722426185571 +v -1.8041341086643492 -1.0367869820440767 3.3928910836818087 +v 3.8082989660302276 -4.8598909589655372 -0.033815455593504851 +v -0.3273947064190364 1.1971944475054521 -2.1447523812588307 +v 9.2541545342224882 -10.599864463059506 -0.45359273678008033 +v 0.036286809287050463 -0.8271458390897366 0.17535502164503358 +v -1.2056307008540421 1.2358795598053194 -0.80786819050598058 +v -0.79335525553146746 0.4190449713527481 3.1748193607270099 +v 0.19930581277470943 1.5928602244095971 2.7416071876561525 +v -4492.8486807140798 366.83383866574945 6823.7160122067671 +v 0.30897415229523995 -0.84082576312086654 0.49969884305344747 +v 0.12726577898851954 -0.91215868101714492 0.70185500603557738 +v 0.52642724663280027 2.8635368427070791 1.6756056619602091 +v -0.60561972497563277 2.0421039438449653 0.11228543510375633 +v -18.882960504442106 9.6119151990628442 -71.670015509936803 +v 0.79135943791163199 -1.2488125676925754 3.0689336779647585 +v 0.48415811067766368 -0.081614039613514933 -3.2850856676376026 +v -1.0699043906768138 0.091034973871142857 -0.92739932089384092 f 1 2 11 7 5 6 8 9 4 3 10 f 1 2 18 17 19 20 16 14 12 13 15 f 3 4 27 25 26 24 23 21 12 13 22 diff --git a/results/search/topology_9/resume.planes b/results/search/topology_9/resume.planes index 4b00a229..aee7d59c 100644 --- a/results/search/topology_9/resume.planes +++ b/results/search/topology_9/resume.planes @@ -1,37 +1,37 @@ 36 --0.15785783529281616 --0.15077637135982513 -0.23211608827114105 --0.11033192276954651 --0.27887445688247681 --0.0056857536546885967 --0.54495608806610107 -0.031184695661067963 -0.33096092939376831 --0.33512267470359802 --0.34416750073432922 --0.20908378064632416 -0.82723695039749146 --0.47951376438140869 -0.60530591011047363 --1.3063466548919678 -0.69794976711273193 -0.20871597528457642 -1.7132145166397095 -0.52819877862930298 -1.1729921102523804 -0.4142073392868042 -0.29730671644210815 --0.10367080569267273 --0.12885022163391113 --0.011746439151465893 -0.12768150866031647 -0.1659940630197525 --0.69714593887329102 --0.1779387891292572 --1.2670061588287354 --0.026104889810085297 --0.52307987213134766 --0.41362026333808899 --0.33074778318405151 -0.097904719412326813 +-0.092497624456882477 +-0.14803324639797211 +0.25668337941169739 +-0.126969113945961 +-0.41662022471427917 +-0.032306447625160217 +-0.64487820863723755 +0.045692890882492065 +0.37642070651054382 +-0.27103281021118164 +-0.24464160203933716 +-0.17096976935863495 +0.63030880689620972 +-0.37244158983230591 +0.43513411283493042 +-1.2991160154342651 +0.96679192781448364 +0.43273645639419556 +1.615608811378479 +0.4563772976398468 +1.0397810935974121 +0.59614002704620361 +0.46952199935913086 +-0.1022767648100853 +-0.16116118431091309 +-0.033107239753007889 +0.13409754633903503 +0.13365213572978973 +-0.74834907054901123 +-0.1439293771982193 +-1.1683251857757568 +-0.058553151786327362 +-0.76581060886383057 +-0.43735554814338684 +-0.4195549488067627 +0.063031382858753204 diff --git a/src/CudaSearch/cuda_search.cu b/src/CudaSearch/cuda_search.cu index 7a520c6f..68753b45 100644 --- a/src/CudaSearch/cuda_search.cu +++ b/src/CudaSearch/cuda_search.cu @@ -645,8 +645,15 @@ __device__ DeviceMetrics evaluate_state( const float turn_barrier = log1pf(0.002f / fmaxf(1.0e-10f, turn_quality)); const float extent_barrier = 0.10f * log1pf(maximum_vertex_norm / 100.0f); + const float worst_degeneracy_barrier = fmaxf( + fmaxf(determinant_barrier, edge_barrier), + fmaxf(turn_barrier, extent_barrier)); + const float secondary_degeneracy_barriers = fmaxf( + 0.0f, + determinant_barrier + edge_barrier + turn_barrier + extent_barrier - + worst_degeneracy_barrier); metrics.degeneracy_penalty = config.degeneracy_weight * - (determinant_barrier + edge_barrier + turn_barrier + extent_barrier); + (worst_degeneracy_barrier + 0.05f * secondary_degeneracy_barriers); metrics.geometry_penalty = 0.0010f * fminf(20.0f, log1pf(condition)) + 0.0002f * fminf(20.0f, log1pf(maximum_vertex_norm)) + diff --git a/src/CudaSearch/cuda_search.h b/src/CudaSearch/cuda_search.h index 5a239807..cd344e4d 100644 --- a/src/CudaSearch/cuda_search.h +++ b/src/CudaSearch/cuda_search.h @@ -67,7 +67,7 @@ struct SearchConfig { float minimum_temperature = 8.0e-4f; float jump_chance = 0.08f; float initial_state_jitter = 0.02f; - float degeneracy_weight = 0.02f; + float degeneracy_weight = 0.01f; int stagnation_iterations = 2000; };